@roarkanalytics/sdk 3.12.0 → 3.13.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.
Files changed (78) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/client.d.mts +5 -2
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +5 -2
  5. package/client.d.ts.map +1 -1
  6. package/client.js +3 -0
  7. package/client.js.map +1 -1
  8. package/client.mjs +3 -0
  9. package/client.mjs.map +1 -1
  10. package/package.json +1 -1
  11. package/resources/benchmark.d.mts +547 -0
  12. package/resources/benchmark.d.mts.map +1 -0
  13. package/resources/benchmark.d.ts +547 -0
  14. package/resources/benchmark.d.ts.map +1 -0
  15. package/resources/benchmark.js +110 -0
  16. package/resources/benchmark.js.map +1 -0
  17. package/resources/benchmark.mjs +106 -0
  18. package/resources/benchmark.mjs.map +1 -0
  19. package/resources/config.d.mts +3 -3
  20. package/resources/config.d.mts.map +1 -1
  21. package/resources/config.d.ts +3 -3
  22. package/resources/config.d.ts.map +1 -1
  23. package/resources/customer-flow-edge-case.d.mts +27 -18
  24. package/resources/customer-flow-edge-case.d.mts.map +1 -1
  25. package/resources/customer-flow-edge-case.d.ts +27 -18
  26. package/resources/customer-flow-edge-case.d.ts.map +1 -1
  27. package/resources/customer-flow.d.mts +117 -72
  28. package/resources/customer-flow.d.mts.map +1 -1
  29. package/resources/customer-flow.d.ts +117 -72
  30. package/resources/customer-flow.d.ts.map +1 -1
  31. package/resources/index.d.mts +2 -1
  32. package/resources/index.d.mts.map +1 -1
  33. package/resources/index.d.ts +2 -1
  34. package/resources/index.d.ts.map +1 -1
  35. package/resources/index.js +3 -1
  36. package/resources/index.js.map +1 -1
  37. package/resources/index.mjs +1 -0
  38. package/resources/index.mjs.map +1 -1
  39. package/resources/simulation-job.d.mts +6 -4
  40. package/resources/simulation-job.d.mts.map +1 -1
  41. package/resources/simulation-job.d.ts +6 -4
  42. package/resources/simulation-job.d.ts.map +1 -1
  43. package/resources/simulation-persona.d.mts +18 -12
  44. package/resources/simulation-persona.d.mts.map +1 -1
  45. package/resources/simulation-persona.d.ts +18 -12
  46. package/resources/simulation-persona.d.ts.map +1 -1
  47. package/resources/simulation-run-plan-job.d.mts +141 -3
  48. package/resources/simulation-run-plan-job.d.mts.map +1 -1
  49. package/resources/simulation-run-plan-job.d.ts +141 -3
  50. package/resources/simulation-run-plan-job.d.ts.map +1 -1
  51. package/resources/simulation-run-plan-job.js +16 -0
  52. package/resources/simulation-run-plan-job.js.map +1 -1
  53. package/resources/simulation-run-plan-job.mjs +16 -0
  54. package/resources/simulation-run-plan-job.mjs.map +1 -1
  55. package/resources/simulation-run-plan.d.mts +38 -0
  56. package/resources/simulation-run-plan.d.mts.map +1 -1
  57. package/resources/simulation-run-plan.d.ts +38 -0
  58. package/resources/simulation-run-plan.d.ts.map +1 -1
  59. package/resources/simulation.d.mts +9 -0
  60. package/resources/simulation.d.mts.map +1 -1
  61. package/resources/simulation.d.ts +9 -0
  62. package/resources/simulation.d.ts.map +1 -1
  63. package/src/client.ts +33 -0
  64. package/src/resources/benchmark.ts +740 -0
  65. package/src/resources/config.ts +3 -3
  66. package/src/resources/customer-flow-edge-case.ts +27 -18
  67. package/src/resources/customer-flow.ts +120 -73
  68. package/src/resources/index.ts +15 -0
  69. package/src/resources/simulation-job.ts +6 -4
  70. package/src/resources/simulation-persona.ts +18 -12
  71. package/src/resources/simulation-run-plan-job.ts +201 -2
  72. package/src/resources/simulation-run-plan.ts +44 -0
  73. package/src/resources/simulation.ts +10 -0
  74. package/src/version.ts +1 -1
  75. package/version.d.mts +1 -1
  76. package/version.d.ts +1 -1
  77. package/version.js +1 -1
  78. package/version.mjs +1 -1
@@ -511,9 +511,10 @@ export declare namespace CustomerFlowCreateResponse {
511
511
  };
512
512
  /**
513
513
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
514
- * NORMAL, RELAXED)
514
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
515
+ * for several seconds.
515
516
  */
516
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
517
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
517
518
  /**
518
519
  * Speech clarity of the persona
519
520
  */
@@ -705,9 +706,10 @@ export declare namespace CustomerFlowCreateResponse {
705
706
  };
706
707
  /**
707
708
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
708
- * NORMAL, RELAXED)
709
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
710
+ * for several seconds.
709
711
  */
710
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
712
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
711
713
  /**
712
714
  * Speech clarity of the persona
713
715
  */
@@ -986,9 +988,10 @@ export declare namespace CustomerFlowCreateResponse {
986
988
  };
987
989
  /**
988
990
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
989
- * NORMAL, RELAXED)
991
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
992
+ * for several seconds.
990
993
  */
991
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
994
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
992
995
  /**
993
996
  * Speech clarity of the persona
994
997
  */
@@ -1178,9 +1181,10 @@ export declare namespace CustomerFlowCreateResponse {
1178
1181
  };
1179
1182
  /**
1180
1183
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
1181
- * NORMAL, RELAXED)
1184
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
1185
+ * for several seconds.
1182
1186
  */
1183
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
1187
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
1184
1188
  /**
1185
1189
  * Speech clarity of the persona
1186
1190
  */
@@ -1435,9 +1439,10 @@ export declare namespace CustomerFlowCreateResponse {
1435
1439
  };
1436
1440
  /**
1437
1441
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
1438
- * NORMAL, RELAXED)
1442
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
1443
+ * for several seconds.
1439
1444
  */
1440
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
1445
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
1441
1446
  /**
1442
1447
  * Speech clarity of the persona
1443
1448
  */
@@ -1623,9 +1628,10 @@ export declare namespace CustomerFlowCreateResponse {
1623
1628
  };
1624
1629
  /**
1625
1630
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
1626
- * NORMAL, RELAXED)
1631
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
1632
+ * for several seconds.
1627
1633
  */
1628
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
1634
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
1629
1635
  /**
1630
1636
  * Speech clarity of the persona
1631
1637
  */
@@ -1932,9 +1938,10 @@ export declare namespace CustomerFlowUpdateResponse {
1932
1938
  };
1933
1939
  /**
1934
1940
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
1935
- * NORMAL, RELAXED)
1941
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
1942
+ * for several seconds.
1936
1943
  */
1937
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
1944
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
1938
1945
  /**
1939
1946
  * Speech clarity of the persona
1940
1947
  */
@@ -2126,9 +2133,10 @@ export declare namespace CustomerFlowUpdateResponse {
2126
2133
  };
2127
2134
  /**
2128
2135
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
2129
- * NORMAL, RELAXED)
2136
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
2137
+ * for several seconds.
2130
2138
  */
2131
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
2139
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
2132
2140
  /**
2133
2141
  * Speech clarity of the persona
2134
2142
  */
@@ -2407,9 +2415,10 @@ export declare namespace CustomerFlowUpdateResponse {
2407
2415
  };
2408
2416
  /**
2409
2417
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
2410
- * NORMAL, RELAXED)
2418
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
2419
+ * for several seconds.
2411
2420
  */
2412
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
2421
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
2413
2422
  /**
2414
2423
  * Speech clarity of the persona
2415
2424
  */
@@ -2599,9 +2608,10 @@ export declare namespace CustomerFlowUpdateResponse {
2599
2608
  };
2600
2609
  /**
2601
2610
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
2602
- * NORMAL, RELAXED)
2611
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
2612
+ * for several seconds.
2603
2613
  */
2604
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
2614
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
2605
2615
  /**
2606
2616
  * Speech clarity of the persona
2607
2617
  */
@@ -2856,9 +2866,10 @@ export declare namespace CustomerFlowUpdateResponse {
2856
2866
  };
2857
2867
  /**
2858
2868
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
2859
- * NORMAL, RELAXED)
2869
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
2870
+ * for several seconds.
2860
2871
  */
2861
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
2872
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
2862
2873
  /**
2863
2874
  * Speech clarity of the persona
2864
2875
  */
@@ -3044,9 +3055,10 @@ export declare namespace CustomerFlowUpdateResponse {
3044
3055
  };
3045
3056
  /**
3046
3057
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
3047
- * NORMAL, RELAXED)
3058
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
3059
+ * for several seconds.
3048
3060
  */
3049
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
3061
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
3050
3062
  /**
3051
3063
  * Speech clarity of the persona
3052
3064
  */
@@ -3354,9 +3366,10 @@ export declare namespace CustomerFlowListResponse {
3354
3366
  };
3355
3367
  /**
3356
3368
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
3357
- * NORMAL, RELAXED)
3369
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
3370
+ * for several seconds.
3358
3371
  */
3359
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
3372
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
3360
3373
  /**
3361
3374
  * Speech clarity of the persona
3362
3375
  */
@@ -3548,9 +3561,10 @@ export declare namespace CustomerFlowListResponse {
3548
3561
  };
3549
3562
  /**
3550
3563
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
3551
- * NORMAL, RELAXED)
3564
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
3565
+ * for several seconds.
3552
3566
  */
3553
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
3567
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
3554
3568
  /**
3555
3569
  * Speech clarity of the persona
3556
3570
  */
@@ -3829,9 +3843,10 @@ export declare namespace CustomerFlowListResponse {
3829
3843
  };
3830
3844
  /**
3831
3845
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
3832
- * NORMAL, RELAXED)
3846
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
3847
+ * for several seconds.
3833
3848
  */
3834
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
3849
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
3835
3850
  /**
3836
3851
  * Speech clarity of the persona
3837
3852
  */
@@ -4021,9 +4036,10 @@ export declare namespace CustomerFlowListResponse {
4021
4036
  };
4022
4037
  /**
4023
4038
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
4024
- * NORMAL, RELAXED)
4039
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
4040
+ * for several seconds.
4025
4041
  */
4026
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
4042
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
4027
4043
  /**
4028
4044
  * Speech clarity of the persona
4029
4045
  */
@@ -4278,9 +4294,10 @@ export declare namespace CustomerFlowListResponse {
4278
4294
  };
4279
4295
  /**
4280
4296
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
4281
- * NORMAL, RELAXED)
4297
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
4298
+ * for several seconds.
4282
4299
  */
4283
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
4300
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
4284
4301
  /**
4285
4302
  * Speech clarity of the persona
4286
4303
  */
@@ -4466,9 +4483,10 @@ export declare namespace CustomerFlowListResponse {
4466
4483
  };
4467
4484
  /**
4468
4485
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
4469
- * NORMAL, RELAXED)
4486
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
4487
+ * for several seconds.
4470
4488
  */
4471
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
4489
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
4472
4490
  /**
4473
4491
  * Speech clarity of the persona
4474
4492
  */
@@ -4800,9 +4818,10 @@ export declare namespace CustomerFlowDuplicateResponse {
4800
4818
  };
4801
4819
  /**
4802
4820
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
4803
- * NORMAL, RELAXED)
4821
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
4822
+ * for several seconds.
4804
4823
  */
4805
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
4824
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
4806
4825
  /**
4807
4826
  * Speech clarity of the persona
4808
4827
  */
@@ -4994,9 +5013,10 @@ export declare namespace CustomerFlowDuplicateResponse {
4994
5013
  };
4995
5014
  /**
4996
5015
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
4997
- * NORMAL, RELAXED)
5016
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
5017
+ * for several seconds.
4998
5018
  */
4999
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
5019
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
5000
5020
  /**
5001
5021
  * Speech clarity of the persona
5002
5022
  */
@@ -5275,9 +5295,10 @@ export declare namespace CustomerFlowDuplicateResponse {
5275
5295
  };
5276
5296
  /**
5277
5297
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
5278
- * NORMAL, RELAXED)
5298
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
5299
+ * for several seconds.
5279
5300
  */
5280
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
5301
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
5281
5302
  /**
5282
5303
  * Speech clarity of the persona
5283
5304
  */
@@ -5467,9 +5488,10 @@ export declare namespace CustomerFlowDuplicateResponse {
5467
5488
  };
5468
5489
  /**
5469
5490
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
5470
- * NORMAL, RELAXED)
5491
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
5492
+ * for several seconds.
5471
5493
  */
5472
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
5494
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
5473
5495
  /**
5474
5496
  * Speech clarity of the persona
5475
5497
  */
@@ -5724,9 +5746,10 @@ export declare namespace CustomerFlowDuplicateResponse {
5724
5746
  };
5725
5747
  /**
5726
5748
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
5727
- * NORMAL, RELAXED)
5749
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
5750
+ * for several seconds.
5728
5751
  */
5729
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
5752
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
5730
5753
  /**
5731
5754
  * Speech clarity of the persona
5732
5755
  */
@@ -5912,9 +5935,10 @@ export declare namespace CustomerFlowDuplicateResponse {
5912
5935
  };
5913
5936
  /**
5914
5937
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
5915
- * NORMAL, RELAXED)
5938
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
5939
+ * for several seconds.
5916
5940
  */
5917
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
5941
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
5918
5942
  /**
5919
5943
  * Speech clarity of the persona
5920
5944
  */
@@ -6221,9 +6245,10 @@ export declare namespace CustomerFlowGetByIDResponse {
6221
6245
  };
6222
6246
  /**
6223
6247
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
6224
- * NORMAL, RELAXED)
6248
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
6249
+ * for several seconds.
6225
6250
  */
6226
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
6251
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
6227
6252
  /**
6228
6253
  * Speech clarity of the persona
6229
6254
  */
@@ -6415,9 +6440,10 @@ export declare namespace CustomerFlowGetByIDResponse {
6415
6440
  };
6416
6441
  /**
6417
6442
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
6418
- * NORMAL, RELAXED)
6443
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
6444
+ * for several seconds.
6419
6445
  */
6420
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
6446
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
6421
6447
  /**
6422
6448
  * Speech clarity of the persona
6423
6449
  */
@@ -6696,9 +6722,10 @@ export declare namespace CustomerFlowGetByIDResponse {
6696
6722
  };
6697
6723
  /**
6698
6724
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
6699
- * NORMAL, RELAXED)
6725
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
6726
+ * for several seconds.
6700
6727
  */
6701
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
6728
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
6702
6729
  /**
6703
6730
  * Speech clarity of the persona
6704
6731
  */
@@ -6888,9 +6915,10 @@ export declare namespace CustomerFlowGetByIDResponse {
6888
6915
  };
6889
6916
  /**
6890
6917
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
6891
- * NORMAL, RELAXED)
6918
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
6919
+ * for several seconds.
6892
6920
  */
6893
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
6921
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
6894
6922
  /**
6895
6923
  * Speech clarity of the persona
6896
6924
  */
@@ -7145,9 +7173,10 @@ export declare namespace CustomerFlowGetByIDResponse {
7145
7173
  };
7146
7174
  /**
7147
7175
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
7148
- * NORMAL, RELAXED)
7176
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
7177
+ * for several seconds.
7149
7178
  */
7150
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
7179
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
7151
7180
  /**
7152
7181
  * Speech clarity of the persona
7153
7182
  */
@@ -7333,9 +7362,10 @@ export declare namespace CustomerFlowGetByIDResponse {
7333
7362
  };
7334
7363
  /**
7335
7364
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
7336
- * NORMAL, RELAXED)
7365
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
7366
+ * for several seconds.
7337
7367
  */
7338
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
7368
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
7339
7369
  /**
7340
7370
  * Speech clarity of the persona
7341
7371
  */
@@ -7551,9 +7581,10 @@ export declare namespace CustomerFlowReplaceGraphResponse {
7551
7581
  };
7552
7582
  /**
7553
7583
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
7554
- * NORMAL, RELAXED)
7584
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
7585
+ * for several seconds.
7555
7586
  */
7556
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
7587
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
7557
7588
  /**
7558
7589
  * Speech clarity of the persona
7559
7590
  */
@@ -7743,9 +7774,10 @@ export declare namespace CustomerFlowReplaceGraphResponse {
7743
7774
  };
7744
7775
  /**
7745
7776
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
7746
- * NORMAL, RELAXED)
7777
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
7778
+ * for several seconds.
7747
7779
  */
7748
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
7780
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
7749
7781
  /**
7750
7782
  * Speech clarity of the persona
7751
7783
  */
@@ -7931,9 +7963,10 @@ export declare namespace CustomerFlowReplaceGraphResponse {
7931
7963
  };
7932
7964
  /**
7933
7965
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
7934
- * NORMAL, RELAXED)
7966
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
7967
+ * for several seconds.
7935
7968
  */
7936
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
7969
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
7937
7970
  /**
7938
7971
  * Speech clarity of the persona
7939
7972
  */
@@ -8134,9 +8167,10 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
8134
8167
  };
8135
8168
  /**
8136
8169
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
8137
- * NORMAL, RELAXED)
8170
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
8171
+ * for several seconds.
8138
8172
  */
8139
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
8173
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
8140
8174
  /**
8141
8175
  * Speech clarity of the persona
8142
8176
  */
@@ -8326,9 +8360,10 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
8326
8360
  };
8327
8361
  /**
8328
8362
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
8329
- * NORMAL, RELAXED)
8363
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
8364
+ * for several seconds.
8330
8365
  */
8331
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
8366
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
8332
8367
  /**
8333
8368
  * Speech clarity of the persona
8334
8369
  */
@@ -8514,9 +8549,10 @@ export declare namespace CustomerFlowUpdateHappyPathResponse {
8514
8549
  };
8515
8550
  /**
8516
8551
  * Controls how quickly the persona responds to pauses in conversation (QUICK,
8517
- * NORMAL, RELAXED)
8552
+ * NORMAL, RELAXED). BARGE_IN also talks over the agent once it has held the floor
8553
+ * for several seconds.
8518
8554
  */
8519
- responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK';
8555
+ responseTiming: 'RELAXED' | 'NORMAL' | 'QUICK' | 'BARGE_IN';
8520
8556
  /**
8521
8557
  * Speech clarity of the persona
8522
8558
  */
@@ -8770,6 +8806,15 @@ export interface CustomerFlowListParams {
8770
8806
  type?: 'SCRIPTED' | 'IMPROV' | 'VOICEMAIL';
8771
8807
  }
8772
8808
  export interface CustomerFlowDuplicateParams {
8809
+ /**
8810
+ * Agents to link on the copy. Omit to carry the source flow's agents over.
8811
+ * Required when the source is a Roark-managed flow with no agents of its own.
8812
+ */
8813
+ agentIds?: Array<string>;
8814
+ /**
8815
+ * Title for the copy. Defaults to "Copy of" the source flow.
8816
+ */
8817
+ title?: string;
8773
8818
  }
8774
8819
  export interface CustomerFlowReplaceGraphParams {
8775
8820
  /**