Latest generation

This commit is contained in:
ci core model
2025-11-05 09:40:37 +00:00
parent c4db25883c
commit 267e7bb257
2 changed files with 14 additions and 2 deletions

View File

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

14
site.ts
View File

@@ -867,6 +867,10 @@ export interface CancelAppointmentRequest {
* @generated from protobuf field: string AppointmentID = 2
*/
AppointmentID: string;
/**
* @generated from protobuf field: string ActorID = 3
*/
ActorID: string;
}
/**
* @generated from protobuf message api.CancelAppointmentResponse
@@ -3439,12 +3443,14 @@ class CancelAppointmentRequest$Type extends MessageType<CancelAppointmentRequest
constructor() {
super("api.CancelAppointmentRequest", [
{ no: 1, name: "Header", kind: "message", localName: "Header", jsonName: "Header", T: () => RequestProjectHeader, options: { "validate.rules": { message: { required: true } } } },
{ no: 2, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
{ no: 2, name: "AppointmentID", kind: "scalar", localName: "AppointmentID", jsonName: "AppointmentID", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
{ no: 3, name: "ActorID", kind: "scalar", localName: "ActorID", jsonName: "ActorID", T: 9 /*ScalarType.STRING*/ }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header", "AppointmentID"] } } });
}
create(value?: PartialMessage<CancelAppointmentRequest>): CancelAppointmentRequest {
const message = globalThis.Object.create((this.messagePrototype!));
message.AppointmentID = "";
message.ActorID = "";
if (value !== undefined)
reflectionMergePartial<CancelAppointmentRequest>(this, message, value);
return message;
@@ -3460,6 +3466,9 @@ class CancelAppointmentRequest$Type extends MessageType<CancelAppointmentRequest
case /* string AppointmentID */ 2:
message.AppointmentID = reader.string();
break;
case /* string ActorID */ 3:
message.ActorID = reader.string();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -3478,6 +3487,9 @@ class CancelAppointmentRequest$Type extends MessageType<CancelAppointmentRequest
/* string AppointmentID = 2; */
if (message.AppointmentID !== "")
writer.tag(2, WireType.LengthDelimited).string(message.AppointmentID);
/* string ActorID = 3; */
if (message.ActorID !== "")
writer.tag(3, WireType.LengthDelimited).string(message.ActorID);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);