@code0-tech/tucana 0.0.38 → 0.0.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -4
- package/pb/{aquila.action_pb.client.ts → aquila.action_pb.client.d.ts} +8 -13
- package/pb/aquila.action_pb.client.js +25 -0
- package/pb/aquila.action_pb.d.ts +254 -0
- package/pb/{aquila.action_pb.ts → aquila.action_pb.js} +49 -215
- package/pb/{aquila.data_type_pb.client.ts → aquila.data_type_pb.client.d.ts} +8 -13
- package/pb/aquila.data_type_pb.client.js +23 -0
- package/pb/aquila.data_type_pb.d.ts +61 -0
- package/pb/{aquila.data_type_pb.ts → aquila.data_type_pb.js} +16 -44
- package/pb/{aquila.execution_pb.client.ts → aquila.execution_pb.client.d.ts} +15 -24
- package/pb/aquila.execution_pb.client.js +49 -0
- package/pb/aquila.execution_pb.d.ts +135 -0
- package/pb/{aquila.execution_pb.ts → aquila.execution_pb.js} +34 -103
- package/pb/{aquila.flow_type_pb.client.ts → aquila.flow_type_pb.client.d.ts} +8 -13
- package/pb/aquila.flow_type_pb.client.js +25 -0
- package/pb/aquila.flow_type_pb.d.ts +61 -0
- package/pb/{aquila.flow_type_pb.ts → aquila.flow_type_pb.js} +16 -44
- package/pb/{aquila.runtime_function_pb.client.ts → aquila.runtime_function_pb.client.d.ts} +8 -13
- package/pb/aquila.runtime_function_pb.client.js +25 -0
- package/pb/aquila.runtime_function_pb.d.ts +61 -0
- package/pb/{aquila.runtime_function_pb.ts → aquila.runtime_function_pb.js} +16 -44
- package/pb/{sagittarius.action_pb.client.ts → sagittarius.action_pb.client.d.ts} +9 -17
- package/pb/sagittarius.action_pb.client.js +32 -0
- package/pb/sagittarius.action_pb.d.ts +95 -0
- package/pb/{sagittarius.action_pb.ts → sagittarius.action_pb.js} +28 -70
- package/pb/{sagittarius.data_type_pb.client.ts → sagittarius.data_type_pb.client.d.ts} +8 -13
- package/pb/sagittarius.data_type_pb.client.js +23 -0
- package/pb/sagittarius.data_type_pb.d.ts +61 -0
- package/pb/{sagittarius.data_type_pb.ts → sagittarius.data_type_pb.js} +16 -44
- package/pb/{sagittarius.flow_pb.client.ts → sagittarius.flow_pb.client.d.ts} +8 -13
- package/pb/sagittarius.flow_pb.client.js +23 -0
- package/pb/sagittarius.flow_pb.d.ts +80 -0
- package/pb/{sagittarius.flow_pb.ts → sagittarius.flow_pb.js} +18 -64
- package/pb/{sagittarius.flow_type_pb.client.ts → sagittarius.flow_type_pb.client.d.ts} +8 -13
- package/pb/sagittarius.flow_type_pb.client.js +25 -0
- package/pb/sagittarius.flow_type_pb.d.ts +61 -0
- package/pb/{sagittarius.flow_type_pb.ts → sagittarius.flow_type_pb.js} +16 -44
- package/pb/{sagittarius.ping_pb.client.ts → sagittarius.ping_pb.client.d.ts} +8 -13
- package/pb/sagittarius.ping_pb.client.js +23 -0
- package/pb/sagittarius.ping_pb.d.ts +33 -0
- package/pb/{sagittarius.ping_pb.ts → sagittarius.ping_pb.js} +10 -21
- package/pb/{sagittarius.runtime_function_pb.client.ts → sagittarius.runtime_function_pb.client.d.ts} +8 -13
- package/pb/sagittarius.runtime_function_pb.client.js +25 -0
- package/pb/sagittarius.runtime_function_pb.d.ts +61 -0
- package/pb/{sagittarius.runtime_function_pb.ts → sagittarius.runtime_function_pb.js} +16 -44
- package/pb/{sagittarius.text_execution_pb.client.ts → sagittarius.text_execution_pb.client.d.ts} +8 -13
- package/pb/sagittarius.text_execution_pb.client.js +23 -0
- package/pb/sagittarius.text_execution_pb.d.ts +172 -0
- package/pb/{sagittarius.text_execution_pb.ts → sagittarius.text_execution_pb.js} +42 -141
- package/pb/shared.data_type_pb.d.ts +614 -0
- package/pb/{shared.data_type_pb.ts → shared.data_type_pb.js} +140 -508
- package/pb/shared.event_pb.d.ts +120 -0
- package/pb/{shared.event_pb.ts → shared.event_pb.js} +19 -101
- package/pb/shared.flow_definition_pb.d.ts +105 -0
- package/pb/{shared.flow_definition_pb.ts → shared.flow_definition_pb.js} +13 -90
- package/pb/shared.flow_pb.d.ts +305 -0
- package/pb/{shared.flow_pb.ts → shared.flow_pb.js} +68 -305
- package/pb/shared.runtime_function_pb.d.ts +114 -0
- package/pb/{shared.runtime_function_pb.ts → shared.runtime_function_pb.js} +13 -98
- package/pb/shared.struct_pb.d.ts +198 -0
- package/pb/{shared.struct_pb.ts → shared.struct_pb.js} +27 -136
- package/pb/shared.translation_pb.d.ts +39 -0
- package/pb/{shared.translation_pb.ts → shared.translation_pb.js} +7 -31
- package/pb/shared.version_pb.d.ts +37 -0
- package/pb/{shared.version_pb.ts → shared.version_pb.js} +7 -29
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
|
+
// @generated from protobuf file "sagittarius.runtime_function.proto" (package "sagittarius", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
7
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
8
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
9
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
10
|
+
import { RuntimeFunctionDefinition } from "./shared.runtime_function_pb";
|
|
11
|
+
/**
|
|
12
|
+
* Request for updating a list of runtime function definitions
|
|
13
|
+
*
|
|
14
|
+
* @generated from protobuf message sagittarius.RuntimeFunctionDefinitionUpdateRequest
|
|
15
|
+
*/
|
|
16
|
+
export interface RuntimeFunctionDefinitionUpdateRequest {
|
|
17
|
+
/**
|
|
18
|
+
* List of runtime function definitions
|
|
19
|
+
*
|
|
20
|
+
* @generated from protobuf field: repeated shared.RuntimeFunctionDefinition runtime_functions = 1
|
|
21
|
+
*/
|
|
22
|
+
runtimeFunctions: RuntimeFunctionDefinition[];
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* Response of updating runtime function definitions
|
|
26
|
+
*
|
|
27
|
+
* @generated from protobuf message sagittarius.RuntimeFunctionDefinitionUpdateResponse
|
|
28
|
+
*/
|
|
29
|
+
export interface RuntimeFunctionDefinitionUpdateResponse {
|
|
30
|
+
/**
|
|
31
|
+
* True if was successful, false if not
|
|
32
|
+
*
|
|
33
|
+
* @generated from protobuf field: bool success = 1
|
|
34
|
+
*/
|
|
35
|
+
success: boolean;
|
|
36
|
+
}
|
|
37
|
+
declare class RuntimeFunctionDefinitionUpdateRequest$Type extends MessageType<RuntimeFunctionDefinitionUpdateRequest> {
|
|
38
|
+
constructor();
|
|
39
|
+
create(value?: PartialMessage<RuntimeFunctionDefinitionUpdateRequest>): RuntimeFunctionDefinitionUpdateRequest;
|
|
40
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RuntimeFunctionDefinitionUpdateRequest): RuntimeFunctionDefinitionUpdateRequest;
|
|
41
|
+
internalBinaryWrite(message: RuntimeFunctionDefinitionUpdateRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @generated MessageType for protobuf message sagittarius.RuntimeFunctionDefinitionUpdateRequest
|
|
45
|
+
*/
|
|
46
|
+
export declare const RuntimeFunctionDefinitionUpdateRequest: RuntimeFunctionDefinitionUpdateRequest$Type;
|
|
47
|
+
declare class RuntimeFunctionDefinitionUpdateResponse$Type extends MessageType<RuntimeFunctionDefinitionUpdateResponse> {
|
|
48
|
+
constructor();
|
|
49
|
+
create(value?: PartialMessage<RuntimeFunctionDefinitionUpdateResponse>): RuntimeFunctionDefinitionUpdateResponse;
|
|
50
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RuntimeFunctionDefinitionUpdateResponse): RuntimeFunctionDefinitionUpdateResponse;
|
|
51
|
+
internalBinaryWrite(message: RuntimeFunctionDefinitionUpdateResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
52
|
+
}
|
|
53
|
+
/**
|
|
54
|
+
* @generated MessageType for protobuf message sagittarius.RuntimeFunctionDefinitionUpdateResponse
|
|
55
|
+
*/
|
|
56
|
+
export declare const RuntimeFunctionDefinitionUpdateResponse: RuntimeFunctionDefinitionUpdateResponse$Type;
|
|
57
|
+
/**
|
|
58
|
+
* @generated ServiceType for protobuf service sagittarius.RuntimeFunctionDefinitionService
|
|
59
|
+
*/
|
|
60
|
+
export declare const RuntimeFunctionDefinitionService: any;
|
|
61
|
+
export {};
|
|
@@ -1,58 +1,30 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
|
+
// @generated from protobuf file "sagittarius.runtime_function.proto" (package "sagittarius", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
5
|
// @generated from protobuf file "sagittarius.runtime_function.proto" (package "sagittarius", syntax proto3)
|
|
3
6
|
// tslint:disable
|
|
4
7
|
import { ServiceType } from "@protobuf-ts/runtime-rpc";
|
|
5
|
-
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
6
|
-
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
7
8
|
import { WireType } from "@protobuf-ts/runtime";
|
|
8
|
-
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
9
|
-
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
10
9
|
import { UnknownFieldHandler } from "@protobuf-ts/runtime";
|
|
11
|
-
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
12
10
|
import { reflectionMergePartial } from "@protobuf-ts/runtime";
|
|
13
11
|
import { MessageType } from "@protobuf-ts/runtime";
|
|
14
12
|
import { RuntimeFunctionDefinition } from "./shared.runtime_function_pb";
|
|
15
|
-
/**
|
|
16
|
-
* Request for updating a list of runtime function definitions
|
|
17
|
-
*
|
|
18
|
-
* @generated from protobuf message sagittarius.RuntimeFunctionDefinitionUpdateRequest
|
|
19
|
-
*/
|
|
20
|
-
export interface RuntimeFunctionDefinitionUpdateRequest {
|
|
21
|
-
/**
|
|
22
|
-
* List of runtime function definitions
|
|
23
|
-
*
|
|
24
|
-
* @generated from protobuf field: repeated shared.RuntimeFunctionDefinition runtime_functions = 1
|
|
25
|
-
*/
|
|
26
|
-
runtimeFunctions: RuntimeFunctionDefinition[];
|
|
27
|
-
}
|
|
28
|
-
/**
|
|
29
|
-
* Response of updating runtime function definitions
|
|
30
|
-
*
|
|
31
|
-
* @generated from protobuf message sagittarius.RuntimeFunctionDefinitionUpdateResponse
|
|
32
|
-
*/
|
|
33
|
-
export interface RuntimeFunctionDefinitionUpdateResponse {
|
|
34
|
-
/**
|
|
35
|
-
* True if was successful, false if not
|
|
36
|
-
*
|
|
37
|
-
* @generated from protobuf field: bool success = 1
|
|
38
|
-
*/
|
|
39
|
-
success: boolean;
|
|
40
|
-
}
|
|
41
13
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
42
|
-
class RuntimeFunctionDefinitionUpdateRequest$Type extends MessageType
|
|
14
|
+
class RuntimeFunctionDefinitionUpdateRequest$Type extends MessageType {
|
|
43
15
|
constructor() {
|
|
44
16
|
super("sagittarius.RuntimeFunctionDefinitionUpdateRequest", [
|
|
45
17
|
{ no: 1, name: "runtime_functions", kind: "message", repeat: 2 /*RepeatType.UNPACKED*/, T: () => RuntimeFunctionDefinition }
|
|
46
18
|
]);
|
|
47
19
|
}
|
|
48
|
-
create(value
|
|
49
|
-
const message = globalThis.Object.create((this.messagePrototype
|
|
20
|
+
create(value) {
|
|
21
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
50
22
|
message.runtimeFunctions = [];
|
|
51
23
|
if (value !== undefined)
|
|
52
|
-
reflectionMergePartial
|
|
24
|
+
reflectionMergePartial(this, message, value);
|
|
53
25
|
return message;
|
|
54
26
|
}
|
|
55
|
-
internalBinaryRead(reader
|
|
27
|
+
internalBinaryRead(reader, length, options, target) {
|
|
56
28
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
57
29
|
while (reader.pos < end) {
|
|
58
30
|
let [fieldNo, wireType] = reader.tag();
|
|
@@ -71,7 +43,7 @@ class RuntimeFunctionDefinitionUpdateRequest$Type extends MessageType<RuntimeFun
|
|
|
71
43
|
}
|
|
72
44
|
return message;
|
|
73
45
|
}
|
|
74
|
-
internalBinaryWrite(message
|
|
46
|
+
internalBinaryWrite(message, writer, options) {
|
|
75
47
|
/* repeated shared.RuntimeFunctionDefinition runtime_functions = 1; */
|
|
76
48
|
for (let i = 0; i < message.runtimeFunctions.length; i++)
|
|
77
49
|
RuntimeFunctionDefinition.internalBinaryWrite(message.runtimeFunctions[i], writer.tag(1, WireType.LengthDelimited).fork(), options).join();
|
|
@@ -86,20 +58,20 @@ class RuntimeFunctionDefinitionUpdateRequest$Type extends MessageType<RuntimeFun
|
|
|
86
58
|
*/
|
|
87
59
|
export const RuntimeFunctionDefinitionUpdateRequest = new RuntimeFunctionDefinitionUpdateRequest$Type();
|
|
88
60
|
// @generated message type with reflection information, may provide speed optimized methods
|
|
89
|
-
class RuntimeFunctionDefinitionUpdateResponse$Type extends MessageType
|
|
61
|
+
class RuntimeFunctionDefinitionUpdateResponse$Type extends MessageType {
|
|
90
62
|
constructor() {
|
|
91
63
|
super("sagittarius.RuntimeFunctionDefinitionUpdateResponse", [
|
|
92
64
|
{ no: 1, name: "success", kind: "scalar", T: 8 /*ScalarType.BOOL*/ }
|
|
93
65
|
]);
|
|
94
66
|
}
|
|
95
|
-
create(value
|
|
96
|
-
const message = globalThis.Object.create((this.messagePrototype
|
|
67
|
+
create(value) {
|
|
68
|
+
const message = globalThis.Object.create((this.messagePrototype));
|
|
97
69
|
message.success = false;
|
|
98
70
|
if (value !== undefined)
|
|
99
|
-
reflectionMergePartial
|
|
71
|
+
reflectionMergePartial(this, message, value);
|
|
100
72
|
return message;
|
|
101
73
|
}
|
|
102
|
-
internalBinaryRead(reader
|
|
74
|
+
internalBinaryRead(reader, length, options, target) {
|
|
103
75
|
let message = target ?? this.create(), end = reader.pos + length;
|
|
104
76
|
while (reader.pos < end) {
|
|
105
77
|
let [fieldNo, wireType] = reader.tag();
|
|
@@ -118,7 +90,7 @@ class RuntimeFunctionDefinitionUpdateResponse$Type extends MessageType<RuntimeFu
|
|
|
118
90
|
}
|
|
119
91
|
return message;
|
|
120
92
|
}
|
|
121
|
-
internalBinaryWrite(message
|
|
93
|
+
internalBinaryWrite(message, writer, options) {
|
|
122
94
|
/* bool success = 1; */
|
|
123
95
|
if (message.success !== false)
|
|
124
96
|
writer.tag(1, WireType.Varint).bool(message.success);
|
package/pb/{sagittarius.text_execution_pb.client.ts → sagittarius.text_execution_pb.client.d.ts}
RENAMED
|
@@ -1,10 +1,8 @@
|
|
|
1
|
-
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
2
|
// @generated from protobuf file "sagittarius.text_execution.proto" (package "sagittarius", syntax proto3)
|
|
3
3
|
// tslint:disable
|
|
4
4
|
import type { RpcTransport } from "@protobuf-ts/runtime-rpc";
|
|
5
5
|
import type { ServiceInfo } from "@protobuf-ts/runtime-rpc";
|
|
6
|
-
import { ExecutionService } from "./sagittarius.text_execution_pb";
|
|
7
|
-
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
8
6
|
import type { ExecutionLogonResponse } from "./sagittarius.text_execution_pb";
|
|
9
7
|
import type { ExecutionLogonRequest } from "./sagittarius.text_execution_pb";
|
|
10
8
|
import type { DuplexStreamingCall } from "@protobuf-ts/runtime-rpc";
|
|
@@ -21,17 +19,14 @@ export interface IExecutionServiceClient {
|
|
|
21
19
|
/**
|
|
22
20
|
* @generated from protobuf service sagittarius.ExecutionService
|
|
23
21
|
*/
|
|
24
|
-
export class ExecutionServiceClient implements IExecutionServiceClient, ServiceInfo {
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
22
|
+
export declare class ExecutionServiceClient implements IExecutionServiceClient, ServiceInfo {
|
|
23
|
+
private readonly _transport;
|
|
24
|
+
typeName: any;
|
|
25
|
+
methods: any;
|
|
26
|
+
options: any;
|
|
27
|
+
constructor(_transport: RpcTransport);
|
|
30
28
|
/**
|
|
31
29
|
* @generated from protobuf rpc: Test
|
|
32
30
|
*/
|
|
33
|
-
test(options?: RpcOptions): DuplexStreamingCall<ExecutionLogonRequest, ExecutionLogonResponse
|
|
34
|
-
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
35
|
-
return stackIntercept<ExecutionLogonRequest, ExecutionLogonResponse>("duplex", this._transport, method, opt);
|
|
36
|
-
}
|
|
31
|
+
test(options?: RpcOptions): DuplexStreamingCall<ExecutionLogonRequest, ExecutionLogonResponse>;
|
|
37
32
|
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
|
+
// @generated from protobuf file "sagittarius.text_execution.proto" (package "sagittarius", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
import { ExecutionService } from "./sagittarius.text_execution_pb";
|
|
5
|
+
import { stackIntercept } from "@protobuf-ts/runtime-rpc";
|
|
6
|
+
/**
|
|
7
|
+
* @generated from protobuf service sagittarius.ExecutionService
|
|
8
|
+
*/
|
|
9
|
+
export class ExecutionServiceClient {
|
|
10
|
+
constructor(_transport) {
|
|
11
|
+
this._transport = _transport;
|
|
12
|
+
this.typeName = ExecutionService.typeName;
|
|
13
|
+
this.methods = ExecutionService.methods;
|
|
14
|
+
this.options = ExecutionService.options;
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf rpc: Test
|
|
18
|
+
*/
|
|
19
|
+
test(options) {
|
|
20
|
+
const method = this.methods[0], opt = this._transport.mergeOptions(options);
|
|
21
|
+
return stackIntercept("duplex", this._transport, method, opt);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
@@ -0,0 +1,172 @@
|
|
|
1
|
+
// @generated by protobuf-ts 2.11.1 with parameter add_pb_suffix,output_javascript_es2020
|
|
2
|
+
// @generated from protobuf file "sagittarius.text_execution.proto" (package "sagittarius", syntax proto3)
|
|
3
|
+
// tslint:disable
|
|
4
|
+
import type { BinaryWriteOptions } from "@protobuf-ts/runtime";
|
|
5
|
+
import type { IBinaryWriter } from "@protobuf-ts/runtime";
|
|
6
|
+
import type { BinaryReadOptions } from "@protobuf-ts/runtime";
|
|
7
|
+
import type { IBinaryReader } from "@protobuf-ts/runtime";
|
|
8
|
+
import type { PartialMessage } from "@protobuf-ts/runtime";
|
|
9
|
+
import { MessageType } from "@protobuf-ts/runtime";
|
|
10
|
+
import { Value } from "./shared.struct_pb";
|
|
11
|
+
/**
|
|
12
|
+
* @generated from protobuf message sagittarius.Logon
|
|
13
|
+
*/
|
|
14
|
+
export interface Logon {
|
|
15
|
+
}
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf message sagittarius.TestExecutionRequest
|
|
18
|
+
*/
|
|
19
|
+
export interface TestExecutionRequest {
|
|
20
|
+
/**
|
|
21
|
+
* @generated from protobuf field: int64 flow_id = 1
|
|
22
|
+
*/
|
|
23
|
+
flowId: bigint;
|
|
24
|
+
/**
|
|
25
|
+
* @generated from protobuf field: string execution_uuid = 2
|
|
26
|
+
*/
|
|
27
|
+
executionUuid: string;
|
|
28
|
+
/**
|
|
29
|
+
* @generated from protobuf field: shared.Value body = 3
|
|
30
|
+
*/
|
|
31
|
+
body?: Value;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @generated from protobuf message sagittarius.TestExecutionResponse
|
|
35
|
+
*/
|
|
36
|
+
export interface TestExecutionResponse {
|
|
37
|
+
/**
|
|
38
|
+
* @generated from protobuf field: int64 flow_id = 1
|
|
39
|
+
*/
|
|
40
|
+
flowId: bigint;
|
|
41
|
+
/**
|
|
42
|
+
* @generated from protobuf field: string execution_uuid = 2
|
|
43
|
+
*/
|
|
44
|
+
executionUuid: string;
|
|
45
|
+
/**
|
|
46
|
+
* @generated from protobuf field: shared.Value result = 3
|
|
47
|
+
*/
|
|
48
|
+
result?: Value;
|
|
49
|
+
/**
|
|
50
|
+
* @generated from protobuf field: repeated sagittarius.Log logs = 4
|
|
51
|
+
*/
|
|
52
|
+
logs: Log[];
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* @generated from protobuf message sagittarius.Log
|
|
56
|
+
*/
|
|
57
|
+
export interface Log {
|
|
58
|
+
/**
|
|
59
|
+
* @generated from protobuf field: string message = 1
|
|
60
|
+
*/
|
|
61
|
+
message: string;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from protobuf field: string level = 2
|
|
64
|
+
*/
|
|
65
|
+
level: string;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from protobuf field: string timestamp = 3
|
|
68
|
+
*/
|
|
69
|
+
timestamp: string;
|
|
70
|
+
}
|
|
71
|
+
/**
|
|
72
|
+
* Aquila sends a logon request to Sagittarius that initiates a stream
|
|
73
|
+
* If the stream is initialized it will return the result after it received a request
|
|
74
|
+
*
|
|
75
|
+
* @generated from protobuf message sagittarius.ExecutionLogonRequest
|
|
76
|
+
*/
|
|
77
|
+
export interface ExecutionLogonRequest {
|
|
78
|
+
/**
|
|
79
|
+
* @generated from protobuf oneof: data
|
|
80
|
+
*/
|
|
81
|
+
data: {
|
|
82
|
+
oneofKind: "logon";
|
|
83
|
+
/**
|
|
84
|
+
* @generated from protobuf field: sagittarius.Logon logon = 1
|
|
85
|
+
*/
|
|
86
|
+
logon: Logon;
|
|
87
|
+
} | {
|
|
88
|
+
oneofKind: "response";
|
|
89
|
+
/**
|
|
90
|
+
* @generated from protobuf field: sagittarius.TestExecutionResponse response = 2
|
|
91
|
+
*/
|
|
92
|
+
response: TestExecutionResponse;
|
|
93
|
+
} | {
|
|
94
|
+
oneofKind: undefined;
|
|
95
|
+
};
|
|
96
|
+
}
|
|
97
|
+
/**
|
|
98
|
+
* Sagittarius sends execution requests
|
|
99
|
+
*
|
|
100
|
+
* @generated from protobuf message sagittarius.ExecutionLogonResponse
|
|
101
|
+
*/
|
|
102
|
+
export interface ExecutionLogonResponse {
|
|
103
|
+
/**
|
|
104
|
+
* @generated from protobuf field: sagittarius.TestExecutionRequest request = 1
|
|
105
|
+
*/
|
|
106
|
+
request?: TestExecutionRequest;
|
|
107
|
+
}
|
|
108
|
+
declare class Logon$Type extends MessageType<Logon> {
|
|
109
|
+
constructor();
|
|
110
|
+
create(value?: PartialMessage<Logon>): Logon;
|
|
111
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Logon): Logon;
|
|
112
|
+
internalBinaryWrite(message: Logon, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
113
|
+
}
|
|
114
|
+
/**
|
|
115
|
+
* @generated MessageType for protobuf message sagittarius.Logon
|
|
116
|
+
*/
|
|
117
|
+
export declare const Logon: Logon$Type;
|
|
118
|
+
declare class TestExecutionRequest$Type extends MessageType<TestExecutionRequest> {
|
|
119
|
+
constructor();
|
|
120
|
+
create(value?: PartialMessage<TestExecutionRequest>): TestExecutionRequest;
|
|
121
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TestExecutionRequest): TestExecutionRequest;
|
|
122
|
+
internalBinaryWrite(message: TestExecutionRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* @generated MessageType for protobuf message sagittarius.TestExecutionRequest
|
|
126
|
+
*/
|
|
127
|
+
export declare const TestExecutionRequest: TestExecutionRequest$Type;
|
|
128
|
+
declare class TestExecutionResponse$Type extends MessageType<TestExecutionResponse> {
|
|
129
|
+
constructor();
|
|
130
|
+
create(value?: PartialMessage<TestExecutionResponse>): TestExecutionResponse;
|
|
131
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TestExecutionResponse): TestExecutionResponse;
|
|
132
|
+
internalBinaryWrite(message: TestExecutionResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
133
|
+
}
|
|
134
|
+
/**
|
|
135
|
+
* @generated MessageType for protobuf message sagittarius.TestExecutionResponse
|
|
136
|
+
*/
|
|
137
|
+
export declare const TestExecutionResponse: TestExecutionResponse$Type;
|
|
138
|
+
declare class Log$Type extends MessageType<Log> {
|
|
139
|
+
constructor();
|
|
140
|
+
create(value?: PartialMessage<Log>): Log;
|
|
141
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Log): Log;
|
|
142
|
+
internalBinaryWrite(message: Log, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
143
|
+
}
|
|
144
|
+
/**
|
|
145
|
+
* @generated MessageType for protobuf message sagittarius.Log
|
|
146
|
+
*/
|
|
147
|
+
export declare const Log: Log$Type;
|
|
148
|
+
declare class ExecutionLogonRequest$Type extends MessageType<ExecutionLogonRequest> {
|
|
149
|
+
constructor();
|
|
150
|
+
create(value?: PartialMessage<ExecutionLogonRequest>): ExecutionLogonRequest;
|
|
151
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionLogonRequest): ExecutionLogonRequest;
|
|
152
|
+
internalBinaryWrite(message: ExecutionLogonRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
153
|
+
}
|
|
154
|
+
/**
|
|
155
|
+
* @generated MessageType for protobuf message sagittarius.ExecutionLogonRequest
|
|
156
|
+
*/
|
|
157
|
+
export declare const ExecutionLogonRequest: ExecutionLogonRequest$Type;
|
|
158
|
+
declare class ExecutionLogonResponse$Type extends MessageType<ExecutionLogonResponse> {
|
|
159
|
+
constructor();
|
|
160
|
+
create(value?: PartialMessage<ExecutionLogonResponse>): ExecutionLogonResponse;
|
|
161
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionLogonResponse): ExecutionLogonResponse;
|
|
162
|
+
internalBinaryWrite(message: ExecutionLogonResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
163
|
+
}
|
|
164
|
+
/**
|
|
165
|
+
* @generated MessageType for protobuf message sagittarius.ExecutionLogonResponse
|
|
166
|
+
*/
|
|
167
|
+
export declare const ExecutionLogonResponse: ExecutionLogonResponse$Type;
|
|
168
|
+
/**
|
|
169
|
+
* @generated ServiceType for protobuf service sagittarius.ExecutionService
|
|
170
|
+
*/
|
|
171
|
+
export declare const ExecutionService: any;
|
|
172
|
+
export {};
|