Latest generation

This commit is contained in:
ci core model
2025-04-08 12:56:21 +00:00
parent 6435dee98c
commit 81592b09fe
3 changed files with 16 additions and 3 deletions

View File

@@ -478,7 +478,7 @@ export const HandlingunitByMatchResult = new HandlingunitByMatchResult$Type();
* @generated ServiceType for protobuf service api.HandlingunitQuery * @generated ServiceType for protobuf service api.HandlingunitQuery
*/ */
export const HandlingunitQuery = new ServiceType("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: "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: "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 }, { 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 },

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "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", "description": "npm libs from core model proto files",
"homepage": "", "homepage": "",
"main": "index.ts", "main": "index.ts",

View File

@@ -792,6 +792,10 @@ export interface StartWorkflowAnonymizeDataResult {
* @generated from protobuf message api.StartWorkflowUpgradeModelRequest * @generated from protobuf message api.StartWorkflowUpgradeModelRequest
*/ */
export interface StartWorkflowUpgradeModelRequest { export interface StartWorkflowUpgradeModelRequest {
/**
* @generated from protobuf field: string ProjectID = 1 [json_name = "ProjectID"];
*/
projectID: string;
} }
/** /**
* @generated from protobuf message api.StartWorkflowUpgradeModelResult * @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 // @generated message type with reflection information, may provide speed optimized methods
class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpgradeModelRequest> { class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpgradeModelRequest> {
constructor() { 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 { create(value?: PartialMessage<StartWorkflowUpgradeModelRequest>): StartWorkflowUpgradeModelRequest {
const message = globalThis.Object.create((this.messagePrototype!)); const message = globalThis.Object.create((this.messagePrototype!));
message.projectID = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<StartWorkflowUpgradeModelRequest>(this, message, value); reflectionMergePartial<StartWorkflowUpgradeModelRequest>(this, message, value);
return message; return message;
@@ -3990,6 +3997,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
while (reader.pos < end) { while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag(); let [fieldNo, wireType] = reader.tag();
switch (fieldNo) { switch (fieldNo) {
case /* string ProjectID = 1 [json_name = "ProjectID"];*/ 1:
message.projectID = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -4002,6 +4012,9 @@ class StartWorkflowUpgradeModelRequest$Type extends MessageType<StartWorkflowUpg
return message; return message;
} }
internalBinaryWrite(message: StartWorkflowUpgradeModelRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter { 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; let u = options.writeUnknownFields;
if (u !== false) if (u !== false)
(u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer); (u == true ? UnknownFieldHandler.onWrite : u)(this.typeName, message, writer);