@roarkanalytics/sdk 3.5.0 → 3.6.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/CHANGELOG.md +12 -0
- package/package.json +1 -1
- package/resources/metric.d.mts +142 -0
- package/resources/metric.d.mts.map +1 -1
- package/resources/metric.d.ts +142 -0
- package/resources/metric.d.ts.map +1 -1
- package/src/resources/metric.ts +164 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.ts +1 -1
- package/version.js +1 -1
- package/version.mjs +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.6.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.5.0...v3.6.0) (2026-09-03)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **api:** api update ([#1195](https://github.com/roarkhq/sdk-roark-analytics-node/issues/1195)) ([63017bf](https://github.com/roarkhq/sdk-roark-analytics-node/commit/63017bf2d321054b870ac9d6029becda711e1bea))
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* fold next into main ([d8436b0](https://github.com/roarkhq/sdk-roark-analytics-node/commit/d8436b09455d67c24208e74fbbcf1b2806d4d9dc))
|
|
14
|
+
|
|
3
15
|
## [3.5.0](https://github.com/roarkhq/sdk-roark-analytics-node/compare/v3.4.0...v3.5.0) (2026-09-03)
|
|
4
16
|
|
|
5
17
|
|
package/package.json
CHANGED
package/resources/metric.d.mts
CHANGED
|
@@ -43,6 +43,16 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
43
43
|
* Unique identifier for the metric definition
|
|
44
44
|
*/
|
|
45
45
|
id: string;
|
|
46
|
+
/**
|
|
47
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
48
|
+
* polarity rule.
|
|
49
|
+
*/
|
|
50
|
+
booleanFalseLabel: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
53
|
+
* polarity rule.
|
|
54
|
+
*/
|
|
55
|
+
booleanTrueLabel: string | null;
|
|
46
56
|
/**
|
|
47
57
|
* Metric evaluated by an LLM against a prompt.
|
|
48
58
|
*/
|
|
@@ -51,6 +61,11 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
51
61
|
* Description of what the metric measures
|
|
52
62
|
*/
|
|
53
63
|
description: string;
|
|
64
|
+
/**
|
|
65
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
66
|
+
* are live after a create or update.
|
|
67
|
+
*/
|
|
68
|
+
llmPrompt: string | null;
|
|
54
69
|
/**
|
|
55
70
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
56
71
|
*/
|
|
@@ -59,6 +74,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
59
74
|
* Name of the metric
|
|
60
75
|
*/
|
|
61
76
|
name: string;
|
|
77
|
+
/**
|
|
78
|
+
* True when this metric can only be scored from a live recording
|
|
79
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
80
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
81
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
82
|
+
* discovering the wait afterwards.
|
|
83
|
+
*/
|
|
84
|
+
requiresLiveConversation: boolean;
|
|
62
85
|
/**
|
|
63
86
|
* Whether metric is global or per-participant
|
|
64
87
|
*/
|
|
@@ -71,6 +94,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
71
94
|
* Which levels this metric can produce values at
|
|
72
95
|
*/
|
|
73
96
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
97
|
+
/**
|
|
98
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
99
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
100
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
101
|
+
*/
|
|
102
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
74
103
|
/**
|
|
75
104
|
* Type of value this metric produces
|
|
76
105
|
*/
|
|
@@ -131,6 +160,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
131
160
|
* Name of the metric
|
|
132
161
|
*/
|
|
133
162
|
name: string;
|
|
163
|
+
/**
|
|
164
|
+
* True when this metric can only be scored from a live recording
|
|
165
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
166
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
167
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
168
|
+
* discovering the wait afterwards.
|
|
169
|
+
*/
|
|
170
|
+
requiresLiveConversation: boolean;
|
|
134
171
|
/**
|
|
135
172
|
* Whether metric is global or per-participant
|
|
136
173
|
*/
|
|
@@ -143,6 +180,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
143
180
|
* Which levels this metric can produce values at
|
|
144
181
|
*/
|
|
145
182
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
183
|
+
/**
|
|
184
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
185
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
186
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
187
|
+
*/
|
|
188
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
146
189
|
/**
|
|
147
190
|
* Type of value this metric produces
|
|
148
191
|
*/
|
|
@@ -216,6 +259,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
216
259
|
* Pattern configuration.
|
|
217
260
|
*/
|
|
218
261
|
pattern: PatternMetricResponse.Pattern;
|
|
262
|
+
/**
|
|
263
|
+
* True when this metric can only be scored from a live recording
|
|
264
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
265
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
266
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
267
|
+
* discovering the wait afterwards.
|
|
268
|
+
*/
|
|
269
|
+
requiresLiveConversation: boolean;
|
|
219
270
|
/**
|
|
220
271
|
* Whether metric is global or per-participant
|
|
221
272
|
*/
|
|
@@ -228,6 +279,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
228
279
|
* Which levels this metric can produce values at
|
|
229
280
|
*/
|
|
230
281
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
282
|
+
/**
|
|
283
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
284
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
285
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
286
|
+
*/
|
|
287
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
231
288
|
/**
|
|
232
289
|
* Type of value this metric produces
|
|
233
290
|
*/
|
|
@@ -305,6 +362,16 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
305
362
|
* Unique identifier for the metric definition
|
|
306
363
|
*/
|
|
307
364
|
id: string;
|
|
365
|
+
/**
|
|
366
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
367
|
+
* polarity rule.
|
|
368
|
+
*/
|
|
369
|
+
booleanFalseLabel: string | null;
|
|
370
|
+
/**
|
|
371
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
372
|
+
* polarity rule.
|
|
373
|
+
*/
|
|
374
|
+
booleanTrueLabel: string | null;
|
|
308
375
|
/**
|
|
309
376
|
* Metric evaluated by an LLM against a prompt.
|
|
310
377
|
*/
|
|
@@ -313,6 +380,11 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
313
380
|
* Description of what the metric measures
|
|
314
381
|
*/
|
|
315
382
|
description: string;
|
|
383
|
+
/**
|
|
384
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
385
|
+
* are live after a create or update.
|
|
386
|
+
*/
|
|
387
|
+
llmPrompt: string | null;
|
|
316
388
|
/**
|
|
317
389
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
318
390
|
*/
|
|
@@ -321,6 +393,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
321
393
|
* Name of the metric
|
|
322
394
|
*/
|
|
323
395
|
name: string;
|
|
396
|
+
/**
|
|
397
|
+
* True when this metric can only be scored from a live recording
|
|
398
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
399
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
400
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
401
|
+
* discovering the wait afterwards.
|
|
402
|
+
*/
|
|
403
|
+
requiresLiveConversation: boolean;
|
|
324
404
|
/**
|
|
325
405
|
* Whether metric is global or per-participant
|
|
326
406
|
*/
|
|
@@ -333,6 +413,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
333
413
|
* Which levels this metric can produce values at
|
|
334
414
|
*/
|
|
335
415
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
416
|
+
/**
|
|
417
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
418
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
419
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
420
|
+
*/
|
|
421
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
336
422
|
/**
|
|
337
423
|
* Type of value this metric produces
|
|
338
424
|
*/
|
|
@@ -389,6 +475,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
389
475
|
* Name of the metric
|
|
390
476
|
*/
|
|
391
477
|
name: string;
|
|
478
|
+
/**
|
|
479
|
+
* True when this metric can only be scored from a live recording
|
|
480
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
481
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
482
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
483
|
+
* discovering the wait afterwards.
|
|
484
|
+
*/
|
|
485
|
+
requiresLiveConversation: boolean;
|
|
392
486
|
/**
|
|
393
487
|
* Whether metric is global or per-participant
|
|
394
488
|
*/
|
|
@@ -401,6 +495,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
401
495
|
* Which levels this metric can produce values at
|
|
402
496
|
*/
|
|
403
497
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
498
|
+
/**
|
|
499
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
500
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
501
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
502
|
+
*/
|
|
503
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
404
504
|
/**
|
|
405
505
|
* Type of value this metric produces
|
|
406
506
|
*/
|
|
@@ -457,6 +557,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
457
557
|
* Name of the metric
|
|
458
558
|
*/
|
|
459
559
|
name: string;
|
|
560
|
+
/**
|
|
561
|
+
* True when this metric can only be scored from a live recording
|
|
562
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
563
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
564
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
565
|
+
* discovering the wait afterwards.
|
|
566
|
+
*/
|
|
567
|
+
requiresLiveConversation: boolean;
|
|
460
568
|
/**
|
|
461
569
|
* Whether metric is global or per-participant
|
|
462
570
|
*/
|
|
@@ -469,6 +577,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
469
577
|
* Which levels this metric can produce values at
|
|
470
578
|
*/
|
|
471
579
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
580
|
+
/**
|
|
581
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
582
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
583
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
584
|
+
*/
|
|
585
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
472
586
|
/**
|
|
473
587
|
* Type of value this metric produces
|
|
474
588
|
*/
|
|
@@ -545,6 +659,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
545
659
|
* Name of the metric
|
|
546
660
|
*/
|
|
547
661
|
name: string;
|
|
662
|
+
/**
|
|
663
|
+
* True when this metric can only be scored from a live recording
|
|
664
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
665
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
666
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
667
|
+
* discovering the wait afterwards.
|
|
668
|
+
*/
|
|
669
|
+
requiresLiveConversation: boolean;
|
|
548
670
|
/**
|
|
549
671
|
* Whether metric is global or per-participant
|
|
550
672
|
*/
|
|
@@ -557,6 +679,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
557
679
|
* Which levels this metric can produce values at
|
|
558
680
|
*/
|
|
559
681
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
682
|
+
/**
|
|
683
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
684
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
685
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
686
|
+
*/
|
|
687
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
560
688
|
/**
|
|
561
689
|
* Type of value this metric produces
|
|
562
690
|
*/
|
|
@@ -630,6 +758,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
630
758
|
* Pattern configuration.
|
|
631
759
|
*/
|
|
632
760
|
pattern: PatternMetricResponse.Pattern;
|
|
761
|
+
/**
|
|
762
|
+
* True when this metric can only be scored from a live recording
|
|
763
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
764
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
765
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
766
|
+
* discovering the wait afterwards.
|
|
767
|
+
*/
|
|
768
|
+
requiresLiveConversation: boolean;
|
|
633
769
|
/**
|
|
634
770
|
* Whether metric is global or per-participant
|
|
635
771
|
*/
|
|
@@ -642,6 +778,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
642
778
|
* Which levels this metric can produce values at
|
|
643
779
|
*/
|
|
644
780
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
781
|
+
/**
|
|
782
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
783
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
784
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
785
|
+
*/
|
|
786
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
645
787
|
/**
|
|
646
788
|
* Type of value this metric produces
|
|
647
789
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metric.d.mts","sourceRoot":"","sources":["../src/resources/metric.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"metric.d.mts","sourceRoot":"","sources":["../src/resources/metric.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,WAAW,EAAE,6BAAyB;AAC/C,OAAO,EAAE,UAAU,EAAE,gCAA4B;AACjD,OAAO,EAAE,cAAc,EAAE,wCAAoC;AAE7D,qBAAa,MAAO,SAAQ,WAAW;IACrC;;;;;;;;;;;;;;;OAeG;IACH,gBAAgB,CACd,IAAI,EAAE,4BAA4B,EAClC,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,8BAA8B,CAAC;IAI7C;;;;;;;;;OASG;IACH,eAAe,CACb,KAAK,GAAE,2BAA2B,GAAG,IAAI,GAAG,SAAc,EAC1D,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,6BAA6B,CAAC;CAG7C;AAED,MAAM,WAAW,8BAA8B;IAC7C;;OAEG;IACH,IAAI,EACA,8BAA8B,CAAC,sBAAsB,GACrD,8BAA8B,CAAC,qBAAqB,GACpD,8BAA8B,CAAC,qBAAqB,CAAC;CAC1D;AAED,yBAAiB,8BAA8B,CAAC;IAC9C,UAAiB,sBAAsB;QACrC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;;WAGG;QACH,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;QAEjC;;;WAGG;QACH,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;QAEhC;;WAEG;QACH,eAAe,EAAE,WAAW,CAAC;QAE7B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;;WAGG;QACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;QAEzB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,sBAAsB,CAAC,IAAI,CAAC;KACpC;IAED,UAAiB,sBAAsB,CAAC;QACtC;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,qBAAqB;QACpC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,OAAO,EAAE,qBAAqB,CAAC,OAAO,CAAC;QAEvC;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,qBAAqB,CAAC,IAAI,CAAC;KACnC;IAED,UAAiB,qBAAqB,CAAC;QACrC;;WAEG;QACH,UAAiB,OAAO;YACtB,UAAU,EAAE,MAAM,CAAC;YAEnB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;SAChC;QAED,UAAiB,OAAO,CAAC;YACvB,UAAiB,MAAM;gBACrB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;aAChC;SACF;QAED;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,qBAAqB;QACpC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,OAAO,EAAE,qBAAqB,CAAC,OAAO,CAAC;QAEvC;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,qBAAqB,CAAC,IAAI,CAAC;KACnC;IAED,UAAiB,qBAAqB,CAAC;QACrC;;WAEG;QACH,UAAiB,OAAO;YACtB,SAAS,EAAE,gBAAgB,GAAG,eAAe,GAAG,mBAAmB,CAAC;YAEpE,OAAO,EAAE,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC;YAEhC,iBAAiB,EAAE,KAAK,GAAG,IAAI,GAAG,IAAI,CAAC;YAEvC,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YAEjC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;SAC3B;QAED,UAAiB,OAAO,CAAC;YACvB,UAAiB,OAAO;gBACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;gBAEjB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,qBAAqB,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,IAAI,CAAC;gBAEjG,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE/B,cAAc,EAAE,MAAM,CAAC;gBAEvB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;aAC7B;YAED,UAAiB,OAAO;gBACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;gBAEjB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,qBAAqB,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,IAAI,CAAC;gBAEjG,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE/B,cAAc,EAAE,MAAM,CAAC;aACxB;SACF;QAED;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;CACF;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C,IAAI,EAAE,KAAK,CACP,6BAA6B,CAAC,sBAAsB,GACpD,6BAA6B,CAAC,sBAAsB,GACpD,6BAA6B,CAAC,uBAAuB,GACrD,6BAA6B,CAAC,qBAAqB,GACnD,6BAA6B,CAAC,qBAAqB,CACtD,CAAC;IAEF,UAAU,EAAE,6BAA6B,CAAC,UAAU,CAAC;CACtD;AAED,yBAAiB,6BAA6B,CAAC;IAC7C,UAAiB,sBAAsB;QACrC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;;WAGG;QACH,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAC;QAEjC;;;WAGG;QACH,gBAAgB,EAAE,MAAM,GAAG,IAAI,CAAC;QAEhC;;WAEG;QACH,eAAe,EAAE,WAAW,CAAC;QAE7B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;;WAGG;QACH,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;QAEzB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,sBAAsB,CAAC,IAAI,CAAC;KACpC;IAED,UAAiB,sBAAsB,CAAC;QACtC;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,sBAAsB;QACrC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,UAAU,CAAC;QAE5B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,sBAAsB,CAAC,IAAI,CAAC;KACpC;IAED,UAAiB,sBAAsB,CAAC;QACtC;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,uBAAuB;QACtC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,WAAW,CAAC;QAE7B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,SAAS,CAAC,EAAE,uBAAuB,CAAC,SAAS,CAAC;QAE9C;;WAEG;QACH,IAAI,CAAC,EAAE,uBAAuB,CAAC,IAAI,CAAC;KACrC;IAED,UAAiB,uBAAuB,CAAC;QACvC;;WAEG;QACH,UAAiB,SAAS;YACxB,eAAe,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,KAAK,GAAG,KAAK,GAAG,QAAQ,GAAG,KAAK,GAAG,KAAK,GAAG,KAAK,CAAC;YAEjG,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;YAE9B,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;YAEjB,wBAAwB,EAAE,MAAM,CAAC;YAEjC,qBAAqB,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,IAAI,CAAC;YAEjG,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;YAE/B,cAAc,EAAE,MAAM,CAAC;SACxB;QAED;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,qBAAqB;QACpC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,OAAO,EAAE,qBAAqB,CAAC,OAAO,CAAC;QAEvC;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,qBAAqB,CAAC,IAAI,CAAC;KACnC;IAED,UAAiB,qBAAqB,CAAC;QACrC;;WAEG;QACH,UAAiB,OAAO;YACtB,UAAU,EAAE,MAAM,CAAC;YAEnB,OAAO,EAAE,KAAK,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC;SAChC;QAED,UAAiB,OAAO,CAAC;YACvB,UAAiB,MAAM;gBACrB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;aAChC;SACF;QAED;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,qBAAqB;QACpC;;WAEG;QACH,EAAE,EAAE,MAAM,CAAC;QAEX;;WAEG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;WAEG;QACH,WAAW,EAAE,MAAM,CAAC;QAEpB;;WAEG;QACH,QAAQ,EAAE,MAAM,CAAC;QAEjB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,OAAO,EAAE,qBAAqB,CAAC,OAAO,CAAC;QAEvC;;;;;;WAMG;QACH,wBAAwB,EAAE,OAAO,CAAC;QAElC;;WAEG;QACH,KAAK,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAEpC;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,iBAAiB,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;QAEtD;;;;WAIG;QACH,4BAA4B,EAAE,KAAK,CAAC,WAAW,GAAG,MAAM,CAAC,GAAG,IAAI,CAAC;QAEjE;;WAEG;QACH,IAAI,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAEvF;;;;WAIG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;;WAGG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,qBAAqB,CAAC,IAAI,CAAC;KACnC;IAED,UAAiB,qBAAqB,CAAC;QACrC;;WAEG;QACH,UAAiB,OAAO;YACtB,SAAS,EAAE,gBAAgB,GAAG,eAAe,GAAG,mBAAmB,CAAC;YAEpE,OAAO,EAAE,OAAO,CAAC,OAAO,GAAG,IAAI,CAAC;YAEhC,iBAAiB,EAAE,KAAK,GAAG,IAAI,GAAG,IAAI,CAAC;YAEvC,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;YAEjC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;SAC3B;QAED,UAAiB,OAAO,CAAC;YACvB,UAAiB,OAAO;gBACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;gBAEjB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,qBAAqB,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,IAAI,CAAC;gBAEjG,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE/B,cAAc,EAAE,MAAM,CAAC;gBAEvB,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE3B,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;aAC7B;YAED,UAAiB,OAAO;gBACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;gBAEjB,wBAAwB,EAAE,MAAM,CAAC;gBAEjC,qBAAqB,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,GAAG,IAAI,CAAC;gBAEjG,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;gBAE/B,cAAc,EAAE,MAAM,CAAC;aACxB;SACF;QAED;;WAEG;QACH,UAAiB,IAAI;YACnB;;eAEG;YACH,IAAI,EAAE,MAAM,CAAC;YAEb;;eAEG;YACH,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;SACvB;KACF;IAED,UAAiB,UAAU;QACzB,OAAO,EAAE,OAAO,CAAC;QAEjB,KAAK,EAAE,MAAM,CAAC;QAEd,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;KAC3B;CACF;AAED,MAAM,MAAM,4BAA4B,GACpC,4BAA4B,CAAC,iBAAiB,GAC9C,4BAA4B,CAAC,kBAAkB,GAC/C,4BAA4B,CAAC,kBAAkB,CAAC;AAEpD,MAAM,CAAC,OAAO,WAAW,4BAA4B,CAAC;IACpD,UAAiB,iBAAiB;QAChC;;WAEG;QACH,eAAe,EAAE,WAAW,CAAC;QAE7B;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;WAEG;QACH,UAAU,EAAE,OAAO,GAAG,SAAS,GAAG,SAAS,GAAG,OAAO,GAAG,MAAM,GAAG,gBAAgB,GAAG,QAAQ,CAAC;QAE7F;;;;WAIG;QACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAE3B;;WAEG;QACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAE3B;;WAEG;QACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;QAE1B;;WAEG;QACH,qBAAqB,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,oBAAoB,CAAC,CAAC;QAEtE;;;WAGG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;QAEnB;;;WAGG;QACH,kBAAkB,CAAC,EAAE,MAAM,CAAC;QAE5B;;;WAGG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,eAAe,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,CAAC;QAErF;;WAEG;QACH,WAAW,CAAC,EAAE,KAAK,CAAC,iBAAiB,CAAC,UAAU,CAAC,CAAC;QAElD;;WAEG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,KAAK,CAAC,EAAE,QAAQ,GAAG,iBAAiB,CAAC;QAErC;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QAEd;;WAEG;QACH,iBAAiB,CAAC,EAAE,KAAK,CAAC,MAAM,GAAG,SAAS,GAAG,MAAM,CAAC,CAAC;KACxD;IAED,UAAiB,iBAAiB,CAAC;QACjC;;WAEG;QACH,UAAiB,oBAAoB;YACnC,WAAW,EAAE,MAAM,CAAC;YAEpB,YAAY,EAAE,MAAM,CAAC;YAErB,KAAK,EAAE,MAAM,CAAC;SACf;QAED,UAAiB,UAAU;YACzB;;eAEG;YACH,YAAY,EAAE,MAAM,CAAC;YAErB;;eAEG;YACH,KAAK,EAAE,MAAM,CAAC;YAEd;;eAEG;YACH,QAAQ,EAAE,MAAM,CAAC;YAEjB;;eAEG;YACH,QAAQ,EAAE,MAAM,CAAC;YAEjB;;eAEG;YACH,QAAQ,CAAC,EAAE,MAAM,CAAC;YAElB;;eAEG;YACH,WAAW,CAAC,EAAE,MAAM,CAAC;SACtB;KACF;IAED,UAAiB,kBAAkB;QACjC;;WAEG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;;;WAIG;QACH,OAAO,EAAE,MAAM,CAAC;QAEhB;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;WAGG;QACH,UAAU,EAAE,SAAS,GAAG,SAAS,CAAC;QAElC;;WAEG;QACH,OAAO,EAAE,KAAK,CAAC,kBAAkB,CAAC,MAAM,CAAC,CAAC;QAE1C;;;;WAIG;QACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAE3B;;;WAGG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;KACf;IAED,UAAiB,kBAAkB,CAAC;QAClC,UAAiB,MAAM;YACrB;;eAEG;YACH,wBAAwB,EAAE,MAAM,CAAC;YAEjC;;eAEG;YACH,eAAe,CAAC,EAAE,MAAM,CAAC;SAC1B;KACF;IAED,UAAiB,kBAAkB;QACjC;;;WAGG;QACH,eAAe,EAAE,SAAS,CAAC;QAE3B;;WAEG;QACH,IAAI,EAAE,MAAM,CAAC;QAEb;;;WAGG;QACH,SAAS,EAAE,gBAAgB,GAAG,eAAe,GAAG,mBAAmB,CAAC;QAEpE;;WAEG;QACH,OAAO,EAAE,kBAAkB,CAAC,OAAO,CAAC;QAEpC;;;;WAIG;QACH,iBAAiB,CAAC,EAAE,MAAM,CAAC;QAE3B;;;WAGG;QACH,QAAQ,CAAC,EAAE,MAAM,CAAC;QAElB;;WAEG;QACH,IAAI,CAAC,EAAE,MAAM,CAAC;QAEd;;WAEG;QACH,OAAO,CAAC,EAAE,kBAAkB,CAAC,OAAO,CAAC;QAErC;;WAEG;QACH,iBAAiB,CAAC,EAAE,KAAK,GAAG,IAAI,CAAC;QAEjC;;WAEG;QACH,QAAQ,CAAC,EAAE,KAAK,CAAC,kBAAkB,CAAC,OAAO,CAAC,CAAC;QAE7C;;WAEG;QACH,UAAU,CAAC,EAAE,SAAS,GAAG,UAAU,CAAC;KACrC;IAED,UAAiB,kBAAkB,CAAC;QAClC;;WAEG;QACH,UAAiB,OAAO;YACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;YAEjB,wBAAwB,EAAE,MAAM,CAAC;YAEjC,cAAc,EAAE,MAAM,CAAC;YAEvB;;;eAGG;YACH,WAAW,EAAE,MAAM,CAAC;YAEpB,qBAAqB,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,CAAC;YAE3F,eAAe,CAAC,EAAE,MAAM,CAAC;YAEzB;;eAEG;YACH,YAAY,CAAC,EAAE,MAAM,CAAC;SACvB;QAED;;WAEG;QACH,UAAiB,OAAO;YACtB,QAAQ,EACJ,cAAc,GACd,wBAAwB,GACxB,WAAW,GACX,qBAAqB,GACrB,QAAQ,GACR,YAAY,CAAC;YAEjB,wBAAwB,EAAE,MAAM,CAAC;YAEjC,cAAc,EAAE,MAAM,CAAC;YAEvB,qBAAqB,CAAC,EAAE,OAAO,GAAG,UAAU,GAAG,oBAAoB,GAAG,oBAAoB,CAAC;YAE3F,eAAe,CAAC,EAAE,MAAM,CAAC;SAC1B;KACF;CACF;AAED,MAAM,WAAW,2BAA2B;IAC1C,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,CAAC,OAAO,WAAW,MAAM,CAAC;IAC9B,OAAO,EACL,KAAK,8BAA8B,IAAI,8BAA8B,EACrE,KAAK,6BAA6B,IAAI,6BAA6B,EACnE,KAAK,4BAA4B,IAAI,4BAA4B,EACjE,KAAK,2BAA2B,IAAI,2BAA2B,GAChE,CAAC;CACH"}
|
package/resources/metric.d.ts
CHANGED
|
@@ -43,6 +43,16 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
43
43
|
* Unique identifier for the metric definition
|
|
44
44
|
*/
|
|
45
45
|
id: string;
|
|
46
|
+
/**
|
|
47
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
48
|
+
* polarity rule.
|
|
49
|
+
*/
|
|
50
|
+
booleanFalseLabel: string | null;
|
|
51
|
+
/**
|
|
52
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
53
|
+
* polarity rule.
|
|
54
|
+
*/
|
|
55
|
+
booleanTrueLabel: string | null;
|
|
46
56
|
/**
|
|
47
57
|
* Metric evaluated by an LLM against a prompt.
|
|
48
58
|
*/
|
|
@@ -51,6 +61,11 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
51
61
|
* Description of what the metric measures
|
|
52
62
|
*/
|
|
53
63
|
description: string;
|
|
64
|
+
/**
|
|
65
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
66
|
+
* are live after a create or update.
|
|
67
|
+
*/
|
|
68
|
+
llmPrompt: string | null;
|
|
54
69
|
/**
|
|
55
70
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
56
71
|
*/
|
|
@@ -59,6 +74,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
59
74
|
* Name of the metric
|
|
60
75
|
*/
|
|
61
76
|
name: string;
|
|
77
|
+
/**
|
|
78
|
+
* True when this metric can only be scored from a live recording
|
|
79
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
80
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
81
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
82
|
+
* discovering the wait afterwards.
|
|
83
|
+
*/
|
|
84
|
+
requiresLiveConversation: boolean;
|
|
62
85
|
/**
|
|
63
86
|
* Whether metric is global or per-participant
|
|
64
87
|
*/
|
|
@@ -71,6 +94,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
71
94
|
* Which levels this metric can produce values at
|
|
72
95
|
*/
|
|
73
96
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
97
|
+
/**
|
|
98
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
99
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
100
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
101
|
+
*/
|
|
102
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
74
103
|
/**
|
|
75
104
|
* Type of value this metric produces
|
|
76
105
|
*/
|
|
@@ -131,6 +160,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
131
160
|
* Name of the metric
|
|
132
161
|
*/
|
|
133
162
|
name: string;
|
|
163
|
+
/**
|
|
164
|
+
* True when this metric can only be scored from a live recording
|
|
165
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
166
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
167
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
168
|
+
* discovering the wait afterwards.
|
|
169
|
+
*/
|
|
170
|
+
requiresLiveConversation: boolean;
|
|
134
171
|
/**
|
|
135
172
|
* Whether metric is global or per-participant
|
|
136
173
|
*/
|
|
@@ -143,6 +180,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
143
180
|
* Which levels this metric can produce values at
|
|
144
181
|
*/
|
|
145
182
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
183
|
+
/**
|
|
184
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
185
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
186
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
187
|
+
*/
|
|
188
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
146
189
|
/**
|
|
147
190
|
* Type of value this metric produces
|
|
148
191
|
*/
|
|
@@ -216,6 +259,14 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
216
259
|
* Pattern configuration.
|
|
217
260
|
*/
|
|
218
261
|
pattern: PatternMetricResponse.Pattern;
|
|
262
|
+
/**
|
|
263
|
+
* True when this metric can only be scored from a live recording
|
|
264
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
265
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
266
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
267
|
+
* discovering the wait afterwards.
|
|
268
|
+
*/
|
|
269
|
+
requiresLiveConversation: boolean;
|
|
219
270
|
/**
|
|
220
271
|
* Whether metric is global or per-participant
|
|
221
272
|
*/
|
|
@@ -228,6 +279,12 @@ export declare namespace MetricCreateDefinitionResponse {
|
|
|
228
279
|
* Which levels this metric can produce values at
|
|
229
280
|
*/
|
|
230
281
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
282
|
+
/**
|
|
283
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
284
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
285
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
286
|
+
*/
|
|
287
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
231
288
|
/**
|
|
232
289
|
* Type of value this metric produces
|
|
233
290
|
*/
|
|
@@ -305,6 +362,16 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
305
362
|
* Unique identifier for the metric definition
|
|
306
363
|
*/
|
|
307
364
|
id: string;
|
|
365
|
+
/**
|
|
366
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
367
|
+
* polarity rule.
|
|
368
|
+
*/
|
|
369
|
+
booleanFalseLabel: string | null;
|
|
370
|
+
/**
|
|
371
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
372
|
+
* polarity rule.
|
|
373
|
+
*/
|
|
374
|
+
booleanTrueLabel: string | null;
|
|
308
375
|
/**
|
|
309
376
|
* Metric evaluated by an LLM against a prompt.
|
|
310
377
|
*/
|
|
@@ -313,6 +380,11 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
313
380
|
* Description of what the metric measures
|
|
314
381
|
*/
|
|
315
382
|
description: string;
|
|
383
|
+
/**
|
|
384
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
385
|
+
* are live after a create or update.
|
|
386
|
+
*/
|
|
387
|
+
llmPrompt: string | null;
|
|
316
388
|
/**
|
|
317
389
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
318
390
|
*/
|
|
@@ -321,6 +393,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
321
393
|
* Name of the metric
|
|
322
394
|
*/
|
|
323
395
|
name: string;
|
|
396
|
+
/**
|
|
397
|
+
* True when this metric can only be scored from a live recording
|
|
398
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
399
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
400
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
401
|
+
* discovering the wait afterwards.
|
|
402
|
+
*/
|
|
403
|
+
requiresLiveConversation: boolean;
|
|
324
404
|
/**
|
|
325
405
|
* Whether metric is global or per-participant
|
|
326
406
|
*/
|
|
@@ -333,6 +413,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
333
413
|
* Which levels this metric can produce values at
|
|
334
414
|
*/
|
|
335
415
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
416
|
+
/**
|
|
417
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
418
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
419
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
420
|
+
*/
|
|
421
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
336
422
|
/**
|
|
337
423
|
* Type of value this metric produces
|
|
338
424
|
*/
|
|
@@ -389,6 +475,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
389
475
|
* Name of the metric
|
|
390
476
|
*/
|
|
391
477
|
name: string;
|
|
478
|
+
/**
|
|
479
|
+
* True when this metric can only be scored from a live recording
|
|
480
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
481
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
482
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
483
|
+
* discovering the wait afterwards.
|
|
484
|
+
*/
|
|
485
|
+
requiresLiveConversation: boolean;
|
|
392
486
|
/**
|
|
393
487
|
* Whether metric is global or per-participant
|
|
394
488
|
*/
|
|
@@ -401,6 +495,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
401
495
|
* Which levels this metric can produce values at
|
|
402
496
|
*/
|
|
403
497
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
498
|
+
/**
|
|
499
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
500
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
501
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
502
|
+
*/
|
|
503
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
404
504
|
/**
|
|
405
505
|
* Type of value this metric produces
|
|
406
506
|
*/
|
|
@@ -457,6 +557,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
457
557
|
* Name of the metric
|
|
458
558
|
*/
|
|
459
559
|
name: string;
|
|
560
|
+
/**
|
|
561
|
+
* True when this metric can only be scored from a live recording
|
|
562
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
563
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
564
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
565
|
+
* discovering the wait afterwards.
|
|
566
|
+
*/
|
|
567
|
+
requiresLiveConversation: boolean;
|
|
460
568
|
/**
|
|
461
569
|
* Whether metric is global or per-participant
|
|
462
570
|
*/
|
|
@@ -469,6 +577,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
469
577
|
* Which levels this metric can produce values at
|
|
470
578
|
*/
|
|
471
579
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
580
|
+
/**
|
|
581
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
582
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
583
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
584
|
+
*/
|
|
585
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
472
586
|
/**
|
|
473
587
|
* Type of value this metric produces
|
|
474
588
|
*/
|
|
@@ -545,6 +659,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
545
659
|
* Name of the metric
|
|
546
660
|
*/
|
|
547
661
|
name: string;
|
|
662
|
+
/**
|
|
663
|
+
* True when this metric can only be scored from a live recording
|
|
664
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
665
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
666
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
667
|
+
* discovering the wait afterwards.
|
|
668
|
+
*/
|
|
669
|
+
requiresLiveConversation: boolean;
|
|
548
670
|
/**
|
|
549
671
|
* Whether metric is global or per-participant
|
|
550
672
|
*/
|
|
@@ -557,6 +679,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
557
679
|
* Which levels this metric can produce values at
|
|
558
680
|
*/
|
|
559
681
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
682
|
+
/**
|
|
683
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
684
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
685
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
686
|
+
*/
|
|
687
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
560
688
|
/**
|
|
561
689
|
* Type of value this metric produces
|
|
562
690
|
*/
|
|
@@ -630,6 +758,14 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
630
758
|
* Pattern configuration.
|
|
631
759
|
*/
|
|
632
760
|
pattern: PatternMetricResponse.Pattern;
|
|
761
|
+
/**
|
|
762
|
+
* True when this metric can only be scored from a live recording
|
|
763
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
764
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
765
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
766
|
+
* discovering the wait afterwards.
|
|
767
|
+
*/
|
|
768
|
+
requiresLiveConversation: boolean;
|
|
633
769
|
/**
|
|
634
770
|
* Whether metric is global or per-participant
|
|
635
771
|
*/
|
|
@@ -642,6 +778,12 @@ export declare namespace MetricListDefinitionsResponse {
|
|
|
642
778
|
* Which levels this metric can produce values at
|
|
643
779
|
*/
|
|
644
780
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
781
|
+
/**
|
|
782
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
783
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
784
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
785
|
+
*/
|
|
786
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
645
787
|
/**
|
|
646
788
|
* Type of value this metric produces
|
|
647
789
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"metric.d.ts","sourceRoot":"","sources":["../src/resources/metric.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"metric.d.ts","sourceRoot":"","sources":["../src/resources/metric.ts"],"names":[],"mappings":"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"}
|
package/src/resources/metric.ts
CHANGED
|
@@ -63,6 +63,18 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
63
63
|
*/
|
|
64
64
|
id: string;
|
|
65
65
|
|
|
66
|
+
/**
|
|
67
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
68
|
+
* polarity rule.
|
|
69
|
+
*/
|
|
70
|
+
booleanFalseLabel: string | null;
|
|
71
|
+
|
|
72
|
+
/**
|
|
73
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
74
|
+
* polarity rule.
|
|
75
|
+
*/
|
|
76
|
+
booleanTrueLabel: string | null;
|
|
77
|
+
|
|
66
78
|
/**
|
|
67
79
|
* Metric evaluated by an LLM against a prompt.
|
|
68
80
|
*/
|
|
@@ -73,6 +85,12 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
73
85
|
*/
|
|
74
86
|
description: string;
|
|
75
87
|
|
|
88
|
+
/**
|
|
89
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
90
|
+
* are live after a create or update.
|
|
91
|
+
*/
|
|
92
|
+
llmPrompt: string | null;
|
|
93
|
+
|
|
76
94
|
/**
|
|
77
95
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
78
96
|
*/
|
|
@@ -83,6 +101,15 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
83
101
|
*/
|
|
84
102
|
name: string;
|
|
85
103
|
|
|
104
|
+
/**
|
|
105
|
+
* True when this metric can only be scored from a live recording
|
|
106
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
107
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
108
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
109
|
+
* discovering the wait afterwards.
|
|
110
|
+
*/
|
|
111
|
+
requiresLiveConversation: boolean;
|
|
112
|
+
|
|
86
113
|
/**
|
|
87
114
|
* Whether metric is global or per-participant
|
|
88
115
|
*/
|
|
@@ -98,6 +125,13 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
98
125
|
*/
|
|
99
126
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
100
127
|
|
|
128
|
+
/**
|
|
129
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
130
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
131
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
132
|
+
*/
|
|
133
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
134
|
+
|
|
101
135
|
/**
|
|
102
136
|
* Type of value this metric produces
|
|
103
137
|
*/
|
|
@@ -170,6 +204,15 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
170
204
|
*/
|
|
171
205
|
name: string;
|
|
172
206
|
|
|
207
|
+
/**
|
|
208
|
+
* True when this metric can only be scored from a live recording
|
|
209
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
210
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
211
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
212
|
+
* discovering the wait afterwards.
|
|
213
|
+
*/
|
|
214
|
+
requiresLiveConversation: boolean;
|
|
215
|
+
|
|
173
216
|
/**
|
|
174
217
|
* Whether metric is global or per-participant
|
|
175
218
|
*/
|
|
@@ -185,6 +228,13 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
185
228
|
*/
|
|
186
229
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
187
230
|
|
|
231
|
+
/**
|
|
232
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
233
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
234
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
235
|
+
*/
|
|
236
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
237
|
+
|
|
188
238
|
/**
|
|
189
239
|
* Type of value this metric produces
|
|
190
240
|
*/
|
|
@@ -274,6 +324,15 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
274
324
|
*/
|
|
275
325
|
pattern: PatternMetricResponse.Pattern;
|
|
276
326
|
|
|
327
|
+
/**
|
|
328
|
+
* True when this metric can only be scored from a live recording
|
|
329
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
330
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
331
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
332
|
+
* discovering the wait afterwards.
|
|
333
|
+
*/
|
|
334
|
+
requiresLiveConversation: boolean;
|
|
335
|
+
|
|
277
336
|
/**
|
|
278
337
|
* Whether metric is global or per-participant
|
|
279
338
|
*/
|
|
@@ -289,6 +348,13 @@ export namespace MetricCreateDefinitionResponse {
|
|
|
289
348
|
*/
|
|
290
349
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
291
350
|
|
|
351
|
+
/**
|
|
352
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
353
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
354
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
355
|
+
*/
|
|
356
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
357
|
+
|
|
292
358
|
/**
|
|
293
359
|
* Type of value this metric produces
|
|
294
360
|
*/
|
|
@@ -410,6 +476,18 @@ export namespace MetricListDefinitionsResponse {
|
|
|
410
476
|
*/
|
|
411
477
|
id: string;
|
|
412
478
|
|
|
479
|
+
/**
|
|
480
|
+
* For a BOOLEAN metric, what a `false` value means. Also given to the judge as its
|
|
481
|
+
* polarity rule.
|
|
482
|
+
*/
|
|
483
|
+
booleanFalseLabel: string | null;
|
|
484
|
+
|
|
485
|
+
/**
|
|
486
|
+
* For a BOOLEAN metric, what a `true` value means. Also given to the judge as its
|
|
487
|
+
* polarity rule.
|
|
488
|
+
*/
|
|
489
|
+
booleanTrueLabel: string | null;
|
|
490
|
+
|
|
413
491
|
/**
|
|
414
492
|
* Metric evaluated by an LLM against a prompt.
|
|
415
493
|
*/
|
|
@@ -420,6 +498,12 @@ export namespace MetricListDefinitionsResponse {
|
|
|
420
498
|
*/
|
|
421
499
|
description: string;
|
|
422
500
|
|
|
501
|
+
/**
|
|
502
|
+
* The rubric this judge applies, as stored. Read it back to confirm which criteria
|
|
503
|
+
* are live after a create or update.
|
|
504
|
+
*/
|
|
505
|
+
llmPrompt: string | null;
|
|
506
|
+
|
|
423
507
|
/**
|
|
424
508
|
* Alias of `slug` retained for backwards compatibility. Same value as `slug`.
|
|
425
509
|
*/
|
|
@@ -430,6 +514,15 @@ export namespace MetricListDefinitionsResponse {
|
|
|
430
514
|
*/
|
|
431
515
|
name: string;
|
|
432
516
|
|
|
517
|
+
/**
|
|
518
|
+
* True when this metric can only be scored from a live recording
|
|
519
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
520
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
521
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
522
|
+
* discovering the wait afterwards.
|
|
523
|
+
*/
|
|
524
|
+
requiresLiveConversation: boolean;
|
|
525
|
+
|
|
433
526
|
/**
|
|
434
527
|
* Whether metric is global or per-participant
|
|
435
528
|
*/
|
|
@@ -445,6 +538,13 @@ export namespace MetricListDefinitionsResponse {
|
|
|
445
538
|
*/
|
|
446
539
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
447
540
|
|
|
541
|
+
/**
|
|
542
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
543
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
544
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
545
|
+
*/
|
|
546
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
547
|
+
|
|
448
548
|
/**
|
|
449
549
|
* Type of value this metric produces
|
|
450
550
|
*/
|
|
@@ -512,6 +612,15 @@ export namespace MetricListDefinitionsResponse {
|
|
|
512
612
|
*/
|
|
513
613
|
name: string;
|
|
514
614
|
|
|
615
|
+
/**
|
|
616
|
+
* True when this metric can only be scored from a live recording
|
|
617
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
618
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
619
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
620
|
+
* discovering the wait afterwards.
|
|
621
|
+
*/
|
|
622
|
+
requiresLiveConversation: boolean;
|
|
623
|
+
|
|
515
624
|
/**
|
|
516
625
|
* Whether metric is global or per-participant
|
|
517
626
|
*/
|
|
@@ -527,6 +636,13 @@ export namespace MetricListDefinitionsResponse {
|
|
|
527
636
|
*/
|
|
528
637
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
529
638
|
|
|
639
|
+
/**
|
|
640
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
641
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
642
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
643
|
+
*/
|
|
644
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
645
|
+
|
|
530
646
|
/**
|
|
531
647
|
* Type of value this metric produces
|
|
532
648
|
*/
|
|
@@ -594,6 +710,15 @@ export namespace MetricListDefinitionsResponse {
|
|
|
594
710
|
*/
|
|
595
711
|
name: string;
|
|
596
712
|
|
|
713
|
+
/**
|
|
714
|
+
* True when this metric can only be scored from a live recording
|
|
715
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
716
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
717
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
718
|
+
* discovering the wait afterwards.
|
|
719
|
+
*/
|
|
720
|
+
requiresLiveConversation: boolean;
|
|
721
|
+
|
|
597
722
|
/**
|
|
598
723
|
* Whether metric is global or per-participant
|
|
599
724
|
*/
|
|
@@ -609,6 +734,13 @@ export namespace MetricListDefinitionsResponse {
|
|
|
609
734
|
*/
|
|
610
735
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
611
736
|
|
|
737
|
+
/**
|
|
738
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
739
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
740
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
741
|
+
*/
|
|
742
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
743
|
+
|
|
612
744
|
/**
|
|
613
745
|
* Type of value this metric produces
|
|
614
746
|
*/
|
|
@@ -711,6 +843,15 @@ export namespace MetricListDefinitionsResponse {
|
|
|
711
843
|
*/
|
|
712
844
|
name: string;
|
|
713
845
|
|
|
846
|
+
/**
|
|
847
|
+
* True when this metric can only be scored from a live recording
|
|
848
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
849
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
850
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
851
|
+
* discovering the wait afterwards.
|
|
852
|
+
*/
|
|
853
|
+
requiresLiveConversation: boolean;
|
|
854
|
+
|
|
714
855
|
/**
|
|
715
856
|
* Whether metric is global or per-participant
|
|
716
857
|
*/
|
|
@@ -726,6 +867,13 @@ export namespace MetricListDefinitionsResponse {
|
|
|
726
867
|
*/
|
|
727
868
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
728
869
|
|
|
870
|
+
/**
|
|
871
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
872
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
873
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
874
|
+
*/
|
|
875
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
876
|
+
|
|
729
877
|
/**
|
|
730
878
|
* Type of value this metric produces
|
|
731
879
|
*/
|
|
@@ -815,6 +963,15 @@ export namespace MetricListDefinitionsResponse {
|
|
|
815
963
|
*/
|
|
816
964
|
pattern: PatternMetricResponse.Pattern;
|
|
817
965
|
|
|
966
|
+
/**
|
|
967
|
+
* True when this metric can only be scored from a live recording
|
|
968
|
+
* (`supportedConversationSources` is `["LIVE"]`). Selecting one of these on a
|
|
969
|
+
* simulation run forces live enrichment: the run waits for your recording and, if
|
|
970
|
+
* none arrives, the metric produces no value. Check this before a run rather than
|
|
971
|
+
* discovering the wait afterwards.
|
|
972
|
+
*/
|
|
973
|
+
requiresLiveConversation: boolean;
|
|
974
|
+
|
|
818
975
|
/**
|
|
819
976
|
* Whether metric is global or per-participant
|
|
820
977
|
*/
|
|
@@ -830,6 +987,13 @@ export namespace MetricListDefinitionsResponse {
|
|
|
830
987
|
*/
|
|
831
988
|
supportedContexts: Array<'CALL' | 'SEGMENT' | 'TURN'>;
|
|
832
989
|
|
|
990
|
+
/**
|
|
991
|
+
* Which kinds of conversation this metric can be scored on. `null` means both.
|
|
992
|
+
* `["LIVE"]` marks a metric that can only be scored from your own recording of a
|
|
993
|
+
* real call, and `["SIMULATED"]` one that only applies to simulations.
|
|
994
|
+
*/
|
|
995
|
+
supportedConversationSources: Array<'SIMULATED' | 'LIVE'> | null;
|
|
996
|
+
|
|
833
997
|
/**
|
|
834
998
|
* Type of value this metric produces
|
|
835
999
|
*/
|
package/src/version.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = '3.
|
|
1
|
+
export const VERSION = '3.6.0'; // x-release-please-version
|
package/version.d.mts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "3.
|
|
1
|
+
export declare const VERSION = "3.6.0";
|
|
2
2
|
//# sourceMappingURL=version.d.mts.map
|
package/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "3.
|
|
1
|
+
export declare const VERSION = "3.6.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/version.js
CHANGED
package/version.mjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export const VERSION = '3.
|
|
1
|
+
export const VERSION = '3.6.0'; // x-release-please-version
|
|
2
2
|
//# sourceMappingURL=version.mjs.map
|