Latest generation

This commit is contained in:
ci core model
2025-10-08 09:32:51 +00:00
parent 6a7ea00665
commit 4940018ebd
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-251008090403",
"version": "1.12.0-SNAPSHOT-251008093202",
"description": "npm libs from core model proto files",
"homepage": "",
"main": "index.ts",

View File

@@ -110,6 +110,10 @@ export interface StartWorkflowDeleteProjectRequest {
* @generated from protobuf field: string UserId = 3
*/
UserId: string;
/**
* @generated from protobuf field: api.ProjectType ProjectType = 4
*/
ProjectType: ProjectType;
}
/**
* @generated from protobuf message api.StartWorkflowDeleteProjectResult
@@ -1152,7 +1156,8 @@ class StartWorkflowDeleteProjectRequest$Type extends MessageType<StartWorkflowDe
super("api.StartWorkflowDeleteProjectRequest", [
{ 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: 3, name: "UserId", kind: "scalar", localName: "UserId", jsonName: "UserId", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } }
{ no: 3, name: "UserId", kind: "scalar", localName: "UserId", jsonName: "UserId", T: 9 /*ScalarType.STRING*/, options: { "validate.rules": { string: { minLen: "1" } } } },
{ no: 4, name: "ProjectType", kind: "enum", localName: "ProjectType", jsonName: "ProjectType", T: () => ["api.ProjectType", ProjectType] }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["OrganisationId", "ProjectId", "UserId"] } } });
}
create(value?: PartialMessage<StartWorkflowDeleteProjectRequest>): StartWorkflowDeleteProjectRequest {
@@ -1160,6 +1165,7 @@ class StartWorkflowDeleteProjectRequest$Type extends MessageType<StartWorkflowDe
message.OrganisationId = "";
message.ProjectId = "";
message.UserId = "";
message.ProjectType = 0;
if (value !== undefined)
reflectionMergePartial<StartWorkflowDeleteProjectRequest>(this, message, value);
return message;
@@ -1178,6 +1184,9 @@ class StartWorkflowDeleteProjectRequest$Type extends MessageType<StartWorkflowDe
case /* string UserId */ 3:
message.UserId = reader.string();
break;
case /* api.ProjectType ProjectType */ 4:
message.ProjectType = reader.int32();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -1199,6 +1208,9 @@ class StartWorkflowDeleteProjectRequest$Type extends MessageType<StartWorkflowDe
/* string UserId = 3; */
if (message.UserId !== "")
writer.tag(3, WireType.LengthDelimited).string(message.UserId);
/* api.ProjectType ProjectType = 4; */
if (message.ProjectType !== 0)
writer.tag(4, WireType.Varint).int32(message.ProjectType);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);