Latest generation

This commit is contained in:
ci core model
2025-09-25 14:34:25 +00:00
parent cc4b60c5e7
commit d20afe10f1
11 changed files with 261 additions and 11 deletions

View File

@@ -19,6 +19,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Actor } from "./actor"; import { Actor } from "./actor";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -85,6 +86,14 @@ export interface ActorByFilterQuery {
* @generated from protobuf field: api.ActorQueryOptions Options = 7 * @generated from protobuf field: api.ActorQueryOptions Options = 7
*/ */
Options?: ActorQueryOptions; Options?: ActorQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.ActorByFilterResult * @generated from protobuf message api.ActorByFilterResult
@@ -261,7 +270,9 @@ class ActorByFilterQuery$Type extends MessageType<ActorByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ActorQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ActorQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<ActorByFilterQuery>): ActorByFilterQuery { create(value?: PartialMessage<ActorByFilterQuery>): ActorByFilterQuery {
@@ -269,6 +280,8 @@ class ActorByFilterQuery$Type extends MessageType<ActorByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<ActorByFilterQuery>(this, message, value); reflectionMergePartial<ActorByFilterQuery>(this, message, value);
return message; return message;
@@ -293,6 +306,12 @@ class ActorByFilterQuery$Type extends MessageType<ActorByFilterQuery> {
case /* api.ActorQueryOptions Options */ 7: case /* api.ActorQueryOptions Options */ 7:
message.Options = ActorQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = ActorQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -320,6 +339,12 @@ class ActorByFilterQuery$Type extends MessageType<ActorByFilterQuery> {
/* api.ActorQueryOptions Options = 7; */ /* api.ActorQueryOptions Options = 7; */
if (message.Options) if (message.Options)
ActorQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); ActorQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -21,6 +21,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Appointment } from "./appointment"; import { Appointment } from "./appointment";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -87,6 +88,14 @@ export interface AppointmentByFilterQuery {
* @generated from protobuf field: api.AppointmentQueryOptions Options = 7 * @generated from protobuf field: api.AppointmentQueryOptions Options = 7
*/ */
Options?: AppointmentQueryOptions; Options?: AppointmentQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.AppointmentByFilterResult * @generated from protobuf message api.AppointmentByFilterResult
@@ -263,7 +272,9 @@ class AppointmentByFilterQuery$Type extends MessageType<AppointmentByFilterQuery
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => AppointmentQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => AppointmentQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<AppointmentByFilterQuery>): AppointmentByFilterQuery { create(value?: PartialMessage<AppointmentByFilterQuery>): AppointmentByFilterQuery {
@@ -271,6 +282,8 @@ class AppointmentByFilterQuery$Type extends MessageType<AppointmentByFilterQuery
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<AppointmentByFilterQuery>(this, message, value); reflectionMergePartial<AppointmentByFilterQuery>(this, message, value);
return message; return message;
@@ -295,6 +308,12 @@ class AppointmentByFilterQuery$Type extends MessageType<AppointmentByFilterQuery
case /* api.AppointmentQueryOptions Options */ 7: case /* api.AppointmentQueryOptions Options */ 7:
message.Options = AppointmentQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = AppointmentQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -322,6 +341,12 @@ class AppointmentByFilterQuery$Type extends MessageType<AppointmentByFilterQuery
/* api.AppointmentQueryOptions Options = 7; */ /* api.AppointmentQueryOptions Options = 7; */
if (message.Options) if (message.Options)
AppointmentQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); AppointmentQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -23,6 +23,7 @@ import { User } from "./user";
import { RequestProjectHeader } from "./shared"; import { RequestProjectHeader } from "./shared";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Claim } from "./claim"; import { Claim } from "./claim";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -89,6 +90,14 @@ export interface ClaimByFilterQuery {
* @generated from protobuf field: api.ClaimQueryOptions Options = 7 * @generated from protobuf field: api.ClaimQueryOptions Options = 7
*/ */
Options?: ClaimQueryOptions; Options?: ClaimQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.ClaimByFilterResult * @generated from protobuf message api.ClaimByFilterResult
@@ -313,7 +322,9 @@ class ClaimByFilterQuery$Type extends MessageType<ClaimByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ClaimQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ClaimQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<ClaimByFilterQuery>): ClaimByFilterQuery { create(value?: PartialMessage<ClaimByFilterQuery>): ClaimByFilterQuery {
@@ -321,6 +332,8 @@ class ClaimByFilterQuery$Type extends MessageType<ClaimByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<ClaimByFilterQuery>(this, message, value); reflectionMergePartial<ClaimByFilterQuery>(this, message, value);
return message; return message;
@@ -345,6 +358,12 @@ class ClaimByFilterQuery$Type extends MessageType<ClaimByFilterQuery> {
case /* api.ClaimQueryOptions Options */ 7: case /* api.ClaimQueryOptions Options */ 7:
message.Options = ClaimQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = ClaimQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -372,6 +391,12 @@ class ClaimByFilterQuery$Type extends MessageType<ClaimByFilterQuery> {
/* api.ClaimQueryOptions Options = 7; */ /* api.ClaimQueryOptions Options = 7; */
if (message.Options) if (message.Options)
ClaimQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); ClaimQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -15,6 +15,7 @@ import { UnknownFieldHandler } from "@protobuf-ts/runtime";
import type { PartialMessage } from "@protobuf-ts/runtime"; import type { PartialMessage } from "@protobuf-ts/runtime";
import { reflectionMergePartial } from "@protobuf-ts/runtime"; import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Executionflow } from "./executionflow"; import { Executionflow } from "./executionflow";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -81,6 +82,14 @@ export interface ExecutionflowByFilterQuery {
* @generated from protobuf field: api.ExecutionflowQueryOptions Options = 7 * @generated from protobuf field: api.ExecutionflowQueryOptions Options = 7
*/ */
Options?: ExecutionflowQueryOptions; Options?: ExecutionflowQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.ExecutionflowByFilterResult * @generated from protobuf message api.ExecutionflowByFilterResult
@@ -231,7 +240,9 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ExecutionflowQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ExecutionflowQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<ExecutionflowByFilterQuery>): ExecutionflowByFilterQuery { create(value?: PartialMessage<ExecutionflowByFilterQuery>): ExecutionflowByFilterQuery {
@@ -239,6 +250,8 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<ExecutionflowByFilterQuery>(this, message, value); reflectionMergePartial<ExecutionflowByFilterQuery>(this, message, value);
return message; return message;
@@ -263,6 +276,12 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
case /* api.ExecutionflowQueryOptions Options */ 7: case /* api.ExecutionflowQueryOptions Options */ 7:
message.Options = ExecutionflowQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = ExecutionflowQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -290,6 +309,12 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
/* api.ExecutionflowQueryOptions Options = 7; */ /* api.ExecutionflowQueryOptions Options = 7; */
if (message.Options) if (message.Options)
ExecutionflowQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); ExecutionflowQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -21,6 +21,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Handlingunit } from "./handlingunit"; import { Handlingunit } from "./handlingunit";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -85,6 +86,14 @@ export interface HandlingunitByFilterQuery {
* @generated from protobuf field: api.HandlingunitQueryOptions Options = 8 * @generated from protobuf field: api.HandlingunitQueryOptions Options = 8
*/ */
Options?: HandlingunitQueryOptions; Options?: HandlingunitQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 9
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 10
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.HandlingunitByFilterResult * @generated from protobuf message api.HandlingunitByFilterResult
@@ -261,7 +270,9 @@ class HandlingunitByFilterQuery$Type extends MessageType<HandlingunitByFilterQue
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => HandlingunitQueryOptions } { no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => HandlingunitQueryOptions },
{ no: 9, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 10, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
]); ]);
} }
create(value?: PartialMessage<HandlingunitByFilterQuery>): HandlingunitByFilterQuery { create(value?: PartialMessage<HandlingunitByFilterQuery>): HandlingunitByFilterQuery {
@@ -269,6 +280,8 @@ class HandlingunitByFilterQuery$Type extends MessageType<HandlingunitByFilterQue
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<HandlingunitByFilterQuery>(this, message, value); reflectionMergePartial<HandlingunitByFilterQuery>(this, message, value);
return message; return message;
@@ -293,6 +306,12 @@ class HandlingunitByFilterQuery$Type extends MessageType<HandlingunitByFilterQue
case /* api.HandlingunitQueryOptions Options */ 8: case /* api.HandlingunitQueryOptions Options */ 8:
message.Options = HandlingunitQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = HandlingunitQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 9:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 10:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -320,6 +339,12 @@ class HandlingunitByFilterQuery$Type extends MessageType<HandlingunitByFilterQue
/* api.HandlingunitQueryOptions Options = 8; */ /* api.HandlingunitQueryOptions Options = 8; */
if (message.Options) if (message.Options)
HandlingunitQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join(); HandlingunitQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 9; */
if (message.UsageContextEntity !== 0)
writer.tag(9, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 10; */
if (message.UsageContextPath !== "")
writer.tag(10, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -20,6 +20,7 @@ import { MessageType } from "@protobuf-ts/runtime";
import { LVDetailedQuantity } from "./repositoryShared"; import { LVDetailedQuantity } from "./repositoryShared";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Item } from "./item"; import { Item } from "./item";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -88,6 +89,14 @@ export interface ItemByFilterQuery {
* @generated from protobuf field: api.ItemQueryOptions Options = 7 * @generated from protobuf field: api.ItemQueryOptions Options = 7
*/ */
Options?: ItemQueryOptions; Options?: ItemQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.ItemByFilterResult * @generated from protobuf message api.ItemByFilterResult
@@ -298,7 +307,9 @@ class ItemByFilterQuery$Type extends MessageType<ItemByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ItemQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => ItemQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<ItemByFilterQuery>): ItemByFilterQuery { create(value?: PartialMessage<ItemByFilterQuery>): ItemByFilterQuery {
@@ -306,6 +317,8 @@ class ItemByFilterQuery$Type extends MessageType<ItemByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<ItemByFilterQuery>(this, message, value); reflectionMergePartial<ItemByFilterQuery>(this, message, value);
return message; return message;
@@ -330,6 +343,12 @@ class ItemByFilterQuery$Type extends MessageType<ItemByFilterQuery> {
case /* api.ItemQueryOptions Options */ 7: case /* api.ItemQueryOptions Options */ 7:
message.Options = ItemQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = ItemQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -357,6 +376,12 @@ class ItemByFilterQuery$Type extends MessageType<ItemByFilterQuery> {
/* api.ItemQueryOptions Options = 7; */ /* api.ItemQueryOptions Options = 7; */
if (message.Options) if (message.Options)
ItemQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); ItemQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -21,6 +21,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Movement } from "./movement"; import { Movement } from "./movement";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -87,6 +88,14 @@ export interface MovementByFilterQuery {
* @generated from protobuf field: api.MovementQueryOptions Options = 8 * @generated from protobuf field: api.MovementQueryOptions Options = 8
*/ */
Options?: MovementQueryOptions; Options?: MovementQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 9
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 10
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.MovementByFilterResult * @generated from protobuf message api.MovementByFilterResult
@@ -293,7 +302,9 @@ class MovementByFilterQuery$Type extends MessageType<MovementByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => MovementQueryOptions } { no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => MovementQueryOptions },
{ no: 9, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 10, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<MovementByFilterQuery>): MovementByFilterQuery { create(value?: PartialMessage<MovementByFilterQuery>): MovementByFilterQuery {
@@ -301,6 +312,8 @@ class MovementByFilterQuery$Type extends MessageType<MovementByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<MovementByFilterQuery>(this, message, value); reflectionMergePartial<MovementByFilterQuery>(this, message, value);
return message; return message;
@@ -325,6 +338,12 @@ class MovementByFilterQuery$Type extends MessageType<MovementByFilterQuery> {
case /* api.MovementQueryOptions Options */ 8: case /* api.MovementQueryOptions Options */ 8:
message.Options = MovementQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = MovementQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 9:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 10:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -352,6 +371,12 @@ class MovementByFilterQuery$Type extends MessageType<MovementByFilterQuery> {
/* api.MovementQueryOptions Options = 8; */ /* api.MovementQueryOptions Options = 8; */
if (message.Options) if (message.Options)
MovementQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join(); MovementQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 9; */
if (message.UsageContextEntity !== 0)
writer.tag(9, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 10; */
if (message.UsageContextPath !== "")
writer.tag(10, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -19,6 +19,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Order } from "./order"; import { Order } from "./order";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -85,6 +86,14 @@ export interface OrderByFilterQuery {
* @generated from protobuf field: api.OrderQueryOptions Options = 7 * @generated from protobuf field: api.OrderQueryOptions Options = 7
*/ */
Options?: OrderQueryOptions; Options?: OrderQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.OrderByFilterResult * @generated from protobuf message api.OrderByFilterResult
@@ -265,7 +274,9 @@ class OrderByFilterQuery$Type extends MessageType<OrderByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => OrderQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => OrderQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<OrderByFilterQuery>): OrderByFilterQuery { create(value?: PartialMessage<OrderByFilterQuery>): OrderByFilterQuery {
@@ -273,6 +284,8 @@ class OrderByFilterQuery$Type extends MessageType<OrderByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<OrderByFilterQuery>(this, message, value); reflectionMergePartial<OrderByFilterQuery>(this, message, value);
return message; return message;
@@ -297,6 +310,12 @@ class OrderByFilterQuery$Type extends MessageType<OrderByFilterQuery> {
case /* api.OrderQueryOptions Options */ 7: case /* api.OrderQueryOptions Options */ 7:
message.Options = OrderQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = OrderQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -324,6 +343,12 @@ class OrderByFilterQuery$Type extends MessageType<OrderByFilterQuery> {
/* api.OrderQueryOptions Options = 7; */ /* api.OrderQueryOptions Options = 7; */
if (message.Options) if (message.Options)
OrderQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); OrderQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -1,6 +1,6 @@
{ {
"name": "@reflex-platform/npm-core-sdk", "name": "@reflex-platform/npm-core-sdk",
"version": "1.12.0-SNAPSHOT-250925081441", "version": "1.12.0-SNAPSHOT-250925143341",
"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

@@ -19,6 +19,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Partner } from "./partner"; import { Partner } from "./partner";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -85,6 +86,14 @@ export interface PartnerByFilterQuery {
* @generated from protobuf field: api.PartnerQueryOptions Options = 7 * @generated from protobuf field: api.PartnerQueryOptions Options = 7
*/ */
Options?: PartnerQueryOptions; Options?: PartnerQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 8
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 9
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.PartnerByFilterResult * @generated from protobuf message api.PartnerByFilterResult
@@ -261,7 +270,9 @@ class PartnerByFilterQuery$Type extends MessageType<PartnerByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 6, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => PartnerQueryOptions } { no: 7, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => PartnerQueryOptions },
{ no: 8, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 9, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<PartnerByFilterQuery>): PartnerByFilterQuery { create(value?: PartialMessage<PartnerByFilterQuery>): PartnerByFilterQuery {
@@ -269,6 +280,8 @@ class PartnerByFilterQuery$Type extends MessageType<PartnerByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<PartnerByFilterQuery>(this, message, value); reflectionMergePartial<PartnerByFilterQuery>(this, message, value);
return message; return message;
@@ -293,6 +306,12 @@ class PartnerByFilterQuery$Type extends MessageType<PartnerByFilterQuery> {
case /* api.PartnerQueryOptions Options */ 7: case /* api.PartnerQueryOptions Options */ 7:
message.Options = PartnerQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = PartnerQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 8:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 9:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -320,6 +339,12 @@ class PartnerByFilterQuery$Type extends MessageType<PartnerByFilterQuery> {
/* api.PartnerQueryOptions Options = 7; */ /* api.PartnerQueryOptions Options = 7; */
if (message.Options) if (message.Options)
PartnerQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join(); PartnerQueryOptions.internalBinaryWrite(message.Options, writer.tag(7, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 8; */
if (message.UsageContextEntity !== 0)
writer.tag(8, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 9; */
if (message.UsageContextPath !== "")
writer.tag(9, WireType.LengthDelimited).string(message.UsageContextPath);
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);

View File

@@ -24,6 +24,7 @@ import { reflectionMergePartial } from "@protobuf-ts/runtime";
import { MessageType } from "@protobuf-ts/runtime"; import { MessageType } from "@protobuf-ts/runtime";
import { MatchFieldResult } from "./shared"; import { MatchFieldResult } from "./shared";
import { MatchField } from "./shared"; import { MatchField } from "./shared";
import { EntityType } from "./shared";
import { BlockFilter } from "./shared"; import { BlockFilter } from "./shared";
import { Stock } from "./stock"; import { Stock } from "./stock";
import { ResultHeader } from "./shared"; import { ResultHeader } from "./shared";
@@ -90,6 +91,14 @@ export interface StockByFilterQuery {
* @generated from protobuf field: api.StockQueryOptions Options = 8 * @generated from protobuf field: api.StockQueryOptions Options = 8
*/ */
Options?: StockQueryOptions; Options?: StockQueryOptions;
/**
* @generated from protobuf field: api.EntityType UsageContextEntity = 9
*/
UsageContextEntity: EntityType;
/**
* @generated from protobuf field: string UsageContextPath = 10
*/
UsageContextPath: string;
} }
/** /**
* @generated from protobuf message api.StockByFilterResult * @generated from protobuf message api.StockByFilterResult
@@ -270,7 +279,9 @@ class StockByFilterQuery$Type extends MessageType<StockByFilterQuery> {
{ no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } }, { no: 4, name: "limitFilter", kind: "scalar", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Number of maximum result", example: "\"500\"" } } },
{ no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ }, { no: 5, name: "queryContext", kind: "scalar", T: 9 /*ScalarType.STRING*/ },
{ no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter }, { no: 7, name: "BlockFilters", kind: "message", localName: "BlockFilters", jsonName: "BlockFilters", repeat: 2 /*RepeatType.UNPACKED*/, T: () => BlockFilter },
{ no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => StockQueryOptions } { no: 8, name: "Options", kind: "message", localName: "Options", jsonName: "Options", T: () => StockQueryOptions },
{ no: 9, name: "UsageContextEntity", kind: "enum", localName: "UsageContextEntity", jsonName: "UsageContextEntity", T: () => ["api.EntityType", EntityType], options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Entity to apply the restriction rules (on the path defined with UsageContextPath", example: "For Actor, to limit the results according to Order ShipFrom restriction rules, define UsageContextEntity to Order and UsageContextPath to Payload.ShipFrom" } } },
{ no: 10, name: "UsageContextPath", kind: "scalar", localName: "UsageContextPath", jsonName: "UsageContextPath", T: 9 /*ScalarType.STRING*/, options: { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_field": { description: "Optional : Path of restriction rule to apply (UsageContextEntity should be defined)" } } }
], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } }); ], { "grpc.gateway.protoc_gen_openapiv2.options.openapiv2_schema": { jsonSchema: { required: ["Header"] } } });
} }
create(value?: PartialMessage<StockByFilterQuery>): StockByFilterQuery { create(value?: PartialMessage<StockByFilterQuery>): StockByFilterQuery {
@@ -278,6 +289,8 @@ class StockByFilterQuery$Type extends MessageType<StockByFilterQuery> {
message.limitFilter = ""; message.limitFilter = "";
message.queryContext = ""; message.queryContext = "";
message.BlockFilters = []; message.BlockFilters = [];
message.UsageContextEntity = 0;
message.UsageContextPath = "";
if (value !== undefined) if (value !== undefined)
reflectionMergePartial<StockByFilterQuery>(this, message, value); reflectionMergePartial<StockByFilterQuery>(this, message, value);
return message; return message;
@@ -302,6 +315,12 @@ class StockByFilterQuery$Type extends MessageType<StockByFilterQuery> {
case /* api.StockQueryOptions Options */ 8: case /* api.StockQueryOptions Options */ 8:
message.Options = StockQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options); message.Options = StockQueryOptions.internalBinaryRead(reader, reader.uint32(), options, message.Options);
break; break;
case /* api.EntityType UsageContextEntity */ 9:
message.UsageContextEntity = reader.int32();
break;
case /* string UsageContextPath */ 10:
message.UsageContextPath = reader.string();
break;
default: default:
let u = options.readUnknownField; let u = options.readUnknownField;
if (u === "throw") if (u === "throw")
@@ -329,6 +348,12 @@ class StockByFilterQuery$Type extends MessageType<StockByFilterQuery> {
/* api.StockQueryOptions Options = 8; */ /* api.StockQueryOptions Options = 8; */
if (message.Options) if (message.Options)
StockQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join(); StockQueryOptions.internalBinaryWrite(message.Options, writer.tag(8, WireType.LengthDelimited).fork(), options).join();
/* api.EntityType UsageContextEntity = 9; */
if (message.UsageContextEntity !== 0)
writer.tag(9, WireType.Varint).int32(message.UsageContextEntity);
/* string UsageContextPath = 10; */
if (message.UsageContextPath !== "")
writer.tag(10, WireType.LengthDelimited).string(message.UsageContextPath);
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);