@webitel/ui-sdk 26.8.34 → 26.8.36

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 (42) hide show
  1. package/package.json +1 -1
  2. package/src/locale/en/en.js +7 -0
  3. package/src/locale/es/es.js +9 -0
  4. package/src/locale/kz/kz.js +9 -0
  5. package/src/locale/pl/pl.js +8 -0
  6. package/src/locale/ro/ro.js +9 -0
  7. package/src/locale/ru/ru.js +8 -0
  8. package/src/locale/uk/uk.js +7 -0
  9. package/src/locale/uz/uz.js +9 -0
  10. package/src/locale/vi/vi.js +8 -0
  11. package/src/modules/AgentStatusSelect/api/agent-status.js +2 -0
  12. package/src/modules/AgentStatusSelect/components/_internals/wt-cc-activity-type-popup.vue +104 -0
  13. package/src/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue +148 -37
  14. package/src/modules/AgentStatusSelect/composables/useCCenterModeSwitcher.ts +43 -0
  15. package/src/modules/AgentStatusSelect/types/StatusChangePayload.types.ts +9 -0
  16. package/src/modules/AgentStatusSelect/types/UseCCenterModeSwitcherParams.types.ts +9 -0
  17. package/src/modules/ObjectPermissions/headers/headers.ts +5 -0
  18. package/src/types/LookupOption.types.ts +4 -0
  19. package/src/types/index.ts +1 -0
  20. package/src/validations/config/errors/__tests__/customZodErrorsHandler.spec.ts +103 -0
  21. package/src/validations/config/errors/customZodErrorsHandler.ts +14 -0
  22. package/types/.tsbuildinfo +1 -1
  23. package/types/locale/en/en.d.ts +7 -0
  24. package/types/locale/es/es.d.ts +10 -2
  25. package/types/locale/i18n.d.ts +63 -0
  26. package/types/locale/index.d.ts +63 -0
  27. package/types/locale/kz/kz.d.ts +10 -2
  28. package/types/locale/pl/pl.d.ts +10 -2
  29. package/types/locale/ro/ro.d.ts +10 -2
  30. package/types/locale/ru/ru.d.ts +10 -2
  31. package/types/locale/uk/uk.d.ts +10 -2
  32. package/types/locale/uz/uz.d.ts +10 -2
  33. package/types/locale/vi/vi.d.ts +10 -2
  34. package/types/modules/AgentStatusSelect/api/agent-status.d.ts +2 -1
  35. package/types/modules/AgentStatusSelect/components/_internals/wt-cc-activity-type-popup.vue.d.ts +15 -0
  36. package/types/modules/AgentStatusSelect/components/wt-cc-agent-status-select.vue.d.ts +21 -32
  37. package/types/modules/AgentStatusSelect/composables/useCCenterModeSwitcher.d.ts +5 -0
  38. package/types/modules/AgentStatusSelect/types/StatusChangePayload.types.d.ts +8 -0
  39. package/types/modules/AgentStatusSelect/types/UseCCenterModeSwitcherParams.types.d.ts +8 -0
  40. package/types/modules/ObjectPermissions/headers/headers.d.ts +5 -0
  41. package/types/types/LookupOption.types.d.ts +4 -0
  42. package/types/types/index.d.ts +1 -0
@@ -396,6 +396,9 @@ declare const _default: {
396
396
  };
397
397
  };
398
398
  validation: {
399
+ hourRange: string;
400
+ timerangeStartLessThanEnd: string;
401
+ timerangeNotIntersect: string;
399
402
  required: string;
400
403
  numeric: string;
401
404
  email: string;
@@ -605,6 +608,10 @@ declare const _default: {
605
608
  title: string;
606
609
  message: string;
607
610
  };
611
+ activityTypePopup: {
612
+ title: string;
613
+ defaultOption: string;
614
+ };
608
615
  };
609
616
  pdfGeneration: {
610
617
  generationStarted: string;
@@ -439,6 +439,9 @@ declare namespace _default {
439
439
  }
440
440
  }
441
441
  export namespace validation {
442
+ export let hourRange: string;
443
+ export let timerangeStartLessThanEnd: string;
444
+ export let timerangeNotIntersect: string;
442
445
  let required_1: string;
443
446
  export { required_1 as required };
444
447
  export let numeric: string;
@@ -679,13 +682,18 @@ declare namespace _default {
679
682
  export { title_7 as title };
680
683
  export let message: string;
681
684
  }
685
+ namespace activityTypePopup {
686
+ let title_8: string;
687
+ export { title_8 as title };
688
+ export let defaultOption: string;
689
+ }
682
690
  }
683
691
  export namespace pdfGeneration {
684
692
  let generationStarted: string;
685
693
  }
686
694
  export namespace saveFailedPopup {
687
- let title_8: string;
688
- export { title_8 as title };
695
+ let title_9: string;
696
+ export { title_9 as title };
689
697
  export let label: string;
690
698
  export let exportToJson: string;
691
699
  }
@@ -397,6 +397,9 @@ declare const _default: import("vue-i18n").I18n<{
397
397
  };
398
398
  };
399
399
  validation: {
400
+ hourRange: string;
401
+ timerangeStartLessThanEnd: string;
402
+ timerangeNotIntersect: string;
400
403
  required: string;
401
404
  numeric: string;
402
405
  email: string;
@@ -606,6 +609,10 @@ declare const _default: import("vue-i18n").I18n<{
606
609
  title: string;
607
610
  message: string;
608
611
  };
612
+ activityTypePopup: {
613
+ title: string;
614
+ defaultOption: string;
615
+ };
609
616
  };
610
617
  pdfGeneration: {
611
618
  generationStarted: string;
@@ -1254,6 +1261,9 @@ declare const _default: import("vue-i18n").I18n<{
1254
1261
  };
1255
1262
  };
1256
1263
  validation: {
1264
+ hourRange: string;
1265
+ timerangeStartLessThanEnd: string;
1266
+ timerangeNotIntersect: string;
1257
1267
  required: string;
1258
1268
  numeric: string;
1259
1269
  email: string;
@@ -1463,6 +1473,10 @@ declare const _default: import("vue-i18n").I18n<{
1463
1473
  title: string;
1464
1474
  message: string;
1465
1475
  };
1476
+ activityTypePopup: {
1477
+ title: string;
1478
+ defaultOption: string;
1479
+ };
1466
1480
  };
1467
1481
  pdfGeneration: {
1468
1482
  generationStarted: string;
@@ -2095,6 +2109,9 @@ declare const _default: import("vue-i18n").I18n<{
2095
2109
  };
2096
2110
  };
2097
2111
  validation: {
2112
+ hourRange: string;
2113
+ timerangeStartLessThanEnd: string;
2114
+ timerangeNotIntersect: string;
2098
2115
  required: string;
2099
2116
  numeric: string;
2100
2117
  email: string;
@@ -2304,6 +2321,10 @@ declare const _default: import("vue-i18n").I18n<{
2304
2321
  title: string;
2305
2322
  message: string;
2306
2323
  };
2324
+ activityTypePopup: {
2325
+ title: string;
2326
+ defaultOption: string;
2327
+ };
2307
2328
  };
2308
2329
  pdfGeneration: {
2309
2330
  generationStarted: string;
@@ -2938,6 +2959,9 @@ declare const _default: import("vue-i18n").I18n<{
2938
2959
  };
2939
2960
  };
2940
2961
  validation: {
2962
+ hourRange: string;
2963
+ timerangeStartLessThanEnd: string;
2964
+ timerangeNotIntersect: string;
2941
2965
  required: string;
2942
2966
  numeric: string;
2943
2967
  email: string;
@@ -3147,6 +3171,10 @@ declare const _default: import("vue-i18n").I18n<{
3147
3171
  title: string;
3148
3172
  message: string;
3149
3173
  };
3174
+ activityTypePopup: {
3175
+ title: string;
3176
+ defaultOption: string;
3177
+ };
3150
3178
  };
3151
3179
  pdfGeneration: {
3152
3180
  generationStarted: string;
@@ -3779,6 +3807,9 @@ declare const _default: import("vue-i18n").I18n<{
3779
3807
  };
3780
3808
  };
3781
3809
  validation: {
3810
+ hourRange: string;
3811
+ timerangeStartLessThanEnd: string;
3812
+ timerangeNotIntersect: string;
3782
3813
  required: string;
3783
3814
  numeric: string;
3784
3815
  email: string;
@@ -3988,6 +4019,10 @@ declare const _default: import("vue-i18n").I18n<{
3988
4019
  title: string;
3989
4020
  message: string;
3990
4021
  };
4022
+ activityTypePopup: {
4023
+ title: string;
4024
+ defaultOption: string;
4025
+ };
3991
4026
  };
3992
4027
  pdfGeneration: {
3993
4028
  generationStarted: string;
@@ -4622,6 +4657,9 @@ declare const _default: import("vue-i18n").I18n<{
4622
4657
  };
4623
4658
  };
4624
4659
  validation: {
4660
+ hourRange: string;
4661
+ timerangeStartLessThanEnd: string;
4662
+ timerangeNotIntersect: string;
4625
4663
  required: string;
4626
4664
  numeric: string;
4627
4665
  email: string;
@@ -4831,6 +4869,10 @@ declare const _default: import("vue-i18n").I18n<{
4831
4869
  title: string;
4832
4870
  message: string;
4833
4871
  };
4872
+ activityTypePopup: {
4873
+ title: string;
4874
+ defaultOption: string;
4875
+ };
4834
4876
  };
4835
4877
  pdfGeneration: {
4836
4878
  generationStarted: string;
@@ -5465,6 +5507,9 @@ declare const _default: import("vue-i18n").I18n<{
5465
5507
  };
5466
5508
  };
5467
5509
  validation: {
5510
+ hourRange: string;
5511
+ timerangeStartLessThanEnd: string;
5512
+ timerangeNotIntersect: string;
5468
5513
  required: string;
5469
5514
  numeric: string;
5470
5515
  email: string;
@@ -5674,6 +5719,10 @@ declare const _default: import("vue-i18n").I18n<{
5674
5719
  title: string;
5675
5720
  message: string;
5676
5721
  };
5722
+ activityTypePopup: {
5723
+ title: string;
5724
+ defaultOption: string;
5725
+ };
5677
5726
  };
5678
5727
  pdfGeneration: {
5679
5728
  generationStarted: string;
@@ -6309,6 +6358,9 @@ declare const _default: import("vue-i18n").I18n<{
6309
6358
  };
6310
6359
  };
6311
6360
  validation: {
6361
+ hourRange: string;
6362
+ timerangeStartLessThanEnd: string;
6363
+ timerangeNotIntersect: string;
6312
6364
  required: string;
6313
6365
  numeric: string;
6314
6366
  email: string;
@@ -6518,6 +6570,10 @@ declare const _default: import("vue-i18n").I18n<{
6518
6570
  title: string;
6519
6571
  message: string;
6520
6572
  };
6573
+ activityTypePopup: {
6574
+ title: string;
6575
+ defaultOption: string;
6576
+ };
6521
6577
  };
6522
6578
  pdfGeneration: {
6523
6579
  generationStarted: string;
@@ -7152,6 +7208,9 @@ declare const _default: import("vue-i18n").I18n<{
7152
7208
  };
7153
7209
  };
7154
7210
  validation: {
7211
+ hourRange: string;
7212
+ timerangeStartLessThanEnd: string;
7213
+ timerangeNotIntersect: string;
7155
7214
  required: string;
7156
7215
  numeric: string;
7157
7216
  email: string;
@@ -7361,6 +7420,10 @@ declare const _default: import("vue-i18n").I18n<{
7361
7420
  title: string;
7362
7421
  message: string;
7363
7422
  };
7423
+ activityTypePopup: {
7424
+ title: string;
7425
+ defaultOption: string;
7426
+ };
7364
7427
  };
7365
7428
  pdfGeneration: {
7366
7429
  generationStarted: string;
@@ -407,6 +407,9 @@ export declare const messages: {
407
407
  };
408
408
  };
409
409
  validation: {
410
+ hourRange: string;
411
+ timerangeStartLessThanEnd: string;
412
+ timerangeNotIntersect: string;
410
413
  required: string;
411
414
  numeric: string;
412
415
  email: string;
@@ -616,6 +619,10 @@ export declare const messages: {
616
619
  title: string;
617
620
  message: string;
618
621
  };
622
+ activityTypePopup: {
623
+ title: string;
624
+ defaultOption: string;
625
+ };
619
626
  };
620
627
  pdfGeneration: {
621
628
  generationStarted: string;
@@ -1264,6 +1271,9 @@ export declare const messages: {
1264
1271
  };
1265
1272
  };
1266
1273
  validation: {
1274
+ hourRange: string;
1275
+ timerangeStartLessThanEnd: string;
1276
+ timerangeNotIntersect: string;
1267
1277
  required: string;
1268
1278
  numeric: string;
1269
1279
  email: string;
@@ -1473,6 +1483,10 @@ export declare const messages: {
1473
1483
  title: string;
1474
1484
  message: string;
1475
1485
  };
1486
+ activityTypePopup: {
1487
+ title: string;
1488
+ defaultOption: string;
1489
+ };
1476
1490
  };
1477
1491
  pdfGeneration: {
1478
1492
  generationStarted: string;
@@ -2105,6 +2119,9 @@ export declare const messages: {
2105
2119
  };
2106
2120
  };
2107
2121
  validation: {
2122
+ hourRange: string;
2123
+ timerangeStartLessThanEnd: string;
2124
+ timerangeNotIntersect: string;
2108
2125
  required: string;
2109
2126
  numeric: string;
2110
2127
  email: string;
@@ -2314,6 +2331,10 @@ export declare const messages: {
2314
2331
  title: string;
2315
2332
  message: string;
2316
2333
  };
2334
+ activityTypePopup: {
2335
+ title: string;
2336
+ defaultOption: string;
2337
+ };
2317
2338
  };
2318
2339
  pdfGeneration: {
2319
2340
  generationStarted: string;
@@ -2948,6 +2969,9 @@ export declare const messages: {
2948
2969
  };
2949
2970
  };
2950
2971
  validation: {
2972
+ hourRange: string;
2973
+ timerangeStartLessThanEnd: string;
2974
+ timerangeNotIntersect: string;
2951
2975
  required: string;
2952
2976
  numeric: string;
2953
2977
  email: string;
@@ -3157,6 +3181,10 @@ export declare const messages: {
3157
3181
  title: string;
3158
3182
  message: string;
3159
3183
  };
3184
+ activityTypePopup: {
3185
+ title: string;
3186
+ defaultOption: string;
3187
+ };
3160
3188
  };
3161
3189
  pdfGeneration: {
3162
3190
  generationStarted: string;
@@ -3789,6 +3817,9 @@ export declare const messages: {
3789
3817
  };
3790
3818
  };
3791
3819
  validation: {
3820
+ hourRange: string;
3821
+ timerangeStartLessThanEnd: string;
3822
+ timerangeNotIntersect: string;
3792
3823
  required: string;
3793
3824
  numeric: string;
3794
3825
  email: string;
@@ -3998,6 +4029,10 @@ export declare const messages: {
3998
4029
  title: string;
3999
4030
  message: string;
4000
4031
  };
4032
+ activityTypePopup: {
4033
+ title: string;
4034
+ defaultOption: string;
4035
+ };
4001
4036
  };
4002
4037
  pdfGeneration: {
4003
4038
  generationStarted: string;
@@ -4632,6 +4667,9 @@ export declare const messages: {
4632
4667
  };
4633
4668
  };
4634
4669
  validation: {
4670
+ hourRange: string;
4671
+ timerangeStartLessThanEnd: string;
4672
+ timerangeNotIntersect: string;
4635
4673
  required: string;
4636
4674
  numeric: string;
4637
4675
  email: string;
@@ -4841,6 +4879,10 @@ export declare const messages: {
4841
4879
  title: string;
4842
4880
  message: string;
4843
4881
  };
4882
+ activityTypePopup: {
4883
+ title: string;
4884
+ defaultOption: string;
4885
+ };
4844
4886
  };
4845
4887
  pdfGeneration: {
4846
4888
  generationStarted: string;
@@ -5475,6 +5517,9 @@ export declare const messages: {
5475
5517
  };
5476
5518
  };
5477
5519
  validation: {
5520
+ hourRange: string;
5521
+ timerangeStartLessThanEnd: string;
5522
+ timerangeNotIntersect: string;
5478
5523
  required: string;
5479
5524
  numeric: string;
5480
5525
  email: string;
@@ -5684,6 +5729,10 @@ export declare const messages: {
5684
5729
  title: string;
5685
5730
  message: string;
5686
5731
  };
5732
+ activityTypePopup: {
5733
+ title: string;
5734
+ defaultOption: string;
5735
+ };
5687
5736
  };
5688
5737
  pdfGeneration: {
5689
5738
  generationStarted: string;
@@ -6319,6 +6368,9 @@ export declare const messages: {
6319
6368
  };
6320
6369
  };
6321
6370
  validation: {
6371
+ hourRange: string;
6372
+ timerangeStartLessThanEnd: string;
6373
+ timerangeNotIntersect: string;
6322
6374
  required: string;
6323
6375
  numeric: string;
6324
6376
  email: string;
@@ -6528,6 +6580,10 @@ export declare const messages: {
6528
6580
  title: string;
6529
6581
  message: string;
6530
6582
  };
6583
+ activityTypePopup: {
6584
+ title: string;
6585
+ defaultOption: string;
6586
+ };
6531
6587
  };
6532
6588
  pdfGeneration: {
6533
6589
  generationStarted: string;
@@ -7162,6 +7218,9 @@ export declare const messages: {
7162
7218
  };
7163
7219
  };
7164
7220
  validation: {
7221
+ hourRange: string;
7222
+ timerangeStartLessThanEnd: string;
7223
+ timerangeNotIntersect: string;
7165
7224
  required: string;
7166
7225
  numeric: string;
7167
7226
  email: string;
@@ -7371,6 +7430,10 @@ export declare const messages: {
7371
7430
  title: string;
7372
7431
  message: string;
7373
7432
  };
7433
+ activityTypePopup: {
7434
+ title: string;
7435
+ defaultOption: string;
7436
+ };
7374
7437
  };
7375
7438
  pdfGeneration: {
7376
7439
  generationStarted: string;
@@ -439,6 +439,9 @@ declare namespace _default {
439
439
  }
440
440
  }
441
441
  export namespace validation {
442
+ export let hourRange: string;
443
+ export let timerangeStartLessThanEnd: string;
444
+ export let timerangeNotIntersect: string;
442
445
  let required_1: string;
443
446
  export { required_1 as required };
444
447
  export let numeric: string;
@@ -679,13 +682,18 @@ declare namespace _default {
679
682
  export { title_7 as title };
680
683
  export let message: string;
681
684
  }
685
+ namespace activityTypePopup {
686
+ let title_8: string;
687
+ export { title_8 as title };
688
+ export let defaultOption: string;
689
+ }
682
690
  }
683
691
  export namespace pdfGeneration {
684
692
  let generationStarted: string;
685
693
  }
686
694
  export namespace saveFailedPopup {
687
- let title_8: string;
688
- export { title_8 as title };
695
+ let title_9: string;
696
+ export { title_9 as title };
689
697
  export let label: string;
690
698
  export let exportToJson: string;
691
699
  }
@@ -439,6 +439,9 @@ declare namespace _default {
439
439
  }
440
440
  }
441
441
  export namespace validation {
442
+ export let hourRange: string;
443
+ export let timerangeStartLessThanEnd: string;
444
+ export let timerangeNotIntersect: string;
442
445
  let required_1: string;
443
446
  export { required_1 as required };
444
447
  export let numeric: string;
@@ -679,13 +682,18 @@ declare namespace _default {
679
682
  export { title_7 as title };
680
683
  export let message: string;
681
684
  }
685
+ namespace activityTypePopup {
686
+ let title_8: string;
687
+ export { title_8 as title };
688
+ export let defaultOption: string;
689
+ }
682
690
  }
683
691
  export namespace pdfGeneration {
684
692
  let generationStarted: string;
685
693
  }
686
694
  export namespace saveFailedPopup {
687
- let title_8: string;
688
- export { title_8 as title };
695
+ let title_9: string;
696
+ export { title_9 as title };
689
697
  export let label: string;
690
698
  export let exportToJson: string;
691
699
  }
@@ -439,6 +439,9 @@ declare namespace _default {
439
439
  }
440
440
  }
441
441
  export namespace validation {
442
+ export let hourRange: string;
443
+ export let timerangeStartLessThanEnd: string;
444
+ export let timerangeNotIntersect: string;
442
445
  let required_1: string;
443
446
  export { required_1 as required };
444
447
  export let numeric: string;
@@ -679,13 +682,18 @@ declare namespace _default {
679
682
  export { title_7 as title };
680
683
  export let message: string;
681
684
  }
685
+ namespace activityTypePopup {
686
+ let title_8: string;
687
+ export { title_8 as title };
688
+ export let defaultOption: string;
689
+ }
682
690
  }
683
691
  export namespace pdfGeneration {
684
692
  let generationStarted: string;
685
693
  }
686
694
  export namespace saveFailedPopup {
687
- let title_8: string;
688
- export { title_8 as title };
695
+ let title_9: string;
696
+ export { title_9 as title };
689
697
  export let label: string;
690
698
  export let exportToJson: string;
691
699
  }
@@ -437,6 +437,9 @@ declare namespace _default {
437
437
  }
438
438
  }
439
439
  export namespace validation {
440
+ export let hourRange: string;
441
+ export let timerangeStartLessThanEnd: string;
442
+ export let timerangeNotIntersect: string;
440
443
  let required_1: string;
441
444
  export { required_1 as required };
442
445
  export let numeric: string;
@@ -677,13 +680,18 @@ declare namespace _default {
677
680
  export { title_7 as title };
678
681
  export let message: string;
679
682
  }
683
+ namespace activityTypePopup {
684
+ let title_8: string;
685
+ export { title_8 as title };
686
+ export let defaultOption: string;
687
+ }
680
688
  }
681
689
  export namespace pdfGeneration {
682
690
  let generationStarted: string;
683
691
  }
684
692
  export namespace saveFailedPopup {
685
- let title_8: string;
686
- export { title_8 as title };
693
+ let title_9: string;
694
+ export { title_9 as title };
687
695
  export let label: string;
688
696
  export let exportToJson: string;
689
697
  }
@@ -437,6 +437,9 @@ declare namespace _default {
437
437
  }
438
438
  }
439
439
  export namespace validation {
440
+ export let hourRange: string;
441
+ export let timerangeStartLessThanEnd: string;
442
+ export let timerangeNotIntersect: string;
440
443
  let required_1: string;
441
444
  export { required_1 as required };
442
445
  export let numeric: string;
@@ -677,13 +680,18 @@ declare namespace _default {
677
680
  export { title_7 as title };
678
681
  export let message: string;
679
682
  }
683
+ namespace activityTypePopup {
684
+ let title_8: string;
685
+ export { title_8 as title };
686
+ export let defaultOption: string;
687
+ }
680
688
  }
681
689
  export namespace pdfGeneration {
682
690
  let generationStarted: string;
683
691
  }
684
692
  export namespace saveFailedPopup {
685
- let title_8: string;
686
- export { title_8 as title };
693
+ let title_9: string;
694
+ export { title_9 as title };
687
695
  export let label: string;
688
696
  export let exportToJson: string;
689
697
  }
@@ -440,6 +440,9 @@ declare namespace _default {
440
440
  }
441
441
  }
442
442
  export namespace validation {
443
+ export let hourRange: string;
444
+ export let timerangeStartLessThanEnd: string;
445
+ export let timerangeNotIntersect: string;
443
446
  let required_1: string;
444
447
  export { required_1 as required };
445
448
  export let numeric: string;
@@ -680,13 +683,18 @@ declare namespace _default {
680
683
  export { title_7 as title };
681
684
  export let message: string;
682
685
  }
686
+ namespace activityTypePopup {
687
+ let title_8: string;
688
+ export { title_8 as title };
689
+ export let defaultOption: string;
690
+ }
683
691
  }
684
692
  export namespace pdfGeneration {
685
693
  let generationStarted: string;
686
694
  }
687
695
  export namespace saveFailedPopup {
688
- let title_8: string;
689
- export { title_8 as title };
696
+ let title_9: string;
697
+ export { title_9 as title };
690
698
  export let label: string;
691
699
  export let exportToJson: string;
692
700
  }
@@ -439,6 +439,9 @@ declare namespace _default {
439
439
  }
440
440
  }
441
441
  export namespace validation {
442
+ export let hourRange: string;
443
+ export let timerangeStartLessThanEnd: string;
444
+ export let timerangeNotIntersect: string;
442
445
  let required_1: string;
443
446
  export { required_1 as required };
444
447
  export let numeric: string;
@@ -679,13 +682,18 @@ declare namespace _default {
679
682
  export { title_7 as title };
680
683
  export let message: string;
681
684
  }
685
+ namespace activityTypePopup {
686
+ let title_8: string;
687
+ export { title_8 as title };
688
+ export let defaultOption: string;
689
+ }
682
690
  }
683
691
  export namespace pdfGeneration {
684
692
  let generationStarted: string;
685
693
  }
686
694
  export namespace saveFailedPopup {
687
- let title_8: string;
688
- export { title_8 as title };
695
+ let title_9: string;
696
+ export { title_9 as title };
689
697
  export let label: string;
690
698
  export let exportToJson: string;
691
699
  }
@@ -3,11 +3,12 @@ declare function AgentStatusAPIFactory({ instance, OpenAPIConfig }: {
3
3
  instance: any;
4
4
  OpenAPIConfig: any;
5
5
  }): {
6
- patch: ({ agentId, status, pauseCause, statusComment, }: {
6
+ patch: ({ agentId, status, pauseCause, statusComment, onlineSkill, }: {
7
7
  agentId: any;
8
8
  status: any;
9
9
  pauseCause: any;
10
10
  statusComment: any;
11
+ onlineSkill: any;
11
12
  }) => Promise<{
12
13
  success: boolean;
13
14
  }>;
@@ -0,0 +1,15 @@
1
+ import type { LookupOption } from '../../../../types';
2
+ type __VLS_Props = {
3
+ options?: LookupOption[];
4
+ };
5
+ declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
6
+ change: (option: LookupOption) => any;
7
+ close: () => any;
8
+ }, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
9
+ onChange?: ((option: LookupOption) => any) | undefined;
10
+ onClose?: (() => any) | undefined;
11
+ }>, {
12
+ options: LookupOption[];
13
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
14
+ declare const _default: typeof __VLS_export;
15
+ export default _default;