@cadenza.io/service 2.0.35 → 2.2.0
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/index.d.mts +141 -5
- package/dist/index.d.ts +141 -5
- package/dist/index.js +36 -108
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +36 -108
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _cadenza_io_core from '@cadenza.io/core';
|
|
2
|
-
import { Task, ThrottleTagGetter, SchemaDefinition as SchemaDefinition$1, GraphContext, AnyObject, TaskResult, GraphRoutine, SignalBroker, GraphRunner, GraphRegistry, EmitOptions, CadenzaMode, TaskOptions, TaskFunction, DebounceOptions, DebounceTask, EphemeralTaskOptions, EphemeralTask } from '@cadenza.io/core';
|
|
2
|
+
import { Task, ThrottleTagGetter, SchemaDefinition as SchemaDefinition$1, GraphContext, AnyObject, InquiryOptions, TaskResult, GraphRoutine, SignalBroker, InquiryBroker, GraphRunner, GraphRegistry, EmitOptions, CadenzaMode, Intent, TaskOptions, TaskFunction, DebounceOptions, DebounceTask, EphemeralTaskOptions, EphemeralTask } from '@cadenza.io/core';
|
|
3
3
|
export { AnyObject, DebounceOptions, DebounceTask, EphemeralTask, EphemeralTaskOptions, GraphRoutine, Task, TaskFunction, TaskOptions, ThrottleTagGetter } from '@cadenza.io/core';
|
|
4
4
|
|
|
5
5
|
/**
|
|
@@ -45,11 +45,12 @@ declare class DeputyTask extends Task {
|
|
|
45
45
|
*
|
|
46
46
|
* @param {GraphContext} context - The execution context containing methods and metadata for task execution.
|
|
47
47
|
* @param {function(string, AnyObject): void} emit - A function for emitting signals with associated data during execution.
|
|
48
|
+
* @param inquire
|
|
48
49
|
* @param {function(number): void} progressCallback - A callback function to report progress updates during task processing.
|
|
49
50
|
* @param {{ nodeId: string, routineExecId: string }} nodeData - Object containing identifiers for the node and routine execution.
|
|
50
51
|
* @return {TaskResult} Returns the result of the task function execution.
|
|
51
52
|
*/
|
|
52
|
-
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, progressCallback: (progress: number) => void, nodeData: {
|
|
53
|
+
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, inquire: (inquiry: string, context: AnyObject, options: InquiryOptions) => Promise<AnyObject>, progressCallback: (progress: number) => void, nodeData: {
|
|
53
54
|
nodeId: string;
|
|
54
55
|
routineExecId: string;
|
|
55
56
|
}): TaskResult;
|
|
@@ -137,11 +138,12 @@ declare class DatabaseTask extends DeputyTask {
|
|
|
137
138
|
*
|
|
138
139
|
* @param {GraphContext} context - The execution context for the current task, which includes data and metadata required for processing.
|
|
139
140
|
* @param {(signal: string, ctx: AnyObject) => void} emit - A function used to send signals or events during task execution.
|
|
141
|
+
* @param inquire
|
|
140
142
|
* @param {(progress: number) => void} progressCallback - A function to report execution progress as a percentage (0-100).
|
|
141
143
|
* @param {{ nodeId: string; routineExecId: string }} nodeData - An object containing identifiers for the current node and routine execution.
|
|
142
144
|
* @return {TaskResult} The result of the task execution.
|
|
143
145
|
*/
|
|
144
|
-
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, progressCallback: (progress: number) => void, nodeData: {
|
|
146
|
+
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, inquire: (inquiry: string, context: AnyObject, options: InquiryOptions) => Promise<AnyObject>, progressCallback: (progress: number) => void, nodeData: {
|
|
145
147
|
nodeId: string;
|
|
146
148
|
routineExecId: string;
|
|
147
149
|
}): TaskResult;
|
|
@@ -257,10 +259,11 @@ declare class SignalTransmissionTask extends Task {
|
|
|
257
259
|
*
|
|
258
260
|
* @param {GraphContext} context - The context object providing the graph execution environment and metadata.
|
|
259
261
|
* @param {Function} emit - A function to emit signals with the provided name and context.
|
|
262
|
+
* @param inquire
|
|
260
263
|
* @param {Function} progressCallback - A callback function to report the progress of the task execution as a number between 0 and 1.
|
|
261
264
|
* @return {TaskResult} The result of the executed task function.
|
|
262
265
|
*/
|
|
263
|
-
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, progressCallback: (progress: number) => void): TaskResult;
|
|
266
|
+
execute(context: GraphContext, emit: (signal: string, ctx: AnyObject) => void, inquire: (inquiry: string, context: AnyObject, options: InquiryOptions) => Promise<AnyObject>, progressCallback: (progress: number) => void): TaskResult;
|
|
264
267
|
}
|
|
265
268
|
|
|
266
269
|
type SchemaType = "varchar" | "text" | "int" | "bigint" | "decimal" | "boolean" | "array" | "object" | "jsonb" | "uuid" | "timestamp" | "date" | "geo_point" | "bytea" | "any";
|
|
@@ -389,7 +392,8 @@ interface DatabaseOptions {
|
|
|
389
392
|
* This class handles the initialization (`bootstrap`) and validation of services, as well as the creation of tasks associated with services and signals.
|
|
390
393
|
*/
|
|
391
394
|
declare class CadenzaService {
|
|
392
|
-
static
|
|
395
|
+
static signalBroker: SignalBroker;
|
|
396
|
+
static inquiryBroker: InquiryBroker;
|
|
393
397
|
static runner: GraphRunner;
|
|
394
398
|
static metaRunner: GraphRunner;
|
|
395
399
|
static registry: GraphRegistry;
|
|
@@ -482,6 +486,7 @@ declare class CadenzaService {
|
|
|
482
486
|
workAsync(): Promise<void>;
|
|
483
487
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
484
488
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
489
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
485
490
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
486
491
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
487
492
|
onProgress(progress: number): void;
|
|
@@ -623,6 +628,7 @@ declare class CadenzaService {
|
|
|
623
628
|
workAsync(): Promise<void>;
|
|
624
629
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
625
630
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
631
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
626
632
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
627
633
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
628
634
|
onProgress(progress: number): void;
|
|
@@ -757,6 +763,7 @@ declare class CadenzaService {
|
|
|
757
763
|
workAsync(): Promise<void>;
|
|
758
764
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
759
765
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
766
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
760
767
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
761
768
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
762
769
|
onProgress(progress: number): void;
|
|
@@ -890,6 +897,7 @@ declare class CadenzaService {
|
|
|
890
897
|
workAsync(): Promise<void>;
|
|
891
898
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
892
899
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
900
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
893
901
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
894
902
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
895
903
|
onProgress(progress: number): void;
|
|
@@ -1027,6 +1035,7 @@ declare class CadenzaService {
|
|
|
1027
1035
|
workAsync(): Promise<void>;
|
|
1028
1036
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1029
1037
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1038
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1030
1039
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1031
1040
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1032
1041
|
onProgress(progress: number): void;
|
|
@@ -1176,6 +1185,7 @@ declare class CadenzaService {
|
|
|
1176
1185
|
workAsync(): Promise<void>;
|
|
1177
1186
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1178
1187
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1188
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1179
1189
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1180
1190
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1181
1191
|
onProgress(progress: number): void;
|
|
@@ -1363,6 +1373,7 @@ declare class CadenzaService {
|
|
|
1363
1373
|
workAsync(): Promise<void>;
|
|
1364
1374
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1365
1375
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1376
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1366
1377
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1367
1378
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1368
1379
|
onProgress(progress: number): void;
|
|
@@ -1504,6 +1515,7 @@ declare class CadenzaService {
|
|
|
1504
1515
|
workAsync(): Promise<void>;
|
|
1505
1516
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1506
1517
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1518
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1507
1519
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1508
1520
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1509
1521
|
onProgress(progress: number): void;
|
|
@@ -1638,6 +1650,7 @@ declare class CadenzaService {
|
|
|
1638
1650
|
workAsync(): Promise<void>;
|
|
1639
1651
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1640
1652
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1653
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1641
1654
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1642
1655
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1643
1656
|
onProgress(progress: number): void;
|
|
@@ -1771,6 +1784,7 @@ declare class CadenzaService {
|
|
|
1771
1784
|
workAsync(): Promise<void>;
|
|
1772
1785
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1773
1786
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1787
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1774
1788
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1775
1789
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1776
1790
|
onProgress(progress: number): void;
|
|
@@ -1908,6 +1922,7 @@ declare class CadenzaService {
|
|
|
1908
1922
|
workAsync(): Promise<void>;
|
|
1909
1923
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1910
1924
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1925
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1911
1926
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1912
1927
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1913
1928
|
onProgress(progress: number): void;
|
|
@@ -2057,6 +2072,7 @@ declare class CadenzaService {
|
|
|
2057
2072
|
workAsync(): Promise<void>;
|
|
2058
2073
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2059
2074
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2075
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2060
2076
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2061
2077
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2062
2078
|
onProgress(progress: number): void;
|
|
@@ -2245,6 +2261,7 @@ declare class CadenzaService {
|
|
|
2245
2261
|
workAsync(): Promise<void>;
|
|
2246
2262
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2247
2263
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2264
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2248
2265
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2249
2266
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2250
2267
|
onProgress(progress: number): void;
|
|
@@ -2386,6 +2403,7 @@ declare class CadenzaService {
|
|
|
2386
2403
|
workAsync(): Promise<void>;
|
|
2387
2404
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2388
2405
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2406
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2389
2407
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2390
2408
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2391
2409
|
onProgress(progress: number): void;
|
|
@@ -2520,6 +2538,7 @@ declare class CadenzaService {
|
|
|
2520
2538
|
workAsync(): Promise<void>;
|
|
2521
2539
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2522
2540
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2541
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2523
2542
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2524
2543
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2525
2544
|
onProgress(progress: number): void;
|
|
@@ -2653,6 +2672,7 @@ declare class CadenzaService {
|
|
|
2653
2672
|
workAsync(): Promise<void>;
|
|
2654
2673
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2655
2674
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2675
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2656
2676
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2657
2677
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2658
2678
|
onProgress(progress: number): void;
|
|
@@ -2790,6 +2810,7 @@ declare class CadenzaService {
|
|
|
2790
2810
|
workAsync(): Promise<void>;
|
|
2791
2811
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2792
2812
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2813
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2793
2814
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2794
2815
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2795
2816
|
onProgress(progress: number): void;
|
|
@@ -2939,6 +2960,7 @@ declare class CadenzaService {
|
|
|
2939
2960
|
workAsync(): Promise<void>;
|
|
2940
2961
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2941
2962
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2963
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2942
2964
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2943
2965
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2944
2966
|
onProgress(progress: number): void;
|
|
@@ -3294,6 +3316,7 @@ declare class CadenzaService {
|
|
|
3294
3316
|
workAsync(): Promise<void>;
|
|
3295
3317
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3296
3318
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3319
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3297
3320
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3298
3321
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3299
3322
|
onProgress(progress: number): void;
|
|
@@ -3679,6 +3702,7 @@ declare class CadenzaService {
|
|
|
3679
3702
|
workAsync(): Promise<void>;
|
|
3680
3703
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3681
3704
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3705
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3682
3706
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3683
3707
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3684
3708
|
onProgress(progress: number): void;
|
|
@@ -3897,6 +3921,7 @@ declare class CadenzaService {
|
|
|
3897
3921
|
workAsync(): Promise<void>;
|
|
3898
3922
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3899
3923
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3924
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3900
3925
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3901
3926
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3902
3927
|
onProgress(progress: number): void;
|
|
@@ -4038,6 +4063,7 @@ declare class CadenzaService {
|
|
|
4038
4063
|
workAsync(): Promise<void>;
|
|
4039
4064
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4040
4065
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4066
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4041
4067
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4042
4068
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4043
4069
|
onProgress(progress: number): void;
|
|
@@ -4172,6 +4198,7 @@ declare class CadenzaService {
|
|
|
4172
4198
|
workAsync(): Promise<void>;
|
|
4173
4199
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4174
4200
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4201
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4175
4202
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4176
4203
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4177
4204
|
onProgress(progress: number): void;
|
|
@@ -4305,6 +4332,7 @@ declare class CadenzaService {
|
|
|
4305
4332
|
workAsync(): Promise<void>;
|
|
4306
4333
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4307
4334
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4335
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4308
4336
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4309
4337
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4310
4338
|
onProgress(progress: number): void;
|
|
@@ -4442,6 +4470,7 @@ declare class CadenzaService {
|
|
|
4442
4470
|
workAsync(): Promise<void>;
|
|
4443
4471
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4444
4472
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4473
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4445
4474
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4446
4475
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4447
4476
|
onProgress(progress: number): void;
|
|
@@ -4591,6 +4620,7 @@ declare class CadenzaService {
|
|
|
4591
4620
|
workAsync(): Promise<void>;
|
|
4592
4621
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4593
4622
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4623
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4594
4624
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4595
4625
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4596
4626
|
onProgress(progress: number): void;
|
|
@@ -4777,6 +4807,7 @@ declare class CadenzaService {
|
|
|
4777
4807
|
workAsync(): Promise<void>;
|
|
4778
4808
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4779
4809
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4810
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4780
4811
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4781
4812
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4782
4813
|
onProgress(progress: number): void;
|
|
@@ -4918,6 +4949,7 @@ declare class CadenzaService {
|
|
|
4918
4949
|
workAsync(): Promise<void>;
|
|
4919
4950
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4920
4951
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4952
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4921
4953
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4922
4954
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4923
4955
|
onProgress(progress: number): void;
|
|
@@ -5052,6 +5084,7 @@ declare class CadenzaService {
|
|
|
5052
5084
|
workAsync(): Promise<void>;
|
|
5053
5085
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5054
5086
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5087
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5055
5088
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5056
5089
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5057
5090
|
onProgress(progress: number): void;
|
|
@@ -5185,6 +5218,7 @@ declare class CadenzaService {
|
|
|
5185
5218
|
workAsync(): Promise<void>;
|
|
5186
5219
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5187
5220
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5221
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5188
5222
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5189
5223
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5190
5224
|
onProgress(progress: number): void;
|
|
@@ -5322,6 +5356,7 @@ declare class CadenzaService {
|
|
|
5322
5356
|
workAsync(): Promise<void>;
|
|
5323
5357
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5324
5358
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5359
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5325
5360
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5326
5361
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5327
5362
|
onProgress(progress: number): void;
|
|
@@ -5471,6 +5506,7 @@ declare class CadenzaService {
|
|
|
5471
5506
|
workAsync(): Promise<void>;
|
|
5472
5507
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5473
5508
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5509
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5474
5510
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5475
5511
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5476
5512
|
onProgress(progress: number): void;
|
|
@@ -5662,6 +5698,7 @@ declare class CadenzaService {
|
|
|
5662
5698
|
workAsync(): Promise<void>;
|
|
5663
5699
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5664
5700
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5701
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5665
5702
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5666
5703
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5667
5704
|
onProgress(progress: number): void;
|
|
@@ -5803,6 +5840,7 @@ declare class CadenzaService {
|
|
|
5803
5840
|
workAsync(): Promise<void>;
|
|
5804
5841
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5805
5842
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5843
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5806
5844
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5807
5845
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5808
5846
|
onProgress(progress: number): void;
|
|
@@ -5937,6 +5975,7 @@ declare class CadenzaService {
|
|
|
5937
5975
|
workAsync(): Promise<void>;
|
|
5938
5976
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5939
5977
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5978
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5940
5979
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5941
5980
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5942
5981
|
onProgress(progress: number): void;
|
|
@@ -6070,6 +6109,7 @@ declare class CadenzaService {
|
|
|
6070
6109
|
workAsync(): Promise<void>;
|
|
6071
6110
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6072
6111
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6112
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6073
6113
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6074
6114
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6075
6115
|
onProgress(progress: number): void;
|
|
@@ -6207,6 +6247,7 @@ declare class CadenzaService {
|
|
|
6207
6247
|
workAsync(): Promise<void>;
|
|
6208
6248
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6209
6249
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6250
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6210
6251
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6211
6252
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6212
6253
|
onProgress(progress: number): void;
|
|
@@ -6356,6 +6397,7 @@ declare class CadenzaService {
|
|
|
6356
6397
|
workAsync(): Promise<void>;
|
|
6357
6398
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6358
6399
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6400
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6359
6401
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6360
6402
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6361
6403
|
onProgress(progress: number): void;
|
|
@@ -6543,6 +6585,7 @@ declare class CadenzaService {
|
|
|
6543
6585
|
workAsync(): Promise<void>;
|
|
6544
6586
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6545
6587
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6588
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6546
6589
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6547
6590
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6548
6591
|
onProgress(progress: number): void;
|
|
@@ -6684,6 +6727,7 @@ declare class CadenzaService {
|
|
|
6684
6727
|
workAsync(): Promise<void>;
|
|
6685
6728
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6686
6729
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6730
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6687
6731
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6688
6732
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6689
6733
|
onProgress(progress: number): void;
|
|
@@ -6818,6 +6862,7 @@ declare class CadenzaService {
|
|
|
6818
6862
|
workAsync(): Promise<void>;
|
|
6819
6863
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6820
6864
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6865
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6821
6866
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6822
6867
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6823
6868
|
onProgress(progress: number): void;
|
|
@@ -6951,6 +6996,7 @@ declare class CadenzaService {
|
|
|
6951
6996
|
workAsync(): Promise<void>;
|
|
6952
6997
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6953
6998
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6999
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6954
7000
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6955
7001
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6956
7002
|
onProgress(progress: number): void;
|
|
@@ -7088,6 +7134,7 @@ declare class CadenzaService {
|
|
|
7088
7134
|
workAsync(): Promise<void>;
|
|
7089
7135
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7090
7136
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7137
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7091
7138
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7092
7139
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7093
7140
|
onProgress(progress: number): void;
|
|
@@ -7237,6 +7284,7 @@ declare class CadenzaService {
|
|
|
7237
7284
|
workAsync(): Promise<void>;
|
|
7238
7285
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7239
7286
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7287
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7240
7288
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7241
7289
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7242
7290
|
onProgress(progress: number): void;
|
|
@@ -7425,6 +7473,7 @@ declare class CadenzaService {
|
|
|
7425
7473
|
workAsync(): Promise<void>;
|
|
7426
7474
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7427
7475
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7476
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7428
7477
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7429
7478
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7430
7479
|
onProgress(progress: number): void;
|
|
@@ -7566,6 +7615,7 @@ declare class CadenzaService {
|
|
|
7566
7615
|
workAsync(): Promise<void>;
|
|
7567
7616
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7568
7617
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7618
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7569
7619
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7570
7620
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7571
7621
|
onProgress(progress: number): void;
|
|
@@ -7700,6 +7750,7 @@ declare class CadenzaService {
|
|
|
7700
7750
|
workAsync(): Promise<void>;
|
|
7701
7751
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7702
7752
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7753
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7703
7754
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7704
7755
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7705
7756
|
onProgress(progress: number): void;
|
|
@@ -7833,6 +7884,7 @@ declare class CadenzaService {
|
|
|
7833
7884
|
workAsync(): Promise<void>;
|
|
7834
7885
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7835
7886
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7887
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7836
7888
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7837
7889
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7838
7890
|
onProgress(progress: number): void;
|
|
@@ -7970,6 +8022,7 @@ declare class CadenzaService {
|
|
|
7970
8022
|
workAsync(): Promise<void>;
|
|
7971
8023
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7972
8024
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8025
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7973
8026
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7974
8027
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7975
8028
|
onProgress(progress: number): void;
|
|
@@ -8119,6 +8172,7 @@ declare class CadenzaService {
|
|
|
8119
8172
|
workAsync(): Promise<void>;
|
|
8120
8173
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8121
8174
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8175
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8122
8176
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8123
8177
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8124
8178
|
onProgress(progress: number): void;
|
|
@@ -8474,6 +8528,7 @@ declare class CadenzaService {
|
|
|
8474
8528
|
workAsync(): Promise<void>;
|
|
8475
8529
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8476
8530
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8531
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8477
8532
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8478
8533
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8479
8534
|
onProgress(progress: number): void;
|
|
@@ -8859,6 +8914,7 @@ declare class CadenzaService {
|
|
|
8859
8914
|
workAsync(): Promise<void>;
|
|
8860
8915
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8861
8916
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8917
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8862
8918
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8863
8919
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8864
8920
|
onProgress(progress: number): void;
|
|
@@ -9077,6 +9133,7 @@ declare class CadenzaService {
|
|
|
9077
9133
|
workAsync(): Promise<void>;
|
|
9078
9134
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9079
9135
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9136
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9080
9137
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9081
9138
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9082
9139
|
onProgress(progress: number): void;
|
|
@@ -9218,6 +9275,7 @@ declare class CadenzaService {
|
|
|
9218
9275
|
workAsync(): Promise<void>;
|
|
9219
9276
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9220
9277
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9278
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9221
9279
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9222
9280
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9223
9281
|
onProgress(progress: number): void;
|
|
@@ -9352,6 +9410,7 @@ declare class CadenzaService {
|
|
|
9352
9410
|
workAsync(): Promise<void>;
|
|
9353
9411
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9354
9412
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9413
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9355
9414
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9356
9415
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9357
9416
|
onProgress(progress: number): void;
|
|
@@ -9485,6 +9544,7 @@ declare class CadenzaService {
|
|
|
9485
9544
|
workAsync(): Promise<void>;
|
|
9486
9545
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9487
9546
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9547
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9488
9548
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9489
9549
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9490
9550
|
onProgress(progress: number): void;
|
|
@@ -9622,6 +9682,7 @@ declare class CadenzaService {
|
|
|
9622
9682
|
workAsync(): Promise<void>;
|
|
9623
9683
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9624
9684
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9685
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9625
9686
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9626
9687
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9627
9688
|
onProgress(progress: number): void;
|
|
@@ -9771,6 +9832,7 @@ declare class CadenzaService {
|
|
|
9771
9832
|
workAsync(): Promise<void>;
|
|
9772
9833
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9773
9834
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9835
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9774
9836
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9775
9837
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9776
9838
|
onProgress(progress: number): void;
|
|
@@ -9957,6 +10019,7 @@ declare class CadenzaService {
|
|
|
9957
10019
|
workAsync(): Promise<void>;
|
|
9958
10020
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9959
10021
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10022
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9960
10023
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9961
10024
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9962
10025
|
onProgress(progress: number): void;
|
|
@@ -10098,6 +10161,7 @@ declare class CadenzaService {
|
|
|
10098
10161
|
workAsync(): Promise<void>;
|
|
10099
10162
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10100
10163
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10164
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10101
10165
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10102
10166
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10103
10167
|
onProgress(progress: number): void;
|
|
@@ -10232,6 +10296,7 @@ declare class CadenzaService {
|
|
|
10232
10296
|
workAsync(): Promise<void>;
|
|
10233
10297
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10234
10298
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10299
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10235
10300
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10236
10301
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10237
10302
|
onProgress(progress: number): void;
|
|
@@ -10365,6 +10430,7 @@ declare class CadenzaService {
|
|
|
10365
10430
|
workAsync(): Promise<void>;
|
|
10366
10431
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10367
10432
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10433
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10368
10434
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10369
10435
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10370
10436
|
onProgress(progress: number): void;
|
|
@@ -10502,6 +10568,7 @@ declare class CadenzaService {
|
|
|
10502
10568
|
workAsync(): Promise<void>;
|
|
10503
10569
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10504
10570
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10571
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10505
10572
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10506
10573
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10507
10574
|
onProgress(progress: number): void;
|
|
@@ -10651,6 +10718,7 @@ declare class CadenzaService {
|
|
|
10651
10718
|
workAsync(): Promise<void>;
|
|
10652
10719
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10653
10720
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10721
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10654
10722
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10655
10723
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10656
10724
|
onProgress(progress: number): void;
|
|
@@ -11007,6 +11075,7 @@ declare class CadenzaService {
|
|
|
11007
11075
|
workAsync(): Promise<void>;
|
|
11008
11076
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11009
11077
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11078
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11010
11079
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11011
11080
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11012
11081
|
onProgress(progress: number): void;
|
|
@@ -11230,6 +11299,7 @@ declare class CadenzaService {
|
|
|
11230
11299
|
workAsync(): Promise<void>;
|
|
11231
11300
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11232
11301
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11302
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11233
11303
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11234
11304
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11235
11305
|
onProgress(progress: number): void;
|
|
@@ -11371,6 +11441,7 @@ declare class CadenzaService {
|
|
|
11371
11441
|
workAsync(): Promise<void>;
|
|
11372
11442
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11373
11443
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11444
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11374
11445
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11375
11446
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11376
11447
|
onProgress(progress: number): void;
|
|
@@ -11505,6 +11576,7 @@ declare class CadenzaService {
|
|
|
11505
11576
|
workAsync(): Promise<void>;
|
|
11506
11577
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11507
11578
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11579
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11508
11580
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11509
11581
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11510
11582
|
onProgress(progress: number): void;
|
|
@@ -11638,6 +11710,7 @@ declare class CadenzaService {
|
|
|
11638
11710
|
workAsync(): Promise<void>;
|
|
11639
11711
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11640
11712
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11713
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11641
11714
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11642
11715
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11643
11716
|
onProgress(progress: number): void;
|
|
@@ -11775,6 +11848,7 @@ declare class CadenzaService {
|
|
|
11775
11848
|
workAsync(): Promise<void>;
|
|
11776
11849
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11777
11850
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11851
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11778
11852
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11779
11853
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11780
11854
|
onProgress(progress: number): void;
|
|
@@ -11924,6 +11998,7 @@ declare class CadenzaService {
|
|
|
11924
11998
|
workAsync(): Promise<void>;
|
|
11925
11999
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11926
12000
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12001
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11927
12002
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11928
12003
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11929
12004
|
onProgress(progress: number): void;
|
|
@@ -12111,6 +12186,7 @@ declare class CadenzaService {
|
|
|
12111
12186
|
workAsync(): Promise<void>;
|
|
12112
12187
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12113
12188
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12189
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12114
12190
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12115
12191
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12116
12192
|
onProgress(progress: number): void;
|
|
@@ -12252,6 +12328,7 @@ declare class CadenzaService {
|
|
|
12252
12328
|
workAsync(): Promise<void>;
|
|
12253
12329
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12254
12330
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12331
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12255
12332
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12256
12333
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12257
12334
|
onProgress(progress: number): void;
|
|
@@ -12386,6 +12463,7 @@ declare class CadenzaService {
|
|
|
12386
12463
|
workAsync(): Promise<void>;
|
|
12387
12464
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12388
12465
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12466
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12389
12467
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12390
12468
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12391
12469
|
onProgress(progress: number): void;
|
|
@@ -12519,6 +12597,7 @@ declare class CadenzaService {
|
|
|
12519
12597
|
workAsync(): Promise<void>;
|
|
12520
12598
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12521
12599
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12600
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12522
12601
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12523
12602
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12524
12603
|
onProgress(progress: number): void;
|
|
@@ -12656,6 +12735,7 @@ declare class CadenzaService {
|
|
|
12656
12735
|
workAsync(): Promise<void>;
|
|
12657
12736
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12658
12737
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12738
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12659
12739
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12660
12740
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12661
12741
|
onProgress(progress: number): void;
|
|
@@ -12805,6 +12885,7 @@ declare class CadenzaService {
|
|
|
12805
12885
|
workAsync(): Promise<void>;
|
|
12806
12886
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12807
12887
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12888
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12808
12889
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12809
12890
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12810
12891
|
onProgress(progress: number): void;
|
|
@@ -12993,6 +13074,7 @@ declare class CadenzaService {
|
|
|
12993
13074
|
workAsync(): Promise<void>;
|
|
12994
13075
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12995
13076
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13077
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12996
13078
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12997
13079
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12998
13080
|
onProgress(progress: number): void;
|
|
@@ -13134,6 +13216,7 @@ declare class CadenzaService {
|
|
|
13134
13216
|
workAsync(): Promise<void>;
|
|
13135
13217
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13136
13218
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13219
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13137
13220
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13138
13221
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13139
13222
|
onProgress(progress: number): void;
|
|
@@ -13268,6 +13351,7 @@ declare class CadenzaService {
|
|
|
13268
13351
|
workAsync(): Promise<void>;
|
|
13269
13352
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13270
13353
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13354
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13271
13355
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13272
13356
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13273
13357
|
onProgress(progress: number): void;
|
|
@@ -13401,6 +13485,7 @@ declare class CadenzaService {
|
|
|
13401
13485
|
workAsync(): Promise<void>;
|
|
13402
13486
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13403
13487
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13488
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13404
13489
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13405
13490
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13406
13491
|
onProgress(progress: number): void;
|
|
@@ -13538,6 +13623,7 @@ declare class CadenzaService {
|
|
|
13538
13623
|
workAsync(): Promise<void>;
|
|
13539
13624
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13540
13625
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13626
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13541
13627
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13542
13628
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13543
13629
|
onProgress(progress: number): void;
|
|
@@ -13687,6 +13773,7 @@ declare class CadenzaService {
|
|
|
13687
13773
|
workAsync(): Promise<void>;
|
|
13688
13774
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13689
13775
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13776
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13690
13777
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13691
13778
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13692
13779
|
onProgress(progress: number): void;
|
|
@@ -14042,6 +14129,7 @@ declare class CadenzaService {
|
|
|
14042
14129
|
workAsync(): Promise<void>;
|
|
14043
14130
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14044
14131
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14132
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14045
14133
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14046
14134
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14047
14135
|
onProgress(progress: number): void;
|
|
@@ -14427,6 +14515,7 @@ declare class CadenzaService {
|
|
|
14427
14515
|
workAsync(): Promise<void>;
|
|
14428
14516
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14429
14517
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14518
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14430
14519
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14431
14520
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14432
14521
|
onProgress(progress: number): void;
|
|
@@ -14645,6 +14734,7 @@ declare class CadenzaService {
|
|
|
14645
14734
|
workAsync(): Promise<void>;
|
|
14646
14735
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14647
14736
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14737
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14648
14738
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14649
14739
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14650
14740
|
onProgress(progress: number): void;
|
|
@@ -14786,6 +14876,7 @@ declare class CadenzaService {
|
|
|
14786
14876
|
workAsync(): Promise<void>;
|
|
14787
14877
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14788
14878
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14879
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14789
14880
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14790
14881
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14791
14882
|
onProgress(progress: number): void;
|
|
@@ -14920,6 +15011,7 @@ declare class CadenzaService {
|
|
|
14920
15011
|
workAsync(): Promise<void>;
|
|
14921
15012
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14922
15013
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15014
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14923
15015
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14924
15016
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14925
15017
|
onProgress(progress: number): void;
|
|
@@ -15053,6 +15145,7 @@ declare class CadenzaService {
|
|
|
15053
15145
|
workAsync(): Promise<void>;
|
|
15054
15146
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15055
15147
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15148
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15056
15149
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15057
15150
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15058
15151
|
onProgress(progress: number): void;
|
|
@@ -15190,6 +15283,7 @@ declare class CadenzaService {
|
|
|
15190
15283
|
workAsync(): Promise<void>;
|
|
15191
15284
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15192
15285
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15286
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15193
15287
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15194
15288
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15195
15289
|
onProgress(progress: number): void;
|
|
@@ -15339,6 +15433,7 @@ declare class CadenzaService {
|
|
|
15339
15433
|
workAsync(): Promise<void>;
|
|
15340
15434
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15341
15435
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15436
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15342
15437
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15343
15438
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15344
15439
|
onProgress(progress: number): void;
|
|
@@ -15525,6 +15620,7 @@ declare class CadenzaService {
|
|
|
15525
15620
|
workAsync(): Promise<void>;
|
|
15526
15621
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15527
15622
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15623
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15528
15624
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15529
15625
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15530
15626
|
onProgress(progress: number): void;
|
|
@@ -15666,6 +15762,7 @@ declare class CadenzaService {
|
|
|
15666
15762
|
workAsync(): Promise<void>;
|
|
15667
15763
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15668
15764
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15765
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15669
15766
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15670
15767
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15671
15768
|
onProgress(progress: number): void;
|
|
@@ -15800,6 +15897,7 @@ declare class CadenzaService {
|
|
|
15800
15897
|
workAsync(): Promise<void>;
|
|
15801
15898
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15802
15899
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15900
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15803
15901
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15804
15902
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15805
15903
|
onProgress(progress: number): void;
|
|
@@ -15933,6 +16031,7 @@ declare class CadenzaService {
|
|
|
15933
16031
|
workAsync(): Promise<void>;
|
|
15934
16032
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15935
16033
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16034
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15936
16035
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15937
16036
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15938
16037
|
onProgress(progress: number): void;
|
|
@@ -16070,6 +16169,7 @@ declare class CadenzaService {
|
|
|
16070
16169
|
workAsync(): Promise<void>;
|
|
16071
16170
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16072
16171
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16172
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16073
16173
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16074
16174
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16075
16175
|
onProgress(progress: number): void;
|
|
@@ -16219,6 +16319,7 @@ declare class CadenzaService {
|
|
|
16219
16319
|
workAsync(): Promise<void>;
|
|
16220
16320
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16221
16321
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16322
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16222
16323
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16223
16324
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16224
16325
|
onProgress(progress: number): void;
|
|
@@ -16410,6 +16511,7 @@ declare class CadenzaService {
|
|
|
16410
16511
|
workAsync(): Promise<void>;
|
|
16411
16512
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16412
16513
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16514
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16413
16515
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16414
16516
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16415
16517
|
onProgress(progress: number): void;
|
|
@@ -16551,6 +16653,7 @@ declare class CadenzaService {
|
|
|
16551
16653
|
workAsync(): Promise<void>;
|
|
16552
16654
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16553
16655
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16656
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16554
16657
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16555
16658
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16556
16659
|
onProgress(progress: number): void;
|
|
@@ -16685,6 +16788,7 @@ declare class CadenzaService {
|
|
|
16685
16788
|
workAsync(): Promise<void>;
|
|
16686
16789
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16687
16790
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16791
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16688
16792
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16689
16793
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16690
16794
|
onProgress(progress: number): void;
|
|
@@ -16818,6 +16922,7 @@ declare class CadenzaService {
|
|
|
16818
16922
|
workAsync(): Promise<void>;
|
|
16819
16923
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16820
16924
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16925
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16821
16926
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16822
16927
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16823
16928
|
onProgress(progress: number): void;
|
|
@@ -16955,6 +17060,7 @@ declare class CadenzaService {
|
|
|
16955
17060
|
workAsync(): Promise<void>;
|
|
16956
17061
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16957
17062
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17063
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16958
17064
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16959
17065
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16960
17066
|
onProgress(progress: number): void;
|
|
@@ -17104,6 +17210,7 @@ declare class CadenzaService {
|
|
|
17104
17210
|
workAsync(): Promise<void>;
|
|
17105
17211
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17106
17212
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17213
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17107
17214
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17108
17215
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17109
17216
|
onProgress(progress: number): void;
|
|
@@ -17291,6 +17398,7 @@ declare class CadenzaService {
|
|
|
17291
17398
|
workAsync(): Promise<void>;
|
|
17292
17399
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17293
17400
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17401
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17294
17402
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17295
17403
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17296
17404
|
onProgress(progress: number): void;
|
|
@@ -17432,6 +17540,7 @@ declare class CadenzaService {
|
|
|
17432
17540
|
workAsync(): Promise<void>;
|
|
17433
17541
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17434
17542
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17543
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17435
17544
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17436
17545
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17437
17546
|
onProgress(progress: number): void;
|
|
@@ -17566,6 +17675,7 @@ declare class CadenzaService {
|
|
|
17566
17675
|
workAsync(): Promise<void>;
|
|
17567
17676
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17568
17677
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17678
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17569
17679
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17570
17680
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17571
17681
|
onProgress(progress: number): void;
|
|
@@ -17699,6 +17809,7 @@ declare class CadenzaService {
|
|
|
17699
17809
|
workAsync(): Promise<void>;
|
|
17700
17810
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17701
17811
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17812
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17702
17813
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17703
17814
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17704
17815
|
onProgress(progress: number): void;
|
|
@@ -17836,6 +17947,7 @@ declare class CadenzaService {
|
|
|
17836
17947
|
workAsync(): Promise<void>;
|
|
17837
17948
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17838
17949
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17950
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17839
17951
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17840
17952
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17841
17953
|
onProgress(progress: number): void;
|
|
@@ -17985,6 +18097,7 @@ declare class CadenzaService {
|
|
|
17985
18097
|
workAsync(): Promise<void>;
|
|
17986
18098
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17987
18099
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18100
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17988
18101
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17989
18102
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17990
18103
|
onProgress(progress: number): void;
|
|
@@ -18173,6 +18286,7 @@ declare class CadenzaService {
|
|
|
18173
18286
|
workAsync(): Promise<void>;
|
|
18174
18287
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18175
18288
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18289
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18176
18290
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18177
18291
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18178
18292
|
onProgress(progress: number): void;
|
|
@@ -18314,6 +18428,7 @@ declare class CadenzaService {
|
|
|
18314
18428
|
workAsync(): Promise<void>;
|
|
18315
18429
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18316
18430
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18431
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18317
18432
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18318
18433
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18319
18434
|
onProgress(progress: number): void;
|
|
@@ -18448,6 +18563,7 @@ declare class CadenzaService {
|
|
|
18448
18563
|
workAsync(): Promise<void>;
|
|
18449
18564
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18450
18565
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18566
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18451
18567
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18452
18568
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18453
18569
|
onProgress(progress: number): void;
|
|
@@ -18581,6 +18697,7 @@ declare class CadenzaService {
|
|
|
18581
18697
|
workAsync(): Promise<void>;
|
|
18582
18698
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18583
18699
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18700
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18584
18701
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18585
18702
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18586
18703
|
onProgress(progress: number): void;
|
|
@@ -18718,6 +18835,7 @@ declare class CadenzaService {
|
|
|
18718
18835
|
workAsync(): Promise<void>;
|
|
18719
18836
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18720
18837
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18838
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18721
18839
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18722
18840
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18723
18841
|
onProgress(progress: number): void;
|
|
@@ -18867,6 +18985,7 @@ declare class CadenzaService {
|
|
|
18867
18985
|
workAsync(): Promise<void>;
|
|
18868
18986
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18869
18987
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18988
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18870
18989
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18871
18990
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18872
18991
|
onProgress(progress: number): void;
|
|
@@ -19222,6 +19341,7 @@ declare class CadenzaService {
|
|
|
19222
19341
|
workAsync(): Promise<void>;
|
|
19223
19342
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19224
19343
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19344
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19225
19345
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19226
19346
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19227
19347
|
onProgress(progress: number): void;
|
|
@@ -19607,6 +19727,7 @@ declare class CadenzaService {
|
|
|
19607
19727
|
workAsync(): Promise<void>;
|
|
19608
19728
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19609
19729
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19730
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19610
19731
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19611
19732
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19612
19733
|
onProgress(progress: number): void;
|
|
@@ -19825,6 +19946,7 @@ declare class CadenzaService {
|
|
|
19825
19946
|
workAsync(): Promise<void>;
|
|
19826
19947
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19827
19948
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19949
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19828
19950
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19829
19951
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19830
19952
|
onProgress(progress: number): void;
|
|
@@ -19966,6 +20088,7 @@ declare class CadenzaService {
|
|
|
19966
20088
|
workAsync(): Promise<void>;
|
|
19967
20089
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19968
20090
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20091
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19969
20092
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19970
20093
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19971
20094
|
onProgress(progress: number): void;
|
|
@@ -20100,6 +20223,7 @@ declare class CadenzaService {
|
|
|
20100
20223
|
workAsync(): Promise<void>;
|
|
20101
20224
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20102
20225
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20226
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20103
20227
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20104
20228
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20105
20229
|
onProgress(progress: number): void;
|
|
@@ -20233,6 +20357,7 @@ declare class CadenzaService {
|
|
|
20233
20357
|
workAsync(): Promise<void>;
|
|
20234
20358
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20235
20359
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20360
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20236
20361
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20237
20362
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20238
20363
|
onProgress(progress: number): void;
|
|
@@ -20370,6 +20495,7 @@ declare class CadenzaService {
|
|
|
20370
20495
|
workAsync(): Promise<void>;
|
|
20371
20496
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20372
20497
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20498
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20373
20499
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20374
20500
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20375
20501
|
onProgress(progress: number): void;
|
|
@@ -20519,6 +20645,7 @@ declare class CadenzaService {
|
|
|
20519
20645
|
workAsync(): Promise<void>;
|
|
20520
20646
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20521
20647
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20648
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20522
20649
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20523
20650
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20524
20651
|
onProgress(progress: number): void;
|
|
@@ -20705,6 +20832,7 @@ declare class CadenzaService {
|
|
|
20705
20832
|
workAsync(): Promise<void>;
|
|
20706
20833
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20707
20834
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20835
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20708
20836
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20709
20837
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20710
20838
|
onProgress(progress: number): void;
|
|
@@ -20846,6 +20974,7 @@ declare class CadenzaService {
|
|
|
20846
20974
|
workAsync(): Promise<void>;
|
|
20847
20975
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20848
20976
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20977
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20849
20978
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20850
20979
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20851
20980
|
onProgress(progress: number): void;
|
|
@@ -20980,6 +21109,7 @@ declare class CadenzaService {
|
|
|
20980
21109
|
workAsync(): Promise<void>;
|
|
20981
21110
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20982
21111
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21112
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20983
21113
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20984
21114
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20985
21115
|
onProgress(progress: number): void;
|
|
@@ -21113,6 +21243,7 @@ declare class CadenzaService {
|
|
|
21113
21243
|
workAsync(): Promise<void>;
|
|
21114
21244
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21115
21245
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21246
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21116
21247
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21117
21248
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21118
21249
|
onProgress(progress: number): void;
|
|
@@ -21250,6 +21381,7 @@ declare class CadenzaService {
|
|
|
21250
21381
|
workAsync(): Promise<void>;
|
|
21251
21382
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21252
21383
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21384
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21253
21385
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21254
21386
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21255
21387
|
onProgress(progress: number): void;
|
|
@@ -21399,6 +21531,7 @@ declare class CadenzaService {
|
|
|
21399
21531
|
workAsync(): Promise<void>;
|
|
21400
21532
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21401
21533
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21534
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21402
21535
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21403
21536
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21404
21537
|
onProgress(progress: number): void;
|
|
@@ -21756,6 +21889,7 @@ declare class CadenzaService {
|
|
|
21756
21889
|
workAsync(): Promise<void>;
|
|
21757
21890
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21758
21891
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21892
|
+
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21759
21893
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21760
21894
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21761
21895
|
onProgress(progress: number): void;
|
|
@@ -21954,6 +22088,8 @@ declare class CadenzaService {
|
|
|
21954
22088
|
static debounce(signal: string, context?: any, delayMs?: number): void;
|
|
21955
22089
|
static schedule(signal: string, context: AnyObject, timeoutMs: number, exactDateTime?: Date): void;
|
|
21956
22090
|
static interval(signal: string, context: AnyObject, intervalMs: number, leading?: boolean, startDateTime?: Date): void;
|
|
22091
|
+
static defineIntent(intent: Intent): Intent;
|
|
22092
|
+
static inquire(inquiry: string, context: AnyObject, options?: InquiryOptions): Promise<AnyObject>;
|
|
21957
22093
|
/**
|
|
21958
22094
|
* Executes the given task or graph routine within the provided context using the configured runner.
|
|
21959
22095
|
*
|