@roarkanalytics/sdk 3.9.0 → 3.10.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/client.d.mts +3 -0
- package/client.d.mts.map +1 -1
- package/client.d.ts +3 -0
- package/client.d.ts.map +1 -1
- package/client.js +3 -0
- package/client.js.map +1 -1
- package/client.mjs +3 -0
- package/client.mjs.map +1 -1
- package/package.json +1 -1
- package/resources/customer-flow-edge-case.d.mts +9 -0
- package/resources/customer-flow-edge-case.d.mts.map +1 -1
- package/resources/customer-flow-edge-case.d.ts +9 -0
- package/resources/customer-flow-edge-case.d.ts.map +1 -1
- package/resources/customer-flow.d.mts +30 -0
- package/resources/customer-flow.d.mts.map +1 -1
- package/resources/customer-flow.d.ts +30 -0
- package/resources/customer-flow.d.ts.map +1 -1
- package/resources/index.d.mts +1 -0
- package/resources/index.d.mts.map +1 -1
- package/resources/index.d.ts +1 -0
- package/resources/index.d.ts.map +1 -1
- package/resources/index.js +3 -1
- package/resources/index.js.map +1 -1
- package/resources/index.mjs +1 -0
- package/resources/index.mjs.map +1 -1
- package/resources/simulation-run-plan.d.mts +38 -0
- package/resources/simulation-run-plan.d.mts.map +1 -1
- package/resources/simulation-run-plan.d.ts +38 -0
- package/resources/simulation-run-plan.d.ts.map +1 -1
- package/resources/simulation-template.d.mts +162 -0
- package/resources/simulation-template.d.mts.map +1 -0
- package/resources/simulation-template.d.ts +162 -0
- package/resources/simulation-template.d.ts.map +1 -0
- package/resources/simulation-template.js +31 -0
- package/resources/simulation-template.js.map +1 -0
- package/resources/simulation-template.mjs +27 -0
- package/resources/simulation-template.mjs.map +1 -0
- package/resources/simulation.d.mts +13 -0
- package/resources/simulation.d.mts.map +1 -1
- package/resources/simulation.d.ts +13 -0
- package/resources/simulation.d.ts.map +1 -1
- package/src/client.ts +8 -0
- package/src/resources/customer-flow-edge-case.ts +18 -0
- package/src/resources/customer-flow.ts +60 -0
- package/src/resources/index.ts +1 -0
- package/src/resources/simulation-run-plan.ts +44 -0
- package/src/resources/simulation-template.ts +190 -0
- package/src/resources/simulation.ts +14 -0
- package/src/version.ts +1 -1
- package/version.d.mts +1 -1
- package/version.d.mts.map +1 -1
- package/version.d.ts +1 -1
- package/version.d.ts.map +1 -1
- package/version.js +1 -1
- package/version.js.map +1 -1
- package/version.mjs +1 -1
- package/version.mjs.map +1 -1
|
@@ -328,6 +328,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
328
328
|
* Last update timestamp in ISO 8601 format
|
|
329
329
|
*/
|
|
330
330
|
updatedAt: string;
|
|
331
|
+
systemKey?: string | null;
|
|
331
332
|
}
|
|
332
333
|
namespace EdgeCase {
|
|
333
334
|
/**
|
|
@@ -514,6 +515,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
514
515
|
* Last update timestamp in ISO 8601 format
|
|
515
516
|
*/
|
|
516
517
|
updatedAt: string;
|
|
518
|
+
systemKey?: string | null;
|
|
517
519
|
}
|
|
518
520
|
namespace HappyPath {
|
|
519
521
|
/**
|
|
@@ -768,6 +770,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
768
770
|
* The brief the simulated customer improvises from.
|
|
769
771
|
*/
|
|
770
772
|
prompt?: string | null;
|
|
773
|
+
systemKey?: string | null;
|
|
771
774
|
}
|
|
772
775
|
namespace EdgeCase {
|
|
773
776
|
/**
|
|
@@ -952,6 +955,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
952
955
|
* The brief the simulated customer improvises from.
|
|
953
956
|
*/
|
|
954
957
|
prompt?: string | null;
|
|
958
|
+
systemKey?: string | null;
|
|
955
959
|
}
|
|
956
960
|
namespace HappyPath {
|
|
957
961
|
/**
|
|
@@ -1201,6 +1205,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
1201
1205
|
* Last update timestamp in ISO 8601 format
|
|
1202
1206
|
*/
|
|
1203
1207
|
updatedAt: string;
|
|
1208
|
+
systemKey?: string | null;
|
|
1204
1209
|
}
|
|
1205
1210
|
namespace EdgeCase {
|
|
1206
1211
|
/**
|
|
@@ -1381,6 +1386,7 @@ export declare namespace CustomerFlowCreateResponse {
|
|
|
1381
1386
|
* Last update timestamp in ISO 8601 format
|
|
1382
1387
|
*/
|
|
1383
1388
|
updatedAt: string;
|
|
1389
|
+
systemKey?: string | null;
|
|
1384
1390
|
}
|
|
1385
1391
|
namespace HappyPath {
|
|
1386
1392
|
/**
|
|
@@ -1660,6 +1666,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
1660
1666
|
* Last update timestamp in ISO 8601 format
|
|
1661
1667
|
*/
|
|
1662
1668
|
updatedAt: string;
|
|
1669
|
+
systemKey?: string | null;
|
|
1663
1670
|
}
|
|
1664
1671
|
namespace EdgeCase {
|
|
1665
1672
|
/**
|
|
@@ -1846,6 +1853,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
1846
1853
|
* Last update timestamp in ISO 8601 format
|
|
1847
1854
|
*/
|
|
1848
1855
|
updatedAt: string;
|
|
1856
|
+
systemKey?: string | null;
|
|
1849
1857
|
}
|
|
1850
1858
|
namespace HappyPath {
|
|
1851
1859
|
/**
|
|
@@ -2100,6 +2108,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
2100
2108
|
* The brief the simulated customer improvises from.
|
|
2101
2109
|
*/
|
|
2102
2110
|
prompt?: string | null;
|
|
2111
|
+
systemKey?: string | null;
|
|
2103
2112
|
}
|
|
2104
2113
|
namespace EdgeCase {
|
|
2105
2114
|
/**
|
|
@@ -2284,6 +2293,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
2284
2293
|
* The brief the simulated customer improvises from.
|
|
2285
2294
|
*/
|
|
2286
2295
|
prompt?: string | null;
|
|
2296
|
+
systemKey?: string | null;
|
|
2287
2297
|
}
|
|
2288
2298
|
namespace HappyPath {
|
|
2289
2299
|
/**
|
|
@@ -2533,6 +2543,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
2533
2543
|
* Last update timestamp in ISO 8601 format
|
|
2534
2544
|
*/
|
|
2535
2545
|
updatedAt: string;
|
|
2546
|
+
systemKey?: string | null;
|
|
2536
2547
|
}
|
|
2537
2548
|
namespace EdgeCase {
|
|
2538
2549
|
/**
|
|
@@ -2713,6 +2724,7 @@ export declare namespace CustomerFlowUpdateResponse {
|
|
|
2713
2724
|
* Last update timestamp in ISO 8601 format
|
|
2714
2725
|
*/
|
|
2715
2726
|
updatedAt: string;
|
|
2727
|
+
systemKey?: string | null;
|
|
2716
2728
|
}
|
|
2717
2729
|
namespace HappyPath {
|
|
2718
2730
|
/**
|
|
@@ -2993,6 +3005,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
2993
3005
|
* Last update timestamp in ISO 8601 format
|
|
2994
3006
|
*/
|
|
2995
3007
|
updatedAt: string;
|
|
3008
|
+
systemKey?: string | null;
|
|
2996
3009
|
}
|
|
2997
3010
|
namespace EdgeCase {
|
|
2998
3011
|
/**
|
|
@@ -3179,6 +3192,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
3179
3192
|
* Last update timestamp in ISO 8601 format
|
|
3180
3193
|
*/
|
|
3181
3194
|
updatedAt: string;
|
|
3195
|
+
systemKey?: string | null;
|
|
3182
3196
|
}
|
|
3183
3197
|
namespace HappyPath {
|
|
3184
3198
|
/**
|
|
@@ -3433,6 +3447,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
3433
3447
|
* The brief the simulated customer improvises from.
|
|
3434
3448
|
*/
|
|
3435
3449
|
prompt?: string | null;
|
|
3450
|
+
systemKey?: string | null;
|
|
3436
3451
|
}
|
|
3437
3452
|
namespace EdgeCase {
|
|
3438
3453
|
/**
|
|
@@ -3617,6 +3632,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
3617
3632
|
* The brief the simulated customer improvises from.
|
|
3618
3633
|
*/
|
|
3619
3634
|
prompt?: string | null;
|
|
3635
|
+
systemKey?: string | null;
|
|
3620
3636
|
}
|
|
3621
3637
|
namespace HappyPath {
|
|
3622
3638
|
/**
|
|
@@ -3866,6 +3882,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
3866
3882
|
* Last update timestamp in ISO 8601 format
|
|
3867
3883
|
*/
|
|
3868
3884
|
updatedAt: string;
|
|
3885
|
+
systemKey?: string | null;
|
|
3869
3886
|
}
|
|
3870
3887
|
namespace EdgeCase {
|
|
3871
3888
|
/**
|
|
@@ -4046,6 +4063,7 @@ export declare namespace CustomerFlowListResponse {
|
|
|
4046
4063
|
* Last update timestamp in ISO 8601 format
|
|
4047
4064
|
*/
|
|
4048
4065
|
updatedAt: string;
|
|
4066
|
+
systemKey?: string | null;
|
|
4049
4067
|
}
|
|
4050
4068
|
namespace HappyPath {
|
|
4051
4069
|
/**
|
|
@@ -4350,6 +4368,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
4350
4368
|
* Last update timestamp in ISO 8601 format
|
|
4351
4369
|
*/
|
|
4352
4370
|
updatedAt: string;
|
|
4371
|
+
systemKey?: string | null;
|
|
4353
4372
|
}
|
|
4354
4373
|
namespace EdgeCase {
|
|
4355
4374
|
/**
|
|
@@ -4536,6 +4555,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
4536
4555
|
* Last update timestamp in ISO 8601 format
|
|
4537
4556
|
*/
|
|
4538
4557
|
updatedAt: string;
|
|
4558
|
+
systemKey?: string | null;
|
|
4539
4559
|
}
|
|
4540
4560
|
namespace HappyPath {
|
|
4541
4561
|
/**
|
|
@@ -4790,6 +4810,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
4790
4810
|
* The brief the simulated customer improvises from.
|
|
4791
4811
|
*/
|
|
4792
4812
|
prompt?: string | null;
|
|
4813
|
+
systemKey?: string | null;
|
|
4793
4814
|
}
|
|
4794
4815
|
namespace EdgeCase {
|
|
4795
4816
|
/**
|
|
@@ -4974,6 +4995,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
4974
4995
|
* The brief the simulated customer improvises from.
|
|
4975
4996
|
*/
|
|
4976
4997
|
prompt?: string | null;
|
|
4998
|
+
systemKey?: string | null;
|
|
4977
4999
|
}
|
|
4978
5000
|
namespace HappyPath {
|
|
4979
5001
|
/**
|
|
@@ -5223,6 +5245,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
5223
5245
|
* Last update timestamp in ISO 8601 format
|
|
5224
5246
|
*/
|
|
5225
5247
|
updatedAt: string;
|
|
5248
|
+
systemKey?: string | null;
|
|
5226
5249
|
}
|
|
5227
5250
|
namespace EdgeCase {
|
|
5228
5251
|
/**
|
|
@@ -5403,6 +5426,7 @@ export declare namespace CustomerFlowGetByIDResponse {
|
|
|
5403
5426
|
* Last update timestamp in ISO 8601 format
|
|
5404
5427
|
*/
|
|
5405
5428
|
updatedAt: string;
|
|
5429
|
+
systemKey?: string | null;
|
|
5406
5430
|
}
|
|
5407
5431
|
namespace HappyPath {
|
|
5408
5432
|
/**
|
|
@@ -5613,6 +5637,7 @@ export declare namespace CustomerFlowReplaceGraphResponse {
|
|
|
5613
5637
|
* Last update timestamp in ISO 8601 format
|
|
5614
5638
|
*/
|
|
5615
5639
|
updatedAt: string;
|
|
5640
|
+
systemKey?: string | null;
|
|
5616
5641
|
}
|
|
5617
5642
|
namespace ScriptedFlowVariant {
|
|
5618
5643
|
/**
|
|
@@ -5797,6 +5822,7 @@ export declare namespace CustomerFlowReplaceGraphResponse {
|
|
|
5797
5822
|
* The brief the simulated customer improvises from.
|
|
5798
5823
|
*/
|
|
5799
5824
|
prompt?: string | null;
|
|
5825
|
+
systemKey?: string | null;
|
|
5800
5826
|
}
|
|
5801
5827
|
namespace ImprovFlowVariant {
|
|
5802
5828
|
/**
|
|
@@ -5977,6 +6003,7 @@ export declare namespace CustomerFlowReplaceGraphResponse {
|
|
|
5977
6003
|
* Last update timestamp in ISO 8601 format
|
|
5978
6004
|
*/
|
|
5979
6005
|
updatedAt: string;
|
|
6006
|
+
systemKey?: string | null;
|
|
5980
6007
|
}
|
|
5981
6008
|
namespace VoicemailFlowVariant {
|
|
5982
6009
|
/**
|
|
@@ -6172,6 +6199,7 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
|
|
|
6172
6199
|
* Last update timestamp in ISO 8601 format
|
|
6173
6200
|
*/
|
|
6174
6201
|
updatedAt: string;
|
|
6202
|
+
systemKey?: string | null;
|
|
6175
6203
|
}
|
|
6176
6204
|
namespace ScriptedFlowVariant {
|
|
6177
6205
|
/**
|
|
@@ -6356,6 +6384,7 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
|
|
|
6356
6384
|
* The brief the simulated customer improvises from.
|
|
6357
6385
|
*/
|
|
6358
6386
|
prompt?: string | null;
|
|
6387
|
+
systemKey?: string | null;
|
|
6359
6388
|
}
|
|
6360
6389
|
namespace ImprovFlowVariant {
|
|
6361
6390
|
/**
|
|
@@ -6536,6 +6565,7 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
|
|
|
6536
6565
|
* Last update timestamp in ISO 8601 format
|
|
6537
6566
|
*/
|
|
6538
6567
|
updatedAt: string;
|
|
6568
|
+
systemKey?: string | null;
|
|
6539
6569
|
}
|
|
6540
6570
|
namespace VoicemailFlowVariant {
|
|
6541
6571
|
/**
|