@code0-tech/tucana 0.0.77 → 0.0.79

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.
@@ -2,7 +2,42 @@ import { ServiceType } from '@protobuf-ts/runtime-rpc';
2
2
  import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
3
3
  import { ModuleConfigurations, Module } from './shared.module_pb';
4
4
  import { NodeExecutionResult } from './shared.execution_result_pb';
5
- import { Struct, Value } from './shared.struct_pb';
5
+ import { Error } from './shared.errors_pb';
6
+ import { Value, Struct } from './shared.struct_pb';
7
+ import { FlowSetting } from './shared.flow_pb';
8
+ /**
9
+ * @generated from protobuf message aquila.ActionFlow
10
+ */
11
+ export interface ActionFlow {
12
+ /**
13
+ * @generated from protobuf field: int64 flow_id = 1
14
+ */
15
+ flowId: bigint;
16
+ /**
17
+ * @generated from protobuf field: int64 project_id = 2
18
+ */
19
+ projectId: bigint;
20
+ /**
21
+ * @generated from protobuf field: repeated shared.FlowSetting settings = 3
22
+ */
23
+ settings: FlowSetting[];
24
+ /**
25
+ * @generated from protobuf field: shared.Struct input_schema = 4
26
+ */
27
+ inputSchema?: Struct;
28
+ /**
29
+ * @generated from protobuf field: shared.Struct output_schema = 5
30
+ */
31
+ outputSchema?: Struct;
32
+ /**
33
+ * @generated from protobuf field: string project_slug = 6
34
+ */
35
+ projectSlug: string;
36
+ /**
37
+ * @generated from protobuf field: string name = 7
38
+ */
39
+ name: string;
40
+ }
6
41
  /**
7
42
  * Event that gets admitted by an action
8
43
  *
@@ -40,6 +75,73 @@ export interface ActionLogon {
40
75
  * @generated from protobuf field: shared.Module module = 1
41
76
  */
42
77
  module?: Module;
78
+ /**
79
+ * @generated from protobuf field: aquila.ActionLogon.ScalingOption scaling_option = 2
80
+ */
81
+ scalingOption: ActionLogon_ScalingOption;
82
+ }
83
+ /**
84
+ * @generated from protobuf enum aquila.ActionLogon.ScalingOption
85
+ */
86
+ export declare enum ActionLogon_ScalingOption {
87
+ /**
88
+ * @generated from protobuf enum value: UNKNOWN = 0;
89
+ */
90
+ UNKNOWN = 0,
91
+ /**
92
+ * Send all Flows/Project Configurations to all Actions of this type
93
+ *
94
+ * @generated from protobuf enum value: DISABLED = 1;
95
+ */
96
+ DISABLED = 1,
97
+ /**
98
+ * Split all Flows/Project Configurations between all available Actions of this type
99
+ *
100
+ * @generated from protobuf enum value: SPLIT = 2;
101
+ */
102
+ SPLIT = 2
103
+ }
104
+ /**
105
+ * Reference to a sub flow whose result is used as a parameter value
106
+ *
107
+ * @generated from protobuf message aquila.ActionNodeSubFlowValue
108
+ */
109
+ export interface ActionNodeSubFlowValue {
110
+ /**
111
+ * Execution identifier of the sub flow execution
112
+ *
113
+ * @generated from protobuf field: string execution_identifier = 1
114
+ */
115
+ executionIdentifier: string;
116
+ }
117
+ /**
118
+ * A single parameter value of a function
119
+ *
120
+ * @generated from protobuf message aquila.ActionNodeValue
121
+ */
122
+ export interface ActionNodeValue {
123
+ /**
124
+ * @generated from protobuf oneof: value
125
+ */
126
+ value: {
127
+ oneofKind: "literalValue";
128
+ /**
129
+ * A literal, already resolved value
130
+ *
131
+ * @generated from protobuf field: shared.Value literal_value = 1
132
+ */
133
+ literalValue: Value;
134
+ } | {
135
+ oneofKind: "subFlow";
136
+ /**
137
+ * A value that is produced by executing a sub flow
138
+ *
139
+ * @generated from protobuf field: aquila.ActionNodeSubFlowValue sub_flow = 2
140
+ */
141
+ subFlow: ActionNodeSubFlowValue;
142
+ } | {
143
+ oneofKind: undefined;
144
+ };
43
145
  }
44
146
  /**
45
147
  * Request to execute a request a flow
@@ -60,11 +162,11 @@ export interface ActionExecutionRequest {
60
162
  */
61
163
  functionIdentifier: string;
62
164
  /**
63
- * Parameters (JSON) of flow required to execute
165
+ * Parameters of functions required to execute
64
166
  *
65
- * @generated from protobuf field: shared.Struct parameters = 3
167
+ * @generated from protobuf field: repeated aquila.ActionNodeValue parameters = 3
66
168
  */
67
- parameters?: Struct;
169
+ parameters: ActionNodeValue[];
68
170
  /**
69
171
  * Project Id that this function is emitted for
70
172
  *
@@ -72,6 +174,77 @@ export interface ActionExecutionRequest {
72
174
  */
73
175
  projectId: bigint;
74
176
  }
177
+ /**
178
+ * Request to execute a sub flow
179
+ *
180
+ * @generated from protobuf message aquila.ActionSubFlowExecutionRequest
181
+ */
182
+ export interface ActionSubFlowExecutionRequest {
183
+ /**
184
+ * Execution identifier of execution
185
+ *
186
+ * @generated from protobuf field: string execution_identifier = 1
187
+ */
188
+ executionIdentifier: string;
189
+ /**
190
+ * parameters for the sub flow to inject
191
+ *
192
+ * @generated from protobuf field: repeated shared.Value parameters = 2
193
+ */
194
+ parameters: Value[];
195
+ }
196
+ /**
197
+ * Result of a sub flow execution
198
+ *
199
+ * @generated from protobuf message aquila.ActionSubFlowExecutionResponse
200
+ */
201
+ export interface ActionSubFlowExecutionResponse {
202
+ /**
203
+ * Execution identifier of execution
204
+ *
205
+ * @generated from protobuf field: string execution_identifier = 1
206
+ */
207
+ executionIdentifier: string;
208
+ /**
209
+ * @generated from protobuf oneof: result
210
+ */
211
+ result: {
212
+ oneofKind: "success";
213
+ /**
214
+ * Successful result of the sub flow execution
215
+ *
216
+ * @generated from protobuf field: shared.Value success = 2
217
+ */
218
+ success: Value;
219
+ } | {
220
+ oneofKind: "failure";
221
+ /**
222
+ * Error that occurred during the sub flow execution
223
+ *
224
+ * @generated from protobuf field: shared.Error failure = 3
225
+ */
226
+ failure: Error;
227
+ } | {
228
+ oneofKind: undefined;
229
+ };
230
+ }
231
+ /**
232
+ * @generated from protobuf message aquila.ActionFlowExecutionRequest
233
+ */
234
+ export interface ActionFlowExecutionRequest {
235
+ /**
236
+ * @generated from protobuf field: string execution_identifier = 1
237
+ */
238
+ executionIdentifier: string;
239
+ /**
240
+ * @generated from protobuf field: string flow_id = 2
241
+ */
242
+ flowId: string;
243
+ /**
244
+ * @generated from protobuf field: shared.Value payload = 3
245
+ */
246
+ payload?: Value;
247
+ }
75
248
  /**
76
249
  * @generated from protobuf message aquila.ActionExecutionResponse
77
250
  */
@@ -90,6 +263,60 @@ export interface ActionExecutionResponse {
90
263
  nodeResult?: NodeExecutionResult;
91
264
  }
92
265
  /**
266
+ * @generated from protobuf message aquila.ActionFlowExecutionResponse
267
+ */
268
+ export interface ActionFlowExecutionResponse {
269
+ /**
270
+ * Execution identifier of execution
271
+ *
272
+ * @generated from protobuf field: string execution_identifier = 1
273
+ */
274
+ executionIdentifier: string;
275
+ /**
276
+ * @generated from protobuf oneof: result
277
+ */
278
+ result: {
279
+ oneofKind: "success";
280
+ /**
281
+ * @generated from protobuf field: shared.Value success = 2
282
+ */
283
+ success: Value;
284
+ } | {
285
+ oneofKind: "failure";
286
+ /**
287
+ * @generated from protobuf field: shared.Error failure = 3
288
+ */
289
+ failure: Error;
290
+ } | {
291
+ oneofKind: undefined;
292
+ };
293
+ }
294
+ /**
295
+ * @generated from protobuf message aquila.ActionFlowUpdate
296
+ */
297
+ export interface ActionFlowUpdate {
298
+ /**
299
+ * @generated from protobuf oneof: data
300
+ */
301
+ data: {
302
+ oneofKind: "updatedFlow";
303
+ /**
304
+ * @generated from protobuf field: aquila.ActionFlow updated_flow = 1
305
+ */
306
+ updatedFlow: ActionFlow;
307
+ } | {
308
+ oneofKind: "deletedFlow";
309
+ /**
310
+ * @generated from protobuf field: int64 deleted_flow = 2
311
+ */
312
+ deletedFlow: bigint;
313
+ } | {
314
+ oneofKind: undefined;
315
+ };
316
+ }
317
+ /**
318
+ * Messages sent by the Action
319
+ *
93
320
  * @generated from protobuf message aquila.ActionTransferRequest
94
321
  */
95
322
  export interface ActionTransferRequest {
@@ -123,11 +350,29 @@ export interface ActionTransferRequest {
123
350
  * @generated from protobuf field: aquila.ActionExecutionResponse result = 3
124
351
  */
125
352
  result: ActionExecutionResponse;
353
+ } | {
354
+ oneofKind: "subFlowExecution";
355
+ /**
356
+ * Request to execute a sub flow
357
+ *
358
+ * @generated from protobuf field: aquila.ActionSubFlowExecutionRequest sub_flow_execution = 4
359
+ */
360
+ subFlowExecution: ActionSubFlowExecutionRequest;
361
+ } | {
362
+ oneofKind: "flowExecution";
363
+ /**
364
+ * Request to execute one of the action's own flows
365
+ *
366
+ * @generated from protobuf field: aquila.ActionFlowExecutionRequest flow_execution = 5
367
+ */
368
+ flowExecution: ActionFlowExecutionRequest;
126
369
  } | {
127
370
  oneofKind: undefined;
128
371
  };
129
372
  }
130
373
  /**
374
+ * Messages sent by Aquila
375
+ *
131
376
  * @generated from protobuf message aquila.ActionTransferResponse
132
377
  */
133
378
  export interface ActionTransferResponse {
@@ -150,10 +395,44 @@ export interface ActionTransferResponse {
150
395
  * @generated from protobuf field: shared.ModuleConfigurations module_configurations = 2
151
396
  */
152
397
  moduleConfigurations: ModuleConfigurations;
398
+ } | {
399
+ oneofKind: "flowUpdate";
400
+ /**
401
+ * An Action Flow update
402
+ *
403
+ * @generated from protobuf field: aquila.ActionFlowUpdate flow_update = 3
404
+ */
405
+ flowUpdate: ActionFlowUpdate;
406
+ } | {
407
+ oneofKind: "flowExecutionResponse";
408
+ /**
409
+ * Result of an flow execution
410
+ *
411
+ * @generated from protobuf field: aquila.ActionFlowExecutionResponse flow_execution_response = 4
412
+ */
413
+ flowExecutionResponse: ActionFlowExecutionResponse;
414
+ } | {
415
+ oneofKind: "subFlowExecutionResponse";
416
+ /**
417
+ * Result of a sub flow execution
418
+ *
419
+ * @generated from protobuf field: aquila.ActionSubFlowExecutionResponse sub_flow_execution_response = 5
420
+ */
421
+ subFlowExecutionResponse: ActionSubFlowExecutionResponse;
153
422
  } | {
154
423
  oneofKind: undefined;
155
424
  };
156
425
  }
426
+ declare class ActionFlow$Type extends MessageType<ActionFlow> {
427
+ constructor();
428
+ create(value?: PartialMessage<ActionFlow>): ActionFlow;
429
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionFlow): ActionFlow;
430
+ internalBinaryWrite(message: ActionFlow, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
431
+ }
432
+ /**
433
+ * @generated MessageType for protobuf message aquila.ActionFlow
434
+ */
435
+ export declare const ActionFlow: ActionFlow$Type;
157
436
  declare class ActionEvent$Type extends MessageType<ActionEvent> {
158
437
  constructor();
159
438
  create(value?: PartialMessage<ActionEvent>): ActionEvent;
@@ -174,6 +453,26 @@ declare class ActionLogon$Type extends MessageType<ActionLogon> {
174
453
  * @generated MessageType for protobuf message aquila.ActionLogon
175
454
  */
176
455
  export declare const ActionLogon: ActionLogon$Type;
456
+ declare class ActionNodeSubFlowValue$Type extends MessageType<ActionNodeSubFlowValue> {
457
+ constructor();
458
+ create(value?: PartialMessage<ActionNodeSubFlowValue>): ActionNodeSubFlowValue;
459
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionNodeSubFlowValue): ActionNodeSubFlowValue;
460
+ internalBinaryWrite(message: ActionNodeSubFlowValue, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
461
+ }
462
+ /**
463
+ * @generated MessageType for protobuf message aquila.ActionNodeSubFlowValue
464
+ */
465
+ export declare const ActionNodeSubFlowValue: ActionNodeSubFlowValue$Type;
466
+ declare class ActionNodeValue$Type extends MessageType<ActionNodeValue> {
467
+ constructor();
468
+ create(value?: PartialMessage<ActionNodeValue>): ActionNodeValue;
469
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionNodeValue): ActionNodeValue;
470
+ internalBinaryWrite(message: ActionNodeValue, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
471
+ }
472
+ /**
473
+ * @generated MessageType for protobuf message aquila.ActionNodeValue
474
+ */
475
+ export declare const ActionNodeValue: ActionNodeValue$Type;
177
476
  declare class ActionExecutionRequest$Type extends MessageType<ActionExecutionRequest> {
178
477
  constructor();
179
478
  create(value?: PartialMessage<ActionExecutionRequest>): ActionExecutionRequest;
@@ -184,6 +483,36 @@ declare class ActionExecutionRequest$Type extends MessageType<ActionExecutionReq
184
483
  * @generated MessageType for protobuf message aquila.ActionExecutionRequest
185
484
  */
186
485
  export declare const ActionExecutionRequest: ActionExecutionRequest$Type;
486
+ declare class ActionSubFlowExecutionRequest$Type extends MessageType<ActionSubFlowExecutionRequest> {
487
+ constructor();
488
+ create(value?: PartialMessage<ActionSubFlowExecutionRequest>): ActionSubFlowExecutionRequest;
489
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionSubFlowExecutionRequest): ActionSubFlowExecutionRequest;
490
+ internalBinaryWrite(message: ActionSubFlowExecutionRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
491
+ }
492
+ /**
493
+ * @generated MessageType for protobuf message aquila.ActionSubFlowExecutionRequest
494
+ */
495
+ export declare const ActionSubFlowExecutionRequest: ActionSubFlowExecutionRequest$Type;
496
+ declare class ActionSubFlowExecutionResponse$Type extends MessageType<ActionSubFlowExecutionResponse> {
497
+ constructor();
498
+ create(value?: PartialMessage<ActionSubFlowExecutionResponse>): ActionSubFlowExecutionResponse;
499
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionSubFlowExecutionResponse): ActionSubFlowExecutionResponse;
500
+ internalBinaryWrite(message: ActionSubFlowExecutionResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
501
+ }
502
+ /**
503
+ * @generated MessageType for protobuf message aquila.ActionSubFlowExecutionResponse
504
+ */
505
+ export declare const ActionSubFlowExecutionResponse: ActionSubFlowExecutionResponse$Type;
506
+ declare class ActionFlowExecutionRequest$Type extends MessageType<ActionFlowExecutionRequest> {
507
+ constructor();
508
+ create(value?: PartialMessage<ActionFlowExecutionRequest>): ActionFlowExecutionRequest;
509
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionFlowExecutionRequest): ActionFlowExecutionRequest;
510
+ internalBinaryWrite(message: ActionFlowExecutionRequest, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
511
+ }
512
+ /**
513
+ * @generated MessageType for protobuf message aquila.ActionFlowExecutionRequest
514
+ */
515
+ export declare const ActionFlowExecutionRequest: ActionFlowExecutionRequest$Type;
187
516
  declare class ActionExecutionResponse$Type extends MessageType<ActionExecutionResponse> {
188
517
  constructor();
189
518
  create(value?: PartialMessage<ActionExecutionResponse>): ActionExecutionResponse;
@@ -194,6 +523,26 @@ declare class ActionExecutionResponse$Type extends MessageType<ActionExecutionRe
194
523
  * @generated MessageType for protobuf message aquila.ActionExecutionResponse
195
524
  */
196
525
  export declare const ActionExecutionResponse: ActionExecutionResponse$Type;
526
+ declare class ActionFlowExecutionResponse$Type extends MessageType<ActionFlowExecutionResponse> {
527
+ constructor();
528
+ create(value?: PartialMessage<ActionFlowExecutionResponse>): ActionFlowExecutionResponse;
529
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionFlowExecutionResponse): ActionFlowExecutionResponse;
530
+ internalBinaryWrite(message: ActionFlowExecutionResponse, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
531
+ }
532
+ /**
533
+ * @generated MessageType for protobuf message aquila.ActionFlowExecutionResponse
534
+ */
535
+ export declare const ActionFlowExecutionResponse: ActionFlowExecutionResponse$Type;
536
+ declare class ActionFlowUpdate$Type extends MessageType<ActionFlowUpdate> {
537
+ constructor();
538
+ create(value?: PartialMessage<ActionFlowUpdate>): ActionFlowUpdate;
539
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ActionFlowUpdate): ActionFlowUpdate;
540
+ internalBinaryWrite(message: ActionFlowUpdate, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
541
+ }
542
+ /**
543
+ * @generated MessageType for protobuf message aquila.ActionFlowUpdate
544
+ */
545
+ export declare const ActionFlowUpdate: ActionFlowUpdate$Type;
197
546
  declare class ActionTransferRequest$Type extends MessageType<ActionTransferRequest> {
198
547
  constructor();
199
548
  create(value?: PartialMessage<ActionTransferRequest>): ActionTransferRequest;
@@ -14,6 +14,12 @@ export interface ModuleUpdateRequest {
14
14
  * @generated from protobuf field: repeated shared.Module modules = 1
15
15
  */
16
16
  modules: Module[];
17
+ /**
18
+ * List of all available modules of this runtime
19
+ *
20
+ * @generated from protobuf field: repeated string available_definition_sources = 2
21
+ */
22
+ availableDefinitionSources: string[];
17
23
  }
18
24
  /**
19
25
  * Response of updating modules including data types, flow types and runtime function definitions
@@ -17,9 +17,9 @@ export interface ModuleUpdateRequest {
17
17
  /**
18
18
  * List of all available definition sources
19
19
  *
20
- * @generated from protobuf field: repeated string available_defintition_soruces = 2
20
+ * @generated from protobuf field: repeated string available_definition_sources = 2
21
21
  */
22
- availableDefintitionSoruces: string[];
22
+ availableDefinitionSources: string[];
23
23
  }
24
24
  /**
25
25
  * Response of updating modules including data types, flow types and runtime function definitions
@@ -1,5 +1,5 @@
1
1
  import { BinaryWriteOptions, IBinaryWriter, BinaryReadOptions, IBinaryReader, PartialMessage, MessageType } from '@protobuf-ts/runtime';
2
- import { Struct, Value } from './shared.struct_pb';
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.SubFlow.SubFlowFunction function = 2
293
+ * @generated from protobuf field: shared.SubFlowFunction function = 2
265
294
  */
266
- function: SubFlow_SubFlowFunction;
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;
@@ -48,7 +48,7 @@ export interface Value {
48
48
  } | {
49
49
  oneofKind: "numberValue";
50
50
  /**
51
- * Represents a numberic value.
51
+ * Represents a numeric value.
52
52
  *
53
53
  * @generated from protobuf field: shared.NumberValue number_value = 2
54
54
  */
@@ -1 +1 @@
1
- const e=require("./shared.function_pb-C8cj-NCz.cjs");function t(t,n){let r=t;return r.service=n,r.localName=r.localName??e.x(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.b(t)}Object.defineProperty(exports,"n",{enumerable:!0,get:function(){return n}}),Object.defineProperty(exports,"t",{enumerable:!0,get:function(){return r}});
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}});
@@ -1,4 +1,4 @@
1
- import { b as e, x as t } from "./shared.function_pb-Caz-4jvi.js";
1
+ import { F as e, I as t } from "./shared.function_pb-CPUNe7pa.js";
2
2
  //#region node_modules/@protobuf-ts/runtime-rpc/build/es2015/reflection-info.js
3
3
  function n(e, n) {
4
4
  let r = e;