@code0-tech/tucana 0.0.68 → 0.0.69

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.
Files changed (56) hide show
  1. package/dist/aquila.cjs.js +1 -1
  2. package/dist/aquila.es.js +252 -617
  3. package/dist/pb/_generated/aquila.action_pb.client.d.ts +3 -3
  4. package/dist/pb/_generated/aquila.action_pb.d.ts +46 -119
  5. package/dist/pb/_generated/{aquila.flow_type_pb.client.d.ts → aquila.module_pb.client.d.ts} +9 -9
  6. package/dist/pb/_generated/aquila.module_pb.d.ts +54 -0
  7. package/dist/pb/_generated/aquila.runtime_status_pb.d.ts +7 -1
  8. package/dist/pb/_generated/sagittarius.flow_pb.d.ts +5 -5
  9. package/dist/pb/_generated/{sagittarius.flow_type_pb.client.d.ts → sagittarius.module_pb.client.d.ts} +7 -7
  10. package/dist/pb/_generated/sagittarius.module_pb.d.ts +59 -0
  11. package/dist/pb/_generated/sagittarius.runtime_status_pb.d.ts +12 -1
  12. package/dist/pb/_generated/sagittarius.runtime_usage_pb.d.ts +5 -0
  13. package/dist/pb/_generated/sagittarius.text_execution_pb.d.ts +5 -163
  14. package/dist/pb/_generated/shared.errors_pb.d.ts +122 -0
  15. package/dist/pb/_generated/shared.execution_result_pb.d.ts +131 -0
  16. package/dist/pb/_generated/shared.flow_pb.d.ts +83 -5
  17. package/dist/pb/_generated/{shared.flow_definition_pb.d.ts → shared.flow_type_pb.d.ts} +12 -0
  18. package/dist/pb/_generated/shared.function_pb.d.ts +4 -0
  19. package/dist/pb/_generated/shared.module_pb.d.ts +196 -0
  20. package/dist/pb/_generated/shared.runtime_flow_type_pb.d.ts +136 -0
  21. package/dist/pb/_generated/shared.runtime_function_pb.d.ts +4 -0
  22. package/dist/pb/_generated/shared.runtime_status_pb.d.ts +95 -32
  23. package/dist/pb/aquila.d.ts +2 -8
  24. package/dist/pb/sagittarius.d.ts +2 -10
  25. package/dist/pb/shared.d.ts +5 -2
  26. package/dist/{rpc-interceptor-CMOWd86Q.cjs → rpc-interceptor-4ZNqeHp7.cjs} +1 -1
  27. package/dist/{rpc-interceptor-DTRGJkmz.js → rpc-interceptor-DpAjfIVk.js} +1 -1
  28. package/dist/sagittarius.cjs.js +1 -1
  29. package/dist/sagittarius.es.js +366 -996
  30. package/dist/shared.cjs.js +1 -1
  31. package/dist/shared.es.js +3 -3
  32. package/dist/shared.flow_pb-CAu-uZAs.cjs +1 -0
  33. package/dist/shared.flow_pb-YdrVU_yH.js +877 -0
  34. package/dist/shared.runtime_usage_pb-6pp995qK.cjs +2 -0
  35. package/dist/{shared.runtime_usage_pb-C4_UdBmo.js → shared.runtime_usage_pb-Qa9pCiee.js} +2099 -1057
  36. package/package.json +1 -1
  37. package/dist/pb/_generated/aquila.data_type_pb.client.d.ts +0 -27
  38. package/dist/pb/_generated/aquila.data_type_pb.d.ts +0 -54
  39. package/dist/pb/_generated/aquila.flow_type_pb.d.ts +0 -54
  40. package/dist/pb/_generated/aquila.function_pb.client.d.ts +0 -31
  41. package/dist/pb/_generated/aquila.function_pb.d.ts +0 -54
  42. package/dist/pb/_generated/aquila.runtime_function_pb.client.d.ts +0 -31
  43. package/dist/pb/_generated/aquila.runtime_function_pb.d.ts +0 -54
  44. package/dist/pb/_generated/sagittarius.action_configuration_pb.client.d.ts +0 -27
  45. package/dist/pb/_generated/sagittarius.action_configuration_pb.d.ts +0 -60
  46. package/dist/pb/_generated/sagittarius.data_type_pb.client.d.ts +0 -27
  47. package/dist/pb/_generated/sagittarius.data_type_pb.d.ts +0 -54
  48. package/dist/pb/_generated/sagittarius.flow_type_pb.d.ts +0 -54
  49. package/dist/pb/_generated/sagittarius.function_pb.client.d.ts +0 -31
  50. package/dist/pb/_generated/sagittarius.function_pb.d.ts +0 -54
  51. package/dist/pb/_generated/sagittarius.runtime_function_pb.client.d.ts +0 -31
  52. package/dist/pb/_generated/sagittarius.runtime_function_pb.d.ts +0 -54
  53. package/dist/pb/_generated/shared.action_configuration_pb.d.ts +0 -120
  54. package/dist/shared.flow_pb-B3074C-y.js +0 -717
  55. package/dist/shared.flow_pb-CWFj5vbi.cjs +0 -1
  56. package/dist/shared.runtime_usage_pb-D4aGN4uQ.cjs +0 -2
@@ -1,5 +1,6 @@
1
1
  import { ServiceType } from '@protobuf-ts/runtime-rpc';
2
2
  import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
3
+ import { ExecutionResult } from './shared.execution_result_pb';
3
4
  import { Value } from './shared.struct_pb';
4
5
  /**
5
6
  * @generated from protobuf message sagittarius.Logon
@@ -15,123 +16,14 @@ export interface TestExecutionRequest {
15
16
  */
16
17
  flowId: bigint;
17
18
  /**
18
- * @generated from protobuf field: string execution_uuid = 2
19
+ * @generated from protobuf field: string execution_identifier = 2
19
20
  */
20
- executionUuid: string;
21
+ executionIdentifier: string;
21
22
  /**
22
23
  * @generated from protobuf field: shared.Value body = 3
23
24
  */
24
25
  body?: Value;
25
26
  }
26
- /**
27
- * @generated from protobuf message sagittarius.TestExecutionResponse
28
- */
29
- export interface TestExecutionResponse {
30
- /**
31
- * @generated from protobuf field: int64 flow_id = 1
32
- */
33
- flowId: bigint;
34
- /**
35
- * @generated from protobuf field: string execution_uuid = 2
36
- */
37
- executionUuid: string;
38
- /**
39
- * @generated from protobuf field: shared.Value result = 3
40
- */
41
- result?: Value;
42
- /**
43
- * @generated from protobuf field: repeated sagittarius.Log logs = 4
44
- */
45
- logs: Log[];
46
- }
47
- /**
48
- * @generated from protobuf message sagittarius.Log
49
- */
50
- export interface Log {
51
- /**
52
- * @generated from protobuf oneof: kind
53
- */
54
- kind: {
55
- oneofKind: "applicationLog";
56
- /**
57
- * @generated from protobuf field: sagittarius.ApplicationLog application_log = 1
58
- */
59
- applicationLog: ApplicationLog;
60
- } | {
61
- oneofKind: "successLog";
62
- /**
63
- * @generated from protobuf field: sagittarius.SuccessLog success_log = 2
64
- */
65
- successLog: SuccessLog;
66
- } | {
67
- oneofKind: "errorLog";
68
- /**
69
- * @generated from protobuf field: sagittarius.RuntimeErrorLog error_log = 3
70
- */
71
- errorLog: RuntimeErrorLog;
72
- } | {
73
- oneofKind: undefined;
74
- };
75
- }
76
- /**
77
- * @generated from protobuf message sagittarius.SuccessLog
78
- */
79
- export interface SuccessLog {
80
- /**
81
- * @generated from protobuf field: int64 node_id = 1
82
- */
83
- nodeId: bigint;
84
- /**
85
- * @generated from protobuf field: shared.Value result = 2
86
- */
87
- result?: Value;
88
- /**
89
- * @generated from protobuf field: repeated shared.Value parameter = 3
90
- */
91
- parameter: Value[];
92
- /**
93
- * @generated from protobuf field: string timestamp = 4
94
- */
95
- timestamp: string;
96
- }
97
- /**
98
- * @generated from protobuf message sagittarius.RuntimeErrorLog
99
- */
100
- export interface RuntimeErrorLog {
101
- /**
102
- * @generated from protobuf field: int64 node_id = 1
103
- */
104
- nodeId: bigint;
105
- /**
106
- * @generated from protobuf field: string error = 2
107
- */
108
- error: string;
109
- /**
110
- * @generated from protobuf field: repeated shared.Value parameter = 3
111
- */
112
- parameter: Value[];
113
- /**
114
- * @generated from protobuf field: string timestamp = 4
115
- */
116
- timestamp: string;
117
- }
118
- /**
119
- * @generated from protobuf message sagittarius.ApplicationLog
120
- */
121
- export interface ApplicationLog {
122
- /**
123
- * @generated from protobuf field: string message = 1
124
- */
125
- message: string;
126
- /**
127
- * @generated from protobuf field: string level = 2
128
- */
129
- level: string;
130
- /**
131
- * @generated from protobuf field: string timestamp = 3
132
- */
133
- timestamp: string;
134
- }
135
27
  /**
136
28
  * Aquila sends a logon request to Sagittarius that initiates a stream
137
29
  * If the stream is initialized it will return the result after it received a request
@@ -151,9 +43,9 @@ export interface ExecutionLogonRequest {
151
43
  } | {
152
44
  oneofKind: "response";
153
45
  /**
154
- * @generated from protobuf field: sagittarius.TestExecutionResponse response = 2
46
+ * @generated from protobuf field: shared.ExecutionResult response = 2
155
47
  */
156
- response: TestExecutionResponse;
48
+ response: ExecutionResult;
157
49
  } | {
158
50
  oneofKind: undefined;
159
51
  };
@@ -189,56 +81,6 @@ declare class TestExecutionRequest$Type extends MessageType<TestExecutionRequest
189
81
  * @generated MessageType for protobuf message sagittarius.TestExecutionRequest
190
82
  */
191
83
  export declare const TestExecutionRequest: TestExecutionRequest$Type;
192
- declare class TestExecutionResponse$Type extends MessageType<TestExecutionResponse> {
193
- constructor();
194
- create(value?: PartialMessage<TestExecutionResponse>): TestExecutionResponse;
195
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: TestExecutionResponse): TestExecutionResponse;
196
- internalBinaryWrite(message: TestExecutionResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
197
- }
198
- /**
199
- * @generated MessageType for protobuf message sagittarius.TestExecutionResponse
200
- */
201
- export declare const TestExecutionResponse: TestExecutionResponse$Type;
202
- declare class Log$Type extends MessageType<Log> {
203
- constructor();
204
- create(value?: PartialMessage<Log>): Log;
205
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Log): Log;
206
- internalBinaryWrite(message: Log, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
207
- }
208
- /**
209
- * @generated MessageType for protobuf message sagittarius.Log
210
- */
211
- export declare const Log: Log$Type;
212
- declare class SuccessLog$Type extends MessageType<SuccessLog> {
213
- constructor();
214
- create(value?: PartialMessage<SuccessLog>): SuccessLog;
215
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SuccessLog): SuccessLog;
216
- internalBinaryWrite(message: SuccessLog, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
217
- }
218
- /**
219
- * @generated MessageType for protobuf message sagittarius.SuccessLog
220
- */
221
- export declare const SuccessLog: SuccessLog$Type;
222
- declare class RuntimeErrorLog$Type extends MessageType<RuntimeErrorLog> {
223
- constructor();
224
- create(value?: PartialMessage<RuntimeErrorLog>): RuntimeErrorLog;
225
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RuntimeErrorLog): RuntimeErrorLog;
226
- internalBinaryWrite(message: RuntimeErrorLog, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
227
- }
228
- /**
229
- * @generated MessageType for protobuf message sagittarius.RuntimeErrorLog
230
- */
231
- export declare const RuntimeErrorLog: RuntimeErrorLog$Type;
232
- declare class ApplicationLog$Type extends MessageType<ApplicationLog> {
233
- constructor();
234
- create(value?: PartialMessage<ApplicationLog>): ApplicationLog;
235
- internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ApplicationLog): ApplicationLog;
236
- internalBinaryWrite(message: ApplicationLog, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
237
- }
238
- /**
239
- * @generated MessageType for protobuf message sagittarius.ApplicationLog
240
- */
241
- export declare const ApplicationLog: ApplicationLog$Type;
242
84
  declare class ExecutionLogonRequest$Type extends MessageType<ExecutionLogonRequest> {
243
85
  constructor();
244
86
  create(value?: PartialMessage<ExecutionLogonRequest>): ExecutionLogonRequest;
@@ -0,0 +1,122 @@
1
+ import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
2
+ import { Struct } from './shared.struct_pb';
3
+ /**
4
+ * @generated from protobuf message shared.ServiceError
5
+ */
6
+ export interface ServiceError {
7
+ /**
8
+ * @generated from protobuf field: string message = 1
9
+ */
10
+ message: string;
11
+ /**
12
+ * @generated from protobuf field: repeated shared.ServiceErrorDetails details = 2
13
+ */
14
+ details: ServiceErrorDetails[];
15
+ }
16
+ /**
17
+ * @generated from protobuf message shared.ServiceErrorDetails
18
+ */
19
+ export interface ServiceErrorDetails {
20
+ /**
21
+ * @generated from protobuf oneof: kind
22
+ */
23
+ kind: {
24
+ oneofKind: "activeModelError";
25
+ /**
26
+ * @generated from protobuf field: shared.ServiceActiveModelError active_model_error = 1
27
+ */
28
+ activeModelError: ServiceActiveModelError;
29
+ } | {
30
+ oneofKind: undefined;
31
+ };
32
+ }
33
+ /**
34
+ * @generated from protobuf message shared.ServiceActiveModelError
35
+ */
36
+ export interface ServiceActiveModelError {
37
+ /**
38
+ * @generated from protobuf field: string attribute = 1
39
+ */
40
+ attribute: string;
41
+ /**
42
+ * @generated from protobuf field: string type = 2
43
+ */
44
+ type: string;
45
+ }
46
+ /**
47
+ * @generated from protobuf message shared.Error
48
+ */
49
+ export interface Error {
50
+ /**
51
+ * @generated from protobuf field: string code = 1
52
+ */
53
+ code: string;
54
+ /**
55
+ * @generated from protobuf field: string category = 2
56
+ */
57
+ category: string;
58
+ /**
59
+ * @generated from protobuf field: string message = 3
60
+ */
61
+ message: string;
62
+ /**
63
+ * @generated from protobuf field: int64 timestamp = 4
64
+ */
65
+ timestamp: bigint;
66
+ /**
67
+ * @generated from protobuf field: string version = 5
68
+ */
69
+ version: string;
70
+ /**
71
+ * @generated from protobuf field: map<string, string> dependencies = 6
72
+ */
73
+ dependencies: {
74
+ [key: string]: string;
75
+ };
76
+ /**
77
+ * @generated from protobuf field: shared.Struct details = 7
78
+ */
79
+ details?: Struct;
80
+ }
81
+ declare class ServiceError$Type extends MessageType<ServiceError> {
82
+ constructor();
83
+ create(value?: PartialMessage<ServiceError>): ServiceError;
84
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ServiceError): ServiceError;
85
+ internalBinaryWrite(message: ServiceError, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
86
+ }
87
+ /**
88
+ * @generated MessageType for protobuf message shared.ServiceError
89
+ */
90
+ export declare const ServiceError: ServiceError$Type;
91
+ declare class ServiceErrorDetails$Type extends MessageType<ServiceErrorDetails> {
92
+ constructor();
93
+ create(value?: PartialMessage<ServiceErrorDetails>): ServiceErrorDetails;
94
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ServiceErrorDetails): ServiceErrorDetails;
95
+ internalBinaryWrite(message: ServiceErrorDetails, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
96
+ }
97
+ /**
98
+ * @generated MessageType for protobuf message shared.ServiceErrorDetails
99
+ */
100
+ export declare const ServiceErrorDetails: ServiceErrorDetails$Type;
101
+ declare class ServiceActiveModelError$Type extends MessageType<ServiceActiveModelError> {
102
+ constructor();
103
+ create(value?: PartialMessage<ServiceActiveModelError>): ServiceActiveModelError;
104
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ServiceActiveModelError): ServiceActiveModelError;
105
+ internalBinaryWrite(message: ServiceActiveModelError, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
106
+ }
107
+ /**
108
+ * @generated MessageType for protobuf message shared.ServiceActiveModelError
109
+ */
110
+ export declare const ServiceActiveModelError: ServiceActiveModelError$Type;
111
+ declare class Error$Type extends MessageType<Error> {
112
+ constructor();
113
+ create(value?: PartialMessage<Error>): Error;
114
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Error): Error;
115
+ private binaryReadMap6;
116
+ internalBinaryWrite(message: Error, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
117
+ }
118
+ /**
119
+ * @generated MessageType for protobuf message shared.Error
120
+ */
121
+ export declare const Error: Error$Type;
122
+ export {};
@@ -0,0 +1,131 @@
1
+ import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
2
+ import { Error } from './shared.errors_pb';
3
+ import { Value } from './shared.struct_pb';
4
+ /**
5
+ * @generated from protobuf message shared.NodeParameterNodeExecutionResult
6
+ */
7
+ export interface NodeParameterNodeExecutionResult {
8
+ /**
9
+ * @generated from protobuf field: shared.Value value = 5
10
+ */
11
+ value?: Value;
12
+ }
13
+ /**
14
+ * @generated from protobuf message shared.NodeExecutionResult
15
+ */
16
+ export interface NodeExecutionResult {
17
+ /**
18
+ * @generated from protobuf field: int64 node_id = 1
19
+ */
20
+ nodeId: bigint;
21
+ /**
22
+ * @generated from protobuf field: int64 started_at = 2
23
+ */
24
+ startedAt: bigint;
25
+ /**
26
+ * @generated from protobuf field: int64 finished_at = 3
27
+ */
28
+ finishedAt: bigint;
29
+ /**
30
+ * @generated from protobuf field: repeated shared.NodeParameterNodeExecutionResult parameter_results = 4
31
+ */
32
+ parameterResults: NodeParameterNodeExecutionResult[];
33
+ /**
34
+ * @generated from protobuf oneof: result
35
+ */
36
+ result: {
37
+ oneofKind: "success";
38
+ /**
39
+ * @generated from protobuf field: shared.Value success = 5
40
+ */
41
+ success: Value;
42
+ } | {
43
+ oneofKind: "error";
44
+ /**
45
+ * @generated from protobuf field: shared.Error error = 6
46
+ */
47
+ error: Error;
48
+ } | {
49
+ oneofKind: undefined;
50
+ };
51
+ }
52
+ /**
53
+ * @generated from protobuf message shared.ExecutionResult
54
+ */
55
+ export interface ExecutionResult {
56
+ /**
57
+ * @generated from protobuf field: string execution_identifier = 1
58
+ */
59
+ executionIdentifier: string;
60
+ /**
61
+ * @generated from protobuf field: int64 flow_id = 2
62
+ */
63
+ flowId: bigint;
64
+ /**
65
+ * @generated from protobuf field: int64 started_at = 3
66
+ */
67
+ startedAt: bigint;
68
+ /**
69
+ * @generated from protobuf field: int64 finished_at = 4
70
+ */
71
+ finishedAt: bigint;
72
+ /**
73
+ * @generated from protobuf field: shared.Value input = 5
74
+ */
75
+ input?: Value;
76
+ /**
77
+ * @generated from protobuf field: repeated shared.NodeExecutionResult node_execution_results = 6
78
+ */
79
+ nodeExecutionResults: NodeExecutionResult[];
80
+ /**
81
+ * Result of executed flow
82
+ *
83
+ * @generated from protobuf oneof: result
84
+ */
85
+ result: {
86
+ oneofKind: "success";
87
+ /**
88
+ * @generated from protobuf field: shared.Value success = 7
89
+ */
90
+ success: Value;
91
+ } | {
92
+ oneofKind: "error";
93
+ /**
94
+ * @generated from protobuf field: shared.Error error = 8
95
+ */
96
+ error: Error;
97
+ } | {
98
+ oneofKind: undefined;
99
+ };
100
+ }
101
+ declare class NodeParameterNodeExecutionResult$Type extends MessageType<NodeParameterNodeExecutionResult> {
102
+ constructor();
103
+ create(value?: PartialMessage<NodeParameterNodeExecutionResult>): NodeParameterNodeExecutionResult;
104
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: NodeParameterNodeExecutionResult): NodeParameterNodeExecutionResult;
105
+ internalBinaryWrite(message: NodeParameterNodeExecutionResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
106
+ }
107
+ /**
108
+ * @generated MessageType for protobuf message shared.NodeParameterNodeExecutionResult
109
+ */
110
+ export declare const NodeParameterNodeExecutionResult: NodeParameterNodeExecutionResult$Type;
111
+ declare class NodeExecutionResult$Type extends MessageType<NodeExecutionResult> {
112
+ constructor();
113
+ create(value?: PartialMessage<NodeExecutionResult>): NodeExecutionResult;
114
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: NodeExecutionResult): NodeExecutionResult;
115
+ internalBinaryWrite(message: NodeExecutionResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
116
+ }
117
+ /**
118
+ * @generated MessageType for protobuf message shared.NodeExecutionResult
119
+ */
120
+ export declare const NodeExecutionResult: NodeExecutionResult$Type;
121
+ declare class ExecutionResult$Type extends MessageType<ExecutionResult> {
122
+ constructor();
123
+ create(value?: PartialMessage<ExecutionResult>): ExecutionResult;
124
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ExecutionResult): ExecutionResult;
125
+ internalBinaryWrite(message: ExecutionResult, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
126
+ }
127
+ /**
128
+ * @generated MessageType for protobuf message shared.ExecutionResult
129
+ */
130
+ export declare const ExecutionResult: ExecutionResult$Type;
131
+ export {};
@@ -97,6 +97,10 @@ export interface FlowSetting {
97
97
  * @generated from protobuf field: shared.Value value = 3
98
98
  */
99
99
  value?: Value;
100
+ /**
101
+ * @generated from protobuf field: optional string cast = 4
102
+ */
103
+ cast?: string;
100
104
  }
101
105
  /**
102
106
  * @generated from protobuf message shared.NodeFunction
@@ -145,13 +149,11 @@ export interface NodeValue {
145
149
  */
146
150
  referenceValue: ReferenceValue;
147
151
  } | {
148
- oneofKind: "nodeFunctionId";
152
+ oneofKind: "subFlow";
149
153
  /**
150
- * Reference to the `database_id` field of message `NodeFunction`
151
- *
152
- * @generated from protobuf field: int64 node_function_id = 3
154
+ * @generated from protobuf field: shared.SubFlow sub_flow = 3
153
155
  */
154
- nodeFunctionId: bigint;
156
+ subFlow: SubFlow;
155
157
  } | {
156
158
  oneofKind: undefined;
157
159
  };
@@ -174,6 +176,10 @@ export interface NodeParameter {
174
176
  * @generated from protobuf field: shared.NodeValue value = 3
175
177
  */
176
178
  value?: NodeValue;
179
+ /**
180
+ * @generated from protobuf field: optional string cast = 4
181
+ */
182
+ cast?: string;
177
183
  }
178
184
  /**
179
185
  * @generated from protobuf message shared.ReferenceValue
@@ -214,6 +220,58 @@ export interface ReferenceValue {
214
220
  */
215
221
  paths: ReferencePath[];
216
222
  }
223
+ /**
224
+ * @generated from protobuf message shared.SubFlow
225
+ */
226
+ export interface SubFlow {
227
+ /**
228
+ * @generated from protobuf oneof: execution_reference
229
+ */
230
+ executionReference: {
231
+ oneofKind: "startingNodeId";
232
+ /**
233
+ * @generated from protobuf field: int64 starting_node_id = 1
234
+ */
235
+ startingNodeId: bigint;
236
+ } | {
237
+ oneofKind: "functionIdentifier";
238
+ /**
239
+ * @generated from protobuf field: string function_identifier = 2
240
+ */
241
+ functionIdentifier: string;
242
+ } | {
243
+ oneofKind: undefined;
244
+ };
245
+ /**
246
+ * @generated from protobuf field: string signature = 3
247
+ */
248
+ signature: string;
249
+ /**
250
+ * @generated from protobuf field: repeated shared.SubFlowSetting settings = 4
251
+ */
252
+ settings: SubFlowSetting[];
253
+ }
254
+ /**
255
+ * @generated from protobuf message shared.SubFlowSetting
256
+ */
257
+ export interface SubFlowSetting {
258
+ /**
259
+ * @generated from protobuf field: string identifier = 1
260
+ */
261
+ identifier: string;
262
+ /**
263
+ * @generated from protobuf field: optional shared.Value default_value = 2
264
+ */
265
+ defaultValue?: Value;
266
+ /**
267
+ * @generated from protobuf field: optional bool optional = 3
268
+ */
269
+ optional?: boolean;
270
+ /**
271
+ * @generated from protobuf field: optional bool hidden = 4
272
+ */
273
+ hidden?: boolean;
274
+ }
217
275
  /**
218
276
  * @generated from protobuf message shared.FlowInput
219
277
  */
@@ -337,6 +395,26 @@ declare class ReferenceValue$Type extends MessageType<ReferenceValue> {
337
395
  * @generated MessageType for protobuf message shared.ReferenceValue
338
396
  */
339
397
  export declare const ReferenceValue: ReferenceValue$Type;
398
+ declare class SubFlow$Type extends MessageType<SubFlow> {
399
+ constructor();
400
+ create(value?: PartialMessage<SubFlow>): SubFlow;
401
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SubFlow): SubFlow;
402
+ internalBinaryWrite(message: SubFlow, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
403
+ }
404
+ /**
405
+ * @generated MessageType for protobuf message shared.SubFlow
406
+ */
407
+ export declare const SubFlow: SubFlow$Type;
408
+ declare class SubFlowSetting$Type extends MessageType<SubFlowSetting> {
409
+ constructor();
410
+ create(value?: PartialMessage<SubFlowSetting>): SubFlowSetting;
411
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: SubFlowSetting): SubFlowSetting;
412
+ internalBinaryWrite(message: SubFlowSetting, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
413
+ }
414
+ /**
415
+ * @generated MessageType for protobuf message shared.SubFlowSetting
416
+ */
417
+ export declare const SubFlowSetting: SubFlowSetting$Type;
340
418
  declare class FlowInput$Type extends MessageType<FlowInput> {
341
419
  constructor();
342
420
  create(value?: PartialMessage<FlowInput>): FlowInput;
@@ -62,6 +62,10 @@ export interface FlowType {
62
62
  * @generated from protobuf field: string signature = 13
63
63
  */
64
64
  signature: string;
65
+ /**
66
+ * @generated from protobuf field: string runtime_identifier = 14
67
+ */
68
+ runtimeIdentifier: string;
65
69
  }
66
70
  /**
67
71
  * @generated from protobuf message shared.FlowTypeSetting
@@ -87,6 +91,14 @@ export interface FlowTypeSetting {
87
91
  * @generated from protobuf field: repeated shared.Translation description = 5
88
92
  */
89
93
  description: Translation[];
94
+ /**
95
+ * @generated from protobuf field: optional bool optional = 6
96
+ */
97
+ optional?: boolean;
98
+ /**
99
+ * @generated from protobuf field: optional bool hidden = 7
100
+ */
101
+ hidden?: boolean;
90
102
  }
91
103
  /**
92
104
  * @generated from protobuf enum shared.FlowTypeSetting.UniquenessScope
@@ -74,6 +74,10 @@ export interface FunctionDefinition {
74
74
  * @generated from protobuf field: string runtime_definition_name = 15
75
75
  */
76
76
  runtimeDefinitionName: string;
77
+ /**
78
+ * @generated from protobuf field: optional string design = 16
79
+ */
80
+ design?: string;
77
81
  }
78
82
  /**
79
83
  * Definition of a parameter used for execution