Latest generation

This commit is contained in:
ci core model
2025-08-29 09:22:56 +00:00
parent d9bf9eb390
commit 88ac32472c
2 changed files with 14 additions and 3 deletions

View File

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

15
site.ts
View File

@@ -19,8 +19,8 @@ import { SegmentationSelection } from "./slotbooking";
import { Commission } from "./slotbooking";
import { AppointmentType } from "./slotbooking";
import { FileDataRequest } from "./shared";
import { WorkflowExecutionResult } from "./shared";
import { RequestSiteHeader } from "./shared";
import { WorkflowExecutionResult } from "./shared";
import { RequestOrganisationHeader } from "./shared";
import { CarrierInformation } from "./slotbooking";
import { Document } from "./slotbooking";
@@ -198,6 +198,10 @@ export interface CreateSiteResponse {
* @generated from protobuf field: api.Site Site = 1
*/
Site?: Site;
/**
* @generated from protobuf field: api.WorkflowExecutionResult WorkflowExecution = 2
*/
WorkflowExecution?: WorkflowExecutionResult;
}
/**
* Get
@@ -1427,7 +1431,8 @@ export const CreateSiteRequest = new CreateSiteRequest$Type();
class CreateSiteResponse$Type extends MessageType<CreateSiteResponse> {
constructor() {
super("api.CreateSiteResponse", [
{ no: 1, name: "Site", kind: "message", localName: "Site", jsonName: "Site", T: () => Site, options: { "validate.rules": { message: { required: true } } } }
{ no: 1, name: "Site", kind: "message", localName: "Site", jsonName: "Site", T: () => Site, options: { "validate.rules": { message: { required: true } } } },
{ no: 2, name: "WorkflowExecution", kind: "message", localName: "WorkflowExecution", jsonName: "WorkflowExecution", T: () => WorkflowExecutionResult }
]);
}
create(value?: PartialMessage<CreateSiteResponse>): CreateSiteResponse {
@@ -1444,6 +1449,9 @@ class CreateSiteResponse$Type extends MessageType<CreateSiteResponse> {
case /* api.Site Site */ 1:
message.Site = Site.internalBinaryRead(reader, reader.uint32(), options, message.Site);
break;
case /* api.WorkflowExecutionResult WorkflowExecution */ 2:
message.WorkflowExecution = WorkflowExecutionResult.internalBinaryRead(reader, reader.uint32(), options, message.WorkflowExecution);
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1459,6 +1467,9 @@ class CreateSiteResponse$Type extends MessageType<CreateSiteResponse> {
/* api.Site Site = 1; */
if (message.Site)
Site.internalBinaryWrite(message.Site, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* api.WorkflowExecutionResult WorkflowExecution = 2; */
if (message.WorkflowExecution)
WorkflowExecutionResult.internalBinaryWrite(message.WorkflowExecution, writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);