Latest generation

This commit is contained in:
ci core model
2025-10-21 11:50:58 +00:00
parent 740b742676
commit 8d04d0b435
2 changed files with 26 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@reflex-platform/npm-core-sdk",
"version": "1.12.0-SNAPSHOT-251021101539",
"version": "1.12.0-SNAPSHOT-251021115011",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

26
site.ts
View File

@@ -1267,6 +1267,14 @@ export interface GetBasicSettingsResponse {
* @generated from protobuf field: repeated string Emails = 6
*/
Emails: string[];
/**
* @generated from protobuf field: string ID = 7
*/
ID: string;
/**
* @generated from protobuf field: string PhotoURI = 8
*/
PhotoURI: string;
}
/**
* @generated from protobuf message api.GetUnitsRequest
@@ -4718,7 +4726,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
{ no: 3, name: "Address", kind: "message", localName: "Address", jsonName: "Address", T: () => Address },
{ no: 4, name: "Phones", kind: "scalar", localName: "Phones", jsonName: "Phones", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "Fax", kind: "scalar", localName: "Fax", jsonName: "Fax", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ }
{ no: 6, name: "Emails", kind: "scalar", localName: "Emails", jsonName: "Emails", repeat: 2 /*RepeatType.UNPACKED*/, T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "ID", kind: "scalar", localName: "ID", jsonName: "ID", T: 9 /*ScalarType.STRING*/ },
{ no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ }
]);
}
create(value?: PartialMessage<GetBasicSettingsResponse>): GetBasicSettingsResponse {
@@ -4728,6 +4738,8 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
message.Phones = [];
message.Fax = "";
message.Emails = [];
message.ID = "";
message.PhotoURI = "";
if (value !== undefined)
reflectionMergePartial<GetBasicSettingsResponse>(this, message, value);
return message;
@@ -4755,6 +4767,12 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
case /* repeated string Emails */ 6:
message.Emails.push(reader.string());
break;
case /* string ID */ 7:
message.ID = reader.string();
break;
case /* string PhotoURI */ 8:
message.PhotoURI = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -4785,6 +4803,12 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
/* repeated string Emails = 6; */
for (let i = 0; i < message.Emails.length; i++)
writer.tag(6, WireType.LengthDelimited).string(message.Emails[i]);
/* string ID = 7; */
if (message.ID !== "")
writer.tag(7, WireType.LengthDelimited).string(message.ID);
/* string PhotoURI = 8; */
if (message.PhotoURI !== "")
writer.tag(8, WireType.LengthDelimited).string(message.PhotoURI);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);