You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.13.0-SNAPSHOT-260213150755",
|
||||
"version": "1.13.0-SNAPSHOT-260216145134",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
14
workflow.ts
14
workflow.ts
@@ -821,6 +821,10 @@ export interface StartWorkflowUpgradeModelRequest {
|
||||
* @generated from protobuf field: api.ModelDataSetEnum Entity = 3
|
||||
*/
|
||||
Entity: ModelDataSetEnum;
|
||||
/**
|
||||
* @generated from protobuf field: bool ClearEntityData = 4
|
||||
*/
|
||||
ClearEntityData: boolean;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.StartWorkflowUpgradeModelResult
|
||||
@@ -4113,7 +4117,8 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
super("api.StartWorkflowUpgradeModelRequest", [
|
||||
{ no: 1, name: "OrganisationID", kind: "scalar", localName: "OrganisationID", jsonName: "OrganisationID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 2, name: "ProjectID", kind: "scalar", localName: "ProjectID", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ },
|
||||
{ no: 3, name: "Entity", kind: "enum", localName: "Entity", jsonName: "Entity", T: () => ["api.ModelDataSetEnum", ModelDataSetEnum] }
|
||||
{ no: 3, name: "Entity", kind: "enum", localName: "Entity", jsonName: "Entity", T: () => ["api.ModelDataSetEnum", ModelDataSetEnum] },
|
||||
{ no: 4, name: "ClearEntityData", kind: "scalar", localName: "ClearEntityData", jsonName: "ClearEntityData", T: 8 /*ScalarType.BOOL*/ }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
|
||||
}
|
||||
create(value?: PartialMessage<StartWorkflowUpgradeModelRequest>): StartWorkflowUpgradeModelRequest {
|
||||
@@ -4121,6 +4126,7 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
message.OrganisationID = "";
|
||||
message.ProjectID = "";
|
||||
message.Entity = 0;
|
||||
message.ClearEntityData = false;
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<StartWorkflowUpgradeModelRequest>(this, message, value);
|
||||
return message;
|
||||
@@ -4139,6 +4145,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
case /* api.ModelDataSetEnum Entity */ 3:
|
||||
message.Entity = reader.int32();
|
||||
break;
|
||||
case /* bool ClearEntityData */ 4:
|
||||
message.ClearEntityData = reader.bool();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -4160,6 +4169,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
/* api.ModelDataSetEnum Entity = 3; */
|
||||
if (message.Entity !== 0)
|
||||
writer.tag(3, WireType.Varint).int32(message.Entity);
|
||||
/* bool ClearEntityData = 4; */
|
||||
if (message.ClearEntityData !== false)
|
||||
writer.tag(4, WireType.Varint).bool(message.ClearEntityData);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user