Latest generation

This commit is contained in:
ci core model
2026-06-22 11:17:17 +00:00
parent 344e66512e
commit 800f816c92
2 changed files with 13 additions and 1 deletions

View File

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

12
site.ts
View File

@@ -947,6 +947,10 @@ export interface GetBasicSettingsResponse {
* @generated from protobuf field: repeated string Phones = 4
*/
Phones: string[]; // List of phone numbers which can be used to contact the site
/**
* @generated from protobuf field: string Fax = 5
*/
Fax: string; // Fax number which can be used to contact the site
/**
* @generated from protobuf field: repeated string Emails = 6
*/
@@ -3932,6 +3936,7 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
{ no: 2, name: "Active", kind: "scalar", localName: "Active", jsonName: "Active", T: 8 /*ScalarType.BOOL*/ },
{ 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: 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*/ },
@@ -3945,6 +3950,7 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
message.Name = "";
message.Active = false;
message.Phones = [];
message.Fax = "";
message.Emails = [];
message.ID = "";
message.PhotoURI = "";
@@ -3972,6 +3978,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
case /* repeated string Phones */ 4:
message.Phones.push(reader.string());
break;
case /* string Fax */ 5:
message.Fax = reader.string();
break;
case /* repeated string Emails */ 6:
message.Emails.push(reader.string());
break;
@@ -4014,6 +4023,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
/* repeated string Phones = 4; */
for (let i = 0; i < message.Phones.length; i++)
writer.tag(4, WireType.LengthDelimited).string(message.Phones[i]);
/* string Fax = 5; */
if (message.Fax !== "")
writer.tag(5, WireType.LengthDelimited).string(message.Fax);
/* repeated string Emails = 6; */
for (let i = 0; i < message.Emails.length; i++)
writer.tag(6, WireType.LengthDelimited).string(message.Emails[i]);