Latest generation

This commit is contained in:
ci core model
2025-05-13 08:39:16 +00:00
parent c48b05732a
commit bbc872d663
2 changed files with 14 additions and 2 deletions

View File

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

View File

@@ -796,6 +796,10 @@ export interface StartWorkflowUpgradeModelRequest {
* @generated from protobuf field: string ProjectID = 1 [json_name = "ProjectID"];
*/
ProjectID: string;
/**
* @generated from protobuf field: api.EntityType Entity = 2 [json_name = "Entity"];
*/
Entity: EntityType;
}
/**
* @generated from protobuf message api.StartWorkflowUpgradeModelResult
@@ -4000,12 +4004,14 @@ export const StartWorkflowAnonymizeDataResult = new StartWorkflowAnonymizeDataRe
class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpgradeModelRequest> {
constructor() {
super("api.StartWorkflowUpgradeModelRequest", [
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ }
{ no: 1, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ },
{ no: 2, name: "Entity", kind: "enum", localName: "Entity", jsonName: "Entity", T: () => ["api.EntityType", EntityType, "ENTITY_TYPE_"] }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
}
create(value?: PartialMessage<StartWorkflowUpgradeModelRequest>): StartWorkflowUpgradeModelRequest {
const message = globalThis.Object.create((this.messagePrototype!));
message.ProjectID = "";
message.Entity = 0;
if (value !== undefined)
reflectionMergePartial<StartWorkflowUpgradeModelRequest>(this, message, value);
return message;
@@ -4018,6 +4024,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
case /* string ProjectID = 1 [json_name = "ProjectID"];*/ 1:
message.ProjectID = reader.string();
break;
case /* api.EntityType Entity = 2 [json_name = "Entity"];*/ 2:
message.Entity = reader.int32();
break;
default:
let u = options.readUnknownField;
if (u === "throw")
@@ -4033,6 +4042,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
/* string ProjectID = 1 [json_name = "ProjectID"]; */
if (message.ProjectID !== "")
writer.tag(1, WireType.LengthDelimited).string(message.ProjectID);
/* api.EntityType Entity = 2 [json_name = "Entity"]; */
if (message.Entity !== 0)
writer.tag(2, WireType.Varint).int32(message.Entity);
let u = options.writeUnknownFields;
if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);