Latest generation

This commit is contained in:
ci core model
2026-04-30 07:39:06 +00:00
parent b9ebc8859c
commit 63f6799859
2 changed files with 14 additions and 2 deletions

View File

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

View File

@@ -435,6 +435,10 @@ export interface CheckBookingAppointmentEditableResponse {
* @generated from protobuf field: bool IsForceEditable = 4
*/
IsForceEditable: boolean;
/**
* @generated from protobuf field: bool SiteHasCarrierInformation = 5
*/
SiteHasCarrierInformation: boolean;
}
/**
* LockBookingRequest
@@ -1547,13 +1551,15 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
constructor() {
super("api.CheckBookingAppointmentEditableResponse", [
{ no: 3, name: "IsEditable", kind: "scalar", localName: "IsEditable", jsonName: "IsEditable", T: 8 /*ScalarType.BOOL*/ },
{ no: 4, name: "IsForceEditable", kind: "scalar", localName: "IsForceEditable", jsonName: "IsForceEditable", T: 8 /*ScalarType.BOOL*/ }
{ no: 4, name: "IsForceEditable", kind: "scalar", localName: "IsForceEditable", jsonName: "IsForceEditable", T: 8 /*ScalarType.BOOL*/ },
{ no: 5, name: "SiteHasCarrierInformation", kind: "scalar", localName: "SiteHasCarrierInformation", jsonName: "SiteHasCarrierInformation", T: 8 /*ScalarType.BOOL*/ }
]);
}
create(value?: PartialMessage<CheckBookingAppointmentEditableResponse>): CheckBookingAppointmentEditableResponse {
const message = globalThis.Object.create((this.messagePrototype!));
message.IsEditable = false;
message.IsForceEditable = false;
message.SiteHasCarrierInformation = false;
if (value !== undefined)
reflectionMergePartial<CheckBookingAppointmentEditableResponse>(this, message, value);
return message;
@@ -1569,6 +1575,9 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
case /* bool IsForceEditable */ 4:
message.IsForceEditable = reader.bool();
break;
case /* bool SiteHasCarrierInformation */ 5:
message.SiteHasCarrierInformation = reader.bool();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1587,6 +1596,9 @@ class CheckBookingAppointmentEditableResponse$Type extends MessageType<CheckBook
/* bool IsForceEditable = 4; */
if (message.IsForceEditable !== false)
writer.tag(4, WireType.Varint).bool(message.IsForceEditable);
/* bool SiteHasCarrierInformation = 5; */
if (message.SiteHasCarrierInformation !== false)
writer.tag(5, WireType.Varint).bool(message.SiteHasCarrierInformation);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);