@code0-tech/tucana 0.0.76 → 0.0.78
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/dist/aquila.cjs.js +1 -1
- package/dist/aquila.es.js +738 -209
- package/dist/pb/_generated/aquila.action_pb.d.ts +345 -4
- package/dist/pb/_generated/sagittarius_gateway.flow_pb.client.d.ts +43 -0
- package/dist/pb/_generated/sagittarius_gateway.flow_pb.d.ts +110 -0
- package/dist/pb/_generated/sagittarius_gateway.module_pb.client.d.ts +59 -0
- package/dist/pb/_generated/sagittarius_gateway.module_pb.d.ts +137 -0
- package/dist/pb/_generated/sagittarius_gateway.runtime_status_pb.client.d.ts +27 -0
- package/dist/pb/_generated/sagittarius_gateway.runtime_status_pb.d.ts +51 -0
- package/dist/pb/_generated/sagittarius_gateway.test_execution_pb.client.d.ts +43 -0
- package/dist/pb/_generated/{sagittarius.text_execution_pb.d.ts → sagittarius_gateway.test_execution_pb.d.ts} +45 -11
- package/dist/pb/_generated/sagittarius_rails.flow_pb.client.d.ts +31 -0
- package/dist/pb/_generated/{sagittarius.flow_pb.d.ts → sagittarius_rails.flow_pb.d.ts} +5 -14
- package/dist/pb/_generated/{sagittarius.module_pb.client.d.ts → sagittarius_rails.module_pb.client.d.ts} +3 -3
- package/dist/pb/_generated/{sagittarius.module_pb.d.ts → sagittarius_rails.module_pb.d.ts} +7 -7
- package/dist/pb/_generated/{sagittarius.runtime_status_pb.client.d.ts → sagittarius_rails.runtime_status_pb.client.d.ts} +3 -3
- package/dist/pb/_generated/{sagittarius.runtime_status_pb.d.ts → sagittarius_rails.runtime_status_pb.d.ts} +5 -5
- package/dist/pb/_generated/sagittarius_rails.test_execution_pb.client.d.ts +27 -0
- package/dist/pb/_generated/sagittarius_rails.test_execution_pb.d.ts +51 -0
- package/dist/pb/_generated/sagittarius_rails.token_pb.client.d.ts +31 -0
- package/dist/pb/_generated/sagittarius_rails.token_pb.d.ts +93 -0
- package/dist/pb/_generated/shared.flow_pb.d.ts +42 -26
- package/dist/pb/_generated/shared.struct_pb.d.ts +1 -1
- package/dist/pb/sagittarius_gateway.d.ts +8 -0
- package/dist/pb/sagittarius_rails.d.ts +10 -0
- package/dist/{rpc-interceptor-giFADd4b.cjs → rpc-interceptor-D-IMsC9l.cjs} +1 -1
- package/dist/{rpc-interceptor-d3qh7P9n.js → rpc-interceptor-D0l4GO-c.js} +1 -1
- package/dist/sagittarius_gateway.cjs.js +1 -0
- package/dist/sagittarius_gateway.d.ts +2 -0
- package/dist/sagittarius_gateway.es.js +793 -0
- package/dist/sagittarius_rails.cjs.js +1 -0
- package/dist/sagittarius_rails.d.ts +2 -0
- package/dist/sagittarius_rails.es.js +558 -0
- package/dist/shared.cjs.js +1 -1
- package/dist/shared.es.js +3 -4
- package/dist/shared.function_pb-BxQgyP8l.cjs +2 -0
- package/dist/{shared.function_pb-Caz-4jvi.js → shared.function_pb-CPUNe7pa.js} +1537 -485
- package/dist/shared.runtime_status_pb-5unRZGw5.js +1650 -0
- package/dist/{shared.runtime_status_pb-BEEvFfe8.cjs → shared.runtime_status_pb-BlKabFnb.cjs} +1 -1
- package/dist/velorum.cjs.js +1 -1
- package/dist/velorum.es.js +114 -115
- package/package.json +13 -7
- package/dist/pb/_generated/sagittarius.flow_pb.client.d.ts +0 -27
- package/dist/pb/_generated/sagittarius.ping_pb.client.d.ts +0 -27
- package/dist/pb/_generated/sagittarius.ping_pb.d.ts +0 -26
- package/dist/pb/_generated/sagittarius.text_execution_pb.client.d.ts +0 -27
- package/dist/pb/sagittarius.d.ts +0 -10
- package/dist/sagittarius.cjs.js +0 -1
- package/dist/sagittarius.d.ts +0 -2
- package/dist/sagittarius.es.js +0 -553
- package/dist/shared.flow_pb-DdVuFKPW.js +0 -1019
- package/dist/shared.flow_pb-clFvPGyv.cjs +0 -1
- package/dist/shared.function_pb-C8cj-NCz.cjs +0 -2
- package/dist/shared.runtime_status_pb-D7hH22xO.js +0 -1650
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { ServiceType } from '@protobuf-ts/runtime-rpc';
|
|
2
|
+
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
3
|
+
import { ServiceError } from './shared.errors_pb';
|
|
4
|
+
import { ExecutionResult } from './shared.execution_result_pb';
|
|
5
|
+
/**
|
|
6
|
+
* @generated from protobuf message sagittarius_rails.ExecutionRequest
|
|
7
|
+
*/
|
|
8
|
+
export interface ExecutionRequest {
|
|
9
|
+
/**
|
|
10
|
+
* @generated from protobuf field: shared.ExecutionResult response = 1
|
|
11
|
+
*/
|
|
12
|
+
response?: ExecutionResult;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @generated from protobuf message sagittarius_rails.ExecutionResponse
|
|
16
|
+
*/
|
|
17
|
+
export interface ExecutionResponse {
|
|
18
|
+
/**
|
|
19
|
+
* @generated from protobuf field: bool success = 1
|
|
20
|
+
*/
|
|
21
|
+
success: boolean;
|
|
22
|
+
/**
|
|
23
|
+
* @generated from protobuf field: optional shared.ServiceError error = 2
|
|
24
|
+
*/
|
|
25
|
+
error?: ServiceError;
|
|
26
|
+
}
|
|
27
|
+
declare class ExecutionRequest$Type extends MessageType<ExecutionRequest> {
|
|
28
|
+
constructor();
|
|
29
|
+
create(value?: PartialMessage<ExecutionRequest>): ExecutionRequest;
|
|
30
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionRequest): ExecutionRequest;
|
|
31
|
+
internalBinaryWrite(message: ExecutionRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @generated MessageType for protobuf message sagittarius_rails.ExecutionRequest
|
|
35
|
+
*/
|
|
36
|
+
export declare const ExecutionRequest: ExecutionRequest$Type;
|
|
37
|
+
declare class ExecutionResponse$Type extends MessageType<ExecutionResponse> {
|
|
38
|
+
constructor();
|
|
39
|
+
create(value?: PartialMessage<ExecutionResponse>): ExecutionResponse;
|
|
40
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionResponse): ExecutionResponse;
|
|
41
|
+
internalBinaryWrite(message: ExecutionResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* @generated MessageType for protobuf message sagittarius_rails.ExecutionResponse
|
|
45
|
+
*/
|
|
46
|
+
export declare const ExecutionResponse: ExecutionResponse$Type;
|
|
47
|
+
/**
|
|
48
|
+
* @generated ServiceType for protobuf service sagittarius_rails.ExecutionService
|
|
49
|
+
*/
|
|
50
|
+
export declare const ExecutionService: ServiceType;
|
|
51
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { RpcTransport, ServiceInfo, UnaryCall, RpcOptions } from '@protobuf-ts/runtime-rpc';
|
|
2
|
+
import { TokenVerifyResponse, TokenVerifyRequest } from './sagittarius_rails.token_pb';
|
|
3
|
+
/**
|
|
4
|
+
* @generated from protobuf service sagittarius_rails.TokenService
|
|
5
|
+
*/
|
|
6
|
+
export interface ITokenServiceClient {
|
|
7
|
+
/**
|
|
8
|
+
* Called by Gateway
|
|
9
|
+
*
|
|
10
|
+
* @generated from protobuf rpc: Verify
|
|
11
|
+
*/
|
|
12
|
+
verify(input: TokenVerifyRequest, options?: RpcOptions): UnaryCall<TokenVerifyRequest, TokenVerifyResponse>;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* @generated from protobuf service sagittarius_rails.TokenService
|
|
16
|
+
*/
|
|
17
|
+
export declare class TokenServiceClient implements ITokenServiceClient, ServiceInfo {
|
|
18
|
+
private readonly _transport;
|
|
19
|
+
typeName: string;
|
|
20
|
+
methods: import('@protobuf-ts/runtime-rpc').MethodInfo<any, any>[];
|
|
21
|
+
options: {
|
|
22
|
+
[extensionName: string]: import('@protobuf-ts/runtime').JsonValue;
|
|
23
|
+
};
|
|
24
|
+
constructor(_transport: RpcTransport);
|
|
25
|
+
/**
|
|
26
|
+
* Called by Gateway
|
|
27
|
+
*
|
|
28
|
+
* @generated from protobuf rpc: Verify
|
|
29
|
+
*/
|
|
30
|
+
verify(input: TokenVerifyRequest, options?: RpcOptions): UnaryCall<TokenVerifyRequest, TokenVerifyResponse>;
|
|
31
|
+
}
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
import { ServiceType } from '@protobuf-ts/runtime-rpc';
|
|
2
|
+
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
3
|
+
/**
|
|
4
|
+
* @generated from protobuf message sagittarius_rails.TokenVerifyRequest
|
|
5
|
+
*/
|
|
6
|
+
export interface TokenVerifyRequest {
|
|
7
|
+
/**
|
|
8
|
+
* @generated from protobuf field: string token = 1
|
|
9
|
+
*/
|
|
10
|
+
token: string;
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* @generated from protobuf message sagittarius_rails.TokenVerifyResponse
|
|
14
|
+
*/
|
|
15
|
+
export interface TokenVerifyResponse {
|
|
16
|
+
/**
|
|
17
|
+
* @generated from protobuf oneof: data
|
|
18
|
+
*/
|
|
19
|
+
data: {
|
|
20
|
+
oneofKind: "verified";
|
|
21
|
+
/**
|
|
22
|
+
* @generated from protobuf field: sagittarius_rails.VerifiedRuntime verified = 1
|
|
23
|
+
*/
|
|
24
|
+
verified: VerifiedRuntime;
|
|
25
|
+
} | {
|
|
26
|
+
oneofKind: "unverified";
|
|
27
|
+
/**
|
|
28
|
+
* @generated from protobuf field: sagittarius_rails.UnverifiedRuntime unverified = 2
|
|
29
|
+
*/
|
|
30
|
+
unverified: UnverifiedRuntime;
|
|
31
|
+
} | {
|
|
32
|
+
oneofKind: undefined;
|
|
33
|
+
};
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* @generated from protobuf message sagittarius_rails.VerifiedRuntime
|
|
37
|
+
*/
|
|
38
|
+
export interface VerifiedRuntime {
|
|
39
|
+
/**
|
|
40
|
+
* @generated from protobuf field: int64 runtime_id = 1
|
|
41
|
+
*/
|
|
42
|
+
runtimeId: bigint;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* @generated from protobuf message sagittarius_rails.UnverifiedRuntime
|
|
46
|
+
*/
|
|
47
|
+
export interface UnverifiedRuntime {
|
|
48
|
+
}
|
|
49
|
+
declare class TokenVerifyRequest$Type extends MessageType<TokenVerifyRequest> {
|
|
50
|
+
constructor();
|
|
51
|
+
create(value?: PartialMessage<TokenVerifyRequest>): TokenVerifyRequest;
|
|
52
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TokenVerifyRequest): TokenVerifyRequest;
|
|
53
|
+
internalBinaryWrite(message: TokenVerifyRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* @generated MessageType for protobuf message sagittarius_rails.TokenVerifyRequest
|
|
57
|
+
*/
|
|
58
|
+
export declare const TokenVerifyRequest: TokenVerifyRequest$Type;
|
|
59
|
+
declare class TokenVerifyResponse$Type extends MessageType<TokenVerifyResponse> {
|
|
60
|
+
constructor();
|
|
61
|
+
create(value?: PartialMessage<TokenVerifyResponse>): TokenVerifyResponse;
|
|
62
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TokenVerifyResponse): TokenVerifyResponse;
|
|
63
|
+
internalBinaryWrite(message: TokenVerifyResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* @generated MessageType for protobuf message sagittarius_rails.TokenVerifyResponse
|
|
67
|
+
*/
|
|
68
|
+
export declare const TokenVerifyResponse: TokenVerifyResponse$Type;
|
|
69
|
+
declare class VerifiedRuntime$Type extends MessageType<VerifiedRuntime> {
|
|
70
|
+
constructor();
|
|
71
|
+
create(value?: PartialMessage<VerifiedRuntime>): VerifiedRuntime;
|
|
72
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: VerifiedRuntime): VerifiedRuntime;
|
|
73
|
+
internalBinaryWrite(message: VerifiedRuntime, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* @generated MessageType for protobuf message sagittarius_rails.VerifiedRuntime
|
|
77
|
+
*/
|
|
78
|
+
export declare const VerifiedRuntime: VerifiedRuntime$Type;
|
|
79
|
+
declare class UnverifiedRuntime$Type extends MessageType<UnverifiedRuntime> {
|
|
80
|
+
constructor();
|
|
81
|
+
create(value?: PartialMessage<UnverifiedRuntime>): UnverifiedRuntime;
|
|
82
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: UnverifiedRuntime): UnverifiedRuntime;
|
|
83
|
+
internalBinaryWrite(message: UnverifiedRuntime, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* @generated MessageType for protobuf message sagittarius_rails.UnverifiedRuntime
|
|
87
|
+
*/
|
|
88
|
+
export declare const UnverifiedRuntime: UnverifiedRuntime$Type;
|
|
89
|
+
/**
|
|
90
|
+
* @generated ServiceType for protobuf service sagittarius_rails.TokenService
|
|
91
|
+
*/
|
|
92
|
+
export declare const TokenService: ServiceType;
|
|
93
|
+
export {};
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
|
|
2
|
-
import {
|
|
2
|
+
import { Value, Struct } from './shared.struct_pb';
|
|
3
3
|
import { ExecutionDataType } from './shared.data_type_pb';
|
|
4
4
|
/**
|
|
5
5
|
* @generated from protobuf message shared.ValidationFlow
|
|
@@ -51,6 +51,22 @@ export interface ValidationFlow {
|
|
|
51
51
|
* @generated from protobuf field: string signature = 10
|
|
52
52
|
*/
|
|
53
53
|
signature: string;
|
|
54
|
+
/**
|
|
55
|
+
* @generated from protobuf field: optional string definition_source = 11
|
|
56
|
+
*/
|
|
57
|
+
definitionSource?: string;
|
|
58
|
+
/**
|
|
59
|
+
* @generated from protobuf field: shared.Struct input_schema = 12
|
|
60
|
+
*/
|
|
61
|
+
inputSchema?: Struct;
|
|
62
|
+
/**
|
|
63
|
+
* @generated from protobuf field: shared.Struct output_schema = 13
|
|
64
|
+
*/
|
|
65
|
+
outputSchema?: Struct;
|
|
66
|
+
/**
|
|
67
|
+
* @generated from protobuf field: string name = 14
|
|
68
|
+
*/
|
|
69
|
+
name: string;
|
|
54
70
|
}
|
|
55
71
|
/**
|
|
56
72
|
* @generated from protobuf message shared.ExecutionFlow
|
|
@@ -245,6 +261,19 @@ export interface ReferenceValue {
|
|
|
245
261
|
*/
|
|
246
262
|
paths: ReferencePath[];
|
|
247
263
|
}
|
|
264
|
+
/**
|
|
265
|
+
* @generated from protobuf message shared.SubFlowFunction
|
|
266
|
+
*/
|
|
267
|
+
export interface SubFlowFunction {
|
|
268
|
+
/**
|
|
269
|
+
* @generated from protobuf field: string function_identifier = 1
|
|
270
|
+
*/
|
|
271
|
+
functionIdentifier: string;
|
|
272
|
+
/**
|
|
273
|
+
* @generated from protobuf field: optional string definition_source = 2
|
|
274
|
+
*/
|
|
275
|
+
definitionSource?: string;
|
|
276
|
+
}
|
|
248
277
|
/**
|
|
249
278
|
* @generated from protobuf message shared.SubFlow
|
|
250
279
|
*/
|
|
@@ -261,9 +290,9 @@ export interface SubFlow {
|
|
|
261
290
|
} | {
|
|
262
291
|
oneofKind: "function";
|
|
263
292
|
/**
|
|
264
|
-
* @generated from protobuf field: shared.
|
|
293
|
+
* @generated from protobuf field: shared.SubFlowFunction function = 2
|
|
265
294
|
*/
|
|
266
|
-
function:
|
|
295
|
+
function: SubFlowFunction;
|
|
267
296
|
} | {
|
|
268
297
|
oneofKind: undefined;
|
|
269
298
|
};
|
|
@@ -284,19 +313,6 @@ export interface SubFlow {
|
|
|
284
313
|
*/
|
|
285
314
|
settings: SubFlowSetting[];
|
|
286
315
|
}
|
|
287
|
-
/**
|
|
288
|
-
* @generated from protobuf message shared.SubFlow.SubFlowFunction
|
|
289
|
-
*/
|
|
290
|
-
export interface SubFlow_SubFlowFunction {
|
|
291
|
-
/**
|
|
292
|
-
* @generated from protobuf field: string function_identifier = 1
|
|
293
|
-
*/
|
|
294
|
-
functionIdentifier: string;
|
|
295
|
-
/**
|
|
296
|
-
* @generated from protobuf field: optional string definition_source = 2
|
|
297
|
-
*/
|
|
298
|
-
definitionSource?: string;
|
|
299
|
-
}
|
|
300
316
|
/**
|
|
301
317
|
* @generated from protobuf message shared.SubFlowSetting
|
|
302
318
|
*/
|
|
@@ -451,6 +467,16 @@ declare class ReferenceValue$Type extends MessageType<ReferenceValue> {
|
|
|
451
467
|
* @generated MessageType for protobuf message shared.ReferenceValue
|
|
452
468
|
*/
|
|
453
469
|
export declare const ReferenceValue: ReferenceValue$Type;
|
|
470
|
+
declare class SubFlowFunction$Type extends MessageType<SubFlowFunction> {
|
|
471
|
+
constructor();
|
|
472
|
+
create(value?: PartialMessage<SubFlowFunction>): SubFlowFunction;
|
|
473
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SubFlowFunction): SubFlowFunction;
|
|
474
|
+
internalBinaryWrite(message: SubFlowFunction, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* @generated MessageType for protobuf message shared.SubFlowFunction
|
|
478
|
+
*/
|
|
479
|
+
export declare const SubFlowFunction: SubFlowFunction$Type;
|
|
454
480
|
declare class SubFlow$Type extends MessageType<SubFlow> {
|
|
455
481
|
constructor();
|
|
456
482
|
create(value?: PartialMessage<SubFlow>): SubFlow;
|
|
@@ -461,16 +487,6 @@ declare class SubFlow$Type extends MessageType<SubFlow> {
|
|
|
461
487
|
* @generated MessageType for protobuf message shared.SubFlow
|
|
462
488
|
*/
|
|
463
489
|
export declare const SubFlow: SubFlow$Type;
|
|
464
|
-
declare class SubFlow_SubFlowFunction$Type extends MessageType<SubFlow_SubFlowFunction> {
|
|
465
|
-
constructor();
|
|
466
|
-
create(value?: PartialMessage<SubFlow_SubFlowFunction>): SubFlow_SubFlowFunction;
|
|
467
|
-
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SubFlow_SubFlowFunction): SubFlow_SubFlowFunction;
|
|
468
|
-
internalBinaryWrite(message: SubFlow_SubFlowFunction, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
469
|
-
}
|
|
470
|
-
/**
|
|
471
|
-
* @generated MessageType for protobuf message shared.SubFlow.SubFlowFunction
|
|
472
|
-
*/
|
|
473
|
-
export declare const SubFlow_SubFlowFunction: SubFlow_SubFlowFunction$Type;
|
|
474
490
|
declare class SubFlowSetting$Type extends MessageType<SubFlowSetting> {
|
|
475
491
|
constructor();
|
|
476
492
|
create(value?: PartialMessage<SubFlowSetting>): SubFlowSetting;
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export * from './_generated/sagittarius_gateway.flow_pb.client.js';
|
|
2
|
+
export * from './_generated/sagittarius_gateway.flow_pb.js';
|
|
3
|
+
export * from './_generated/sagittarius_gateway.module_pb.client.js';
|
|
4
|
+
export * from './_generated/sagittarius_gateway.module_pb.js';
|
|
5
|
+
export * from './_generated/sagittarius_gateway.runtime_status_pb.client.js';
|
|
6
|
+
export * from './_generated/sagittarius_gateway.runtime_status_pb.js';
|
|
7
|
+
export * from './_generated/sagittarius_gateway.test_execution_pb.client.js';
|
|
8
|
+
export * from './_generated/sagittarius_gateway.test_execution_pb.js';
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from './_generated/sagittarius_rails.flow_pb.client.js';
|
|
2
|
+
export * from './_generated/sagittarius_rails.flow_pb.js';
|
|
3
|
+
export * from './_generated/sagittarius_rails.module_pb.client.js';
|
|
4
|
+
export * from './_generated/sagittarius_rails.module_pb.js';
|
|
5
|
+
export * from './_generated/sagittarius_rails.runtime_status_pb.client.js';
|
|
6
|
+
export * from './_generated/sagittarius_rails.runtime_status_pb.js';
|
|
7
|
+
export * from './_generated/sagittarius_rails.test_execution_pb.client.js';
|
|
8
|
+
export * from './_generated/sagittarius_rails.test_execution_pb.js';
|
|
9
|
+
export * from './_generated/sagittarius_rails.token_pb.client.js';
|
|
10
|
+
export * from './_generated/sagittarius_rails.token_pb.js';
|
|
@@ -1 +1 @@
|
|
|
1
|
-
const e=require("./shared.function_pb-
|
|
1
|
+
const e=require("./shared.function_pb-BxQgyP8l.cjs");function t(t,n){let r=t;return r.service=n,r.localName=r.localName??e.I(r.name),r.serverStreaming=!!r.serverStreaming,r.clientStreaming=!!r.clientStreaming,r.options=r.options??{},r.idempotency=r.idempotency??void 0,r}var n=class{constructor(e,n,r){this.typeName=e,this.methods=n.map(e=>t(e,this)),this.options=r??{}}};function r(t,n,r,i,a){if(t==`unary`){let e=(e,t,r)=>n.unary(e,t,r);for(let t of(i.interceptors??[]).filter(e=>e.interceptUnary).reverse()){let n=e;e=(e,r,i)=>t.interceptUnary(n,e,r,i)}return e(r,a,i)}if(t==`serverStreaming`){let e=(e,t,r)=>n.serverStreaming(e,t,r);for(let t of(i.interceptors??[]).filter(e=>e.interceptServerStreaming).reverse()){let n=e;e=(e,r,i)=>t.interceptServerStreaming(n,e,r,i)}return e(r,a,i)}if(t==`clientStreaming`){let e=(e,t)=>n.clientStreaming(e,t);for(let t of(i.interceptors??[]).filter(e=>e.interceptClientStreaming).reverse()){let n=e;e=(e,r)=>t.interceptClientStreaming(n,e,r)}return e(r,i)}if(t==`duplex`){let e=(e,t)=>n.duplex(e,t);for(let t of(i.interceptors??[]).filter(e=>e.interceptDuplex).reverse()){let n=e;e=(e,r)=>t.interceptDuplex(n,e,r)}return e(r,i)}e.F(t)}Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return n}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return r}});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require("./shared.function_pb-BxQgyP8l.cjs"),t=require("./shared.runtime_status_pb-BlKabFnb.cjs"),n=require("./rpc-interceptor-D-IMsC9l.cjs");var r=new class extends e.N{constructor(){super(`sagittarius_gateway.FlowLogonRequest`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},i=new class extends e.N{constructor(){super(`sagittarius_gateway.FlowResponse`,[{no:1,name:`updated_flow`,kind:`message`,oneof:`data`,T:()=>e.b},{no:2,name:`deleted_flow_id`,kind:`scalar`,oneof:`data`,T:3,L:0},{no:3,name:`flows`,kind:`message`,oneof:`data`,T:()=>e.l}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.data={oneofKind:void 0},t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){case 1:a.data={oneofKind:`updatedFlow`,updatedFlow:e.b.internalBinaryRead(t,t.uint32(),r,a.data.updatedFlow)};break;case 2:a.data={oneofKind:`deletedFlowId`,deletedFlowId:t.int64().toBigInt()};break;case 3:a.data={oneofKind:`flows`,flows:e.l.internalBinaryRead(t,t.uint32(),r,a.data.flows)};break;default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){t.data.oneofKind===`updatedFlow`&&e.b.internalBinaryWrite(t.data.updatedFlow,n.tag(1,e.R.LengthDelimited).fork(),r).join(),t.data.oneofKind===`deletedFlowId`&&n.tag(2,e.R.Varint).int64(t.data.deletedFlowId),t.data.oneofKind===`flows`&&e.l.internalBinaryWrite(t.data.flows,n.tag(3,e.R.LengthDelimited).fork(),r).join();let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},a=new class extends e.N{constructor(){super(`sagittarius_gateway.FlowPushRequest`,[{no:1,name:`runtime_identifier`,kind:`scalar`,T:3,L:0},{no:2,name:`response`,kind:`message`,T:()=>i}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.runtimeIdentifier=0n,t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,a){let o=a??this.create(),s=t.pos+n;for(;t.pos<s;){let[n,a]=t.tag();switch(n){case 1:o.runtimeIdentifier=t.int64().toBigInt();break;case 2:o.response=i.internalBinaryRead(t,t.uint32(),r,o.response);break;default:let s=r.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${a}) for ${this.typeName}`);let c=t.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,n,a,c)}}return o}internalBinaryWrite(t,n,r){t.runtimeIdentifier!==0n&&n.tag(1,e.R.Varint).int64(t.runtimeIdentifier),t.response&&i.internalBinaryWrite(t.response,n.tag(2,e.R.LengthDelimited).fork(),r).join();let a=r.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,t,n),n}},o=new class extends e.N{constructor(){super(`sagittarius_gateway.FlowPushResponse`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},s=new n.n(`sagittarius_gateway.FlowService`,[{name:`Update`,serverStreaming:!0,options:{},I:r,O:i},{name:`Push`,options:{},I:a,O:o}]),c=class{constructor(e){this._transport=e,this.typeName=s.typeName,this.methods=s.methods,this.options=s.options}update(e,t){let r=this.methods[0],i=this._transport.mergeOptions(t);return n.t(`serverStreaming`,this._transport,r,i,e)}push(e,t){let r=this.methods[1],i=this._transport.mergeOptions(t);return n.t(`unary`,this._transport,r,i,e)}},l=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleUpdateRequest`,[{no:1,name:`modules`,kind:`message`,repeat:2,T:()=>t.i},{no:2,name:`available_definition_sources`,kind:`scalar`,repeat:2,T:9}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.modules=[],n.availableDefinitionSources=[],t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.modules.push(t.i.internalBinaryRead(n,n.uint32(),i));break;case 2:o.availableDefinitionSources.push(n.string());break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){for(let a=0;a<n.modules.length;a++)t.i.internalBinaryWrite(n.modules[a],r.tag(1,e.R.LengthDelimited).fork(),i).join();for(let t=0;t<n.availableDefinitionSources.length;t++)r.tag(2,e.R.LengthDelimited).string(n.availableDefinitionSources[t]);let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},u=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleUpdateResponse`,[{no:1,name:`success`,kind:`scalar`,T:8},{no:2,name:`error`,kind:`message`,T:()=>t.b}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.success=!1,t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.success=n.bool();break;case 2:o.error=t.b.internalBinaryRead(n,n.uint32(),i,o.error);break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){n.success!==!1&&r.tag(1,e.R.Varint).bool(n.success),n.error&&t.b.internalBinaryWrite(n.error,r.tag(2,e.R.LengthDelimited).fork(),i).join();let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},d=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleConfigurationRequest`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},f=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleConfigurationResponse`,[{no:1,name:`module_configurations`,kind:`message`,T:()=>t.s}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.moduleConfigurations=t.s.internalBinaryRead(n,n.uint32(),i,o.moduleConfigurations);break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){n.moduleConfigurations&&t.s.internalBinaryWrite(n.moduleConfigurations,r.tag(1,e.R.LengthDelimited).fork(),i).join();let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},p=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleConfigurationPushRequest`,[{no:1,name:`runtime_identifier`,kind:`scalar`,T:3,L:0},{no:2,name:`response`,kind:`message`,T:()=>f}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.runtimeIdentifier=0n,t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){case 1:a.runtimeIdentifier=t.int64().toBigInt();break;case 2:a.response=f.internalBinaryRead(t,t.uint32(),r,a.response);break;default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){t.runtimeIdentifier!==0n&&n.tag(1,e.R.Varint).int64(t.runtimeIdentifier),t.response&&f.internalBinaryWrite(t.response,n.tag(2,e.R.LengthDelimited).fork(),r).join();let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},m=new class extends e.N{constructor(){super(`sagittarius_gateway.ModuleConfigurationPushResponse`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},h=new n.n(`sagittarius_gateway.ModuleService`,[{name:`Update`,options:{},I:l,O:u},{name:`Configurations`,serverStreaming:!0,options:{},I:d,O:f},{name:`Push`,options:{},I:p,O:m}]),g=class{constructor(e){this._transport=e,this.typeName=h.typeName,this.methods=h.methods,this.options=h.options}update(e,t){let r=this.methods[0],i=this._transport.mergeOptions(t);return n.t(`unary`,this._transport,r,i,e)}configurations(e,t){let r=this.methods[1],i=this._transport.mergeOptions(t);return n.t(`serverStreaming`,this._transport,r,i,e)}push(e,t){let r=this.methods[2],i=this._transport.mergeOptions(t);return n.t(`unary`,this._transport,r,i,e)}},_=new class extends e.N{constructor(){super(`sagittarius_gateway.RuntimeStatusUpdateRequest`,[{no:1,name:`status`,kind:`message`,T:()=>t.t}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.status=t.t.internalBinaryRead(n,n.uint32(),i,o.status);break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){n.status&&t.t.internalBinaryWrite(n.status,r.tag(1,e.R.LengthDelimited).fork(),i).join();let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},v=new class extends e.N{constructor(){super(`sagittarius_gateway.RuntimeStatusUpdateResponse`,[{no:1,name:`success`,kind:`scalar`,T:8},{no:2,name:`error`,kind:`message`,T:()=>t.b}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.success=!1,t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.success=n.bool();break;case 2:o.error=t.b.internalBinaryRead(n,n.uint32(),i,o.error);break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){n.success!==!1&&r.tag(1,e.R.Varint).bool(n.success),n.error&&t.b.internalBinaryWrite(n.error,r.tag(2,e.R.LengthDelimited).fork(),i).join();let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},y=new n.n(`sagittarius_gateway.RuntimeStatusService`,[{name:`Update`,options:{},I:_,O:v}]),b=class{constructor(e){this._transport=e,this.typeName=y.typeName,this.methods=y.methods,this.options=y.options}update(e,t){let r=this.methods[0],i=this._transport.mergeOptions(t);return n.t(`unary`,this._transport,r,i,e)}},x=new class extends e.N{constructor(){super(`sagittarius_gateway.Logon`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},S=new class extends e.N{constructor(){super(`sagittarius_gateway.TestExecutionRequest`,[{no:1,name:`flow_id`,kind:`scalar`,T:3,L:0},{no:2,name:`execution_identifier`,kind:`scalar`,T:9},{no:3,name:`body`,kind:`message`,T:()=>e.T}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.flowId=0n,n.executionIdentifier=``,t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){case 1:a.flowId=t.int64().toBigInt();break;case 2:a.executionIdentifier=t.string();break;case 3:a.body=e.T.internalBinaryRead(t,t.uint32(),r,a.body);break;default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){t.flowId!==0n&&n.tag(1,e.R.Varint).int64(t.flowId),t.executionIdentifier!==``&&n.tag(2,e.R.LengthDelimited).string(t.executionIdentifier),t.body&&e.T.internalBinaryWrite(t.body,n.tag(3,e.R.LengthDelimited).fork(),r).join();let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},C=new class extends e.N{constructor(){super(`sagittarius_gateway.ExecutionLogonRequest`,[{no:1,name:`logon`,kind:`message`,oneof:`data`,T:()=>x},{no:2,name:`response`,kind:`message`,oneof:`data`,T:()=>t.h}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return n.data={oneofKind:void 0},t!==void 0&&e.P(this,n,t),n}internalBinaryRead(n,r,i,a){let o=a??this.create(),s=n.pos+r;for(;n.pos<s;){let[r,a]=n.tag();switch(r){case 1:o.data={oneofKind:`logon`,logon:x.internalBinaryRead(n,n.uint32(),i,o.data.logon)};break;case 2:o.data={oneofKind:`response`,response:t.h.internalBinaryRead(n,n.uint32(),i,o.data.response)};break;default:let s=i.readUnknownField;if(s===`throw`)throw new globalThis.Error(`Unknown field ${r} (wire type ${a}) for ${this.typeName}`);let c=n.skip(a);s!==!1&&(s===!0?e.L.onRead:s)(this.typeName,o,r,a,c)}}return o}internalBinaryWrite(n,r,i){n.data.oneofKind===`logon`&&x.internalBinaryWrite(n.data.logon,r.tag(1,e.R.LengthDelimited).fork(),i).join(),n.data.oneofKind===`response`&&t.h.internalBinaryWrite(n.data.response,r.tag(2,e.R.LengthDelimited).fork(),i).join();let a=i.writeUnknownFields;return a!==!1&&(a==1?e.L.onWrite:a)(this.typeName,n,r),r}},w=new class extends e.N{constructor(){super(`sagittarius_gateway.ExecutionLogonResponse`,[{no:1,name:`request`,kind:`message`,T:()=>S}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){case 1:a.request=S.internalBinaryRead(t,t.uint32(),r,a.request);break;default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){t.request&&S.internalBinaryWrite(t.request,n.tag(1,e.R.LengthDelimited).fork(),r).join();let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},T=new class extends e.N{constructor(){super(`sagittarius_gateway.ExecutionPushRequest`,[{no:1,name:`request`,kind:`message`,T:()=>S}])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){case 1:a.request=S.internalBinaryRead(t,t.uint32(),r,a.request);break;default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){t.request&&S.internalBinaryWrite(t.request,n.tag(1,e.R.LengthDelimited).fork(),r).join();let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},E=new class extends e.N{constructor(){super(`sagittarius_gateway.ExecutionPushResponse`,[])}create(t){let n=globalThis.Object.create(this.messagePrototype);return t!==void 0&&e.P(this,n,t),n}internalBinaryRead(t,n,r,i){let a=i??this.create(),o=t.pos+n;for(;t.pos<o;){let[n,i]=t.tag();switch(n){default:let o=r.readUnknownField;if(o===`throw`)throw new globalThis.Error(`Unknown field ${n} (wire type ${i}) for ${this.typeName}`);let s=t.skip(i);o!==!1&&(o===!0?e.L.onRead:o)(this.typeName,a,n,i,s)}}return a}internalBinaryWrite(t,n,r){let i=r.writeUnknownFields;return i!==!1&&(i==1?e.L.onWrite:i)(this.typeName,t,n),n}},D=new n.n(`sagittarius_gateway.ExecutionService`,[{name:`Update`,serverStreaming:!0,clientStreaming:!0,options:{},I:C,O:w},{name:`Push`,options:{},I:T,O:E}]),O=class{constructor(e){this._transport=e,this.typeName=D.typeName,this.methods=D.methods,this.options=D.options}update(e){let t=this.methods[0],r=this._transport.mergeOptions(e);return n.t(`duplex`,this._transport,t,r)}push(e,t){let r=this.methods[1],i=this._transport.mergeOptions(t);return n.t(`unary`,this._transport,r,i,e)}};exports.ExecutionLogonRequest=C,exports.ExecutionLogonResponse=w,exports.ExecutionPushRequest=T,exports.ExecutionPushResponse=E,exports.ExecutionService=D,exports.ExecutionServiceClient=O,exports.FlowLogonRequest=r,exports.FlowPushRequest=a,exports.FlowPushResponse=o,exports.FlowResponse=i,exports.FlowService=s,exports.FlowServiceClient=c,exports.Logon=x,exports.ModuleConfigurationPushRequest=p,exports.ModuleConfigurationPushResponse=m,exports.ModuleConfigurationRequest=d,exports.ModuleConfigurationResponse=f,exports.ModuleService=h,exports.ModuleServiceClient=g,exports.ModuleUpdateRequest=l,exports.ModuleUpdateResponse=u,exports.RuntimeStatusService=y,exports.RuntimeStatusServiceClient=b,exports.RuntimeStatusUpdateRequest=_,exports.RuntimeStatusUpdateResponse=v,exports.TestExecutionRequest=S;
|