@cadenza.io/service 2.4.0 → 2.5.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 +211 -133
- package/dist/index.d.ts +211 -133
- package/dist/index.js +1119 -64
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1119 -64
- 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, Schema, GraphContext, AnyObject, InquiryOptions, TaskResult, GraphRoutine, SignalBroker, InquiryBroker, GraphRunner, GraphRegistry, EmitOptions, CadenzaMode, Intent, TaskOptions, TaskFunction, DebounceOptions, DebounceTask, EphemeralTaskOptions, EphemeralTask } from '@cadenza.io/core';
|
|
2
|
+
import { Task, ThrottleTagGetter, Schema, GraphContext, AnyObject, InquiryOptions, TaskResult, GraphRoutine, SchemaDefinition, 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
|
/**
|
|
@@ -149,6 +149,49 @@ declare class DatabaseTask extends DeputyTask {
|
|
|
149
149
|
}): TaskResult;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
|
+
interface InquiryResponderDescriptor {
|
|
153
|
+
isRemote: boolean;
|
|
154
|
+
serviceName: string;
|
|
155
|
+
taskName: string;
|
|
156
|
+
taskVersion: number;
|
|
157
|
+
localTaskName: string;
|
|
158
|
+
}
|
|
159
|
+
interface InquiryResponderStatus extends InquiryResponderDescriptor {
|
|
160
|
+
status: "fulfilled" | "failed" | "timed_out";
|
|
161
|
+
durationMs: number;
|
|
162
|
+
error?: string;
|
|
163
|
+
}
|
|
164
|
+
interface DistributedInquiryMeta {
|
|
165
|
+
inquiry: string;
|
|
166
|
+
isMetaInquiry: boolean;
|
|
167
|
+
totalResponders: number;
|
|
168
|
+
eligibleResponders: number;
|
|
169
|
+
filteredOutResponders: number;
|
|
170
|
+
responded: number;
|
|
171
|
+
failed: number;
|
|
172
|
+
timedOut: number;
|
|
173
|
+
pending: number;
|
|
174
|
+
durationMs: number;
|
|
175
|
+
responders: InquiryResponderStatus[];
|
|
176
|
+
}
|
|
177
|
+
type DistributedInquiryOptions = Partial<InquiryOptions> & {
|
|
178
|
+
/**
|
|
179
|
+
* Total timeout budget for the whole inquiry fan-out.
|
|
180
|
+
* Falls back to InquiryOptions.timeout when not set.
|
|
181
|
+
*/
|
|
182
|
+
overallTimeoutMs?: number;
|
|
183
|
+
/**
|
|
184
|
+
* If true, reject on timeout / partial completion.
|
|
185
|
+
* If false (default), resolve with partial result and metadata.
|
|
186
|
+
*/
|
|
187
|
+
requireComplete?: boolean;
|
|
188
|
+
/**
|
|
189
|
+
* Timeout propagated to responder execution context (__timeout).
|
|
190
|
+
* Mainly used by distributed deputy responders.
|
|
191
|
+
*/
|
|
192
|
+
perResponderTimeoutMs?: number;
|
|
193
|
+
};
|
|
194
|
+
|
|
152
195
|
interface ServiceInstanceDescriptor {
|
|
153
196
|
uuid: string;
|
|
154
197
|
address: string;
|
|
@@ -183,6 +226,9 @@ declare class ServiceRegistry {
|
|
|
183
226
|
private instances;
|
|
184
227
|
private deputies;
|
|
185
228
|
private remoteSignals;
|
|
229
|
+
private remoteIntents;
|
|
230
|
+
private remoteIntentDeputiesByKey;
|
|
231
|
+
private remoteIntentDeputiesByTask;
|
|
186
232
|
serviceName: string | null;
|
|
187
233
|
serviceInstanceId: string | null;
|
|
188
234
|
numberOfRunningGraphs: number;
|
|
@@ -190,6 +236,7 @@ declare class ServiceRegistry {
|
|
|
190
236
|
retryCount: number;
|
|
191
237
|
handleInstanceUpdateTask: Task;
|
|
192
238
|
handleGlobalSignalRegistrationTask: Task;
|
|
239
|
+
handleGlobalIntentRegistrationTask: Task;
|
|
193
240
|
handleSocketStatusUpdateTask: Task;
|
|
194
241
|
fullSyncTask: GraphRoutine;
|
|
195
242
|
getAllInstances: Task;
|
|
@@ -204,6 +251,12 @@ declare class ServiceRegistry {
|
|
|
204
251
|
insertServiceInstanceTask: Task;
|
|
205
252
|
handleServiceNotRespondingTask: Task;
|
|
206
253
|
handleServiceHandshakeTask: Task;
|
|
254
|
+
collectTransportDiagnosticsTask: Task;
|
|
255
|
+
private buildRemoteIntentDeputyKey;
|
|
256
|
+
private normalizeIntentMaps;
|
|
257
|
+
private registerRemoteIntentDeputy;
|
|
258
|
+
private unregisterRemoteIntentDeputy;
|
|
259
|
+
getInquiryResponderDescriptor(task: Task): InquiryResponderDescriptor;
|
|
207
260
|
/**
|
|
208
261
|
* Initializes a private constructor for managing service instances, remote signals,
|
|
209
262
|
* service health, and handling updates or synchronization tasks. The constructor
|
|
@@ -340,6 +393,13 @@ interface TableDefinition {
|
|
|
340
393
|
})[];
|
|
341
394
|
};
|
|
342
395
|
};
|
|
396
|
+
customIntents?: {
|
|
397
|
+
query?: (string | {
|
|
398
|
+
intent: string;
|
|
399
|
+
description?: string;
|
|
400
|
+
input?: SchemaDefinition;
|
|
401
|
+
})[];
|
|
402
|
+
};
|
|
343
403
|
initialData?: {
|
|
344
404
|
fields: string[];
|
|
345
405
|
data: any[][];
|
|
@@ -400,6 +460,7 @@ declare class CadenzaService {
|
|
|
400
460
|
static serviceRegistry: ServiceRegistry;
|
|
401
461
|
protected static isBootstrapped: boolean;
|
|
402
462
|
protected static serviceCreated: boolean;
|
|
463
|
+
protected static warnedInvalidMetaIntentResponderKeys: Set<string>;
|
|
403
464
|
/**
|
|
404
465
|
* Initializes the application by setting up necessary components and configurations.
|
|
405
466
|
* This method ensures the initialization process is only executed once throughout the application lifecycle.
|
|
@@ -486,7 +547,7 @@ declare class CadenzaService {
|
|
|
486
547
|
workAsync(): Promise<void>;
|
|
487
548
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
488
549
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
489
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
550
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
490
551
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
491
552
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
492
553
|
onProgress(progress: number): void;
|
|
@@ -628,7 +689,7 @@ declare class CadenzaService {
|
|
|
628
689
|
workAsync(): Promise<void>;
|
|
629
690
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
630
691
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
631
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
692
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
632
693
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
633
694
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
634
695
|
onProgress(progress: number): void;
|
|
@@ -763,7 +824,7 @@ declare class CadenzaService {
|
|
|
763
824
|
workAsync(): Promise<void>;
|
|
764
825
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
765
826
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
766
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
827
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
767
828
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
768
829
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
769
830
|
onProgress(progress: number): void;
|
|
@@ -897,7 +958,7 @@ declare class CadenzaService {
|
|
|
897
958
|
workAsync(): Promise<void>;
|
|
898
959
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
899
960
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
900
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
961
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
901
962
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
902
963
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
903
964
|
onProgress(progress: number): void;
|
|
@@ -1035,7 +1096,7 @@ declare class CadenzaService {
|
|
|
1035
1096
|
workAsync(): Promise<void>;
|
|
1036
1097
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1037
1098
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1038
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1099
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1039
1100
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1040
1101
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1041
1102
|
onProgress(progress: number): void;
|
|
@@ -1185,7 +1246,7 @@ declare class CadenzaService {
|
|
|
1185
1246
|
workAsync(): Promise<void>;
|
|
1186
1247
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1187
1248
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1188
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1249
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1189
1250
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1190
1251
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1191
1252
|
onProgress(progress: number): void;
|
|
@@ -1373,7 +1434,7 @@ declare class CadenzaService {
|
|
|
1373
1434
|
workAsync(): Promise<void>;
|
|
1374
1435
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1375
1436
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1376
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1437
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1377
1438
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1378
1439
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1379
1440
|
onProgress(progress: number): void;
|
|
@@ -1515,7 +1576,7 @@ declare class CadenzaService {
|
|
|
1515
1576
|
workAsync(): Promise<void>;
|
|
1516
1577
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1517
1578
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1518
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1579
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1519
1580
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1520
1581
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1521
1582
|
onProgress(progress: number): void;
|
|
@@ -1650,7 +1711,7 @@ declare class CadenzaService {
|
|
|
1650
1711
|
workAsync(): Promise<void>;
|
|
1651
1712
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1652
1713
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1653
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1714
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1654
1715
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1655
1716
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1656
1717
|
onProgress(progress: number): void;
|
|
@@ -1784,7 +1845,7 @@ declare class CadenzaService {
|
|
|
1784
1845
|
workAsync(): Promise<void>;
|
|
1785
1846
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1786
1847
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1787
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1848
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1788
1849
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1789
1850
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1790
1851
|
onProgress(progress: number): void;
|
|
@@ -1922,7 +1983,7 @@ declare class CadenzaService {
|
|
|
1922
1983
|
workAsync(): Promise<void>;
|
|
1923
1984
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
1924
1985
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
1925
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
1986
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
1926
1987
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1927
1988
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
1928
1989
|
onProgress(progress: number): void;
|
|
@@ -2072,7 +2133,7 @@ declare class CadenzaService {
|
|
|
2072
2133
|
workAsync(): Promise<void>;
|
|
2073
2134
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2074
2135
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2075
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2136
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2076
2137
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2077
2138
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2078
2139
|
onProgress(progress: number): void;
|
|
@@ -2261,7 +2322,7 @@ declare class CadenzaService {
|
|
|
2261
2322
|
workAsync(): Promise<void>;
|
|
2262
2323
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2263
2324
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2264
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2325
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2265
2326
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2266
2327
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2267
2328
|
onProgress(progress: number): void;
|
|
@@ -2403,7 +2464,7 @@ declare class CadenzaService {
|
|
|
2403
2464
|
workAsync(): Promise<void>;
|
|
2404
2465
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2405
2466
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2406
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2467
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2407
2468
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2408
2469
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2409
2470
|
onProgress(progress: number): void;
|
|
@@ -2538,7 +2599,7 @@ declare class CadenzaService {
|
|
|
2538
2599
|
workAsync(): Promise<void>;
|
|
2539
2600
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2540
2601
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2541
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2602
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2542
2603
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2543
2604
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2544
2605
|
onProgress(progress: number): void;
|
|
@@ -2672,7 +2733,7 @@ declare class CadenzaService {
|
|
|
2672
2733
|
workAsync(): Promise<void>;
|
|
2673
2734
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2674
2735
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2675
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2736
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2676
2737
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2677
2738
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2678
2739
|
onProgress(progress: number): void;
|
|
@@ -2810,7 +2871,7 @@ declare class CadenzaService {
|
|
|
2810
2871
|
workAsync(): Promise<void>;
|
|
2811
2872
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2812
2873
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2813
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
2874
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2814
2875
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2815
2876
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2816
2877
|
onProgress(progress: number): void;
|
|
@@ -2960,7 +3021,7 @@ declare class CadenzaService {
|
|
|
2960
3021
|
workAsync(): Promise<void>;
|
|
2961
3022
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
2962
3023
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
2963
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3024
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
2964
3025
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2965
3026
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
2966
3027
|
onProgress(progress: number): void;
|
|
@@ -3316,7 +3377,7 @@ declare class CadenzaService {
|
|
|
3316
3377
|
workAsync(): Promise<void>;
|
|
3317
3378
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3318
3379
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3319
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3380
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
3320
3381
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3321
3382
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3322
3383
|
onProgress(progress: number): void;
|
|
@@ -3702,7 +3763,7 @@ declare class CadenzaService {
|
|
|
3702
3763
|
workAsync(): Promise<void>;
|
|
3703
3764
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3704
3765
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3705
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3766
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
3706
3767
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3707
3768
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3708
3769
|
onProgress(progress: number): void;
|
|
@@ -3921,7 +3982,7 @@ declare class CadenzaService {
|
|
|
3921
3982
|
workAsync(): Promise<void>;
|
|
3922
3983
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
3923
3984
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
3924
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
3985
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
3925
3986
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3926
3987
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
3927
3988
|
onProgress(progress: number): void;
|
|
@@ -4063,7 +4124,7 @@ declare class CadenzaService {
|
|
|
4063
4124
|
workAsync(): Promise<void>;
|
|
4064
4125
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4065
4126
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4066
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4127
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4067
4128
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4068
4129
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4069
4130
|
onProgress(progress: number): void;
|
|
@@ -4198,7 +4259,7 @@ declare class CadenzaService {
|
|
|
4198
4259
|
workAsync(): Promise<void>;
|
|
4199
4260
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4200
4261
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4201
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4262
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4202
4263
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4203
4264
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4204
4265
|
onProgress(progress: number): void;
|
|
@@ -4332,7 +4393,7 @@ declare class CadenzaService {
|
|
|
4332
4393
|
workAsync(): Promise<void>;
|
|
4333
4394
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4334
4395
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4335
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4396
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4336
4397
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4337
4398
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4338
4399
|
onProgress(progress: number): void;
|
|
@@ -4470,7 +4531,7 @@ declare class CadenzaService {
|
|
|
4470
4531
|
workAsync(): Promise<void>;
|
|
4471
4532
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4472
4533
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4473
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4534
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4474
4535
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4475
4536
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4476
4537
|
onProgress(progress: number): void;
|
|
@@ -4620,7 +4681,7 @@ declare class CadenzaService {
|
|
|
4620
4681
|
workAsync(): Promise<void>;
|
|
4621
4682
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4622
4683
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4623
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4684
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4624
4685
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4625
4686
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4626
4687
|
onProgress(progress: number): void;
|
|
@@ -4807,7 +4868,7 @@ declare class CadenzaService {
|
|
|
4807
4868
|
workAsync(): Promise<void>;
|
|
4808
4869
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4809
4870
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4810
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
4871
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4811
4872
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4812
4873
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4813
4874
|
onProgress(progress: number): void;
|
|
@@ -4949,7 +5010,7 @@ declare class CadenzaService {
|
|
|
4949
5010
|
workAsync(): Promise<void>;
|
|
4950
5011
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
4951
5012
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
4952
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5013
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
4953
5014
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4954
5015
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
4955
5016
|
onProgress(progress: number): void;
|
|
@@ -5084,7 +5145,7 @@ declare class CadenzaService {
|
|
|
5084
5145
|
workAsync(): Promise<void>;
|
|
5085
5146
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5086
5147
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5087
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5148
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5088
5149
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5089
5150
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5090
5151
|
onProgress(progress: number): void;
|
|
@@ -5218,7 +5279,7 @@ declare class CadenzaService {
|
|
|
5218
5279
|
workAsync(): Promise<void>;
|
|
5219
5280
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5220
5281
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5221
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5282
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5222
5283
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5223
5284
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5224
5285
|
onProgress(progress: number): void;
|
|
@@ -5356,7 +5417,7 @@ declare class CadenzaService {
|
|
|
5356
5417
|
workAsync(): Promise<void>;
|
|
5357
5418
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5358
5419
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5359
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5420
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5360
5421
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5361
5422
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5362
5423
|
onProgress(progress: number): void;
|
|
@@ -5506,7 +5567,7 @@ declare class CadenzaService {
|
|
|
5506
5567
|
workAsync(): Promise<void>;
|
|
5507
5568
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5508
5569
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5509
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5570
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5510
5571
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5511
5572
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5512
5573
|
onProgress(progress: number): void;
|
|
@@ -5698,7 +5759,7 @@ declare class CadenzaService {
|
|
|
5698
5759
|
workAsync(): Promise<void>;
|
|
5699
5760
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5700
5761
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5701
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5762
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5702
5763
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5703
5764
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5704
5765
|
onProgress(progress: number): void;
|
|
@@ -5840,7 +5901,7 @@ declare class CadenzaService {
|
|
|
5840
5901
|
workAsync(): Promise<void>;
|
|
5841
5902
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5842
5903
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5843
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
5904
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5844
5905
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5845
5906
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5846
5907
|
onProgress(progress: number): void;
|
|
@@ -5975,7 +6036,7 @@ declare class CadenzaService {
|
|
|
5975
6036
|
workAsync(): Promise<void>;
|
|
5976
6037
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
5977
6038
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
5978
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6039
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
5979
6040
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5980
6041
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
5981
6042
|
onProgress(progress: number): void;
|
|
@@ -6109,7 +6170,7 @@ declare class CadenzaService {
|
|
|
6109
6170
|
workAsync(): Promise<void>;
|
|
6110
6171
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6111
6172
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6112
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6173
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6113
6174
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6114
6175
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6115
6176
|
onProgress(progress: number): void;
|
|
@@ -6247,7 +6308,7 @@ declare class CadenzaService {
|
|
|
6247
6308
|
workAsync(): Promise<void>;
|
|
6248
6309
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6249
6310
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6250
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6311
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6251
6312
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6252
6313
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6253
6314
|
onProgress(progress: number): void;
|
|
@@ -6397,7 +6458,7 @@ declare class CadenzaService {
|
|
|
6397
6458
|
workAsync(): Promise<void>;
|
|
6398
6459
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6399
6460
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6400
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6461
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6401
6462
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6402
6463
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6403
6464
|
onProgress(progress: number): void;
|
|
@@ -6585,7 +6646,7 @@ declare class CadenzaService {
|
|
|
6585
6646
|
workAsync(): Promise<void>;
|
|
6586
6647
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6587
6648
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6588
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6649
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6589
6650
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6590
6651
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6591
6652
|
onProgress(progress: number): void;
|
|
@@ -6727,7 +6788,7 @@ declare class CadenzaService {
|
|
|
6727
6788
|
workAsync(): Promise<void>;
|
|
6728
6789
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6729
6790
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6730
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6791
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6731
6792
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6732
6793
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6733
6794
|
onProgress(progress: number): void;
|
|
@@ -6862,7 +6923,7 @@ declare class CadenzaService {
|
|
|
6862
6923
|
workAsync(): Promise<void>;
|
|
6863
6924
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6864
6925
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6865
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
6926
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
6866
6927
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6867
6928
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
6868
6929
|
onProgress(progress: number): void;
|
|
@@ -6996,7 +7057,7 @@ declare class CadenzaService {
|
|
|
6996
7057
|
workAsync(): Promise<void>;
|
|
6997
7058
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
6998
7059
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
6999
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7060
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7000
7061
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7001
7062
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7002
7063
|
onProgress(progress: number): void;
|
|
@@ -7134,7 +7195,7 @@ declare class CadenzaService {
|
|
|
7134
7195
|
workAsync(): Promise<void>;
|
|
7135
7196
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7136
7197
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7137
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7198
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7138
7199
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7139
7200
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7140
7201
|
onProgress(progress: number): void;
|
|
@@ -7284,7 +7345,7 @@ declare class CadenzaService {
|
|
|
7284
7345
|
workAsync(): Promise<void>;
|
|
7285
7346
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7286
7347
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7287
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7348
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7288
7349
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7289
7350
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7290
7351
|
onProgress(progress: number): void;
|
|
@@ -7473,7 +7534,7 @@ declare class CadenzaService {
|
|
|
7473
7534
|
workAsync(): Promise<void>;
|
|
7474
7535
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7475
7536
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7476
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7537
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7477
7538
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7478
7539
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7479
7540
|
onProgress(progress: number): void;
|
|
@@ -7615,7 +7676,7 @@ declare class CadenzaService {
|
|
|
7615
7676
|
workAsync(): Promise<void>;
|
|
7616
7677
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7617
7678
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7618
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7679
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7619
7680
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7620
7681
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7621
7682
|
onProgress(progress: number): void;
|
|
@@ -7750,7 +7811,7 @@ declare class CadenzaService {
|
|
|
7750
7811
|
workAsync(): Promise<void>;
|
|
7751
7812
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7752
7813
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7753
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7814
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7754
7815
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7755
7816
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7756
7817
|
onProgress(progress: number): void;
|
|
@@ -7884,7 +7945,7 @@ declare class CadenzaService {
|
|
|
7884
7945
|
workAsync(): Promise<void>;
|
|
7885
7946
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
7886
7947
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
7887
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
7948
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
7888
7949
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7889
7950
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
7890
7951
|
onProgress(progress: number): void;
|
|
@@ -8022,7 +8083,7 @@ declare class CadenzaService {
|
|
|
8022
8083
|
workAsync(): Promise<void>;
|
|
8023
8084
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8024
8085
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8025
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8086
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
8026
8087
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8027
8088
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8028
8089
|
onProgress(progress: number): void;
|
|
@@ -8172,7 +8233,7 @@ declare class CadenzaService {
|
|
|
8172
8233
|
workAsync(): Promise<void>;
|
|
8173
8234
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8174
8235
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8175
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8236
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
8176
8237
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8177
8238
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8178
8239
|
onProgress(progress: number): void;
|
|
@@ -8528,7 +8589,7 @@ declare class CadenzaService {
|
|
|
8528
8589
|
workAsync(): Promise<void>;
|
|
8529
8590
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8530
8591
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8531
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8592
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
8532
8593
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8533
8594
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8534
8595
|
onProgress(progress: number): void;
|
|
@@ -8914,7 +8975,7 @@ declare class CadenzaService {
|
|
|
8914
8975
|
workAsync(): Promise<void>;
|
|
8915
8976
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
8916
8977
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
8917
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
8978
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
8918
8979
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8919
8980
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
8920
8981
|
onProgress(progress: number): void;
|
|
@@ -9133,7 +9194,7 @@ declare class CadenzaService {
|
|
|
9133
9194
|
workAsync(): Promise<void>;
|
|
9134
9195
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9135
9196
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9136
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9197
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9137
9198
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9138
9199
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9139
9200
|
onProgress(progress: number): void;
|
|
@@ -9275,7 +9336,7 @@ declare class CadenzaService {
|
|
|
9275
9336
|
workAsync(): Promise<void>;
|
|
9276
9337
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9277
9338
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9278
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9339
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9279
9340
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9280
9341
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9281
9342
|
onProgress(progress: number): void;
|
|
@@ -9410,7 +9471,7 @@ declare class CadenzaService {
|
|
|
9410
9471
|
workAsync(): Promise<void>;
|
|
9411
9472
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9412
9473
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9413
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9474
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9414
9475
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9415
9476
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9416
9477
|
onProgress(progress: number): void;
|
|
@@ -9544,7 +9605,7 @@ declare class CadenzaService {
|
|
|
9544
9605
|
workAsync(): Promise<void>;
|
|
9545
9606
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9546
9607
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9547
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9608
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9548
9609
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9549
9610
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9550
9611
|
onProgress(progress: number): void;
|
|
@@ -9682,7 +9743,7 @@ declare class CadenzaService {
|
|
|
9682
9743
|
workAsync(): Promise<void>;
|
|
9683
9744
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9684
9745
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9685
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9746
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9686
9747
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9687
9748
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9688
9749
|
onProgress(progress: number): void;
|
|
@@ -9832,7 +9893,7 @@ declare class CadenzaService {
|
|
|
9832
9893
|
workAsync(): Promise<void>;
|
|
9833
9894
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
9834
9895
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
9835
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
9896
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
9836
9897
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9837
9898
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
9838
9899
|
onProgress(progress: number): void;
|
|
@@ -10019,7 +10080,7 @@ declare class CadenzaService {
|
|
|
10019
10080
|
workAsync(): Promise<void>;
|
|
10020
10081
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10021
10082
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10022
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10083
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10023
10084
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10024
10085
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10025
10086
|
onProgress(progress: number): void;
|
|
@@ -10161,7 +10222,7 @@ declare class CadenzaService {
|
|
|
10161
10222
|
workAsync(): Promise<void>;
|
|
10162
10223
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10163
10224
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10164
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10225
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10165
10226
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10166
10227
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10167
10228
|
onProgress(progress: number): void;
|
|
@@ -10296,7 +10357,7 @@ declare class CadenzaService {
|
|
|
10296
10357
|
workAsync(): Promise<void>;
|
|
10297
10358
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10298
10359
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10299
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10360
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10300
10361
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10301
10362
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10302
10363
|
onProgress(progress: number): void;
|
|
@@ -10430,7 +10491,7 @@ declare class CadenzaService {
|
|
|
10430
10491
|
workAsync(): Promise<void>;
|
|
10431
10492
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10432
10493
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10433
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10494
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10434
10495
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10435
10496
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10436
10497
|
onProgress(progress: number): void;
|
|
@@ -10568,7 +10629,7 @@ declare class CadenzaService {
|
|
|
10568
10629
|
workAsync(): Promise<void>;
|
|
10569
10630
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10570
10631
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10571
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10632
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10572
10633
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10573
10634
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10574
10635
|
onProgress(progress: number): void;
|
|
@@ -10718,7 +10779,7 @@ declare class CadenzaService {
|
|
|
10718
10779
|
workAsync(): Promise<void>;
|
|
10719
10780
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
10720
10781
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
10721
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
10782
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
10722
10783
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10723
10784
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
10724
10785
|
onProgress(progress: number): void;
|
|
@@ -11075,7 +11136,7 @@ declare class CadenzaService {
|
|
|
11075
11136
|
workAsync(): Promise<void>;
|
|
11076
11137
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11077
11138
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11078
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11139
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11079
11140
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11080
11141
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11081
11142
|
onProgress(progress: number): void;
|
|
@@ -11299,7 +11360,7 @@ declare class CadenzaService {
|
|
|
11299
11360
|
workAsync(): Promise<void>;
|
|
11300
11361
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11301
11362
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11302
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11363
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11303
11364
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11304
11365
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11305
11366
|
onProgress(progress: number): void;
|
|
@@ -11441,7 +11502,7 @@ declare class CadenzaService {
|
|
|
11441
11502
|
workAsync(): Promise<void>;
|
|
11442
11503
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11443
11504
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11444
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11505
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11445
11506
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11446
11507
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11447
11508
|
onProgress(progress: number): void;
|
|
@@ -11576,7 +11637,7 @@ declare class CadenzaService {
|
|
|
11576
11637
|
workAsync(): Promise<void>;
|
|
11577
11638
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11578
11639
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11579
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11640
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11580
11641
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11581
11642
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11582
11643
|
onProgress(progress: number): void;
|
|
@@ -11710,7 +11771,7 @@ declare class CadenzaService {
|
|
|
11710
11771
|
workAsync(): Promise<void>;
|
|
11711
11772
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11712
11773
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11713
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11774
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11714
11775
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11715
11776
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11716
11777
|
onProgress(progress: number): void;
|
|
@@ -11848,7 +11909,7 @@ declare class CadenzaService {
|
|
|
11848
11909
|
workAsync(): Promise<void>;
|
|
11849
11910
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
11850
11911
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
11851
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
11912
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
11852
11913
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11853
11914
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
11854
11915
|
onProgress(progress: number): void;
|
|
@@ -11998,7 +12059,7 @@ declare class CadenzaService {
|
|
|
11998
12059
|
workAsync(): Promise<void>;
|
|
11999
12060
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12000
12061
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12001
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12062
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12002
12063
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12003
12064
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12004
12065
|
onProgress(progress: number): void;
|
|
@@ -12186,7 +12247,7 @@ declare class CadenzaService {
|
|
|
12186
12247
|
workAsync(): Promise<void>;
|
|
12187
12248
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12188
12249
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12189
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12250
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12190
12251
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12191
12252
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12192
12253
|
onProgress(progress: number): void;
|
|
@@ -12328,7 +12389,7 @@ declare class CadenzaService {
|
|
|
12328
12389
|
workAsync(): Promise<void>;
|
|
12329
12390
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12330
12391
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12331
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12392
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12332
12393
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12333
12394
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12334
12395
|
onProgress(progress: number): void;
|
|
@@ -12463,7 +12524,7 @@ declare class CadenzaService {
|
|
|
12463
12524
|
workAsync(): Promise<void>;
|
|
12464
12525
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12465
12526
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12466
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12527
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12467
12528
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12468
12529
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12469
12530
|
onProgress(progress: number): void;
|
|
@@ -12597,7 +12658,7 @@ declare class CadenzaService {
|
|
|
12597
12658
|
workAsync(): Promise<void>;
|
|
12598
12659
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12599
12660
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12600
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12661
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12601
12662
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12602
12663
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12603
12664
|
onProgress(progress: number): void;
|
|
@@ -12735,7 +12796,7 @@ declare class CadenzaService {
|
|
|
12735
12796
|
workAsync(): Promise<void>;
|
|
12736
12797
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12737
12798
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12738
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12799
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12739
12800
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12740
12801
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12741
12802
|
onProgress(progress: number): void;
|
|
@@ -12885,7 +12946,7 @@ declare class CadenzaService {
|
|
|
12885
12946
|
workAsync(): Promise<void>;
|
|
12886
12947
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
12887
12948
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
12888
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
12949
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
12889
12950
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12890
12951
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
12891
12952
|
onProgress(progress: number): void;
|
|
@@ -13074,7 +13135,7 @@ declare class CadenzaService {
|
|
|
13074
13135
|
workAsync(): Promise<void>;
|
|
13075
13136
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13076
13137
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13077
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13138
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13078
13139
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13079
13140
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13080
13141
|
onProgress(progress: number): void;
|
|
@@ -13216,7 +13277,7 @@ declare class CadenzaService {
|
|
|
13216
13277
|
workAsync(): Promise<void>;
|
|
13217
13278
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13218
13279
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13219
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13280
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13220
13281
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13221
13282
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13222
13283
|
onProgress(progress: number): void;
|
|
@@ -13351,7 +13412,7 @@ declare class CadenzaService {
|
|
|
13351
13412
|
workAsync(): Promise<void>;
|
|
13352
13413
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13353
13414
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13354
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13415
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13355
13416
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13356
13417
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13357
13418
|
onProgress(progress: number): void;
|
|
@@ -13485,7 +13546,7 @@ declare class CadenzaService {
|
|
|
13485
13546
|
workAsync(): Promise<void>;
|
|
13486
13547
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13487
13548
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13488
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13549
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13489
13550
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13490
13551
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13491
13552
|
onProgress(progress: number): void;
|
|
@@ -13623,7 +13684,7 @@ declare class CadenzaService {
|
|
|
13623
13684
|
workAsync(): Promise<void>;
|
|
13624
13685
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13625
13686
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13626
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13687
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13627
13688
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13628
13689
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13629
13690
|
onProgress(progress: number): void;
|
|
@@ -13773,7 +13834,7 @@ declare class CadenzaService {
|
|
|
13773
13834
|
workAsync(): Promise<void>;
|
|
13774
13835
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
13775
13836
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
13776
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
13837
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
13777
13838
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13778
13839
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
13779
13840
|
onProgress(progress: number): void;
|
|
@@ -14129,7 +14190,7 @@ declare class CadenzaService {
|
|
|
14129
14190
|
workAsync(): Promise<void>;
|
|
14130
14191
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14131
14192
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14132
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14193
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
14133
14194
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14134
14195
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14135
14196
|
onProgress(progress: number): void;
|
|
@@ -14515,7 +14576,7 @@ declare class CadenzaService {
|
|
|
14515
14576
|
workAsync(): Promise<void>;
|
|
14516
14577
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14517
14578
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14518
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14579
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
14519
14580
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14520
14581
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14521
14582
|
onProgress(progress: number): void;
|
|
@@ -14734,7 +14795,7 @@ declare class CadenzaService {
|
|
|
14734
14795
|
workAsync(): Promise<void>;
|
|
14735
14796
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14736
14797
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14737
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14798
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
14738
14799
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14739
14800
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14740
14801
|
onProgress(progress: number): void;
|
|
@@ -14876,7 +14937,7 @@ declare class CadenzaService {
|
|
|
14876
14937
|
workAsync(): Promise<void>;
|
|
14877
14938
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
14878
14939
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
14879
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
14940
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
14880
14941
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14881
14942
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
14882
14943
|
onProgress(progress: number): void;
|
|
@@ -15011,7 +15072,7 @@ declare class CadenzaService {
|
|
|
15011
15072
|
workAsync(): Promise<void>;
|
|
15012
15073
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15013
15074
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15014
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15075
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15015
15076
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15016
15077
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15017
15078
|
onProgress(progress: number): void;
|
|
@@ -15145,7 +15206,7 @@ declare class CadenzaService {
|
|
|
15145
15206
|
workAsync(): Promise<void>;
|
|
15146
15207
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15147
15208
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15148
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15209
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15149
15210
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15150
15211
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15151
15212
|
onProgress(progress: number): void;
|
|
@@ -15283,7 +15344,7 @@ declare class CadenzaService {
|
|
|
15283
15344
|
workAsync(): Promise<void>;
|
|
15284
15345
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15285
15346
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15286
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15347
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15287
15348
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15288
15349
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15289
15350
|
onProgress(progress: number): void;
|
|
@@ -15433,7 +15494,7 @@ declare class CadenzaService {
|
|
|
15433
15494
|
workAsync(): Promise<void>;
|
|
15434
15495
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15435
15496
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15436
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15497
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15437
15498
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15438
15499
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15439
15500
|
onProgress(progress: number): void;
|
|
@@ -15620,7 +15681,7 @@ declare class CadenzaService {
|
|
|
15620
15681
|
workAsync(): Promise<void>;
|
|
15621
15682
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15622
15683
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15623
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15684
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15624
15685
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15625
15686
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15626
15687
|
onProgress(progress: number): void;
|
|
@@ -15762,7 +15823,7 @@ declare class CadenzaService {
|
|
|
15762
15823
|
workAsync(): Promise<void>;
|
|
15763
15824
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15764
15825
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15765
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15826
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15766
15827
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15767
15828
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15768
15829
|
onProgress(progress: number): void;
|
|
@@ -15897,7 +15958,7 @@ declare class CadenzaService {
|
|
|
15897
15958
|
workAsync(): Promise<void>;
|
|
15898
15959
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
15899
15960
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
15900
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
15961
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
15901
15962
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15902
15963
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
15903
15964
|
onProgress(progress: number): void;
|
|
@@ -16031,7 +16092,7 @@ declare class CadenzaService {
|
|
|
16031
16092
|
workAsync(): Promise<void>;
|
|
16032
16093
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16033
16094
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16034
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16095
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16035
16096
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16036
16097
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16037
16098
|
onProgress(progress: number): void;
|
|
@@ -16169,7 +16230,7 @@ declare class CadenzaService {
|
|
|
16169
16230
|
workAsync(): Promise<void>;
|
|
16170
16231
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16171
16232
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16172
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16233
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16173
16234
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16174
16235
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16175
16236
|
onProgress(progress: number): void;
|
|
@@ -16319,7 +16380,7 @@ declare class CadenzaService {
|
|
|
16319
16380
|
workAsync(): Promise<void>;
|
|
16320
16381
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16321
16382
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16322
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16383
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16323
16384
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16324
16385
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16325
16386
|
onProgress(progress: number): void;
|
|
@@ -16511,7 +16572,7 @@ declare class CadenzaService {
|
|
|
16511
16572
|
workAsync(): Promise<void>;
|
|
16512
16573
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16513
16574
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16514
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16575
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16515
16576
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16516
16577
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16517
16578
|
onProgress(progress: number): void;
|
|
@@ -16653,7 +16714,7 @@ declare class CadenzaService {
|
|
|
16653
16714
|
workAsync(): Promise<void>;
|
|
16654
16715
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16655
16716
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16656
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16717
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16657
16718
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16658
16719
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16659
16720
|
onProgress(progress: number): void;
|
|
@@ -16788,7 +16849,7 @@ declare class CadenzaService {
|
|
|
16788
16849
|
workAsync(): Promise<void>;
|
|
16789
16850
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16790
16851
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16791
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16852
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16792
16853
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16793
16854
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16794
16855
|
onProgress(progress: number): void;
|
|
@@ -16922,7 +16983,7 @@ declare class CadenzaService {
|
|
|
16922
16983
|
workAsync(): Promise<void>;
|
|
16923
16984
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
16924
16985
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
16925
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
16986
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
16926
16987
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16927
16988
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
16928
16989
|
onProgress(progress: number): void;
|
|
@@ -17060,7 +17121,7 @@ declare class CadenzaService {
|
|
|
17060
17121
|
workAsync(): Promise<void>;
|
|
17061
17122
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17062
17123
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17063
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17124
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17064
17125
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17065
17126
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17066
17127
|
onProgress(progress: number): void;
|
|
@@ -17210,7 +17271,7 @@ declare class CadenzaService {
|
|
|
17210
17271
|
workAsync(): Promise<void>;
|
|
17211
17272
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17212
17273
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17213
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17274
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17214
17275
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17215
17276
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17216
17277
|
onProgress(progress: number): void;
|
|
@@ -17398,7 +17459,7 @@ declare class CadenzaService {
|
|
|
17398
17459
|
workAsync(): Promise<void>;
|
|
17399
17460
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17400
17461
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17401
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17462
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17402
17463
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17403
17464
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17404
17465
|
onProgress(progress: number): void;
|
|
@@ -17540,7 +17601,7 @@ declare class CadenzaService {
|
|
|
17540
17601
|
workAsync(): Promise<void>;
|
|
17541
17602
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17542
17603
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17543
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17604
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17544
17605
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17545
17606
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17546
17607
|
onProgress(progress: number): void;
|
|
@@ -17675,7 +17736,7 @@ declare class CadenzaService {
|
|
|
17675
17736
|
workAsync(): Promise<void>;
|
|
17676
17737
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17677
17738
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17678
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17739
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17679
17740
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17680
17741
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17681
17742
|
onProgress(progress: number): void;
|
|
@@ -17809,7 +17870,7 @@ declare class CadenzaService {
|
|
|
17809
17870
|
workAsync(): Promise<void>;
|
|
17810
17871
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17811
17872
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17812
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
17873
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17813
17874
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17814
17875
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17815
17876
|
onProgress(progress: number): void;
|
|
@@ -17947,7 +18008,7 @@ declare class CadenzaService {
|
|
|
17947
18008
|
workAsync(): Promise<void>;
|
|
17948
18009
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
17949
18010
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
17950
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18011
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
17951
18012
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17952
18013
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
17953
18014
|
onProgress(progress: number): void;
|
|
@@ -18097,7 +18158,7 @@ declare class CadenzaService {
|
|
|
18097
18158
|
workAsync(): Promise<void>;
|
|
18098
18159
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18099
18160
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18100
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18161
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18101
18162
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18102
18163
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18103
18164
|
onProgress(progress: number): void;
|
|
@@ -18286,7 +18347,7 @@ declare class CadenzaService {
|
|
|
18286
18347
|
workAsync(): Promise<void>;
|
|
18287
18348
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18288
18349
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18289
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18350
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18290
18351
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18291
18352
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18292
18353
|
onProgress(progress: number): void;
|
|
@@ -18428,7 +18489,7 @@ declare class CadenzaService {
|
|
|
18428
18489
|
workAsync(): Promise<void>;
|
|
18429
18490
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18430
18491
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18431
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18492
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18432
18493
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18433
18494
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18434
18495
|
onProgress(progress: number): void;
|
|
@@ -18563,7 +18624,7 @@ declare class CadenzaService {
|
|
|
18563
18624
|
workAsync(): Promise<void>;
|
|
18564
18625
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18565
18626
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18566
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18627
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18567
18628
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18568
18629
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18569
18630
|
onProgress(progress: number): void;
|
|
@@ -18697,7 +18758,7 @@ declare class CadenzaService {
|
|
|
18697
18758
|
workAsync(): Promise<void>;
|
|
18698
18759
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18699
18760
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18700
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18761
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18701
18762
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18702
18763
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18703
18764
|
onProgress(progress: number): void;
|
|
@@ -18835,7 +18896,7 @@ declare class CadenzaService {
|
|
|
18835
18896
|
workAsync(): Promise<void>;
|
|
18836
18897
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18837
18898
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18838
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
18899
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18839
18900
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18840
18901
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18841
18902
|
onProgress(progress: number): void;
|
|
@@ -18985,7 +19046,7 @@ declare class CadenzaService {
|
|
|
18985
19046
|
workAsync(): Promise<void>;
|
|
18986
19047
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
18987
19048
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
18988
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19049
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
18989
19050
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18990
19051
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
18991
19052
|
onProgress(progress: number): void;
|
|
@@ -19341,7 +19402,7 @@ declare class CadenzaService {
|
|
|
19341
19402
|
workAsync(): Promise<void>;
|
|
19342
19403
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19343
19404
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19344
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19405
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
19345
19406
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19346
19407
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19347
19408
|
onProgress(progress: number): void;
|
|
@@ -19727,7 +19788,7 @@ declare class CadenzaService {
|
|
|
19727
19788
|
workAsync(): Promise<void>;
|
|
19728
19789
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19729
19790
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19730
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
19791
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
19731
19792
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19732
19793
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19733
19794
|
onProgress(progress: number): void;
|
|
@@ -19946,7 +20007,7 @@ declare class CadenzaService {
|
|
|
19946
20007
|
workAsync(): Promise<void>;
|
|
19947
20008
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
19948
20009
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
19949
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20010
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
19950
20011
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19951
20012
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
19952
20013
|
onProgress(progress: number): void;
|
|
@@ -20088,7 +20149,7 @@ declare class CadenzaService {
|
|
|
20088
20149
|
workAsync(): Promise<void>;
|
|
20089
20150
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20090
20151
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20091
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20152
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20092
20153
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20093
20154
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20094
20155
|
onProgress(progress: number): void;
|
|
@@ -20223,7 +20284,7 @@ declare class CadenzaService {
|
|
|
20223
20284
|
workAsync(): Promise<void>;
|
|
20224
20285
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20225
20286
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20226
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20287
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20227
20288
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20228
20289
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20229
20290
|
onProgress(progress: number): void;
|
|
@@ -20357,7 +20418,7 @@ declare class CadenzaService {
|
|
|
20357
20418
|
workAsync(): Promise<void>;
|
|
20358
20419
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20359
20420
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20360
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20421
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20361
20422
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20362
20423
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20363
20424
|
onProgress(progress: number): void;
|
|
@@ -20495,7 +20556,7 @@ declare class CadenzaService {
|
|
|
20495
20556
|
workAsync(): Promise<void>;
|
|
20496
20557
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20497
20558
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20498
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20559
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20499
20560
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20500
20561
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20501
20562
|
onProgress(progress: number): void;
|
|
@@ -20645,7 +20706,7 @@ declare class CadenzaService {
|
|
|
20645
20706
|
workAsync(): Promise<void>;
|
|
20646
20707
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20647
20708
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20648
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20709
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20649
20710
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20650
20711
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20651
20712
|
onProgress(progress: number): void;
|
|
@@ -20832,7 +20893,7 @@ declare class CadenzaService {
|
|
|
20832
20893
|
workAsync(): Promise<void>;
|
|
20833
20894
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20834
20895
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20835
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
20896
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20836
20897
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20837
20898
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20838
20899
|
onProgress(progress: number): void;
|
|
@@ -20974,7 +21035,7 @@ declare class CadenzaService {
|
|
|
20974
21035
|
workAsync(): Promise<void>;
|
|
20975
21036
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
20976
21037
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
20977
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21038
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
20978
21039
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20979
21040
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
20980
21041
|
onProgress(progress: number): void;
|
|
@@ -21109,7 +21170,7 @@ declare class CadenzaService {
|
|
|
21109
21170
|
workAsync(): Promise<void>;
|
|
21110
21171
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21111
21172
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21112
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21173
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
21113
21174
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21114
21175
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21115
21176
|
onProgress(progress: number): void;
|
|
@@ -21243,7 +21304,7 @@ declare class CadenzaService {
|
|
|
21243
21304
|
workAsync(): Promise<void>;
|
|
21244
21305
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21245
21306
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21246
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21307
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
21247
21308
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21248
21309
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21249
21310
|
onProgress(progress: number): void;
|
|
@@ -21381,7 +21442,7 @@ declare class CadenzaService {
|
|
|
21381
21442
|
workAsync(): Promise<void>;
|
|
21382
21443
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21383
21444
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21384
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21445
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
21385
21446
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21386
21447
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21387
21448
|
onProgress(progress: number): void;
|
|
@@ -21531,7 +21592,7 @@ declare class CadenzaService {
|
|
|
21531
21592
|
workAsync(): Promise<void>;
|
|
21532
21593
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21533
21594
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21534
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21595
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
21535
21596
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21536
21597
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21537
21598
|
onProgress(progress: number): void;
|
|
@@ -21889,7 +21950,7 @@ declare class CadenzaService {
|
|
|
21889
21950
|
workAsync(): Promise<void>;
|
|
21890
21951
|
executeAsync(): Promise</*elided*/ any[]>;
|
|
21891
21952
|
work(): _cadenza_io_core.TaskResult | Promise<_cadenza_io_core.TaskResult>;
|
|
21892
|
-
inquire(inquiry: string, context: AnyObject, options: InquiryOptions): Promise<any>;
|
|
21953
|
+
inquire(inquiry: string, context: AnyObject, options: _cadenza_io_core.InquiryOptions): Promise<any>;
|
|
21893
21954
|
emitWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21894
21955
|
emitMetricsWithMetadata(signal: string, data: AnyObject, options?: EmitOptions): void;
|
|
21895
21956
|
onProgress(progress: number): void;
|
|
@@ -22089,7 +22150,10 @@ declare class CadenzaService {
|
|
|
22089
22150
|
static schedule(signal: string, context: AnyObject, timeoutMs: number, exactDateTime?: Date): void;
|
|
22090
22151
|
static interval(signal: string, context: AnyObject, intervalMs: number, leading?: boolean, startDateTime?: Date): void;
|
|
22091
22152
|
static defineIntent(intent: Intent): Intent;
|
|
22092
|
-
static
|
|
22153
|
+
private static getInquiryResponderDescriptor;
|
|
22154
|
+
private static compareInquiryResponders;
|
|
22155
|
+
private static buildInquirySummary;
|
|
22156
|
+
static inquire(inquiry: string, context: AnyObject, options?: DistributedInquiryOptions): Promise<AnyObject>;
|
|
22093
22157
|
/**
|
|
22094
22158
|
* Executes the given task or graph routine within the provided context using the configured runner.
|
|
22095
22159
|
*
|
|
@@ -22683,6 +22747,13 @@ declare class GraphMetadataController {
|
|
|
22683
22747
|
declare class RestController {
|
|
22684
22748
|
private static _instance;
|
|
22685
22749
|
static get instance(): RestController;
|
|
22750
|
+
private fetchClientDiagnostics;
|
|
22751
|
+
private readonly diagnosticsErrorHistoryLimit;
|
|
22752
|
+
private resolveTransportDiagnosticsOptions;
|
|
22753
|
+
private ensureFetchClientDiagnostics;
|
|
22754
|
+
private getErrorMessage;
|
|
22755
|
+
private recordFetchClientError;
|
|
22756
|
+
private collectFetchTransportDiagnostics;
|
|
22686
22757
|
/**
|
|
22687
22758
|
* Fetches data from the given URL with a specified timeout. This function performs
|
|
22688
22759
|
* a fetch request with the ability to cancel the request if it exceeds the provided timeout duration.
|
|
@@ -22717,6 +22788,13 @@ declare class RestController {
|
|
|
22717
22788
|
declare class SocketController {
|
|
22718
22789
|
private static _instance;
|
|
22719
22790
|
static get instance(): SocketController;
|
|
22791
|
+
private socketClientDiagnostics;
|
|
22792
|
+
private readonly diagnosticsErrorHistoryLimit;
|
|
22793
|
+
private resolveTransportDiagnosticsOptions;
|
|
22794
|
+
private ensureSocketClientDiagnostics;
|
|
22795
|
+
private getErrorMessage;
|
|
22796
|
+
private recordSocketClientError;
|
|
22797
|
+
private collectSocketTransportDiagnostics;
|
|
22720
22798
|
/**
|
|
22721
22799
|
* Constructs the `SocketServer`, setting up a WebSocket server with specific configurations,
|
|
22722
22800
|
* including connection state recovery, rate limiting, CORS handling, and custom event handling.
|
|
@@ -22774,4 +22852,4 @@ declare class SignalController {
|
|
|
22774
22852
|
constructor();
|
|
22775
22853
|
}
|
|
22776
22854
|
|
|
22777
|
-
export { DatabaseTask, type DbOperationPayload, type DbOperationType$1 as DbOperationType, type DeputyDescriptor, DeputyTask, GraphMetadataController, type JoinDefinition, type NetworkMode, type OpEffect, RestController, type SecurityProfile, type ServerOptions, type ServiceInstanceDescriptor, ServiceRegistry, SignalController, SignalTransmissionTask, SocketController, type SortDirection, type SubOperation, type SubOperationType, type ValueOrSubOp, CadenzaService as default };
|
|
22855
|
+
export { DatabaseTask, type DbOperationPayload, type DbOperationType$1 as DbOperationType, type DeputyDescriptor, DeputyTask, type DistributedInquiryMeta, type DistributedInquiryOptions, GraphMetadataController, type InquiryResponderDescriptor, type InquiryResponderStatus, type JoinDefinition, type NetworkMode, type OpEffect, RestController, type SecurityProfile, type ServerOptions, type ServiceInstanceDescriptor, ServiceRegistry, SignalController, SignalTransmissionTask, SocketController, type SortDirection, type SubOperation, type SubOperationType, type ValueOrSubOp, CadenzaService as default };
|