Latest generation

This commit is contained in:
ci core model
2025-11-14 14:36:26 +00:00
parent e294c11c57
commit 27d72564c0
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-251113100238",
"version": "1.12.0-SNAPSHOT-251114143549",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -140,6 +140,10 @@ export interface StartWorkflowDeleteCoreRequest {
* @generated from protobuf field: string ProjectId = 2
*/
ProjectId: string;
/**
* @generated from protobuf field: api.ProjectType ProjectType = 3
*/
ProjectType: ProjectType;
}
/**
* @generated from protobuf message api.StartWorkflowDeleteCoreResult
@@ -1284,13 +1288,15 @@ class StartWorkflowDeleteCoreRequest$Type extends MessageType<StartWorkflowDelet
constructor() {
super("api.StartWorkflowDeleteCoreRequest", [
{ no: 1, name: "OrganisationId", kind: "scalar", localName: "OrganisationId", jsonName: "OrganisationId", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
{ no: 2, name: "ProjectId", kind: "scalar", localName: "ProjectId", jsonName: "ProjectId", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
{ no: 2, name: "ProjectId", kind: "scalar", localName: "ProjectId", jsonName: "ProjectId", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
{ no: 3, name: "ProjectType", kind: "enum", localName: "ProjectType", jsonName: "ProjectType", T: () => ["api.ProjectType", ProjectType] }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["OrganisationId", "ProjectId"] } } });
}
create(value?: PartialMessage<StartWorkflowDeleteCoreRequest>): StartWorkflowDeleteCoreRequest {
const message = globalThis.Object.create((this.messagePrototype!));
message.OrganisationId = "";
message.ProjectId = "";
message.ProjectType = 0;
if (value !== undefined)
reflectionMergePartial<StartWorkflowDeleteCoreRequest>(this, message, value);
return message;
@@ -1306,6 +1312,9 @@ class StartWorkflowDeleteCoreRequest$Type extends MessageType<StartWorkflowDelet
case /* string ProjectId */ 2:
message.ProjectId = reader.string();
break;
case /* api.ProjectType ProjectType */ 3:
message.ProjectType = reader.int32();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1324,6 +1333,9 @@ class StartWorkflowDeleteCoreRequest$Type extends MessageType<StartWorkflowDelet
/* string ProjectId = 2; */
if (message.ProjectId !== "")
writer.tag(2, WireType.LengthDelimited).string(message.ProjectId);
/* api.ProjectType ProjectType = 3; */
if (message.ProjectType !== 0)
writer.tag(3, WireType.Varint).int32(message.ProjectType);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);