You've already forked npm-core-sdk
Latest generation
This commit is contained in:
@@ -478,7 +478,7 @@ export const HandlingunitByMatchResult = new HandlingunitByMatchResult$Type();
|
||||
* @generated ServiceType for protobuf service api.HandlingunitQuery
|
||||
*/
|
||||
export const HandlingunitQuery = new ServiceType("api.HandlingunitQuery", [
|
||||
{ name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Get HandlingUnits from Ids" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tableName": "handlingunitById", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByIdQuery, O: HandlingunitByIdResult },
|
||||
{ name: "GetByIds", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Get HandlingUnits from Ids" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "api.tableName": "handlingunitByIdv2", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByIdQuery, O: HandlingunitByIdResult },
|
||||
{ name: "Find", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Find Handlingunits using search criterias" }, "api.rscType": "Project", "api.roles": "Platform.Project-Query", "api.moduleID": "order-tracking", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByFilterQuery, O: HandlingunitByFilterResult },
|
||||
{ name: "FindTracked", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "Find Handlingunits with only tracking data using search criterias" }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByFilterQuery, O: HandlingunitByFilterResult },
|
||||
{ name: "FindMatchingFieldValues", options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_operation": { tags: ["HandlingUnit Query"], description: "using search criteria & a main field word, find the list of fields containing the searched word (used for auto completion purposes ...) " }, "api.rscType": "Project", "api.roles": "", "api.moduleID": "order-tracking", "google.api.method_visibility": { restriction: "PUBLIC" } }, I: HandlingunitByMatchQuery, O: HandlingunitByMatchResult },
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@reflex-platform/npm-core-sdk",
|
||||
"version": "1.11.0-SNAPSHOT-250404115819",
|
||||
"version": "1.11.0-SNAPSHOT-250408125601",
|
||||
"description": "npm libs from core model proto files",
|
||||
"homepage": "",
|
||||
"main": "index.ts",
|
||||
|
||||
15
workflow.ts
15
workflow.ts
@@ -792,6 +792,10 @@ export interface StartWorkflowAnonymizeDataResult {
|
||||
* @generated from protobuf message api.StartWorkflowUpgradeModelRequest
|
||||
*/
|
||||
export interface StartWorkflowUpgradeModelRequest {
|
||||
/**
|
||||
* @generated from protobuf field: string ProjectID = 1 [json_name = "ProjectID"];
|
||||
*/
|
||||
projectID: string;
|
||||
}
|
||||
/**
|
||||
* @generated from protobuf message api.StartWorkflowUpgradeModelResult
|
||||
@@ -3977,10 +3981,13 @@ export const StartWorkflowAnonymizeDataResult = new StartWorkflowAnonymizeDataRe
|
||||
// @generated message type with reflection information, may provide speed optimized methods
|
||||
class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpgradeModelRequest> {
|
||||
constructor() {
|
||||
super("api.StartWorkflowUpgradeModelRequest", [], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
|
||||
super("api.StartWorkflowUpgradeModelRequest", [
|
||||
{ no: 1, name: "ProjectID", kind: "scalar", jsonName: "ProjectID", T: 9 /*ScalarType.STRING*/ }
|
||||
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: {} } });
|
||||
}
|
||||
create(value?: PartialMessage<StartWorkflowUpgradeModelRequest>): StartWorkflowUpgradeModelRequest {
|
||||
const message = globalThis.Object.create((this.messagePrototype!));
|
||||
message.projectID = "";
|
||||
if (value !== undefined)
|
||||
reflectionMergePartial<StartWorkflowUpgradeModelRequest>(this, message, value);
|
||||
return message;
|
||||
@@ -3990,6 +3997,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
while (reader.pos < end) {
|
||||
let [fieldNo, wireType] = reader.tag();
|
||||
switch (fieldNo) {
|
||||
case /* string ProjectID = 1 [json_name = "ProjectID"];*/ 1:
|
||||
message.projectID = reader.string();
|
||||
break;
|
||||
default:
|
||||
let u = options.readUnknownField;
|
||||
if (u === "throw")
|
||||
@@ -4002,6 +4012,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
|
||||
return message;
|
||||
}
|
||||
internalBinaryWrite(message: StartWorkflowUpgradeModelRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
|
||||
/* string ProjectID = 1 [json_name = "ProjectID"]; */
|
||||
if (message.projectID !== "")
|
||||
writer.tag(1, WireType.LengthDelimited).string(message.projectID);
|
||||
let u = options.writeUnknownFields;
|
||||
if (u !== false)
|
||||
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);
|
||||
|
||||
Reference in New Issue
Block a user