Latest generation

This commit is contained in:
ci core model
2026-03-05 08:46:49 +00:00
parent ef39089cb4
commit 2612a1d56a
2 changed files with 14 additions and 2 deletions

View File

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

14
site.ts
View File

@@ -1346,6 +1346,10 @@ export interface CheckAppointmentEditableResponse {
* @generated from protobuf field: bool IsEditable = 3
*/
IsEditable: boolean;
/**
* @generated from protobuf field: bool IsForceEditable = 4
*/
IsForceEditable: boolean;
}
// @generated message type with reflection information, may provide speed optimized methods
class Site$Type extends MessageType<Site> {
@@ -5245,12 +5249,14 @@ class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointment
constructor() {
super("api.CheckAppointmentEditableResponse", [
{ no: 2, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => ResponseHeader },
{ no: 3, name: "IsEditable", kind: "scalar", localName: "IsEditable", jsonName: "IsEditable", T: 8 /*ScalarType.BOOL*/ }
{ 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*/ }
]);
}
create(value?: PartialMessage<CheckAppointmentEditableResponse>): CheckAppointmentEditableResponse {
const message = globalThis.Object.create((this.messagePrototype!));
message.IsEditable = false;
message.IsForceEditable = false;
if (value !== undefined)
reflectionMergePartial<CheckAppointmentEditableResponse>(this, message, value);
return message;
@@ -5266,6 +5272,9 @@ class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointment
case /* bool IsEditable */ 3:
message.IsEditable = reader.bool();
break;
case /* bool IsForceEditable */ 4:
message.IsForceEditable = reader.bool();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -5284,6 +5293,9 @@ class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointment
/* bool IsEditable = 3; */
if (message.IsEditable !== false)
writer.tag(3, WireType.Varint).bool(message.IsEditable);
/* bool IsForceEditable = 4; */
if (message.IsForceEditable !== false)
writer.tag(4, WireType.Varint).bool(message.IsForceEditable);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);