Latest generation

This commit is contained in:
ci core model
2025-05-26 12:14:28 +00:00
parent 65247e7fe4
commit cc9c6d0b4c
197 changed files with 15132 additions and 15052 deletions

View File

@@ -1,4 +1,4 @@
// @generated by protobuf-ts 2.10.0 with parameter use_proto_field_name
// @generated by protobuf-ts 2.11.0 with parameter use_proto_field_name
// @generated from protobuf file "executionflowQuery.proto" (package "api", syntax proto3)
// tslint:disable
import { CountLinesResult } from "./shared";
@@ -28,11 +28,11 @@ import { QueryProjectHeader } from "./shared";
*/
export interface ExecutionflowByIdQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1 [json_name = "Header"];
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* @generated from protobuf field: repeated api.EntityID IDs = 2 [json_name = "IDs"];
* @generated from protobuf field: repeated api.EntityID IDs = 2
*/
IDs: EntityID[];
}
@@ -41,11 +41,11 @@ export interface ExecutionflowByIdQuery {
*/
export interface ExecutionflowByIdResult {
/**
* @generated from protobuf field: api.ResultHeader Header = 1 [json_name = "Header"];
* @generated from protobuf field: api.ResultHeader Header = 1
*/
Header?: ResultHeader;
/**
* @generated from protobuf field: repeated api.Executionflow Objects = 2 [json_name = "Objects"];
* @generated from protobuf field: repeated api.Executionflow Objects = 2
*/
Objects: Executionflow[];
}
@@ -54,23 +54,23 @@ export interface ExecutionflowByIdResult {
*/
export interface ExecutionflowByFilterQuery {
/**
* @generated from protobuf field: api.QueryProjectHeader Header = 1 [json_name = "Header"];
* @generated from protobuf field: api.QueryProjectHeader Header = 1
*/
Header?: QueryProjectHeader;
/**
* Number of maximum result
*
* @generated from protobuf field: string limitFilter = 4;
* @generated from protobuf field: string limitFilter = 4
*/
limitFilter: string;
/**
* @generated from protobuf field: string queryContext = 5;
* @generated from protobuf field: string queryContext = 5
*/
queryContext: string;
/**
* list of blockFilters structure for Find query, each element (BlockFilter) in the list is an "OR" part of the query, if not empty, simpleFilters (deprecated) & rangeFilters (deprecated) will be ignored
*
* @generated from protobuf field: repeated api.BlockFilter BlockFilters = 6 [json_name = "BlockFilters"];
* @generated from protobuf field: repeated api.BlockFilter BlockFilters = 6
*/
BlockFilters: BlockFilter[];
}
@@ -79,15 +79,15 @@ export interface ExecutionflowByFilterQuery {
*/
export interface ExecutionflowByFilterResult {
/**
* @generated from protobuf field: api.ResultHeader Header = 1 [json_name = "Header"];
* @generated from protobuf field: api.ResultHeader Header = 1
*/
Header?: ResultHeader;
/**
* @generated from protobuf field: repeated api.Executionflow Objects = 2 [json_name = "Objects"];
* @generated from protobuf field: repeated api.Executionflow Objects = 2
*/
Objects: Executionflow[];
/**
* @generated from protobuf field: string queryContext = 3;
* @generated from protobuf field: string queryContext = 3
*/
queryContext: string;
}
@@ -111,10 +111,10 @@ class ExecutionflowByIdQuery$Type extends MessageType<ExecutionflowByIdQuery> {
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header = 1 [json_name = "Header"];*/ 1:
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.EntityID IDs = 2 [json_name = "IDs"];*/ 2:
case /* repeated api.EntityID IDs */ 2:
message.IDs.push(EntityID.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
@@ -129,10 +129,10 @@ class ExecutionflowByIdQuery$Type extends MessageType<ExecutionflowByIdQuery> {
return message;
}
internalBinaryWrite(message: ExecutionflowByIdQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1 [json_name = "Header"]; */
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.EntityID IDs = 2 [json_name = "IDs"]; */
/* repeated api.EntityID IDs = 2; */
for (let i = 0; i < message.IDs.length; i++)
EntityID.internalBinaryWrite(message.IDs[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
@@ -165,10 +165,10 @@ class ExecutionflowByIdResult$Type extends MessageType<ExecutionflowByIdResult>
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.ResultHeader Header = 1 [json_name = "Header"];*/ 1:
case /* api.ResultHeader Header */ 1:
message.Header = ResultHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.Executionflow Objects = 2 [json_name = "Objects"];*/ 2:
case /* repeated api.Executionflow Objects */ 2:
message.Objects.push(Executionflow.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
@@ -183,10 +183,10 @@ class ExecutionflowByIdResult$Type extends MessageType<ExecutionflowByIdResult>
return message;
}
internalBinaryWrite(message: ExecutionflowByIdResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResultHeader Header = 1 [json_name = "Header"]; */
/* api.ResultHeader Header = 1; */
if (message.Header)
ResultHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Executionflow Objects = 2 [json_name = "Objects"]; */
/* repeated api.Executionflow Objects = 2; */
for (let i = 0; i < message.Objects.length; i++)
Executionflow.internalBinaryWrite(message.Objects[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
@@ -223,7 +223,7 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.QueryProjectHeader Header = 1 [json_name = "Header"];*/ 1:
case /* api.QueryProjectHeader Header */ 1:
message.Header = QueryProjectHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* string limitFilter */ 4:
@@ -232,7 +232,7 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
case /* string queryContext */ 5:
message.queryContext = reader.string();
break;
case /* repeated api.BlockFilter BlockFilters = 6 [json_name = "BlockFilters"];*/ 6:
case /* repeated api.BlockFilter BlockFilters */ 6:
message.BlockFilters.push(BlockFilter.internalBinaryRead(reader, reader.uint32(), options));
break;
default:
@@ -247,7 +247,7 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
return message;
}
internalBinaryWrite(message: ExecutionflowByFilterQuery, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.QueryProjectHeader Header = 1 [json_name = "Header"]; */
/* api.QueryProjectHeader Header = 1; */
if (message.Header)
QueryProjectHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* string limitFilter = 4; */
@@ -256,7 +256,7 @@ class ExecutionflowByFilterQuery$Type extends MessageType<ExecutionflowByFilterQ
/* string queryContext = 5; */
if (message.queryContext !== "")
writer.tag(5, WireType.LengthDelimited).string(message.queryContext);
/* repeated api.BlockFilter BlockFilters = 6 [json_name = "BlockFilters"]; */
/* repeated api.BlockFilter BlockFilters = 6; */
for (let i = 0; i < message.BlockFilters.length; i++)
BlockFilter.internalBinaryWrite(message.BlockFilters[i], writer.tag(6, WireType.LengthDelimited).fork(), options).join();
let u = options.writeUnknownFields;
@@ -291,10 +291,10 @@ class ExecutionflowByFilterResult$Type extends MessageType<ExecutionflowByFilter
while (reader.pos < end) {
let [fieldNo, wireType] = reader.tag();
switch (fieldNo) {
case /* api.ResultHeader Header = 1 [json_name = "Header"];*/ 1:
case /* api.ResultHeader Header */ 1:
message.Header = ResultHeader.internalBinaryRead(reader, reader.uint32(), options, message.Header);
break;
case /* repeated api.Executionflow Objects = 2 [json_name = "Objects"];*/ 2:
case /* repeated api.Executionflow Objects */ 2:
message.Objects.push(Executionflow.internalBinaryRead(reader, reader.uint32(), options));
break;
case /* string queryContext */ 3:
@@ -312,10 +312,10 @@ class ExecutionflowByFilterResult$Type extends MessageType<ExecutionflowByFilter
return message;
}
internalBinaryWrite(message: ExecutionflowByFilterResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter {
/* api.ResultHeader Header = 1 [json_name = "Header"]; */
/* api.ResultHeader Header = 1; */
if (message.Header)
ResultHeader.internalBinaryWrite(message.Header, writer.tag(1, WireType.LengthDelimited).fork(), options).join();
/* repeated api.Executionflow Objects = 2 [json_name = "Objects"]; */
/* repeated api.Executionflow Objects = 2; */
for (let i = 0; i < message.Objects.length; i++)
Executionflow.internalBinaryWrite(message.Objects[i], writer.tag(2, WireType.LengthDelimited).fork(), options).join();
/* string queryContext = 3; */