@kl1/contracts 1.1.43-uat → 1.1.45-uat
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +128 -27
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +128 -27
- package/dist/index.mjs.map +1 -1
- package/dist/src/botpress/index.d.ts +23 -14
- package/dist/src/botpress/index.d.ts.map +1 -1
- package/dist/src/botpress/validation.d.ts +23 -14
- package/dist/src/botpress/validation.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +105 -7
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +8 -0
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/channel/validation.d.ts +6 -1
- package/dist/src/channel/validation.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +116 -0
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +16 -0
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +75 -0
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +1005 -166
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +11 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +9 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +156 -146
- package/dist/src/dashboard/index.d.ts.map +1 -1
- package/dist/src/dashboard/schema.d.ts +207 -207
- package/dist/src/dashboard/validation.d.ts +10 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -1
- package/dist/src/export/index.d.ts +43 -0
- package/dist/src/export/index.d.ts.map +1 -0
- package/dist/src/instagram/index.d.ts +141 -0
- package/dist/src/instagram/index.d.ts.map +1 -1
- package/dist/src/instagram/validation.d.ts +7 -0
- package/dist/src/instagram/validation.d.ts.map +1 -1
- package/dist/src/line/index.d.ts +132 -0
- package/dist/src/line/index.d.ts.map +1 -1
- package/dist/src/line/validation.d.ts +26 -0
- package/dist/src/line/validation.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +111 -0
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/messenger/validation.d.ts +5 -0
- package/dist/src/messenger/validation.d.ts.map +1 -1
- package/dist/src/telephony-cdr/index.d.ts +125 -0
- package/dist/src/telephony-cdr/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +7 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +125 -0
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +7 -0
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/viber/index.d.ts +60 -0
- package/dist/src/viber/index.d.ts.map +1 -1
- package/dist/src/webchat/index.d.ts +34 -0
- package/dist/src/webchat/index.d.ts.map +1 -1
- package/dist/src/workflow-rule/index.d.ts +18 -0
- package/dist/src/workflow-rule/index.d.ts.map +1 -1
- package/package.json +10 -4
@@ -410,300 +410,300 @@ export declare const DashboardDataWithCallSchema: z.ZodObject<{
|
|
410
410
|
}[] | undefined;
|
411
411
|
}>;
|
412
412
|
export declare const TotalTelephonyQueueCallCountListSchema: z.ZodObject<{
|
413
|
-
totalQueueCall: z.
|
414
|
-
totalMissedQueueCall: z.
|
415
|
-
totalAnsweredQueueCall: z.
|
416
|
-
totalAbandonedQueueCall: z.
|
417
|
-
totalAverageRingDuration: z.
|
418
|
-
totalAverageTalkDuration: z.
|
419
|
-
totalAverageCallDuration: z.
|
420
|
-
totalSla: z.
|
413
|
+
totalQueueCall: z.ZodNumber;
|
414
|
+
totalMissedQueueCall: z.ZodNumber;
|
415
|
+
totalAnsweredQueueCall: z.ZodNumber;
|
416
|
+
totalAbandonedQueueCall: z.ZodNumber;
|
417
|
+
totalAverageRingDuration: z.ZodNumber;
|
418
|
+
totalAverageTalkDuration: z.ZodNumber;
|
419
|
+
totalAverageCallDuration: z.ZodNumber;
|
420
|
+
totalSla: z.ZodNumber;
|
421
421
|
totalMissedCallPercent: z.ZodString;
|
422
|
-
totalMaximumRingDuration: z.
|
422
|
+
totalMaximumRingDuration: z.ZodNumber;
|
423
423
|
}, "strip", z.ZodTypeAny, {
|
424
|
-
totalQueueCall:
|
425
|
-
totalMissedQueueCall:
|
426
|
-
totalAnsweredQueueCall:
|
427
|
-
totalAbandonedQueueCall:
|
428
|
-
totalAverageRingDuration:
|
429
|
-
totalAverageTalkDuration:
|
430
|
-
totalAverageCallDuration:
|
431
|
-
totalSla:
|
424
|
+
totalQueueCall: number;
|
425
|
+
totalMissedQueueCall: number;
|
426
|
+
totalAnsweredQueueCall: number;
|
427
|
+
totalAbandonedQueueCall: number;
|
428
|
+
totalAverageRingDuration: number;
|
429
|
+
totalAverageTalkDuration: number;
|
430
|
+
totalAverageCallDuration: number;
|
431
|
+
totalSla: number;
|
432
432
|
totalMissedCallPercent: string;
|
433
|
-
totalMaximumRingDuration:
|
433
|
+
totalMaximumRingDuration: number;
|
434
434
|
}, {
|
435
|
-
totalQueueCall:
|
436
|
-
totalMissedQueueCall:
|
437
|
-
totalAnsweredQueueCall:
|
438
|
-
totalAbandonedQueueCall:
|
439
|
-
totalAverageRingDuration:
|
440
|
-
totalAverageTalkDuration:
|
441
|
-
totalAverageCallDuration:
|
442
|
-
totalSla:
|
435
|
+
totalQueueCall: number;
|
436
|
+
totalMissedQueueCall: number;
|
437
|
+
totalAnsweredQueueCall: number;
|
438
|
+
totalAbandonedQueueCall: number;
|
439
|
+
totalAverageRingDuration: number;
|
440
|
+
totalAverageTalkDuration: number;
|
441
|
+
totalAverageCallDuration: number;
|
442
|
+
totalSla: number;
|
443
443
|
totalMissedCallPercent: string;
|
444
|
-
totalMaximumRingDuration:
|
444
|
+
totalMaximumRingDuration: number;
|
445
445
|
}>;
|
446
446
|
export declare const TelephonyQueueCallCountListSchema: z.ZodObject<{
|
447
|
-
totalQueueCall: z.
|
448
|
-
totalMissedQueueCall: z.
|
449
|
-
totalAnsweredQueueCall: z.
|
450
|
-
totalAbandonedQueueCall: z.
|
451
|
-
totalAverageTalkDuration: z.
|
452
|
-
totalAverageCallDuration: z.
|
453
|
-
totalAverageRingDuration: z.
|
454
|
-
totalSla: z.
|
447
|
+
totalQueueCall: z.ZodNumber;
|
448
|
+
totalMissedQueueCall: z.ZodNumber;
|
449
|
+
totalAnsweredQueueCall: z.ZodNumber;
|
450
|
+
totalAbandonedQueueCall: z.ZodNumber;
|
451
|
+
totalAverageTalkDuration: z.ZodNumber;
|
452
|
+
totalAverageCallDuration: z.ZodNumber;
|
453
|
+
totalAverageRingDuration: z.ZodNumber;
|
454
|
+
totalSla: z.ZodNumber;
|
455
455
|
totalMissedCallPercent: z.ZodString;
|
456
|
-
totalMaximumRingDuration: z.
|
456
|
+
totalMaximumRingDuration: z.ZodNumber;
|
457
457
|
}, "strip", z.ZodTypeAny, {
|
458
|
-
totalQueueCall:
|
459
|
-
totalMissedQueueCall:
|
460
|
-
totalAnsweredQueueCall:
|
461
|
-
totalAbandonedQueueCall:
|
462
|
-
totalAverageRingDuration:
|
463
|
-
totalAverageTalkDuration:
|
464
|
-
totalAverageCallDuration:
|
465
|
-
totalSla:
|
458
|
+
totalQueueCall: number;
|
459
|
+
totalMissedQueueCall: number;
|
460
|
+
totalAnsweredQueueCall: number;
|
461
|
+
totalAbandonedQueueCall: number;
|
462
|
+
totalAverageRingDuration: number;
|
463
|
+
totalAverageTalkDuration: number;
|
464
|
+
totalAverageCallDuration: number;
|
465
|
+
totalSla: number;
|
466
466
|
totalMissedCallPercent: string;
|
467
|
-
totalMaximumRingDuration:
|
467
|
+
totalMaximumRingDuration: number;
|
468
468
|
}, {
|
469
|
-
totalQueueCall:
|
470
|
-
totalMissedQueueCall:
|
471
|
-
totalAnsweredQueueCall:
|
472
|
-
totalAbandonedQueueCall:
|
473
|
-
totalAverageRingDuration:
|
474
|
-
totalAverageTalkDuration:
|
475
|
-
totalAverageCallDuration:
|
476
|
-
totalSla:
|
469
|
+
totalQueueCall: number;
|
470
|
+
totalMissedQueueCall: number;
|
471
|
+
totalAnsweredQueueCall: number;
|
472
|
+
totalAbandonedQueueCall: number;
|
473
|
+
totalAverageRingDuration: number;
|
474
|
+
totalAverageTalkDuration: number;
|
475
|
+
totalAverageCallDuration: number;
|
476
|
+
totalSla: number;
|
477
477
|
totalMissedCallPercent: string;
|
478
|
-
totalMaximumRingDuration:
|
478
|
+
totalMaximumRingDuration: number;
|
479
479
|
}>;
|
480
480
|
export declare const TelephonyQueueCallCountListByQueueNumberSchema: z.ZodObject<{
|
481
481
|
queueNumber: z.ZodString;
|
482
482
|
queueName: z.ZodString;
|
483
483
|
yeastarQueueCallCountList: z.ZodObject<{
|
484
|
-
totalQueueCall: z.
|
485
|
-
totalMissedQueueCall: z.
|
486
|
-
totalAnsweredQueueCall: z.
|
487
|
-
totalAbandonedQueueCall: z.
|
488
|
-
totalAverageTalkDuration: z.
|
489
|
-
totalAverageCallDuration: z.
|
490
|
-
totalAverageRingDuration: z.
|
491
|
-
totalSla: z.
|
484
|
+
totalQueueCall: z.ZodNumber;
|
485
|
+
totalMissedQueueCall: z.ZodNumber;
|
486
|
+
totalAnsweredQueueCall: z.ZodNumber;
|
487
|
+
totalAbandonedQueueCall: z.ZodNumber;
|
488
|
+
totalAverageTalkDuration: z.ZodNumber;
|
489
|
+
totalAverageCallDuration: z.ZodNumber;
|
490
|
+
totalAverageRingDuration: z.ZodNumber;
|
491
|
+
totalSla: z.ZodNumber;
|
492
492
|
totalMissedCallPercent: z.ZodString;
|
493
|
-
totalMaximumRingDuration: z.
|
493
|
+
totalMaximumRingDuration: z.ZodNumber;
|
494
494
|
}, "strip", z.ZodTypeAny, {
|
495
|
-
totalQueueCall:
|
496
|
-
totalMissedQueueCall:
|
497
|
-
totalAnsweredQueueCall:
|
498
|
-
totalAbandonedQueueCall:
|
499
|
-
totalAverageRingDuration:
|
500
|
-
totalAverageTalkDuration:
|
501
|
-
totalAverageCallDuration:
|
502
|
-
totalSla:
|
495
|
+
totalQueueCall: number;
|
496
|
+
totalMissedQueueCall: number;
|
497
|
+
totalAnsweredQueueCall: number;
|
498
|
+
totalAbandonedQueueCall: number;
|
499
|
+
totalAverageRingDuration: number;
|
500
|
+
totalAverageTalkDuration: number;
|
501
|
+
totalAverageCallDuration: number;
|
502
|
+
totalSla: number;
|
503
503
|
totalMissedCallPercent: string;
|
504
|
-
totalMaximumRingDuration:
|
504
|
+
totalMaximumRingDuration: number;
|
505
505
|
}, {
|
506
|
-
totalQueueCall:
|
507
|
-
totalMissedQueueCall:
|
508
|
-
totalAnsweredQueueCall:
|
509
|
-
totalAbandonedQueueCall:
|
510
|
-
totalAverageRingDuration:
|
511
|
-
totalAverageTalkDuration:
|
512
|
-
totalAverageCallDuration:
|
513
|
-
totalSla:
|
506
|
+
totalQueueCall: number;
|
507
|
+
totalMissedQueueCall: number;
|
508
|
+
totalAnsweredQueueCall: number;
|
509
|
+
totalAbandonedQueueCall: number;
|
510
|
+
totalAverageRingDuration: number;
|
511
|
+
totalAverageTalkDuration: number;
|
512
|
+
totalAverageCallDuration: number;
|
513
|
+
totalSla: number;
|
514
514
|
totalMissedCallPercent: string;
|
515
|
-
totalMaximumRingDuration:
|
515
|
+
totalMaximumRingDuration: number;
|
516
516
|
}>;
|
517
517
|
}, "strip", z.ZodTypeAny, {
|
518
518
|
queueName: string;
|
519
519
|
queueNumber: string;
|
520
520
|
yeastarQueueCallCountList: {
|
521
|
-
totalQueueCall:
|
522
|
-
totalMissedQueueCall:
|
523
|
-
totalAnsweredQueueCall:
|
524
|
-
totalAbandonedQueueCall:
|
525
|
-
totalAverageRingDuration:
|
526
|
-
totalAverageTalkDuration:
|
527
|
-
totalAverageCallDuration:
|
528
|
-
totalSla:
|
521
|
+
totalQueueCall: number;
|
522
|
+
totalMissedQueueCall: number;
|
523
|
+
totalAnsweredQueueCall: number;
|
524
|
+
totalAbandonedQueueCall: number;
|
525
|
+
totalAverageRingDuration: number;
|
526
|
+
totalAverageTalkDuration: number;
|
527
|
+
totalAverageCallDuration: number;
|
528
|
+
totalSla: number;
|
529
529
|
totalMissedCallPercent: string;
|
530
|
-
totalMaximumRingDuration:
|
530
|
+
totalMaximumRingDuration: number;
|
531
531
|
};
|
532
532
|
}, {
|
533
533
|
queueName: string;
|
534
534
|
queueNumber: string;
|
535
535
|
yeastarQueueCallCountList: {
|
536
|
-
totalQueueCall:
|
537
|
-
totalMissedQueueCall:
|
538
|
-
totalAnsweredQueueCall:
|
539
|
-
totalAbandonedQueueCall:
|
540
|
-
totalAverageRingDuration:
|
541
|
-
totalAverageTalkDuration:
|
542
|
-
totalAverageCallDuration:
|
543
|
-
totalSla:
|
536
|
+
totalQueueCall: number;
|
537
|
+
totalMissedQueueCall: number;
|
538
|
+
totalAnsweredQueueCall: number;
|
539
|
+
totalAbandonedQueueCall: number;
|
540
|
+
totalAverageRingDuration: number;
|
541
|
+
totalAverageTalkDuration: number;
|
542
|
+
totalAverageCallDuration: number;
|
543
|
+
totalSla: number;
|
544
544
|
totalMissedCallPercent: string;
|
545
|
-
totalMaximumRingDuration:
|
545
|
+
totalMaximumRingDuration: number;
|
546
546
|
};
|
547
547
|
}>;
|
548
548
|
export declare const queueCallDashboardDataSchema: z.ZodObject<{
|
549
549
|
totalTelephonyQueueCallCountList: z.ZodObject<{
|
550
|
-
totalQueueCall: z.
|
551
|
-
totalMissedQueueCall: z.
|
552
|
-
totalAnsweredQueueCall: z.
|
553
|
-
totalAbandonedQueueCall: z.
|
554
|
-
totalAverageRingDuration: z.
|
555
|
-
totalAverageTalkDuration: z.
|
556
|
-
totalAverageCallDuration: z.
|
557
|
-
totalSla: z.
|
550
|
+
totalQueueCall: z.ZodNumber;
|
551
|
+
totalMissedQueueCall: z.ZodNumber;
|
552
|
+
totalAnsweredQueueCall: z.ZodNumber;
|
553
|
+
totalAbandonedQueueCall: z.ZodNumber;
|
554
|
+
totalAverageRingDuration: z.ZodNumber;
|
555
|
+
totalAverageTalkDuration: z.ZodNumber;
|
556
|
+
totalAverageCallDuration: z.ZodNumber;
|
557
|
+
totalSla: z.ZodNumber;
|
558
558
|
totalMissedCallPercent: z.ZodString;
|
559
|
-
totalMaximumRingDuration: z.
|
559
|
+
totalMaximumRingDuration: z.ZodNumber;
|
560
560
|
}, "strip", z.ZodTypeAny, {
|
561
|
-
totalQueueCall:
|
562
|
-
totalMissedQueueCall:
|
563
|
-
totalAnsweredQueueCall:
|
564
|
-
totalAbandonedQueueCall:
|
565
|
-
totalAverageRingDuration:
|
566
|
-
totalAverageTalkDuration:
|
567
|
-
totalAverageCallDuration:
|
568
|
-
totalSla:
|
561
|
+
totalQueueCall: number;
|
562
|
+
totalMissedQueueCall: number;
|
563
|
+
totalAnsweredQueueCall: number;
|
564
|
+
totalAbandonedQueueCall: number;
|
565
|
+
totalAverageRingDuration: number;
|
566
|
+
totalAverageTalkDuration: number;
|
567
|
+
totalAverageCallDuration: number;
|
568
|
+
totalSla: number;
|
569
569
|
totalMissedCallPercent: string;
|
570
|
-
totalMaximumRingDuration:
|
570
|
+
totalMaximumRingDuration: number;
|
571
571
|
}, {
|
572
|
-
totalQueueCall:
|
573
|
-
totalMissedQueueCall:
|
574
|
-
totalAnsweredQueueCall:
|
575
|
-
totalAbandonedQueueCall:
|
576
|
-
totalAverageRingDuration:
|
577
|
-
totalAverageTalkDuration:
|
578
|
-
totalAverageCallDuration:
|
579
|
-
totalSla:
|
572
|
+
totalQueueCall: number;
|
573
|
+
totalMissedQueueCall: number;
|
574
|
+
totalAnsweredQueueCall: number;
|
575
|
+
totalAbandonedQueueCall: number;
|
576
|
+
totalAverageRingDuration: number;
|
577
|
+
totalAverageTalkDuration: number;
|
578
|
+
totalAverageCallDuration: number;
|
579
|
+
totalSla: number;
|
580
580
|
totalMissedCallPercent: string;
|
581
|
-
totalMaximumRingDuration:
|
581
|
+
totalMaximumRingDuration: number;
|
582
582
|
}>;
|
583
583
|
telephonyQueueCallCountListByQueueNumber: z.ZodArray<z.ZodObject<{
|
584
584
|
queueNumber: z.ZodString;
|
585
585
|
queueName: z.ZodString;
|
586
586
|
yeastarQueueCallCountList: z.ZodObject<{
|
587
|
-
totalQueueCall: z.
|
588
|
-
totalMissedQueueCall: z.
|
589
|
-
totalAnsweredQueueCall: z.
|
590
|
-
totalAbandonedQueueCall: z.
|
591
|
-
totalAverageTalkDuration: z.
|
592
|
-
totalAverageCallDuration: z.
|
593
|
-
totalAverageRingDuration: z.
|
594
|
-
totalSla: z.
|
587
|
+
totalQueueCall: z.ZodNumber;
|
588
|
+
totalMissedQueueCall: z.ZodNumber;
|
589
|
+
totalAnsweredQueueCall: z.ZodNumber;
|
590
|
+
totalAbandonedQueueCall: z.ZodNumber;
|
591
|
+
totalAverageTalkDuration: z.ZodNumber;
|
592
|
+
totalAverageCallDuration: z.ZodNumber;
|
593
|
+
totalAverageRingDuration: z.ZodNumber;
|
594
|
+
totalSla: z.ZodNumber;
|
595
595
|
totalMissedCallPercent: z.ZodString;
|
596
|
-
totalMaximumRingDuration: z.
|
596
|
+
totalMaximumRingDuration: z.ZodNumber;
|
597
597
|
}, "strip", z.ZodTypeAny, {
|
598
|
-
totalQueueCall:
|
599
|
-
totalMissedQueueCall:
|
600
|
-
totalAnsweredQueueCall:
|
601
|
-
totalAbandonedQueueCall:
|
602
|
-
totalAverageRingDuration:
|
603
|
-
totalAverageTalkDuration:
|
604
|
-
totalAverageCallDuration:
|
605
|
-
totalSla:
|
598
|
+
totalQueueCall: number;
|
599
|
+
totalMissedQueueCall: number;
|
600
|
+
totalAnsweredQueueCall: number;
|
601
|
+
totalAbandonedQueueCall: number;
|
602
|
+
totalAverageRingDuration: number;
|
603
|
+
totalAverageTalkDuration: number;
|
604
|
+
totalAverageCallDuration: number;
|
605
|
+
totalSla: number;
|
606
606
|
totalMissedCallPercent: string;
|
607
|
-
totalMaximumRingDuration:
|
607
|
+
totalMaximumRingDuration: number;
|
608
608
|
}, {
|
609
|
-
totalQueueCall:
|
610
|
-
totalMissedQueueCall:
|
611
|
-
totalAnsweredQueueCall:
|
612
|
-
totalAbandonedQueueCall:
|
613
|
-
totalAverageRingDuration:
|
614
|
-
totalAverageTalkDuration:
|
615
|
-
totalAverageCallDuration:
|
616
|
-
totalSla:
|
609
|
+
totalQueueCall: number;
|
610
|
+
totalMissedQueueCall: number;
|
611
|
+
totalAnsweredQueueCall: number;
|
612
|
+
totalAbandonedQueueCall: number;
|
613
|
+
totalAverageRingDuration: number;
|
614
|
+
totalAverageTalkDuration: number;
|
615
|
+
totalAverageCallDuration: number;
|
616
|
+
totalSla: number;
|
617
617
|
totalMissedCallPercent: string;
|
618
|
-
totalMaximumRingDuration:
|
618
|
+
totalMaximumRingDuration: number;
|
619
619
|
}>;
|
620
620
|
}, "strip", z.ZodTypeAny, {
|
621
621
|
queueName: string;
|
622
622
|
queueNumber: string;
|
623
623
|
yeastarQueueCallCountList: {
|
624
|
-
totalQueueCall:
|
625
|
-
totalMissedQueueCall:
|
626
|
-
totalAnsweredQueueCall:
|
627
|
-
totalAbandonedQueueCall:
|
628
|
-
totalAverageRingDuration:
|
629
|
-
totalAverageTalkDuration:
|
630
|
-
totalAverageCallDuration:
|
631
|
-
totalSla:
|
624
|
+
totalQueueCall: number;
|
625
|
+
totalMissedQueueCall: number;
|
626
|
+
totalAnsweredQueueCall: number;
|
627
|
+
totalAbandonedQueueCall: number;
|
628
|
+
totalAverageRingDuration: number;
|
629
|
+
totalAverageTalkDuration: number;
|
630
|
+
totalAverageCallDuration: number;
|
631
|
+
totalSla: number;
|
632
632
|
totalMissedCallPercent: string;
|
633
|
-
totalMaximumRingDuration:
|
633
|
+
totalMaximumRingDuration: number;
|
634
634
|
};
|
635
635
|
}, {
|
636
636
|
queueName: string;
|
637
637
|
queueNumber: string;
|
638
638
|
yeastarQueueCallCountList: {
|
639
|
-
totalQueueCall:
|
640
|
-
totalMissedQueueCall:
|
641
|
-
totalAnsweredQueueCall:
|
642
|
-
totalAbandonedQueueCall:
|
643
|
-
totalAverageRingDuration:
|
644
|
-
totalAverageTalkDuration:
|
645
|
-
totalAverageCallDuration:
|
646
|
-
totalSla:
|
639
|
+
totalQueueCall: number;
|
640
|
+
totalMissedQueueCall: number;
|
641
|
+
totalAnsweredQueueCall: number;
|
642
|
+
totalAbandonedQueueCall: number;
|
643
|
+
totalAverageRingDuration: number;
|
644
|
+
totalAverageTalkDuration: number;
|
645
|
+
totalAverageCallDuration: number;
|
646
|
+
totalSla: number;
|
647
647
|
totalMissedCallPercent: string;
|
648
|
-
totalMaximumRingDuration:
|
648
|
+
totalMaximumRingDuration: number;
|
649
649
|
};
|
650
650
|
}>, "many">;
|
651
651
|
}, "strip", z.ZodTypeAny, {
|
652
652
|
totalTelephonyQueueCallCountList: {
|
653
|
-
totalQueueCall:
|
654
|
-
totalMissedQueueCall:
|
655
|
-
totalAnsweredQueueCall:
|
656
|
-
totalAbandonedQueueCall:
|
657
|
-
totalAverageRingDuration:
|
658
|
-
totalAverageTalkDuration:
|
659
|
-
totalAverageCallDuration:
|
660
|
-
totalSla:
|
653
|
+
totalQueueCall: number;
|
654
|
+
totalMissedQueueCall: number;
|
655
|
+
totalAnsweredQueueCall: number;
|
656
|
+
totalAbandonedQueueCall: number;
|
657
|
+
totalAverageRingDuration: number;
|
658
|
+
totalAverageTalkDuration: number;
|
659
|
+
totalAverageCallDuration: number;
|
660
|
+
totalSla: number;
|
661
661
|
totalMissedCallPercent: string;
|
662
|
-
totalMaximumRingDuration:
|
662
|
+
totalMaximumRingDuration: number;
|
663
663
|
};
|
664
664
|
telephonyQueueCallCountListByQueueNumber: {
|
665
665
|
queueName: string;
|
666
666
|
queueNumber: string;
|
667
667
|
yeastarQueueCallCountList: {
|
668
|
-
totalQueueCall:
|
669
|
-
totalMissedQueueCall:
|
670
|
-
totalAnsweredQueueCall:
|
671
|
-
totalAbandonedQueueCall:
|
672
|
-
totalAverageRingDuration:
|
673
|
-
totalAverageTalkDuration:
|
674
|
-
totalAverageCallDuration:
|
675
|
-
totalSla:
|
668
|
+
totalQueueCall: number;
|
669
|
+
totalMissedQueueCall: number;
|
670
|
+
totalAnsweredQueueCall: number;
|
671
|
+
totalAbandonedQueueCall: number;
|
672
|
+
totalAverageRingDuration: number;
|
673
|
+
totalAverageTalkDuration: number;
|
674
|
+
totalAverageCallDuration: number;
|
675
|
+
totalSla: number;
|
676
676
|
totalMissedCallPercent: string;
|
677
|
-
totalMaximumRingDuration:
|
677
|
+
totalMaximumRingDuration: number;
|
678
678
|
};
|
679
679
|
}[];
|
680
680
|
}, {
|
681
681
|
totalTelephonyQueueCallCountList: {
|
682
|
-
totalQueueCall:
|
683
|
-
totalMissedQueueCall:
|
684
|
-
totalAnsweredQueueCall:
|
685
|
-
totalAbandonedQueueCall:
|
686
|
-
totalAverageRingDuration:
|
687
|
-
totalAverageTalkDuration:
|
688
|
-
totalAverageCallDuration:
|
689
|
-
totalSla:
|
682
|
+
totalQueueCall: number;
|
683
|
+
totalMissedQueueCall: number;
|
684
|
+
totalAnsweredQueueCall: number;
|
685
|
+
totalAbandonedQueueCall: number;
|
686
|
+
totalAverageRingDuration: number;
|
687
|
+
totalAverageTalkDuration: number;
|
688
|
+
totalAverageCallDuration: number;
|
689
|
+
totalSla: number;
|
690
690
|
totalMissedCallPercent: string;
|
691
|
-
totalMaximumRingDuration:
|
691
|
+
totalMaximumRingDuration: number;
|
692
692
|
};
|
693
693
|
telephonyQueueCallCountListByQueueNumber: {
|
694
694
|
queueName: string;
|
695
695
|
queueNumber: string;
|
696
696
|
yeastarQueueCallCountList: {
|
697
|
-
totalQueueCall:
|
698
|
-
totalMissedQueueCall:
|
699
|
-
totalAnsweredQueueCall:
|
700
|
-
totalAbandonedQueueCall:
|
701
|
-
totalAverageRingDuration:
|
702
|
-
totalAverageTalkDuration:
|
703
|
-
totalAverageCallDuration:
|
704
|
-
totalSla:
|
697
|
+
totalQueueCall: number;
|
698
|
+
totalMissedQueueCall: number;
|
699
|
+
totalAnsweredQueueCall: number;
|
700
|
+
totalAbandonedQueueCall: number;
|
701
|
+
totalAverageRingDuration: number;
|
702
|
+
totalAverageTalkDuration: number;
|
703
|
+
totalAverageCallDuration: number;
|
704
|
+
totalSla: number;
|
705
705
|
totalMissedCallPercent: string;
|
706
|
-
totalMaximumRingDuration:
|
706
|
+
totalMaximumRingDuration: number;
|
707
707
|
};
|
708
708
|
}[];
|
709
709
|
}>;
|
@@ -6,6 +6,16 @@ export declare const GetDashboardQueryParamsSchema: z.ZodObject<{
|
|
6
6
|
}, {
|
7
7
|
selectedDate: string;
|
8
8
|
}>;
|
9
|
+
export declare const GetMessageChannelQueryParamsSchema: z.ZodObject<{
|
10
|
+
selectedDate: z.ZodString;
|
11
|
+
time: z.ZodEnum<["byDay", "byMonth"]>;
|
12
|
+
}, "strip", z.ZodTypeAny, {
|
13
|
+
time: "byDay" | "byMonth";
|
14
|
+
selectedDate: string;
|
15
|
+
}, {
|
16
|
+
time: "byDay" | "byMonth";
|
17
|
+
selectedDate: string;
|
18
|
+
}>;
|
9
19
|
export declare const GetDashboardQueryDetailParamsSchema: z.ZodOptional<z.ZodObject<{
|
10
20
|
selectedDate: z.ZodString;
|
11
21
|
agentId: z.ZodOptional<z.ZodString>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/dashboard/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,6BAA6B;;;;;;EAExC,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;GAKlC,CAAC;AAEf,eAAO,MAAM,kCAAkC;;;;;;;;;EAK5C,CAAC"}
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/dashboard/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,6BAA6B;;;;;;EAExC,CAAC;AAEH,eAAO,MAAM,kCAAkC;;;;;;;;;EAG3C,CAAC;AAEL,eAAO,MAAM,mCAAmC;;;;;;;;;GAKlC,CAAC;AAEf,eAAO,MAAM,kCAAkC;;;;;;;;;EAK5C,CAAC"}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
import z from 'zod';
|
2
|
+
export declare const exportContract: {
|
3
|
+
notifyExport: {
|
4
|
+
body: z.ZodObject<{
|
5
|
+
userId: z.ZodString;
|
6
|
+
module: z.ZodString;
|
7
|
+
fileUrl: z.ZodString;
|
8
|
+
}, "strip", z.ZodTypeAny, {
|
9
|
+
module: string;
|
10
|
+
userId: string;
|
11
|
+
fileUrl: string;
|
12
|
+
}, {
|
13
|
+
module: string;
|
14
|
+
userId: string;
|
15
|
+
fileUrl: string;
|
16
|
+
}>;
|
17
|
+
method: "POST";
|
18
|
+
responses: {
|
19
|
+
200: z.ZodObject<{
|
20
|
+
requestId: z.ZodString;
|
21
|
+
success: z.ZodBoolean;
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
23
|
+
success: boolean;
|
24
|
+
requestId: string;
|
25
|
+
}, {
|
26
|
+
success: boolean;
|
27
|
+
requestId: string;
|
28
|
+
}>;
|
29
|
+
500: z.ZodObject<{
|
30
|
+
message: z.ZodString;
|
31
|
+
error: z.ZodAny;
|
32
|
+
}, "strip", z.ZodTypeAny, {
|
33
|
+
message: string;
|
34
|
+
error?: any;
|
35
|
+
}, {
|
36
|
+
message: string;
|
37
|
+
error?: any;
|
38
|
+
}>;
|
39
|
+
};
|
40
|
+
path: "export/notify";
|
41
|
+
};
|
42
|
+
};
|
43
|
+
//# sourceMappingURL=index.d.ts.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/export/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAqB1B,CAAC"}
|