Latest generation

This commit is contained in:
ci core model
2026-02-12 09:29:00 +00:00
parent c7fec32cf6
commit 3eff6467fd
2 changed files with 14 additions and 2 deletions

View File

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

14
site.ts
View File

@@ -1118,6 +1118,10 @@ export interface GetBasicSettingsResponse {
* @generated from protobuf field: string PrefixAppointmentID = 9 * @generated from protobuf field: string PrefixAppointmentID = 9
*/ */
PrefixAppointmentID: string; PrefixAppointmentID: string;
/**
* @generated from protobuf field: uint32 RoundedPeriodInMinutes = 10
*/
RoundedPeriodInMinutes: number;
} }
/** /**
* @generated from protobuf message api.GetUnitsRequest * @generated from protobuf message api.GetUnitsRequest
@@ -4402,7 +4406,8 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
{ 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: 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*/ }, { no: 8, name: "PhotoURI", kind: "scalar", localName: "PhotoURI", jsonName: "PhotoURI", T: 9 /*ScalarType.STRING*/ },
{ no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ } { no: 9, name: "PrefixAppointmentID", kind: "scalar", localName: "PrefixAppointmentID", jsonName: "PrefixAppointmentID", T: 9 /*ScalarType.STRING*/ },
{ no: 10, name: "RoundedPeriodInMinutes", kind: "scalar", localName: "RoundedPeriodInMinutes", jsonName: "RoundedPeriodInMinutes", T: 13 /*ScalarType.UINT32*/ }
]); ]);
} }
create(value?: PartialMessage<GetBasicSettingsResponse>): GetBasicSettingsResponse { create(value?: PartialMessage<GetBasicSettingsResponse>): GetBasicSettingsResponse {
@@ -4415,6 +4420,7 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
message.ID = ""; message.ID = "";
message.PhotoURI = ""; message.PhotoURI = "";
message.PrefixAppointmentID = ""; message.PrefixAppointmentID = "";
message.RoundedPeriodInMinutes = 0;
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<GetBasicSettingsResponse>(this, message, value); reflectionMergePartial<GetBasicSettingsResponse>(this, message, value);
return message; return message;
@@ -4451,6 +4457,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
case /* string PrefixAppointmentID */ 9: case /* string PrefixAppointmentID */ 9:
message.PrefixAppointmentID = reader.string(); message.PrefixAppointmentID = reader.string();
break; break;
case /* uint32 RoundedPeriodInMinutes */ 10:
message.RoundedPeriodInMinutes = reader.uint32();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -4490,6 +4499,9 @@ class GetBasicSettingsResponse$Type extends MessageType<GetBasicSettingsResponse
/* string PrefixAppointmentID = 9; */ /* string PrefixAppointmentID = 9; */
if (message.PrefixAppointmentID !== "") if (message.PrefixAppointmentID !== "")
writer.tag(9, WireType.LengthDelimited).string(message.PrefixAppointmentID); writer.tag(9, WireType.LengthDelimited).string(message.PrefixAppointmentID);
/* uint32 RoundedPeriodInMinutes = 10; */
if (message.RoundedPeriodInMinutes !== 0)
writer.tag(10, WireType.Varint).uint32(message.RoundedPeriodInMinutes);
let u = options.writeUnknownFields; let u = options.writeUnknownFields;
if (u !== false) if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);