Latest generation

This commit is contained in:
ci core model
2026-03-06 09:52:59 +00:00
parent 0755da4a4c
commit af61ecb87d
2 changed files with 2 additions and 12 deletions

View File

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

12
site.ts
View File

@@ -1338,10 +1338,7 @@ export interface CheckAppointmentEditableRequest {
*/ */
export interface CheckAppointmentEditableResponse { export interface CheckAppointmentEditableResponse {
/** /**
* @generated from protobuf field: api.ResponseHeader Header = 2 * ResponseHeader Header = 2;
*/
Header?: ResponseHeader;
/**
* bool IsModifiable = 1; * bool IsModifiable = 1;
* *
* @generated from protobuf field: bool IsEditable = 3 * @generated from protobuf field: bool IsEditable = 3
@@ -5249,7 +5246,6 @@ export const CheckAppointmentEditableRequest = new CheckAppointmentEditableReque
class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointmentEditableResponse> { class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointmentEditableResponse> {
constructor() { constructor() {
super("api.CheckAppointmentEditableResponse", [ 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*/ } { no: 4, name: "IsForceEditable", kind: "scalar", localName: "IsForceEditable", jsonName: "IsForceEditable", T: 8 /*ScalarType.BOOL*/ }
]); ]);
@@ -5267,9 +5263,6 @@ class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointment
while (reader.pos < end) { while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag(); let [fieldNo, wireType] = reader.tag();
switch (fieldNo) { switch (fieldNo) {
case /* api.ResponseHeader Header */ 2:
message.Header = ResponseHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* bool IsEditable */ 3: case /* bool IsEditable */ 3:
message.IsEditable = reader.bool(); message.IsEditable = reader.bool();
break; break;
@@ -5288,9 +5281,6 @@ class CheckAppointmentEditableResponse$Type extends MessageType<CheckAppointment
return message; return message;
} }
internalBinaryWrite(message: CheckAppointmentEditableResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { internalBinaryWrite(message: CheckAppointmentEditableResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResponseHeader Header = 2; */
if (message.Header)
ResponseHeader.internalBinaryWrite(message.Header, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
/* bool IsEditable = 3; */ /* bool IsEditable = 3; */
if (message.IsEditable !== false) if (message.IsEditable !== false)
writer.tag(3, WireType.Varint).bool(message.IsEditable); writer.tag(3, WireType.Varint).bool(message.IsEditable);