@kl1/contracts 1.0.22 → 1.0.24

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 (57) hide show
  1. package/dist/index.js +21 -17
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +21 -17
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/attribute/index.d.ts +42 -0
  6. package/dist/src/attribute/index.d.ts.map +1 -1
  7. package/dist/src/auth/index.d.ts +30 -0
  8. package/dist/src/auth/index.d.ts.map +1 -1
  9. package/dist/src/base-contract.d.ts +6 -0
  10. package/dist/src/base-contract.d.ts.map +1 -1
  11. package/dist/src/category/index.d.ts +36 -0
  12. package/dist/src/category/index.d.ts.map +1 -1
  13. package/dist/src/channel/index.d.ts +12 -0
  14. package/dist/src/channel/index.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +91 -3
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/contact/index.d.ts +72 -0
  18. package/dist/src/contact/index.d.ts.map +1 -1
  19. package/dist/src/contract.d.ts +805 -392
  20. package/dist/src/contract.d.ts.map +1 -1
  21. package/dist/src/cx-log/index.d.ts +6 -357
  22. package/dist/src/cx-log/index.d.ts.map +1 -1
  23. package/dist/src/cx-log/schema.d.ts +0 -287
  24. package/dist/src/cx-log/schema.d.ts.map +1 -1
  25. package/dist/src/dashboard/index.d.ts +136 -28
  26. package/dist/src/dashboard/index.d.ts.map +1 -1
  27. package/dist/src/dashboard/schema.d.ts +5 -5
  28. package/dist/src/extension/index.d.ts +36 -0
  29. package/dist/src/extension/index.d.ts.map +1 -1
  30. package/dist/src/mail/account-contract.d.ts +42 -0
  31. package/dist/src/mail/account-contract.d.ts.map +1 -1
  32. package/dist/src/mail/mail-contract.d.ts +42 -0
  33. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  34. package/dist/src/messenger/index.d.ts +10 -0
  35. package/dist/src/messenger/index.d.ts.map +1 -1
  36. package/dist/src/permission/index.d.ts +6 -0
  37. package/dist/src/permission/index.d.ts.map +1 -1
  38. package/dist/src/role/index.d.ts +24 -0
  39. package/dist/src/role/index.d.ts.map +1 -1
  40. package/dist/src/tag/index.d.ts +24 -0
  41. package/dist/src/tag/index.d.ts.map +1 -1
  42. package/dist/src/telephony-agent-presence-status/index.d.ts +24 -0
  43. package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  44. package/dist/src/telephony-extension/index.d.ts +6 -0
  45. package/dist/src/telephony-extension/index.d.ts.map +1 -1
  46. package/dist/src/ticket/index.d.ts +106 -4
  47. package/dist/src/ticket/index.d.ts.map +1 -1
  48. package/dist/src/ticket/validation.d.ts +4 -4
  49. package/dist/src/user/index.d.ts +30 -0
  50. package/dist/src/user/index.d.ts.map +1 -1
  51. package/dist/src/user-presence-status-log/index.d.ts +6 -0
  52. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  53. package/dist/src/widget/index.d.ts +48 -0
  54. package/dist/src/widget/index.d.ts.map +1 -1
  55. package/dist/src/wrap-up-form/index.d.ts +18 -0
  56. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  57. package/package.json +4 -10
@@ -212,12 +212,18 @@ export declare const dashboardContract: {
212
212
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
213
213
  'x-tenant': z.ZodString;
214
214
  authorization: z.ZodString;
215
+ 'x-code': z.ZodOptional<z.ZodString>;
216
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
215
217
  }, "strip", z.ZodTypeAny, {
216
218
  'x-tenant': string;
217
219
  authorization: string;
220
+ 'x-client-timezone': string;
221
+ 'x-code'?: string | undefined;
218
222
  }, {
219
223
  'x-tenant': string;
220
224
  authorization: string;
225
+ 'x-code'?: string | undefined;
226
+ 'x-client-timezone'?: string | undefined;
221
227
  }>>>;
222
228
  };
223
229
  getQueueCallDashboardData: {
@@ -269,7 +275,7 @@ export declare const dashboardContract: {
269
275
  totalMaximumRingDuration: string;
270
276
  }>;
271
277
  telephonyQueueCallCountListByQueueNumber: z.ZodArray<z.ZodObject<{
272
- queueNumber: z.ZodNumber;
278
+ queueNumber: z.ZodString;
273
279
  queueName: z.ZodString;
274
280
  yeastarQueueCallCountList: z.ZodObject<{
275
281
  totalQueueCall: z.ZodString;
@@ -307,7 +313,7 @@ export declare const dashboardContract: {
307
313
  }>;
308
314
  }, "strip", z.ZodTypeAny, {
309
315
  queueName: string;
310
- queueNumber: number;
316
+ queueNumber: string;
311
317
  yeastarQueueCallCountList: {
312
318
  totalQueueCall: string;
313
319
  totalMissedQueueCall: string;
@@ -322,7 +328,7 @@ export declare const dashboardContract: {
322
328
  };
323
329
  }, {
324
330
  queueName: string;
325
- queueNumber: number;
331
+ queueNumber: string;
326
332
  yeastarQueueCallCountList: {
327
333
  totalQueueCall: string;
328
334
  totalMissedQueueCall: string;
@@ -351,7 +357,7 @@ export declare const dashboardContract: {
351
357
  };
352
358
  telephonyQueueCallCountListByQueueNumber: {
353
359
  queueName: string;
354
- queueNumber: number;
360
+ queueNumber: string;
355
361
  yeastarQueueCallCountList: {
356
362
  totalQueueCall: string;
357
363
  totalMissedQueueCall: string;
@@ -380,7 +386,7 @@ export declare const dashboardContract: {
380
386
  };
381
387
  telephonyQueueCallCountListByQueueNumber: {
382
388
  queueName: string;
383
- queueNumber: number;
389
+ queueNumber: string;
384
390
  yeastarQueueCallCountList: {
385
391
  totalQueueCall: string;
386
392
  totalMissedQueueCall: string;
@@ -412,7 +418,7 @@ export declare const dashboardContract: {
412
418
  };
413
419
  telephonyQueueCallCountListByQueueNumber: {
414
420
  queueName: string;
415
- queueNumber: number;
421
+ queueNumber: string;
416
422
  yeastarQueueCallCountList: {
417
423
  totalQueueCall: string;
418
424
  totalMissedQueueCall: string;
@@ -444,7 +450,7 @@ export declare const dashboardContract: {
444
450
  };
445
451
  telephonyQueueCallCountListByQueueNumber: {
446
452
  queueName: string;
447
- queueNumber: number;
453
+ queueNumber: string;
448
454
  yeastarQueueCallCountList: {
449
455
  totalQueueCall: string;
450
456
  totalMissedQueueCall: string;
@@ -478,16 +484,22 @@ export declare const dashboardContract: {
478
484
  error?: any;
479
485
  }>;
480
486
  };
481
- path: "dashboard/queue-call-dashboard";
487
+ path: "dashboard/queue_call_dashboard";
482
488
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
483
489
  'x-tenant': z.ZodString;
484
490
  authorization: z.ZodString;
491
+ 'x-code': z.ZodOptional<z.ZodString>;
492
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
485
493
  }, "strip", z.ZodTypeAny, {
486
494
  'x-tenant': string;
487
495
  authorization: string;
496
+ 'x-client-timezone': string;
497
+ 'x-code'?: string | undefined;
488
498
  }, {
489
499
  'x-tenant': string;
490
500
  authorization: string;
501
+ 'x-code'?: string | undefined;
502
+ 'x-client-timezone'?: string | undefined;
491
503
  }>>>;
492
504
  };
493
505
  getQueueLiveCallCountList: {
@@ -580,16 +592,22 @@ export declare const dashboardContract: {
580
592
  error?: any;
581
593
  }>;
582
594
  };
583
- path: "dashboard/queue-live-call-count-list";
595
+ path: "dashboard/queue_live_call_count_list";
584
596
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
585
597
  'x-tenant': z.ZodString;
586
598
  authorization: z.ZodString;
599
+ 'x-code': z.ZodOptional<z.ZodString>;
600
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
587
601
  }, "strip", z.ZodTypeAny, {
588
602
  'x-tenant': string;
589
603
  authorization: string;
604
+ 'x-client-timezone': string;
605
+ 'x-code'?: string | undefined;
590
606
  }, {
591
607
  'x-tenant': string;
592
608
  authorization: string;
609
+ 'x-code'?: string | undefined;
610
+ 'x-client-timezone'?: string | undefined;
593
611
  }>>>;
594
612
  };
595
613
  getQueryCalls: {
@@ -768,12 +786,18 @@ export declare const dashboardContract: {
768
786
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
769
787
  'x-tenant': z.ZodString;
770
788
  authorization: z.ZodString;
789
+ 'x-code': z.ZodOptional<z.ZodString>;
790
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
771
791
  }, "strip", z.ZodTypeAny, {
772
792
  'x-tenant': string;
773
793
  authorization: string;
794
+ 'x-client-timezone': string;
795
+ 'x-code'?: string | undefined;
774
796
  }, {
775
797
  'x-tenant': string;
776
798
  authorization: string;
799
+ 'x-code'?: string | undefined;
800
+ 'x-client-timezone'?: string | undefined;
777
801
  }>>>;
778
802
  };
779
803
  getTicketDashboardData: {
@@ -881,12 +905,18 @@ export declare const dashboardContract: {
881
905
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
882
906
  'x-tenant': z.ZodString;
883
907
  authorization: z.ZodString;
908
+ 'x-code': z.ZodOptional<z.ZodString>;
909
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
884
910
  }, "strip", z.ZodTypeAny, {
885
911
  'x-tenant': string;
886
912
  authorization: string;
913
+ 'x-client-timezone': string;
914
+ 'x-code'?: string | undefined;
887
915
  }, {
888
916
  'x-tenant': string;
889
917
  authorization: string;
918
+ 'x-code'?: string | undefined;
919
+ 'x-client-timezone'?: string | undefined;
890
920
  }>>>;
891
921
  };
892
922
  getExpiredTicketData: {
@@ -949,12 +979,18 @@ export declare const dashboardContract: {
949
979
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
950
980
  'x-tenant': z.ZodString;
951
981
  authorization: z.ZodString;
982
+ 'x-code': z.ZodOptional<z.ZodString>;
983
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
952
984
  }, "strip", z.ZodTypeAny, {
953
985
  'x-tenant': string;
954
986
  authorization: string;
987
+ 'x-client-timezone': string;
988
+ 'x-code'?: string | undefined;
955
989
  }, {
956
990
  'x-tenant': string;
957
991
  authorization: string;
992
+ 'x-code'?: string | undefined;
993
+ 'x-client-timezone'?: string | undefined;
958
994
  }>>>;
959
995
  };
960
996
  getTicketTagData: {
@@ -1013,12 +1049,18 @@ export declare const dashboardContract: {
1013
1049
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1014
1050
  'x-tenant': z.ZodString;
1015
1051
  authorization: z.ZodString;
1052
+ 'x-code': z.ZodOptional<z.ZodString>;
1053
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1016
1054
  }, "strip", z.ZodTypeAny, {
1017
1055
  'x-tenant': string;
1018
1056
  authorization: string;
1057
+ 'x-client-timezone': string;
1058
+ 'x-code'?: string | undefined;
1019
1059
  }, {
1020
1060
  'x-tenant': string;
1021
1061
  authorization: string;
1062
+ 'x-code'?: string | undefined;
1063
+ 'x-client-timezone'?: string | undefined;
1022
1064
  }>>>;
1023
1065
  };
1024
1066
  getMessageChannelData: {
@@ -1066,12 +1108,18 @@ export declare const dashboardContract: {
1066
1108
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1067
1109
  'x-tenant': z.ZodString;
1068
1110
  authorization: z.ZodString;
1111
+ 'x-code': z.ZodOptional<z.ZodString>;
1112
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1069
1113
  }, "strip", z.ZodTypeAny, {
1070
1114
  'x-tenant': string;
1071
1115
  authorization: string;
1116
+ 'x-client-timezone': string;
1117
+ 'x-code'?: string | undefined;
1072
1118
  }, {
1073
1119
  'x-tenant': string;
1074
1120
  authorization: string;
1121
+ 'x-code'?: string | undefined;
1122
+ 'x-client-timezone'?: string | undefined;
1075
1123
  }>>>;
1076
1124
  };
1077
1125
  getMessageTagData: {
@@ -1130,12 +1178,18 @@ export declare const dashboardContract: {
1130
1178
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1131
1179
  'x-tenant': z.ZodString;
1132
1180
  authorization: z.ZodString;
1181
+ 'x-code': z.ZodOptional<z.ZodString>;
1182
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1133
1183
  }, "strip", z.ZodTypeAny, {
1134
1184
  'x-tenant': string;
1135
1185
  authorization: string;
1186
+ 'x-client-timezone': string;
1187
+ 'x-code'?: string | undefined;
1136
1188
  }, {
1137
1189
  'x-tenant': string;
1138
1190
  authorization: string;
1191
+ 'x-code'?: string | undefined;
1192
+ 'x-client-timezone'?: string | undefined;
1139
1193
  }>>>;
1140
1194
  };
1141
1195
  getCallTagData: {
@@ -1194,12 +1248,18 @@ export declare const dashboardContract: {
1194
1248
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1195
1249
  'x-tenant': z.ZodString;
1196
1250
  authorization: z.ZodString;
1251
+ 'x-code': z.ZodOptional<z.ZodString>;
1252
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1197
1253
  }, "strip", z.ZodTypeAny, {
1198
1254
  'x-tenant': string;
1199
1255
  authorization: string;
1256
+ 'x-client-timezone': string;
1257
+ 'x-code'?: string | undefined;
1200
1258
  }, {
1201
1259
  'x-tenant': string;
1202
1260
  authorization: string;
1261
+ 'x-code'?: string | undefined;
1262
+ 'x-client-timezone'?: string | undefined;
1203
1263
  }>>>;
1204
1264
  };
1205
1265
  getCallResultData: {
@@ -1256,12 +1316,18 @@ export declare const dashboardContract: {
1256
1316
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1257
1317
  'x-tenant': z.ZodString;
1258
1318
  authorization: z.ZodString;
1319
+ 'x-code': z.ZodOptional<z.ZodString>;
1320
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1259
1321
  }, "strip", z.ZodTypeAny, {
1260
1322
  'x-tenant': string;
1261
1323
  authorization: string;
1324
+ 'x-client-timezone': string;
1325
+ 'x-code'?: string | undefined;
1262
1326
  }, {
1263
1327
  'x-tenant': string;
1264
1328
  authorization: string;
1329
+ 'x-code'?: string | undefined;
1330
+ 'x-client-timezone'?: string | undefined;
1265
1331
  }>>>;
1266
1332
  };
1267
1333
  getConversationActivity: {
@@ -1277,7 +1343,7 @@ export declare const dashboardContract: {
1277
1343
  responses: {
1278
1344
  200: z.ZodObject<{
1279
1345
  requestId: z.ZodString;
1280
- customerCountStatus: z.ZodObject<{
1346
+ conversationActivity: z.ZodObject<{
1281
1347
  newContactCount: z.ZodNullable<z.ZodNumber>;
1282
1348
  oldContactCount: z.ZodNullable<z.ZodNumber>;
1283
1349
  }, "strip", z.ZodTypeAny, {
@@ -1289,13 +1355,13 @@ export declare const dashboardContract: {
1289
1355
  }>;
1290
1356
  }, "strip", z.ZodTypeAny, {
1291
1357
  requestId: string;
1292
- customerCountStatus: {
1358
+ conversationActivity: {
1293
1359
  newContactCount: number | null;
1294
1360
  oldContactCount: number | null;
1295
1361
  };
1296
1362
  }, {
1297
1363
  requestId: string;
1298
- customerCountStatus: {
1364
+ conversationActivity: {
1299
1365
  newContactCount: number | null;
1300
1366
  oldContactCount: number | null;
1301
1367
  };
@@ -1311,16 +1377,22 @@ export declare const dashboardContract: {
1311
1377
  error?: any;
1312
1378
  }>;
1313
1379
  };
1314
- path: "dashboard/message/customers";
1380
+ path: "dashboard/message/conversation-activities";
1315
1381
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1316
1382
  'x-tenant': z.ZodString;
1317
1383
  authorization: z.ZodString;
1384
+ 'x-code': z.ZodOptional<z.ZodString>;
1385
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1318
1386
  }, "strip", z.ZodTypeAny, {
1319
1387
  'x-tenant': string;
1320
1388
  authorization: string;
1389
+ 'x-client-timezone': string;
1390
+ 'x-code'?: string | undefined;
1321
1391
  }, {
1322
1392
  'x-tenant': string;
1323
1393
  authorization: string;
1394
+ 'x-code'?: string | undefined;
1395
+ 'x-client-timezone'?: string | undefined;
1324
1396
  }>>>;
1325
1397
  };
1326
1398
  getRoomStatusCountByStatus: {
@@ -1336,7 +1408,7 @@ export declare const dashboardContract: {
1336
1408
  responses: {
1337
1409
  200: z.ZodObject<{
1338
1410
  requestId: z.ZodString;
1339
- messageStatus: z.ZodObject<{
1411
+ roomStatusCountByStatus: z.ZodObject<{
1340
1412
  total: z.ZodNullable<z.ZodNumber>;
1341
1413
  closed: z.ZodNullable<z.ZodNumber>;
1342
1414
  unassignedOpen: z.ZodNullable<z.ZodNumber>;
@@ -1354,7 +1426,7 @@ export declare const dashboardContract: {
1354
1426
  }>;
1355
1427
  }, "strip", z.ZodTypeAny, {
1356
1428
  requestId: string;
1357
- messageStatus: {
1429
+ roomStatusCountByStatus: {
1358
1430
  total: number | null;
1359
1431
  closed: number | null;
1360
1432
  unassignedOpen: number | null;
@@ -1362,7 +1434,7 @@ export declare const dashboardContract: {
1362
1434
  };
1363
1435
  }, {
1364
1436
  requestId: string;
1365
- messageStatus: {
1437
+ roomStatusCountByStatus: {
1366
1438
  total: number | null;
1367
1439
  closed: number | null;
1368
1440
  unassignedOpen: number | null;
@@ -1384,12 +1456,18 @@ export declare const dashboardContract: {
1384
1456
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1385
1457
  'x-tenant': z.ZodString;
1386
1458
  authorization: z.ZodString;
1459
+ 'x-code': z.ZodOptional<z.ZodString>;
1460
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1387
1461
  }, "strip", z.ZodTypeAny, {
1388
1462
  'x-tenant': string;
1389
1463
  authorization: string;
1464
+ 'x-client-timezone': string;
1465
+ 'x-code'?: string | undefined;
1390
1466
  }, {
1391
1467
  'x-tenant': string;
1392
1468
  authorization: string;
1469
+ 'x-code'?: string | undefined;
1470
+ 'x-client-timezone'?: string | undefined;
1393
1471
  }>>>;
1394
1472
  };
1395
1473
  getRoomStatusAverage: {
@@ -1405,7 +1483,7 @@ export declare const dashboardContract: {
1405
1483
  responses: {
1406
1484
  200: z.ZodObject<{
1407
1485
  requestId: z.ZodString;
1408
- messageAverageData: z.ZodObject<{
1486
+ roomStatusAverage: z.ZodObject<{
1409
1487
  selectedWeekAvgByDay: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
1410
1488
  day: z.ZodNullable<z.ZodString>;
1411
1489
  avgResolutionTime: z.ZodNullable<z.ZodString>;
@@ -1470,7 +1548,7 @@ export declare const dashboardContract: {
1470
1548
  }>;
1471
1549
  }, "strip", z.ZodTypeAny, {
1472
1550
  requestId: string;
1473
- messageAverageData: {
1551
+ roomStatusAverage: {
1474
1552
  selectedWeekAvgByDay?: {
1475
1553
  day: string | null;
1476
1554
  avgResolutionTime: string | null;
@@ -1487,7 +1565,7 @@ export declare const dashboardContract: {
1487
1565
  };
1488
1566
  }, {
1489
1567
  requestId: string;
1490
- messageAverageData: {
1568
+ roomStatusAverage: {
1491
1569
  selectedWeekAvgByDay?: {
1492
1570
  day: string | null;
1493
1571
  avgResolutionTime: string | null;
@@ -1518,12 +1596,18 @@ export declare const dashboardContract: {
1518
1596
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1519
1597
  'x-tenant': z.ZodString;
1520
1598
  authorization: z.ZodString;
1599
+ 'x-code': z.ZodOptional<z.ZodString>;
1600
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1521
1601
  }, "strip", z.ZodTypeAny, {
1522
1602
  'x-tenant': string;
1523
1603
  authorization: string;
1604
+ 'x-client-timezone': string;
1605
+ 'x-code'?: string | undefined;
1524
1606
  }, {
1525
1607
  'x-tenant': string;
1526
1608
  authorization: string;
1609
+ 'x-code'?: string | undefined;
1610
+ 'x-client-timezone'?: string | undefined;
1527
1611
  }>>>;
1528
1612
  };
1529
1613
  getMessagePlatformData: {
@@ -1643,12 +1727,18 @@ export declare const dashboardContract: {
1643
1727
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1644
1728
  'x-tenant': z.ZodString;
1645
1729
  authorization: z.ZodString;
1730
+ 'x-code': z.ZodOptional<z.ZodString>;
1731
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1646
1732
  }, "strip", z.ZodTypeAny, {
1647
1733
  'x-tenant': string;
1648
1734
  authorization: string;
1735
+ 'x-client-timezone': string;
1736
+ 'x-code'?: string | undefined;
1649
1737
  }, {
1650
1738
  'x-tenant': string;
1651
1739
  authorization: string;
1740
+ 'x-code'?: string | undefined;
1741
+ 'x-client-timezone'?: string | undefined;
1652
1742
  }>>>;
1653
1743
  };
1654
1744
  getMessageRoomStatusDispositionData: {
@@ -1664,7 +1754,7 @@ export declare const dashboardContract: {
1664
1754
  responses: {
1665
1755
  200: z.ZodObject<{
1666
1756
  requestId: z.ZodString;
1667
- messageDisposition: z.ZodObject<{
1757
+ messageRoomStatusDispositionData: z.ZodObject<{
1668
1758
  resolvedDispositionCount: z.ZodNullable<z.ZodNumber>;
1669
1759
  prankDispositionCount: z.ZodNullable<z.ZodNumber>;
1670
1760
  followUpDispositionCount: z.ZodNullable<z.ZodNumber>;
@@ -1685,7 +1775,7 @@ export declare const dashboardContract: {
1685
1775
  }>;
1686
1776
  }, "strip", z.ZodTypeAny, {
1687
1777
  requestId: string;
1688
- messageDisposition: {
1778
+ messageRoomStatusDispositionData: {
1689
1779
  resolvedDispositionCount: number | null;
1690
1780
  prankDispositionCount: number | null;
1691
1781
  followUpDispositionCount: number | null;
@@ -1694,7 +1784,7 @@ export declare const dashboardContract: {
1694
1784
  };
1695
1785
  }, {
1696
1786
  requestId: string;
1697
- messageDisposition: {
1787
+ messageRoomStatusDispositionData: {
1698
1788
  resolvedDispositionCount: number | null;
1699
1789
  prankDispositionCount: number | null;
1700
1790
  followUpDispositionCount: number | null;
@@ -1717,12 +1807,18 @@ export declare const dashboardContract: {
1717
1807
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1718
1808
  'x-tenant': z.ZodString;
1719
1809
  authorization: z.ZodString;
1810
+ 'x-code': z.ZodOptional<z.ZodString>;
1811
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1720
1812
  }, "strip", z.ZodTypeAny, {
1721
1813
  'x-tenant': string;
1722
1814
  authorization: string;
1815
+ 'x-client-timezone': string;
1816
+ 'x-code'?: string | undefined;
1723
1817
  }, {
1724
1818
  'x-tenant': string;
1725
1819
  authorization: string;
1820
+ 'x-code'?: string | undefined;
1821
+ 'x-client-timezone'?: string | undefined;
1726
1822
  }>>>;
1727
1823
  };
1728
1824
  getIncomingMessageByPlatform: {
@@ -1738,7 +1834,7 @@ export declare const dashboardContract: {
1738
1834
  responses: {
1739
1835
  200: z.ZodObject<{
1740
1836
  requestId: z.ZodString;
1741
- messageIncomingData: z.ZodArray<z.ZodOptional<z.ZodNullable<z.ZodObject<{
1837
+ incomingMessageByPlatform: z.ZodArray<z.ZodOptional<z.ZodNullable<z.ZodObject<{
1742
1838
  platform: z.ZodNullable<z.ZodString>;
1743
1839
  hour: z.ZodNullable<z.ZodString>;
1744
1840
  messageCount: z.ZodNullable<z.ZodString>;
@@ -1753,14 +1849,14 @@ export declare const dashboardContract: {
1753
1849
  }>>>, "many">;
1754
1850
  }, "strip", z.ZodTypeAny, {
1755
1851
  requestId: string;
1756
- messageIncomingData: ({
1852
+ incomingMessageByPlatform: ({
1757
1853
  platform: string | null;
1758
1854
  hour: string | null;
1759
1855
  messageCount: string | null;
1760
1856
  } | null | undefined)[];
1761
1857
  }, {
1762
1858
  requestId: string;
1763
- messageIncomingData: ({
1859
+ incomingMessageByPlatform: ({
1764
1860
  platform: string | null;
1765
1861
  hour: string | null;
1766
1862
  messageCount: string | null;
@@ -1781,12 +1877,18 @@ export declare const dashboardContract: {
1781
1877
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1782
1878
  'x-tenant': z.ZodString;
1783
1879
  authorization: z.ZodString;
1880
+ 'x-code': z.ZodOptional<z.ZodString>;
1881
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1784
1882
  }, "strip", z.ZodTypeAny, {
1785
1883
  'x-tenant': string;
1786
1884
  authorization: string;
1885
+ 'x-client-timezone': string;
1886
+ 'x-code'?: string | undefined;
1787
1887
  }, {
1788
1888
  'x-tenant': string;
1789
1889
  authorization: string;
1890
+ 'x-code'?: string | undefined;
1891
+ 'x-client-timezone'?: string | undefined;
1790
1892
  }>>>;
1791
1893
  };
1792
1894
  getTotalIncomingMessageData: {
@@ -1802,7 +1904,7 @@ export declare const dashboardContract: {
1802
1904
  responses: {
1803
1905
  200: z.ZodObject<{
1804
1906
  requestId: z.ZodString;
1805
- messageTotalIncomingData: z.ZodArray<z.ZodNullable<z.ZodObject<{
1907
+ totalIncomingMessageData: z.ZodArray<z.ZodNullable<z.ZodObject<{
1806
1908
  name: z.ZodString;
1807
1909
  data: z.ZodArray<z.ZodNumber, "many">;
1808
1910
  }, "strip", z.ZodTypeAny, {
@@ -1814,13 +1916,13 @@ export declare const dashboardContract: {
1814
1916
  }>>, "many">;
1815
1917
  }, "strip", z.ZodTypeAny, {
1816
1918
  requestId: string;
1817
- messageTotalIncomingData: ({
1919
+ totalIncomingMessageData: ({
1818
1920
  data: number[];
1819
1921
  name: string;
1820
1922
  } | null)[];
1821
1923
  }, {
1822
1924
  requestId: string;
1823
- messageTotalIncomingData: ({
1925
+ totalIncomingMessageData: ({
1824
1926
  data: number[];
1825
1927
  name: string;
1826
1928
  } | null)[];
@@ -1840,12 +1942,18 @@ export declare const dashboardContract: {
1840
1942
  headers: z.ZodNullable<z.ZodOptional<z.ZodObject<{
1841
1943
  'x-tenant': z.ZodString;
1842
1944
  authorization: z.ZodString;
1945
+ 'x-code': z.ZodOptional<z.ZodString>;
1946
+ 'x-client-timezone': z.ZodDefault<z.ZodString>;
1843
1947
  }, "strip", z.ZodTypeAny, {
1844
1948
  'x-tenant': string;
1845
1949
  authorization: string;
1950
+ 'x-client-timezone': string;
1951
+ 'x-code'?: string | undefined;
1846
1952
  }, {
1847
1953
  'x-tenant': string;
1848
1954
  authorization: string;
1955
+ 'x-code'?: string | undefined;
1956
+ 'x-client-timezone'?: string | undefined;
1849
1957
  }>>>;
1850
1958
  };
1851
1959
  };
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/dashboard/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4P7B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/dashboard/index.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4P7B,CAAC"}
@@ -429,7 +429,7 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
429
429
  totalMaximumRingDuration: string;
430
430
  }>;
431
431
  telephonyQueueCallCountListByQueueNumber: z.ZodArray<z.ZodObject<{
432
- queueNumber: z.ZodNumber;
432
+ queueNumber: z.ZodString;
433
433
  queueName: z.ZodString;
434
434
  yeastarQueueCallCountList: z.ZodObject<{
435
435
  totalQueueCall: z.ZodString;
@@ -467,7 +467,7 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
467
467
  }>;
468
468
  }, "strip", z.ZodTypeAny, {
469
469
  queueName: string;
470
- queueNumber: number;
470
+ queueNumber: string;
471
471
  yeastarQueueCallCountList: {
472
472
  totalQueueCall: string;
473
473
  totalMissedQueueCall: string;
@@ -482,7 +482,7 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
482
482
  };
483
483
  }, {
484
484
  queueName: string;
485
- queueNumber: number;
485
+ queueNumber: string;
486
486
  yeastarQueueCallCountList: {
487
487
  totalQueueCall: string;
488
488
  totalMissedQueueCall: string;
@@ -511,7 +511,7 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
511
511
  };
512
512
  telephonyQueueCallCountListByQueueNumber: {
513
513
  queueName: string;
514
- queueNumber: number;
514
+ queueNumber: string;
515
515
  yeastarQueueCallCountList: {
516
516
  totalQueueCall: string;
517
517
  totalMissedQueueCall: string;
@@ -540,7 +540,7 @@ export declare const queueCallDashboardDataSchema: z.ZodObject<{
540
540
  };
541
541
  telephonyQueueCallCountListByQueueNumber: {
542
542
  queueName: string;
543
- queueNumber: number;
543
+ queueNumber: string;
544
544
  yeastarQueueCallCountList: {
545
545
  totalQueueCall: string;
546
546
  totalMissedQueueCall: string;