@kl1/contracts 1.0.34 → 1.0.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.
- package/dist/index.js +1030 -924
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1029 -924
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +17 -10
- package/dist/src/activity-log/index.d.ts.map +1 -1
- package/dist/src/activity-log/schema.d.ts +17 -10
- package/dist/src/activity-log/schema.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +17 -10
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +650 -51
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +18 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +12464 -12390
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +227 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +1158 -1545
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +1128 -491
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +319 -140
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contact/index.d.ts +77 -0
- package/dist/src/contact/index.d.ts.map +1 -1
- package/dist/src/contact/schema.d.ts +16 -0
- package/dist/src/contact/schema.d.ts.map +1 -1
- package/dist/src/contact/validation.d.ts +63 -0
- package/dist/src/contact/validation.d.ts.map +1 -1
- package/dist/src/contract.d.ts +28088 -29053
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +243 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +193 -56
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/extension/index.d.ts +29 -120
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -0
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -0
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/mail/mail-contract.d.ts +7 -0
- package/dist/src/mail/mail-contract.d.ts.map +1 -1
- package/dist/src/mail/room-contract.d.ts +7 -0
- package/dist/src/mail/room-contract.d.ts.map +1 -1
- package/dist/src/mail/schemas/room.schema.d.ts +5 -0
- package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +442 -100
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
- package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +53 -0
- package/dist/src/telephony-cdr/schema.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3022 -1253
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +236 -167
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/upload/schema.d.ts +3 -0
- package/dist/src/upload/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +57 -34
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/schema.d.ts +11 -6
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +12 -8
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/schema.d.ts +17 -10
- package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/package.json +1 -1
- package/dist/src/app/index.d.ts +0 -17
- package/dist/src/app/index.d.ts.map +0 -1
- package/dist/src/mail/mail-server.d.ts +0 -216
- package/dist/src/mail/mail-server.d.ts.map +0 -1
- package/dist/src/platform-contact/schema.d.ts +0 -30
- package/dist/src/platform-contact/schema.d.ts.map +0 -1
@@ -545,6 +545,7 @@ export declare const cxLogContract: {
|
|
545
545
|
fileName: z.ZodString;
|
546
546
|
fileSize: z.ZodNumber;
|
547
547
|
fileKey: z.ZodString;
|
548
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
548
549
|
}, "strip", z.ZodTypeAny, {
|
549
550
|
id: string;
|
550
551
|
createdAt: Date;
|
@@ -554,6 +555,7 @@ export declare const cxLogContract: {
|
|
554
555
|
fileKey: string;
|
555
556
|
bucketName: string;
|
556
557
|
fileSize: number;
|
558
|
+
fileUrl: string | null;
|
557
559
|
}, {
|
558
560
|
id: string;
|
559
561
|
createdAt: Date;
|
@@ -563,6 +565,7 @@ export declare const cxLogContract: {
|
|
563
565
|
fileKey: string;
|
564
566
|
bucketName: string;
|
565
567
|
fileSize: number;
|
568
|
+
fileUrl: string | null;
|
566
569
|
}>;
|
567
570
|
}, "strip", z.ZodTypeAny, {
|
568
571
|
id: string;
|
@@ -579,6 +582,7 @@ export declare const cxLogContract: {
|
|
579
582
|
fileKey: string;
|
580
583
|
bucketName: string;
|
581
584
|
fileSize: number;
|
585
|
+
fileUrl: string | null;
|
582
586
|
};
|
583
587
|
}, {
|
584
588
|
id: string;
|
@@ -595,6 +599,7 @@ export declare const cxLogContract: {
|
|
595
599
|
fileKey: string;
|
596
600
|
bucketName: string;
|
597
601
|
fileSize: number;
|
602
|
+
fileUrl: string | null;
|
598
603
|
};
|
599
604
|
}>, "many">;
|
600
605
|
}, "strip", z.ZodTypeAny, {
|
@@ -635,6 +640,7 @@ export declare const cxLogContract: {
|
|
635
640
|
fileKey: string;
|
636
641
|
bucketName: string;
|
637
642
|
fileSize: number;
|
643
|
+
fileUrl: string | null;
|
638
644
|
};
|
639
645
|
}[];
|
640
646
|
}, {
|
@@ -675,6 +681,7 @@ export declare const cxLogContract: {
|
|
675
681
|
fileKey: string;
|
676
682
|
bucketName: string;
|
677
683
|
fileSize: number;
|
684
|
+
fileUrl: string | null;
|
678
685
|
};
|
679
686
|
}[];
|
680
687
|
}>, "many">;
|
@@ -828,6 +835,7 @@ export declare const cxLogContract: {
|
|
828
835
|
fileKey: string;
|
829
836
|
bucketName: string;
|
830
837
|
fileSize: number;
|
838
|
+
fileUrl: string | null;
|
831
839
|
};
|
832
840
|
}[];
|
833
841
|
}[];
|
@@ -929,6 +937,7 @@ export declare const cxLogContract: {
|
|
929
937
|
fileKey: string;
|
930
938
|
bucketName: string;
|
931
939
|
fileSize: number;
|
940
|
+
fileUrl: string | null;
|
932
941
|
};
|
933
942
|
}[];
|
934
943
|
}[];
|
@@ -1044,6 +1053,7 @@ export declare const cxLogContract: {
|
|
1044
1053
|
fileKey: string;
|
1045
1054
|
bucketName: string;
|
1046
1055
|
fileSize: number;
|
1056
|
+
fileUrl: string | null;
|
1047
1057
|
};
|
1048
1058
|
}[];
|
1049
1059
|
}[];
|
@@ -1160,6 +1170,7 @@ export declare const cxLogContract: {
|
|
1160
1170
|
fileKey: string;
|
1161
1171
|
bucketName: string;
|
1162
1172
|
fileSize: number;
|
1173
|
+
fileUrl: string | null;
|
1163
1174
|
};
|
1164
1175
|
}[];
|
1165
1176
|
}[];
|
@@ -1298,7 +1309,7 @@ export declare const cxLogContract: {
|
|
1298
1309
|
displayName: string;
|
1299
1310
|
}[];
|
1300
1311
|
}>, "many">;
|
1301
|
-
extension: z.
|
1312
|
+
extension: z.ZodObject<{
|
1302
1313
|
id: z.ZodString;
|
1303
1314
|
createdAt: z.ZodDate;
|
1304
1315
|
updatedAt: z.ZodDate;
|
@@ -1306,6 +1317,7 @@ export declare const cxLogContract: {
|
|
1306
1317
|
userId: z.ZodNullable<z.ZodString>;
|
1307
1318
|
sipServerUrl: z.ZodString;
|
1308
1319
|
sipUserName: z.ZodString;
|
1320
|
+
webphoneLoginUser: z.ZodString;
|
1309
1321
|
extensionId: z.ZodNumber;
|
1310
1322
|
extensionName: z.ZodString;
|
1311
1323
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1317,6 +1329,7 @@ export declare const cxLogContract: {
|
|
1317
1329
|
userId: string | null;
|
1318
1330
|
sipServerUrl: string;
|
1319
1331
|
sipUserName: string;
|
1332
|
+
webphoneLoginUser: string;
|
1320
1333
|
extensionId: number;
|
1321
1334
|
extensionName: string;
|
1322
1335
|
telephonySignature: string | null;
|
@@ -1328,10 +1341,11 @@ export declare const cxLogContract: {
|
|
1328
1341
|
userId: string | null;
|
1329
1342
|
sipServerUrl: string;
|
1330
1343
|
sipUserName: string;
|
1344
|
+
webphoneLoginUser: string;
|
1331
1345
|
extensionId: number;
|
1332
1346
|
extensionName: string;
|
1333
1347
|
telephonySignature: string | null;
|
1334
|
-
}
|
1348
|
+
}>;
|
1335
1349
|
}, "strip", z.ZodTypeAny, {
|
1336
1350
|
id: string;
|
1337
1351
|
address: string | null;
|
@@ -1362,7 +1376,7 @@ export declare const cxLogContract: {
|
|
1362
1376
|
displayName: string;
|
1363
1377
|
}[];
|
1364
1378
|
}[];
|
1365
|
-
extension
|
1379
|
+
extension: {
|
1366
1380
|
id: string;
|
1367
1381
|
createdAt: Date;
|
1368
1382
|
updatedAt: Date;
|
@@ -1370,10 +1384,11 @@ export declare const cxLogContract: {
|
|
1370
1384
|
userId: string | null;
|
1371
1385
|
sipServerUrl: string;
|
1372
1386
|
sipUserName: string;
|
1387
|
+
webphoneLoginUser: string;
|
1373
1388
|
extensionId: number;
|
1374
1389
|
extensionName: string;
|
1375
1390
|
telephonySignature: string | null;
|
1376
|
-
}
|
1391
|
+
};
|
1377
1392
|
}, {
|
1378
1393
|
id: string;
|
1379
1394
|
address: string | null;
|
@@ -1404,7 +1419,7 @@ export declare const cxLogContract: {
|
|
1404
1419
|
displayName: string;
|
1405
1420
|
}[];
|
1406
1421
|
}[];
|
1407
|
-
extension
|
1422
|
+
extension: {
|
1408
1423
|
id: string;
|
1409
1424
|
createdAt: Date;
|
1410
1425
|
updatedAt: Date;
|
@@ -1412,10 +1427,11 @@ export declare const cxLogContract: {
|
|
1412
1427
|
userId: string | null;
|
1413
1428
|
sipServerUrl: string;
|
1414
1429
|
sipUserName: string;
|
1430
|
+
webphoneLoginUser: string;
|
1415
1431
|
extensionId: number;
|
1416
1432
|
extensionName: string;
|
1417
1433
|
telephonySignature: string | null;
|
1418
|
-
}
|
1434
|
+
};
|
1419
1435
|
}>;
|
1420
1436
|
assignee: z.ZodObject<{
|
1421
1437
|
id: z.ZodString;
|
@@ -1497,7 +1513,7 @@ export declare const cxLogContract: {
|
|
1497
1513
|
displayName: string;
|
1498
1514
|
}[];
|
1499
1515
|
}>, "many">;
|
1500
|
-
extension: z.
|
1516
|
+
extension: z.ZodObject<{
|
1501
1517
|
id: z.ZodString;
|
1502
1518
|
createdAt: z.ZodDate;
|
1503
1519
|
updatedAt: z.ZodDate;
|
@@ -1505,6 +1521,7 @@ export declare const cxLogContract: {
|
|
1505
1521
|
userId: z.ZodNullable<z.ZodString>;
|
1506
1522
|
sipServerUrl: z.ZodString;
|
1507
1523
|
sipUserName: z.ZodString;
|
1524
|
+
webphoneLoginUser: z.ZodString;
|
1508
1525
|
extensionId: z.ZodNumber;
|
1509
1526
|
extensionName: z.ZodString;
|
1510
1527
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1516,6 +1533,7 @@ export declare const cxLogContract: {
|
|
1516
1533
|
userId: string | null;
|
1517
1534
|
sipServerUrl: string;
|
1518
1535
|
sipUserName: string;
|
1536
|
+
webphoneLoginUser: string;
|
1519
1537
|
extensionId: number;
|
1520
1538
|
extensionName: string;
|
1521
1539
|
telephonySignature: string | null;
|
@@ -1527,10 +1545,11 @@ export declare const cxLogContract: {
|
|
1527
1545
|
userId: string | null;
|
1528
1546
|
sipServerUrl: string;
|
1529
1547
|
sipUserName: string;
|
1548
|
+
webphoneLoginUser: string;
|
1530
1549
|
extensionId: number;
|
1531
1550
|
extensionName: string;
|
1532
1551
|
telephonySignature: string | null;
|
1533
|
-
}
|
1552
|
+
}>;
|
1534
1553
|
}, "strip", z.ZodTypeAny, {
|
1535
1554
|
id: string;
|
1536
1555
|
address: string | null;
|
@@ -1561,7 +1580,7 @@ export declare const cxLogContract: {
|
|
1561
1580
|
displayName: string;
|
1562
1581
|
}[];
|
1563
1582
|
}[];
|
1564
|
-
extension
|
1583
|
+
extension: {
|
1565
1584
|
id: string;
|
1566
1585
|
createdAt: Date;
|
1567
1586
|
updatedAt: Date;
|
@@ -1569,10 +1588,11 @@ export declare const cxLogContract: {
|
|
1569
1588
|
userId: string | null;
|
1570
1589
|
sipServerUrl: string;
|
1571
1590
|
sipUserName: string;
|
1591
|
+
webphoneLoginUser: string;
|
1572
1592
|
extensionId: number;
|
1573
1593
|
extensionName: string;
|
1574
1594
|
telephonySignature: string | null;
|
1575
|
-
}
|
1595
|
+
};
|
1576
1596
|
}, {
|
1577
1597
|
id: string;
|
1578
1598
|
address: string | null;
|
@@ -1603,7 +1623,7 @@ export declare const cxLogContract: {
|
|
1603
1623
|
displayName: string;
|
1604
1624
|
}[];
|
1605
1625
|
}[];
|
1606
|
-
extension
|
1626
|
+
extension: {
|
1607
1627
|
id: string;
|
1608
1628
|
createdAt: Date;
|
1609
1629
|
updatedAt: Date;
|
@@ -1611,10 +1631,11 @@ export declare const cxLogContract: {
|
|
1611
1631
|
userId: string | null;
|
1612
1632
|
sipServerUrl: string;
|
1613
1633
|
sipUserName: string;
|
1634
|
+
webphoneLoginUser: string;
|
1614
1635
|
extensionId: number;
|
1615
1636
|
extensionName: string;
|
1616
1637
|
telephonySignature: string | null;
|
1617
|
-
}
|
1638
|
+
};
|
1618
1639
|
}>;
|
1619
1640
|
channel: z.ZodOptional<z.ZodObject<{
|
1620
1641
|
id: z.ZodOptional<z.ZodString>;
|
@@ -1725,7 +1746,7 @@ export declare const cxLogContract: {
|
|
1725
1746
|
displayName: string;
|
1726
1747
|
}[];
|
1727
1748
|
}>, "many">;
|
1728
|
-
extension: z.
|
1749
|
+
extension: z.ZodObject<{
|
1729
1750
|
id: z.ZodString;
|
1730
1751
|
createdAt: z.ZodDate;
|
1731
1752
|
updatedAt: z.ZodDate;
|
@@ -1733,6 +1754,7 @@ export declare const cxLogContract: {
|
|
1733
1754
|
userId: z.ZodNullable<z.ZodString>;
|
1734
1755
|
sipServerUrl: z.ZodString;
|
1735
1756
|
sipUserName: z.ZodString;
|
1757
|
+
webphoneLoginUser: z.ZodString;
|
1736
1758
|
extensionId: z.ZodNumber;
|
1737
1759
|
extensionName: z.ZodString;
|
1738
1760
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1744,6 +1766,7 @@ export declare const cxLogContract: {
|
|
1744
1766
|
userId: string | null;
|
1745
1767
|
sipServerUrl: string;
|
1746
1768
|
sipUserName: string;
|
1769
|
+
webphoneLoginUser: string;
|
1747
1770
|
extensionId: number;
|
1748
1771
|
extensionName: string;
|
1749
1772
|
telephonySignature: string | null;
|
@@ -1755,10 +1778,11 @@ export declare const cxLogContract: {
|
|
1755
1778
|
userId: string | null;
|
1756
1779
|
sipServerUrl: string;
|
1757
1780
|
sipUserName: string;
|
1781
|
+
webphoneLoginUser: string;
|
1758
1782
|
extensionId: number;
|
1759
1783
|
extensionName: string;
|
1760
1784
|
telephonySignature: string | null;
|
1761
|
-
}
|
1785
|
+
}>;
|
1762
1786
|
}, "strip", z.ZodTypeAny, {
|
1763
1787
|
id: string;
|
1764
1788
|
address: string | null;
|
@@ -1789,7 +1813,7 @@ export declare const cxLogContract: {
|
|
1789
1813
|
displayName: string;
|
1790
1814
|
}[];
|
1791
1815
|
}[];
|
1792
|
-
extension
|
1816
|
+
extension: {
|
1793
1817
|
id: string;
|
1794
1818
|
createdAt: Date;
|
1795
1819
|
updatedAt: Date;
|
@@ -1797,10 +1821,11 @@ export declare const cxLogContract: {
|
|
1797
1821
|
userId: string | null;
|
1798
1822
|
sipServerUrl: string;
|
1799
1823
|
sipUserName: string;
|
1824
|
+
webphoneLoginUser: string;
|
1800
1825
|
extensionId: number;
|
1801
1826
|
extensionName: string;
|
1802
1827
|
telephonySignature: string | null;
|
1803
|
-
}
|
1828
|
+
};
|
1804
1829
|
}, {
|
1805
1830
|
id: string;
|
1806
1831
|
address: string | null;
|
@@ -1831,7 +1856,7 @@ export declare const cxLogContract: {
|
|
1831
1856
|
displayName: string;
|
1832
1857
|
}[];
|
1833
1858
|
}[];
|
1834
|
-
extension
|
1859
|
+
extension: {
|
1835
1860
|
id: string;
|
1836
1861
|
createdAt: Date;
|
1837
1862
|
updatedAt: Date;
|
@@ -1839,10 +1864,11 @@ export declare const cxLogContract: {
|
|
1839
1864
|
userId: string | null;
|
1840
1865
|
sipServerUrl: string;
|
1841
1866
|
sipUserName: string;
|
1867
|
+
webphoneLoginUser: string;
|
1842
1868
|
extensionId: number;
|
1843
1869
|
extensionName: string;
|
1844
1870
|
telephonySignature: string | null;
|
1845
|
-
}
|
1871
|
+
};
|
1846
1872
|
}>>;
|
1847
1873
|
}, "strip", z.ZodTypeAny, {
|
1848
1874
|
id?: string | undefined;
|
@@ -1893,7 +1919,7 @@ export declare const cxLogContract: {
|
|
1893
1919
|
displayName: string;
|
1894
1920
|
}[];
|
1895
1921
|
}[];
|
1896
|
-
extension
|
1922
|
+
extension: {
|
1897
1923
|
id: string;
|
1898
1924
|
createdAt: Date;
|
1899
1925
|
updatedAt: Date;
|
@@ -1901,10 +1927,11 @@ export declare const cxLogContract: {
|
|
1901
1927
|
userId: string | null;
|
1902
1928
|
sipServerUrl: string;
|
1903
1929
|
sipUserName: string;
|
1930
|
+
webphoneLoginUser: string;
|
1904
1931
|
extensionId: number;
|
1905
1932
|
extensionName: string;
|
1906
1933
|
telephonySignature: string | null;
|
1907
|
-
}
|
1934
|
+
};
|
1908
1935
|
} | undefined;
|
1909
1936
|
}, {
|
1910
1937
|
id?: string | undefined;
|
@@ -1955,7 +1982,7 @@ export declare const cxLogContract: {
|
|
1955
1982
|
displayName: string;
|
1956
1983
|
}[];
|
1957
1984
|
}[];
|
1958
|
-
extension
|
1985
|
+
extension: {
|
1959
1986
|
id: string;
|
1960
1987
|
createdAt: Date;
|
1961
1988
|
updatedAt: Date;
|
@@ -1963,10 +1990,11 @@ export declare const cxLogContract: {
|
|
1963
1990
|
userId: string | null;
|
1964
1991
|
sipServerUrl: string;
|
1965
1992
|
sipUserName: string;
|
1993
|
+
webphoneLoginUser: string;
|
1966
1994
|
extensionId: number;
|
1967
1995
|
extensionName: string;
|
1968
1996
|
telephonySignature: string | null;
|
1969
|
-
}
|
1997
|
+
};
|
1970
1998
|
} | undefined;
|
1971
1999
|
}>>;
|
1972
2000
|
}, "strip", z.ZodTypeAny, {
|
@@ -2005,7 +2033,7 @@ export declare const cxLogContract: {
|
|
2005
2033
|
displayName: string;
|
2006
2034
|
}[];
|
2007
2035
|
}[];
|
2008
|
-
extension
|
2036
|
+
extension: {
|
2009
2037
|
id: string;
|
2010
2038
|
createdAt: Date;
|
2011
2039
|
updatedAt: Date;
|
@@ -2013,10 +2041,11 @@ export declare const cxLogContract: {
|
|
2013
2041
|
userId: string | null;
|
2014
2042
|
sipServerUrl: string;
|
2015
2043
|
sipUserName: string;
|
2044
|
+
webphoneLoginUser: string;
|
2016
2045
|
extensionId: number;
|
2017
2046
|
extensionName: string;
|
2018
2047
|
telephonySignature: string | null;
|
2019
|
-
}
|
2048
|
+
};
|
2020
2049
|
};
|
2021
2050
|
firstResponseTime: number;
|
2022
2051
|
lastMessage: string;
|
@@ -2084,6 +2113,7 @@ export declare const cxLogContract: {
|
|
2084
2113
|
fileKey: string;
|
2085
2114
|
bucketName: string;
|
2086
2115
|
fileSize: number;
|
2116
|
+
fileUrl: string | null;
|
2087
2117
|
};
|
2088
2118
|
}[];
|
2089
2119
|
}[];
|
@@ -2172,7 +2202,7 @@ export declare const cxLogContract: {
|
|
2172
2202
|
displayName: string;
|
2173
2203
|
}[];
|
2174
2204
|
}[];
|
2175
|
-
extension
|
2205
|
+
extension: {
|
2176
2206
|
id: string;
|
2177
2207
|
createdAt: Date;
|
2178
2208
|
updatedAt: Date;
|
@@ -2180,10 +2210,11 @@ export declare const cxLogContract: {
|
|
2180
2210
|
userId: string | null;
|
2181
2211
|
sipServerUrl: string;
|
2182
2212
|
sipUserName: string;
|
2213
|
+
webphoneLoginUser: string;
|
2183
2214
|
extensionId: number;
|
2184
2215
|
extensionName: string;
|
2185
2216
|
telephonySignature: string | null;
|
2186
|
-
}
|
2217
|
+
};
|
2187
2218
|
};
|
2188
2219
|
channel?: {
|
2189
2220
|
id?: string | undefined;
|
@@ -2234,7 +2265,7 @@ export declare const cxLogContract: {
|
|
2234
2265
|
displayName: string;
|
2235
2266
|
}[];
|
2236
2267
|
}[];
|
2237
|
-
extension
|
2268
|
+
extension: {
|
2238
2269
|
id: string;
|
2239
2270
|
createdAt: Date;
|
2240
2271
|
updatedAt: Date;
|
@@ -2242,10 +2273,11 @@ export declare const cxLogContract: {
|
|
2242
2273
|
userId: string | null;
|
2243
2274
|
sipServerUrl: string;
|
2244
2275
|
sipUserName: string;
|
2276
|
+
webphoneLoginUser: string;
|
2245
2277
|
extensionId: number;
|
2246
2278
|
extensionName: string;
|
2247
2279
|
telephonySignature: string | null;
|
2248
|
-
}
|
2280
|
+
};
|
2249
2281
|
} | undefined;
|
2250
2282
|
} | undefined;
|
2251
2283
|
}, {
|
@@ -2284,7 +2316,7 @@ export declare const cxLogContract: {
|
|
2284
2316
|
displayName: string;
|
2285
2317
|
}[];
|
2286
2318
|
}[];
|
2287
|
-
extension
|
2319
|
+
extension: {
|
2288
2320
|
id: string;
|
2289
2321
|
createdAt: Date;
|
2290
2322
|
updatedAt: Date;
|
@@ -2292,10 +2324,11 @@ export declare const cxLogContract: {
|
|
2292
2324
|
userId: string | null;
|
2293
2325
|
sipServerUrl: string;
|
2294
2326
|
sipUserName: string;
|
2327
|
+
webphoneLoginUser: string;
|
2295
2328
|
extensionId: number;
|
2296
2329
|
extensionName: string;
|
2297
2330
|
telephonySignature: string | null;
|
2298
|
-
}
|
2331
|
+
};
|
2299
2332
|
};
|
2300
2333
|
firstResponseTime: number;
|
2301
2334
|
lastMessage: string;
|
@@ -2363,6 +2396,7 @@ export declare const cxLogContract: {
|
|
2363
2396
|
fileKey: string;
|
2364
2397
|
bucketName: string;
|
2365
2398
|
fileSize: number;
|
2399
|
+
fileUrl: string | null;
|
2366
2400
|
};
|
2367
2401
|
}[];
|
2368
2402
|
}[];
|
@@ -2451,7 +2485,7 @@ export declare const cxLogContract: {
|
|
2451
2485
|
displayName: string;
|
2452
2486
|
}[];
|
2453
2487
|
}[];
|
2454
|
-
extension
|
2488
|
+
extension: {
|
2455
2489
|
id: string;
|
2456
2490
|
createdAt: Date;
|
2457
2491
|
updatedAt: Date;
|
@@ -2459,10 +2493,11 @@ export declare const cxLogContract: {
|
|
2459
2493
|
userId: string | null;
|
2460
2494
|
sipServerUrl: string;
|
2461
2495
|
sipUserName: string;
|
2496
|
+
webphoneLoginUser: string;
|
2462
2497
|
extensionId: number;
|
2463
2498
|
extensionName: string;
|
2464
2499
|
telephonySignature: string | null;
|
2465
|
-
}
|
2500
|
+
};
|
2466
2501
|
};
|
2467
2502
|
channel?: {
|
2468
2503
|
id?: string | undefined;
|
@@ -2513,7 +2548,7 @@ export declare const cxLogContract: {
|
|
2513
2548
|
displayName: string;
|
2514
2549
|
}[];
|
2515
2550
|
}[];
|
2516
|
-
extension
|
2551
|
+
extension: {
|
2517
2552
|
id: string;
|
2518
2553
|
createdAt: Date;
|
2519
2554
|
updatedAt: Date;
|
@@ -2521,10 +2556,11 @@ export declare const cxLogContract: {
|
|
2521
2556
|
userId: string | null;
|
2522
2557
|
sipServerUrl: string;
|
2523
2558
|
sipUserName: string;
|
2559
|
+
webphoneLoginUser: string;
|
2524
2560
|
extensionId: number;
|
2525
2561
|
extensionName: string;
|
2526
2562
|
telephonySignature: string | null;
|
2527
|
-
}
|
2563
|
+
};
|
2528
2564
|
} | undefined;
|
2529
2565
|
} | undefined;
|
2530
2566
|
}>>;
|
@@ -2548,6 +2584,37 @@ export declare const cxLogContract: {
|
|
2548
2584
|
didNumber: z.ZodNullable<z.ZodString>;
|
2549
2585
|
agentRingTime: z.ZodNullable<z.ZodNumber>;
|
2550
2586
|
uploadId: z.ZodNullable<z.ZodString>;
|
2587
|
+
upload: z.ZodOptional<z.ZodObject<{
|
2588
|
+
id: z.ZodString;
|
2589
|
+
createdAt: z.ZodDate;
|
2590
|
+
updatedAt: z.ZodDate;
|
2591
|
+
deletedAt: z.ZodNullable<z.ZodDate>;
|
2592
|
+
bucketName: z.ZodString;
|
2593
|
+
fileName: z.ZodString;
|
2594
|
+
fileSize: z.ZodNumber;
|
2595
|
+
fileKey: z.ZodString;
|
2596
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
2597
|
+
}, "strip", z.ZodTypeAny, {
|
2598
|
+
id: string;
|
2599
|
+
createdAt: Date;
|
2600
|
+
updatedAt: Date;
|
2601
|
+
deletedAt: Date | null;
|
2602
|
+
fileName: string;
|
2603
|
+
fileKey: string;
|
2604
|
+
bucketName: string;
|
2605
|
+
fileSize: number;
|
2606
|
+
fileUrl: string | null;
|
2607
|
+
}, {
|
2608
|
+
id: string;
|
2609
|
+
createdAt: Date;
|
2610
|
+
updatedAt: Date;
|
2611
|
+
deletedAt: Date | null;
|
2612
|
+
fileName: string;
|
2613
|
+
fileKey: string;
|
2614
|
+
bucketName: string;
|
2615
|
+
fileSize: number;
|
2616
|
+
fileUrl: string | null;
|
2617
|
+
}>>;
|
2551
2618
|
serialNumber: z.ZodNullable<z.ZodString>;
|
2552
2619
|
extensionId: z.ZodNullable<z.ZodString>;
|
2553
2620
|
telephonyQueueId: z.ZodNullable<z.ZodString>;
|
@@ -2576,6 +2643,17 @@ export declare const cxLogContract: {
|
|
2576
2643
|
serialNumber: string | null;
|
2577
2644
|
telephonyQueueId: string | null;
|
2578
2645
|
contactId: string | null;
|
2646
|
+
upload?: {
|
2647
|
+
id: string;
|
2648
|
+
createdAt: Date;
|
2649
|
+
updatedAt: Date;
|
2650
|
+
deletedAt: Date | null;
|
2651
|
+
fileName: string;
|
2652
|
+
fileKey: string;
|
2653
|
+
bucketName: string;
|
2654
|
+
fileSize: number;
|
2655
|
+
fileUrl: string | null;
|
2656
|
+
} | undefined;
|
2579
2657
|
}, {
|
2580
2658
|
type: string;
|
2581
2659
|
id: string;
|
@@ -2600,6 +2678,17 @@ export declare const cxLogContract: {
|
|
2600
2678
|
serialNumber: string | null;
|
2601
2679
|
telephonyQueueId: string | null;
|
2602
2680
|
contactId: string | null;
|
2681
|
+
upload?: {
|
2682
|
+
id: string;
|
2683
|
+
createdAt: Date;
|
2684
|
+
updatedAt: Date;
|
2685
|
+
deletedAt: Date | null;
|
2686
|
+
fileName: string;
|
2687
|
+
fileKey: string;
|
2688
|
+
bucketName: string;
|
2689
|
+
fileSize: number;
|
2690
|
+
fileUrl: string | null;
|
2691
|
+
} | undefined;
|
2603
2692
|
}>>;
|
2604
2693
|
queue: z.ZodNullable<z.ZodObject<{
|
2605
2694
|
queueName: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
@@ -2908,6 +2997,7 @@ export declare const cxLogContract: {
|
|
2908
2997
|
fileName: z.ZodString;
|
2909
2998
|
fileSize: z.ZodNumber;
|
2910
2999
|
fileKey: z.ZodString;
|
3000
|
+
fileUrl: z.ZodNullable<z.ZodString>;
|
2911
3001
|
}, "strip", z.ZodTypeAny, {
|
2912
3002
|
id: string;
|
2913
3003
|
createdAt: Date;
|
@@ -2917,6 +3007,7 @@ export declare const cxLogContract: {
|
|
2917
3007
|
fileKey: string;
|
2918
3008
|
bucketName: string;
|
2919
3009
|
fileSize: number;
|
3010
|
+
fileUrl: string | null;
|
2920
3011
|
}, {
|
2921
3012
|
id: string;
|
2922
3013
|
createdAt: Date;
|
@@ -2926,6 +3017,7 @@ export declare const cxLogContract: {
|
|
2926
3017
|
fileKey: string;
|
2927
3018
|
bucketName: string;
|
2928
3019
|
fileSize: number;
|
3020
|
+
fileUrl: string | null;
|
2929
3021
|
}>;
|
2930
3022
|
}, "strip", z.ZodTypeAny, {
|
2931
3023
|
id: string;
|
@@ -2942,6 +3034,7 @@ export declare const cxLogContract: {
|
|
2942
3034
|
fileKey: string;
|
2943
3035
|
bucketName: string;
|
2944
3036
|
fileSize: number;
|
3037
|
+
fileUrl: string | null;
|
2945
3038
|
};
|
2946
3039
|
}, {
|
2947
3040
|
id: string;
|
@@ -2958,6 +3051,7 @@ export declare const cxLogContract: {
|
|
2958
3051
|
fileKey: string;
|
2959
3052
|
bucketName: string;
|
2960
3053
|
fileSize: number;
|
3054
|
+
fileUrl: string | null;
|
2961
3055
|
};
|
2962
3056
|
}>, "many">;
|
2963
3057
|
}, "strip", z.ZodTypeAny, {
|
@@ -2998,6 +3092,7 @@ export declare const cxLogContract: {
|
|
2998
3092
|
fileKey: string;
|
2999
3093
|
bucketName: string;
|
3000
3094
|
fileSize: number;
|
3095
|
+
fileUrl: string | null;
|
3001
3096
|
};
|
3002
3097
|
}[];
|
3003
3098
|
}, {
|
@@ -3038,6 +3133,7 @@ export declare const cxLogContract: {
|
|
3038
3133
|
fileKey: string;
|
3039
3134
|
bucketName: string;
|
3040
3135
|
fileSize: number;
|
3136
|
+
fileUrl: string | null;
|
3041
3137
|
};
|
3042
3138
|
}[];
|
3043
3139
|
}>, "many">;
|
@@ -3191,6 +3287,7 @@ export declare const cxLogContract: {
|
|
3191
3287
|
fileKey: string;
|
3192
3288
|
bucketName: string;
|
3193
3289
|
fileSize: number;
|
3290
|
+
fileUrl: string | null;
|
3194
3291
|
};
|
3195
3292
|
}[];
|
3196
3293
|
}[];
|
@@ -3292,6 +3389,7 @@ export declare const cxLogContract: {
|
|
3292
3389
|
fileKey: string;
|
3293
3390
|
bucketName: string;
|
3294
3391
|
fileSize: number;
|
3392
|
+
fileUrl: string | null;
|
3295
3393
|
};
|
3296
3394
|
}[];
|
3297
3395
|
}[];
|
@@ -3428,7 +3526,7 @@ export declare const cxLogContract: {
|
|
3428
3526
|
displayName: string;
|
3429
3527
|
}[];
|
3430
3528
|
}>, "many">;
|
3431
|
-
extension: z.
|
3529
|
+
extension: z.ZodObject<{
|
3432
3530
|
id: z.ZodString;
|
3433
3531
|
createdAt: z.ZodDate;
|
3434
3532
|
updatedAt: z.ZodDate;
|
@@ -3436,6 +3534,7 @@ export declare const cxLogContract: {
|
|
3436
3534
|
userId: z.ZodNullable<z.ZodString>;
|
3437
3535
|
sipServerUrl: z.ZodString;
|
3438
3536
|
sipUserName: z.ZodString;
|
3537
|
+
webphoneLoginUser: z.ZodString;
|
3439
3538
|
extensionId: z.ZodNumber;
|
3440
3539
|
extensionName: z.ZodString;
|
3441
3540
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -3447,6 +3546,7 @@ export declare const cxLogContract: {
|
|
3447
3546
|
userId: string | null;
|
3448
3547
|
sipServerUrl: string;
|
3449
3548
|
sipUserName: string;
|
3549
|
+
webphoneLoginUser: string;
|
3450
3550
|
extensionId: number;
|
3451
3551
|
extensionName: string;
|
3452
3552
|
telephonySignature: string | null;
|
@@ -3458,10 +3558,11 @@ export declare const cxLogContract: {
|
|
3458
3558
|
userId: string | null;
|
3459
3559
|
sipServerUrl: string;
|
3460
3560
|
sipUserName: string;
|
3561
|
+
webphoneLoginUser: string;
|
3461
3562
|
extensionId: number;
|
3462
3563
|
extensionName: string;
|
3463
3564
|
telephonySignature: string | null;
|
3464
|
-
}
|
3565
|
+
}>;
|
3465
3566
|
}, "strip", z.ZodTypeAny, {
|
3466
3567
|
id: string;
|
3467
3568
|
address: string | null;
|
@@ -3492,7 +3593,7 @@ export declare const cxLogContract: {
|
|
3492
3593
|
displayName: string;
|
3493
3594
|
}[];
|
3494
3595
|
}[];
|
3495
|
-
extension
|
3596
|
+
extension: {
|
3496
3597
|
id: string;
|
3497
3598
|
createdAt: Date;
|
3498
3599
|
updatedAt: Date;
|
@@ -3500,10 +3601,11 @@ export declare const cxLogContract: {
|
|
3500
3601
|
userId: string | null;
|
3501
3602
|
sipServerUrl: string;
|
3502
3603
|
sipUserName: string;
|
3604
|
+
webphoneLoginUser: string;
|
3503
3605
|
extensionId: number;
|
3504
3606
|
extensionName: string;
|
3505
3607
|
telephonySignature: string | null;
|
3506
|
-
}
|
3608
|
+
};
|
3507
3609
|
}, {
|
3508
3610
|
id: string;
|
3509
3611
|
address: string | null;
|
@@ -3534,7 +3636,7 @@ export declare const cxLogContract: {
|
|
3534
3636
|
displayName: string;
|
3535
3637
|
}[];
|
3536
3638
|
}[];
|
3537
|
-
extension
|
3639
|
+
extension: {
|
3538
3640
|
id: string;
|
3539
3641
|
createdAt: Date;
|
3540
3642
|
updatedAt: Date;
|
@@ -3542,10 +3644,11 @@ export declare const cxLogContract: {
|
|
3542
3644
|
userId: string | null;
|
3543
3645
|
sipServerUrl: string;
|
3544
3646
|
sipUserName: string;
|
3647
|
+
webphoneLoginUser: string;
|
3545
3648
|
extensionId: number;
|
3546
3649
|
extensionName: string;
|
3547
3650
|
telephonySignature: string | null;
|
3548
|
-
}
|
3651
|
+
};
|
3549
3652
|
}>>;
|
3550
3653
|
}, "strip", z.ZodTypeAny, {
|
3551
3654
|
id: string;
|
@@ -3601,6 +3704,7 @@ export declare const cxLogContract: {
|
|
3601
3704
|
fileKey: string;
|
3602
3705
|
bucketName: string;
|
3603
3706
|
fileSize: number;
|
3707
|
+
fileUrl: string | null;
|
3604
3708
|
};
|
3605
3709
|
}[];
|
3606
3710
|
}[];
|
@@ -3727,7 +3831,7 @@ export declare const cxLogContract: {
|
|
3727
3831
|
displayName: string;
|
3728
3832
|
}[];
|
3729
3833
|
}[];
|
3730
|
-
extension
|
3834
|
+
extension: {
|
3731
3835
|
id: string;
|
3732
3836
|
createdAt: Date;
|
3733
3837
|
updatedAt: Date;
|
@@ -3735,10 +3839,11 @@ export declare const cxLogContract: {
|
|
3735
3839
|
userId: string | null;
|
3736
3840
|
sipServerUrl: string;
|
3737
3841
|
sipUserName: string;
|
3842
|
+
webphoneLoginUser: string;
|
3738
3843
|
extensionId: number;
|
3739
3844
|
extensionName: string;
|
3740
3845
|
telephonySignature: string | null;
|
3741
|
-
}
|
3846
|
+
};
|
3742
3847
|
};
|
3743
3848
|
firstResponseTime: number;
|
3744
3849
|
lastMessage: string;
|
@@ -3806,6 +3911,7 @@ export declare const cxLogContract: {
|
|
3806
3911
|
fileKey: string;
|
3807
3912
|
bucketName: string;
|
3808
3913
|
fileSize: number;
|
3914
|
+
fileUrl: string | null;
|
3809
3915
|
};
|
3810
3916
|
}[];
|
3811
3917
|
}[];
|
@@ -3894,7 +4000,7 @@ export declare const cxLogContract: {
|
|
3894
4000
|
displayName: string;
|
3895
4001
|
}[];
|
3896
4002
|
}[];
|
3897
|
-
extension
|
4003
|
+
extension: {
|
3898
4004
|
id: string;
|
3899
4005
|
createdAt: Date;
|
3900
4006
|
updatedAt: Date;
|
@@ -3902,10 +4008,11 @@ export declare const cxLogContract: {
|
|
3902
4008
|
userId: string | null;
|
3903
4009
|
sipServerUrl: string;
|
3904
4010
|
sipUserName: string;
|
4011
|
+
webphoneLoginUser: string;
|
3905
4012
|
extensionId: number;
|
3906
4013
|
extensionName: string;
|
3907
4014
|
telephonySignature: string | null;
|
3908
|
-
}
|
4015
|
+
};
|
3909
4016
|
};
|
3910
4017
|
channel?: {
|
3911
4018
|
id?: string | undefined;
|
@@ -3956,7 +4063,7 @@ export declare const cxLogContract: {
|
|
3956
4063
|
displayName: string;
|
3957
4064
|
}[];
|
3958
4065
|
}[];
|
3959
|
-
extension
|
4066
|
+
extension: {
|
3960
4067
|
id: string;
|
3961
4068
|
createdAt: Date;
|
3962
4069
|
updatedAt: Date;
|
@@ -3964,10 +4071,11 @@ export declare const cxLogContract: {
|
|
3964
4071
|
userId: string | null;
|
3965
4072
|
sipServerUrl: string;
|
3966
4073
|
sipUserName: string;
|
4074
|
+
webphoneLoginUser: string;
|
3967
4075
|
extensionId: number;
|
3968
4076
|
extensionName: string;
|
3969
4077
|
telephonySignature: string | null;
|
3970
|
-
}
|
4078
|
+
};
|
3971
4079
|
} | undefined;
|
3972
4080
|
} | undefined;
|
3973
4081
|
} | null;
|
@@ -3995,6 +4103,17 @@ export declare const cxLogContract: {
|
|
3995
4103
|
serialNumber: string | null;
|
3996
4104
|
telephonyQueueId: string | null;
|
3997
4105
|
contactId: string | null;
|
4106
|
+
upload?: {
|
4107
|
+
id: string;
|
4108
|
+
createdAt: Date;
|
4109
|
+
updatedAt: Date;
|
4110
|
+
deletedAt: Date | null;
|
4111
|
+
fileName: string;
|
4112
|
+
fileKey: string;
|
4113
|
+
bucketName: string;
|
4114
|
+
fileSize: number;
|
4115
|
+
fileUrl: string | null;
|
4116
|
+
} | undefined;
|
3998
4117
|
} | null;
|
3999
4118
|
queue: {
|
4000
4119
|
queueName?: string | null | undefined;
|
@@ -4029,7 +4148,7 @@ export declare const cxLogContract: {
|
|
4029
4148
|
displayName: string;
|
4030
4149
|
}[];
|
4031
4150
|
}[];
|
4032
|
-
extension
|
4151
|
+
extension: {
|
4033
4152
|
id: string;
|
4034
4153
|
createdAt: Date;
|
4035
4154
|
updatedAt: Date;
|
@@ -4037,10 +4156,11 @@ export declare const cxLogContract: {
|
|
4037
4156
|
userId: string | null;
|
4038
4157
|
sipServerUrl: string;
|
4039
4158
|
sipUserName: string;
|
4159
|
+
webphoneLoginUser: string;
|
4040
4160
|
extensionId: number;
|
4041
4161
|
extensionName: string;
|
4042
4162
|
telephonySignature: string | null;
|
4043
|
-
}
|
4163
|
+
};
|
4044
4164
|
} | null;
|
4045
4165
|
}, {
|
4046
4166
|
id: string;
|
@@ -4096,6 +4216,7 @@ export declare const cxLogContract: {
|
|
4096
4216
|
fileKey: string;
|
4097
4217
|
bucketName: string;
|
4098
4218
|
fileSize: number;
|
4219
|
+
fileUrl: string | null;
|
4099
4220
|
};
|
4100
4221
|
}[];
|
4101
4222
|
}[];
|
@@ -4222,7 +4343,7 @@ export declare const cxLogContract: {
|
|
4222
4343
|
displayName: string;
|
4223
4344
|
}[];
|
4224
4345
|
}[];
|
4225
|
-
extension
|
4346
|
+
extension: {
|
4226
4347
|
id: string;
|
4227
4348
|
createdAt: Date;
|
4228
4349
|
updatedAt: Date;
|
@@ -4230,10 +4351,11 @@ export declare const cxLogContract: {
|
|
4230
4351
|
userId: string | null;
|
4231
4352
|
sipServerUrl: string;
|
4232
4353
|
sipUserName: string;
|
4354
|
+
webphoneLoginUser: string;
|
4233
4355
|
extensionId: number;
|
4234
4356
|
extensionName: string;
|
4235
4357
|
telephonySignature: string | null;
|
4236
|
-
}
|
4358
|
+
};
|
4237
4359
|
};
|
4238
4360
|
firstResponseTime: number;
|
4239
4361
|
lastMessage: string;
|
@@ -4301,6 +4423,7 @@ export declare const cxLogContract: {
|
|
4301
4423
|
fileKey: string;
|
4302
4424
|
bucketName: string;
|
4303
4425
|
fileSize: number;
|
4426
|
+
fileUrl: string | null;
|
4304
4427
|
};
|
4305
4428
|
}[];
|
4306
4429
|
}[];
|
@@ -4389,7 +4512,7 @@ export declare const cxLogContract: {
|
|
4389
4512
|
displayName: string;
|
4390
4513
|
}[];
|
4391
4514
|
}[];
|
4392
|
-
extension
|
4515
|
+
extension: {
|
4393
4516
|
id: string;
|
4394
4517
|
createdAt: Date;
|
4395
4518
|
updatedAt: Date;
|
@@ -4397,10 +4520,11 @@ export declare const cxLogContract: {
|
|
4397
4520
|
userId: string | null;
|
4398
4521
|
sipServerUrl: string;
|
4399
4522
|
sipUserName: string;
|
4523
|
+
webphoneLoginUser: string;
|
4400
4524
|
extensionId: number;
|
4401
4525
|
extensionName: string;
|
4402
4526
|
telephonySignature: string | null;
|
4403
|
-
}
|
4527
|
+
};
|
4404
4528
|
};
|
4405
4529
|
channel?: {
|
4406
4530
|
id?: string | undefined;
|
@@ -4451,7 +4575,7 @@ export declare const cxLogContract: {
|
|
4451
4575
|
displayName: string;
|
4452
4576
|
}[];
|
4453
4577
|
}[];
|
4454
|
-
extension
|
4578
|
+
extension: {
|
4455
4579
|
id: string;
|
4456
4580
|
createdAt: Date;
|
4457
4581
|
updatedAt: Date;
|
@@ -4459,10 +4583,11 @@ export declare const cxLogContract: {
|
|
4459
4583
|
userId: string | null;
|
4460
4584
|
sipServerUrl: string;
|
4461
4585
|
sipUserName: string;
|
4586
|
+
webphoneLoginUser: string;
|
4462
4587
|
extensionId: number;
|
4463
4588
|
extensionName: string;
|
4464
4589
|
telephonySignature: string | null;
|
4465
|
-
}
|
4590
|
+
};
|
4466
4591
|
} | undefined;
|
4467
4592
|
} | undefined;
|
4468
4593
|
} | null;
|
@@ -4490,6 +4615,17 @@ export declare const cxLogContract: {
|
|
4490
4615
|
serialNumber: string | null;
|
4491
4616
|
telephonyQueueId: string | null;
|
4492
4617
|
contactId: string | null;
|
4618
|
+
upload?: {
|
4619
|
+
id: string;
|
4620
|
+
createdAt: Date;
|
4621
|
+
updatedAt: Date;
|
4622
|
+
deletedAt: Date | null;
|
4623
|
+
fileName: string;
|
4624
|
+
fileKey: string;
|
4625
|
+
bucketName: string;
|
4626
|
+
fileSize: number;
|
4627
|
+
fileUrl: string | null;
|
4628
|
+
} | undefined;
|
4493
4629
|
} | null;
|
4494
4630
|
queue: {
|
4495
4631
|
queueName?: string | null | undefined;
|
@@ -4524,7 +4660,7 @@ export declare const cxLogContract: {
|
|
4524
4660
|
displayName: string;
|
4525
4661
|
}[];
|
4526
4662
|
}[];
|
4527
|
-
extension
|
4663
|
+
extension: {
|
4528
4664
|
id: string;
|
4529
4665
|
createdAt: Date;
|
4530
4666
|
updatedAt: Date;
|
@@ -4532,10 +4668,11 @@ export declare const cxLogContract: {
|
|
4532
4668
|
userId: string | null;
|
4533
4669
|
sipServerUrl: string;
|
4534
4670
|
sipUserName: string;
|
4671
|
+
webphoneLoginUser: string;
|
4535
4672
|
extensionId: number;
|
4536
4673
|
extensionName: string;
|
4537
4674
|
telephonySignature: string | null;
|
4538
|
-
}
|
4675
|
+
};
|
4539
4676
|
} | null;
|
4540
4677
|
}>, "many">;
|
4541
4678
|
}, "strip", z.ZodTypeAny, {
|
@@ -4597,6 +4734,7 @@ export declare const cxLogContract: {
|
|
4597
4734
|
fileKey: string;
|
4598
4735
|
bucketName: string;
|
4599
4736
|
fileSize: number;
|
4737
|
+
fileUrl: string | null;
|
4600
4738
|
};
|
4601
4739
|
}[];
|
4602
4740
|
}[];
|
@@ -4723,7 +4861,7 @@ export declare const cxLogContract: {
|
|
4723
4861
|
displayName: string;
|
4724
4862
|
}[];
|
4725
4863
|
}[];
|
4726
|
-
extension
|
4864
|
+
extension: {
|
4727
4865
|
id: string;
|
4728
4866
|
createdAt: Date;
|
4729
4867
|
updatedAt: Date;
|
@@ -4731,10 +4869,11 @@ export declare const cxLogContract: {
|
|
4731
4869
|
userId: string | null;
|
4732
4870
|
sipServerUrl: string;
|
4733
4871
|
sipUserName: string;
|
4872
|
+
webphoneLoginUser: string;
|
4734
4873
|
extensionId: number;
|
4735
4874
|
extensionName: string;
|
4736
4875
|
telephonySignature: string | null;
|
4737
|
-
}
|
4876
|
+
};
|
4738
4877
|
};
|
4739
4878
|
firstResponseTime: number;
|
4740
4879
|
lastMessage: string;
|
@@ -4802,6 +4941,7 @@ export declare const cxLogContract: {
|
|
4802
4941
|
fileKey: string;
|
4803
4942
|
bucketName: string;
|
4804
4943
|
fileSize: number;
|
4944
|
+
fileUrl: string | null;
|
4805
4945
|
};
|
4806
4946
|
}[];
|
4807
4947
|
}[];
|
@@ -4890,7 +5030,7 @@ export declare const cxLogContract: {
|
|
4890
5030
|
displayName: string;
|
4891
5031
|
}[];
|
4892
5032
|
}[];
|
4893
|
-
extension
|
5033
|
+
extension: {
|
4894
5034
|
id: string;
|
4895
5035
|
createdAt: Date;
|
4896
5036
|
updatedAt: Date;
|
@@ -4898,10 +5038,11 @@ export declare const cxLogContract: {
|
|
4898
5038
|
userId: string | null;
|
4899
5039
|
sipServerUrl: string;
|
4900
5040
|
sipUserName: string;
|
5041
|
+
webphoneLoginUser: string;
|
4901
5042
|
extensionId: number;
|
4902
5043
|
extensionName: string;
|
4903
5044
|
telephonySignature: string | null;
|
4904
|
-
}
|
5045
|
+
};
|
4905
5046
|
};
|
4906
5047
|
channel?: {
|
4907
5048
|
id?: string | undefined;
|
@@ -4952,7 +5093,7 @@ export declare const cxLogContract: {
|
|
4952
5093
|
displayName: string;
|
4953
5094
|
}[];
|
4954
5095
|
}[];
|
4955
|
-
extension
|
5096
|
+
extension: {
|
4956
5097
|
id: string;
|
4957
5098
|
createdAt: Date;
|
4958
5099
|
updatedAt: Date;
|
@@ -4960,10 +5101,11 @@ export declare const cxLogContract: {
|
|
4960
5101
|
userId: string | null;
|
4961
5102
|
sipServerUrl: string;
|
4962
5103
|
sipUserName: string;
|
5104
|
+
webphoneLoginUser: string;
|
4963
5105
|
extensionId: number;
|
4964
5106
|
extensionName: string;
|
4965
5107
|
telephonySignature: string | null;
|
4966
|
-
}
|
5108
|
+
};
|
4967
5109
|
} | undefined;
|
4968
5110
|
} | undefined;
|
4969
5111
|
} | null;
|
@@ -4991,6 +5133,17 @@ export declare const cxLogContract: {
|
|
4991
5133
|
serialNumber: string | null;
|
4992
5134
|
telephonyQueueId: string | null;
|
4993
5135
|
contactId: string | null;
|
5136
|
+
upload?: {
|
5137
|
+
id: string;
|
5138
|
+
createdAt: Date;
|
5139
|
+
updatedAt: Date;
|
5140
|
+
deletedAt: Date | null;
|
5141
|
+
fileName: string;
|
5142
|
+
fileKey: string;
|
5143
|
+
bucketName: string;
|
5144
|
+
fileSize: number;
|
5145
|
+
fileUrl: string | null;
|
5146
|
+
} | undefined;
|
4994
5147
|
} | null;
|
4995
5148
|
queue: {
|
4996
5149
|
queueName?: string | null | undefined;
|
@@ -5025,7 +5178,7 @@ export declare const cxLogContract: {
|
|
5025
5178
|
displayName: string;
|
5026
5179
|
}[];
|
5027
5180
|
}[];
|
5028
|
-
extension
|
5181
|
+
extension: {
|
5029
5182
|
id: string;
|
5030
5183
|
createdAt: Date;
|
5031
5184
|
updatedAt: Date;
|
@@ -5033,10 +5186,11 @@ export declare const cxLogContract: {
|
|
5033
5186
|
userId: string | null;
|
5034
5187
|
sipServerUrl: string;
|
5035
5188
|
sipUserName: string;
|
5189
|
+
webphoneLoginUser: string;
|
5036
5190
|
extensionId: number;
|
5037
5191
|
extensionName: string;
|
5038
5192
|
telephonySignature: string | null;
|
5039
|
-
}
|
5193
|
+
};
|
5040
5194
|
} | null;
|
5041
5195
|
}[];
|
5042
5196
|
}, {
|
@@ -5098,6 +5252,7 @@ export declare const cxLogContract: {
|
|
5098
5252
|
fileKey: string;
|
5099
5253
|
bucketName: string;
|
5100
5254
|
fileSize: number;
|
5255
|
+
fileUrl: string | null;
|
5101
5256
|
};
|
5102
5257
|
}[];
|
5103
5258
|
}[];
|
@@ -5224,7 +5379,7 @@ export declare const cxLogContract: {
|
|
5224
5379
|
displayName: string;
|
5225
5380
|
}[];
|
5226
5381
|
}[];
|
5227
|
-
extension
|
5382
|
+
extension: {
|
5228
5383
|
id: string;
|
5229
5384
|
createdAt: Date;
|
5230
5385
|
updatedAt: Date;
|
@@ -5232,10 +5387,11 @@ export declare const cxLogContract: {
|
|
5232
5387
|
userId: string | null;
|
5233
5388
|
sipServerUrl: string;
|
5234
5389
|
sipUserName: string;
|
5390
|
+
webphoneLoginUser: string;
|
5235
5391
|
extensionId: number;
|
5236
5392
|
extensionName: string;
|
5237
5393
|
telephonySignature: string | null;
|
5238
|
-
}
|
5394
|
+
};
|
5239
5395
|
};
|
5240
5396
|
firstResponseTime: number;
|
5241
5397
|
lastMessage: string;
|
@@ -5303,6 +5459,7 @@ export declare const cxLogContract: {
|
|
5303
5459
|
fileKey: string;
|
5304
5460
|
bucketName: string;
|
5305
5461
|
fileSize: number;
|
5462
|
+
fileUrl: string | null;
|
5306
5463
|
};
|
5307
5464
|
}[];
|
5308
5465
|
}[];
|
@@ -5391,7 +5548,7 @@ export declare const cxLogContract: {
|
|
5391
5548
|
displayName: string;
|
5392
5549
|
}[];
|
5393
5550
|
}[];
|
5394
|
-
extension
|
5551
|
+
extension: {
|
5395
5552
|
id: string;
|
5396
5553
|
createdAt: Date;
|
5397
5554
|
updatedAt: Date;
|
@@ -5399,10 +5556,11 @@ export declare const cxLogContract: {
|
|
5399
5556
|
userId: string | null;
|
5400
5557
|
sipServerUrl: string;
|
5401
5558
|
sipUserName: string;
|
5559
|
+
webphoneLoginUser: string;
|
5402
5560
|
extensionId: number;
|
5403
5561
|
extensionName: string;
|
5404
5562
|
telephonySignature: string | null;
|
5405
|
-
}
|
5563
|
+
};
|
5406
5564
|
};
|
5407
5565
|
channel?: {
|
5408
5566
|
id?: string | undefined;
|
@@ -5453,7 +5611,7 @@ export declare const cxLogContract: {
|
|
5453
5611
|
displayName: string;
|
5454
5612
|
}[];
|
5455
5613
|
}[];
|
5456
|
-
extension
|
5614
|
+
extension: {
|
5457
5615
|
id: string;
|
5458
5616
|
createdAt: Date;
|
5459
5617
|
updatedAt: Date;
|
@@ -5461,10 +5619,11 @@ export declare const cxLogContract: {
|
|
5461
5619
|
userId: string | null;
|
5462
5620
|
sipServerUrl: string;
|
5463
5621
|
sipUserName: string;
|
5622
|
+
webphoneLoginUser: string;
|
5464
5623
|
extensionId: number;
|
5465
5624
|
extensionName: string;
|
5466
5625
|
telephonySignature: string | null;
|
5467
|
-
}
|
5626
|
+
};
|
5468
5627
|
} | undefined;
|
5469
5628
|
} | undefined;
|
5470
5629
|
} | null;
|
@@ -5492,6 +5651,17 @@ export declare const cxLogContract: {
|
|
5492
5651
|
serialNumber: string | null;
|
5493
5652
|
telephonyQueueId: string | null;
|
5494
5653
|
contactId: string | null;
|
5654
|
+
upload?: {
|
5655
|
+
id: string;
|
5656
|
+
createdAt: Date;
|
5657
|
+
updatedAt: Date;
|
5658
|
+
deletedAt: Date | null;
|
5659
|
+
fileName: string;
|
5660
|
+
fileKey: string;
|
5661
|
+
bucketName: string;
|
5662
|
+
fileSize: number;
|
5663
|
+
fileUrl: string | null;
|
5664
|
+
} | undefined;
|
5495
5665
|
} | null;
|
5496
5666
|
queue: {
|
5497
5667
|
queueName?: string | null | undefined;
|
@@ -5526,7 +5696,7 @@ export declare const cxLogContract: {
|
|
5526
5696
|
displayName: string;
|
5527
5697
|
}[];
|
5528
5698
|
}[];
|
5529
|
-
extension
|
5699
|
+
extension: {
|
5530
5700
|
id: string;
|
5531
5701
|
createdAt: Date;
|
5532
5702
|
updatedAt: Date;
|
@@ -5534,10 +5704,11 @@ export declare const cxLogContract: {
|
|
5534
5704
|
userId: string | null;
|
5535
5705
|
sipServerUrl: string;
|
5536
5706
|
sipUserName: string;
|
5707
|
+
webphoneLoginUser: string;
|
5537
5708
|
extensionId: number;
|
5538
5709
|
extensionName: string;
|
5539
5710
|
telephonySignature: string | null;
|
5540
|
-
}
|
5711
|
+
};
|
5541
5712
|
} | null;
|
5542
5713
|
}[];
|
5543
5714
|
}>;
|