@kl1/contracts 1.0.35 → 1.0.37

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 (61) hide show
  1. package/dist/index.js +976 -932
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +975 -932
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +17 -10
  6. package/dist/src/activity-log/index.d.ts.map +1 -1
  7. package/dist/src/activity-log/schema.d.ts +17 -10
  8. package/dist/src/activity-log/schema.d.ts.map +1 -1
  9. package/dist/src/auth/index.d.ts +17 -10
  10. package/dist/src/auth/index.d.ts.map +1 -1
  11. package/dist/src/channel/index.d.ts +92 -56
  12. package/dist/src/channel/index.d.ts.map +1 -1
  13. package/dist/src/channel/schema.d.ts +18 -12
  14. package/dist/src/channel/schema.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +1068 -656
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/chat/schema.d.ts +183 -110
  18. package/dist/src/chat/schema.d.ts.map +1 -1
  19. package/dist/src/chat/validation.d.ts +306 -188
  20. package/dist/src/chat/validation.d.ts.map +1 -1
  21. package/dist/src/comment/index.d.ts +965 -88
  22. package/dist/src/comment/index.d.ts.map +1 -1
  23. package/dist/src/comment/schema.d.ts +275 -24
  24. package/dist/src/comment/schema.d.ts.map +1 -1
  25. package/dist/src/contract.d.ts +10243 -6747
  26. package/dist/src/contract.d.ts.map +1 -1
  27. package/dist/src/cx-log/index.d.ts +116 -72
  28. package/dist/src/cx-log/index.d.ts.map +1 -1
  29. package/dist/src/cx-log/schema.d.ts +92 -56
  30. package/dist/src/cx-log/schema.d.ts.map +1 -1
  31. package/dist/src/evaluate-form/index.d.ts +6 -6
  32. package/dist/src/evaluate-form/validation.d.ts +8 -8
  33. package/dist/src/extension/index.d.ts +29 -120
  34. package/dist/src/extension/index.d.ts.map +1 -1
  35. package/dist/src/extension/schema.d.ts +3 -0
  36. package/dist/src/extension/schema.d.ts.map +1 -1
  37. package/dist/src/extension/validation.d.ts +6 -0
  38. package/dist/src/extension/validation.d.ts.map +1 -1
  39. package/dist/src/messenger/index.d.ts +162 -100
  40. package/dist/src/messenger/index.d.ts.map +1 -1
  41. package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
  42. package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  43. package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
  44. package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  45. package/dist/src/telephony-extension/index.d.ts +2 -0
  46. package/dist/src/telephony-extension/index.d.ts.map +1 -1
  47. package/dist/src/ticket/index.d.ts +3794 -1641
  48. package/dist/src/ticket/index.d.ts.map +1 -1
  49. package/dist/src/ticket/schema.d.ts +177 -0
  50. package/dist/src/ticket/schema.d.ts.map +1 -1
  51. package/dist/src/user/index.d.ts +57 -34
  52. package/dist/src/user/index.d.ts.map +1 -1
  53. package/dist/src/user/schema.d.ts +11 -6
  54. package/dist/src/user/schema.d.ts.map +1 -1
  55. package/dist/src/user-presence-status-log/index.d.ts +12 -8
  56. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  57. package/dist/src/user-presence-status-log/schema.d.ts +17 -10
  58. package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
  59. package/dist/src/widget/index.d.ts +3 -13
  60. package/dist/src/widget/index.d.ts.map +1 -1
  61. package/package.json +1 -1
@@ -1309,7 +1309,7 @@ export declare const cxLogContract: {
1309
1309
  displayName: string;
1310
1310
  }[];
1311
1311
  }>, "many">;
1312
- extension: z.ZodOptional<z.ZodObject<{
1312
+ extension: z.ZodObject<{
1313
1313
  id: z.ZodString;
1314
1314
  createdAt: z.ZodDate;
1315
1315
  updatedAt: z.ZodDate;
@@ -1317,6 +1317,7 @@ export declare const cxLogContract: {
1317
1317
  userId: z.ZodNullable<z.ZodString>;
1318
1318
  sipServerUrl: z.ZodString;
1319
1319
  sipUserName: z.ZodString;
1320
+ webphoneLoginUser: z.ZodString;
1320
1321
  extensionId: z.ZodNumber;
1321
1322
  extensionName: z.ZodString;
1322
1323
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -1328,6 +1329,7 @@ export declare const cxLogContract: {
1328
1329
  userId: string | null;
1329
1330
  sipServerUrl: string;
1330
1331
  sipUserName: string;
1332
+ webphoneLoginUser: string;
1331
1333
  extensionId: number;
1332
1334
  extensionName: string;
1333
1335
  telephonySignature: string | null;
@@ -1339,10 +1341,11 @@ export declare const cxLogContract: {
1339
1341
  userId: string | null;
1340
1342
  sipServerUrl: string;
1341
1343
  sipUserName: string;
1344
+ webphoneLoginUser: string;
1342
1345
  extensionId: number;
1343
1346
  extensionName: string;
1344
1347
  telephonySignature: string | null;
1345
- }>>;
1348
+ }>;
1346
1349
  }, "strip", z.ZodTypeAny, {
1347
1350
  id: string;
1348
1351
  address: string | null;
@@ -1373,7 +1376,7 @@ export declare const cxLogContract: {
1373
1376
  displayName: string;
1374
1377
  }[];
1375
1378
  }[];
1376
- extension?: {
1379
+ extension: {
1377
1380
  id: string;
1378
1381
  createdAt: Date;
1379
1382
  updatedAt: Date;
@@ -1381,10 +1384,11 @@ export declare const cxLogContract: {
1381
1384
  userId: string | null;
1382
1385
  sipServerUrl: string;
1383
1386
  sipUserName: string;
1387
+ webphoneLoginUser: string;
1384
1388
  extensionId: number;
1385
1389
  extensionName: string;
1386
1390
  telephonySignature: string | null;
1387
- } | undefined;
1391
+ };
1388
1392
  }, {
1389
1393
  id: string;
1390
1394
  address: string | null;
@@ -1415,7 +1419,7 @@ export declare const cxLogContract: {
1415
1419
  displayName: string;
1416
1420
  }[];
1417
1421
  }[];
1418
- extension?: {
1422
+ extension: {
1419
1423
  id: string;
1420
1424
  createdAt: Date;
1421
1425
  updatedAt: Date;
@@ -1423,10 +1427,11 @@ export declare const cxLogContract: {
1423
1427
  userId: string | null;
1424
1428
  sipServerUrl: string;
1425
1429
  sipUserName: string;
1430
+ webphoneLoginUser: string;
1426
1431
  extensionId: number;
1427
1432
  extensionName: string;
1428
1433
  telephonySignature: string | null;
1429
- } | undefined;
1434
+ };
1430
1435
  }>;
1431
1436
  assignee: z.ZodObject<{
1432
1437
  id: z.ZodString;
@@ -1508,7 +1513,7 @@ export declare const cxLogContract: {
1508
1513
  displayName: string;
1509
1514
  }[];
1510
1515
  }>, "many">;
1511
- extension: z.ZodOptional<z.ZodObject<{
1516
+ extension: z.ZodObject<{
1512
1517
  id: z.ZodString;
1513
1518
  createdAt: z.ZodDate;
1514
1519
  updatedAt: z.ZodDate;
@@ -1516,6 +1521,7 @@ export declare const cxLogContract: {
1516
1521
  userId: z.ZodNullable<z.ZodString>;
1517
1522
  sipServerUrl: z.ZodString;
1518
1523
  sipUserName: z.ZodString;
1524
+ webphoneLoginUser: z.ZodString;
1519
1525
  extensionId: z.ZodNumber;
1520
1526
  extensionName: z.ZodString;
1521
1527
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -1527,6 +1533,7 @@ export declare const cxLogContract: {
1527
1533
  userId: string | null;
1528
1534
  sipServerUrl: string;
1529
1535
  sipUserName: string;
1536
+ webphoneLoginUser: string;
1530
1537
  extensionId: number;
1531
1538
  extensionName: string;
1532
1539
  telephonySignature: string | null;
@@ -1538,10 +1545,11 @@ export declare const cxLogContract: {
1538
1545
  userId: string | null;
1539
1546
  sipServerUrl: string;
1540
1547
  sipUserName: string;
1548
+ webphoneLoginUser: string;
1541
1549
  extensionId: number;
1542
1550
  extensionName: string;
1543
1551
  telephonySignature: string | null;
1544
- }>>;
1552
+ }>;
1545
1553
  }, "strip", z.ZodTypeAny, {
1546
1554
  id: string;
1547
1555
  address: string | null;
@@ -1572,7 +1580,7 @@ export declare const cxLogContract: {
1572
1580
  displayName: string;
1573
1581
  }[];
1574
1582
  }[];
1575
- extension?: {
1583
+ extension: {
1576
1584
  id: string;
1577
1585
  createdAt: Date;
1578
1586
  updatedAt: Date;
@@ -1580,10 +1588,11 @@ export declare const cxLogContract: {
1580
1588
  userId: string | null;
1581
1589
  sipServerUrl: string;
1582
1590
  sipUserName: string;
1591
+ webphoneLoginUser: string;
1583
1592
  extensionId: number;
1584
1593
  extensionName: string;
1585
1594
  telephonySignature: string | null;
1586
- } | undefined;
1595
+ };
1587
1596
  }, {
1588
1597
  id: string;
1589
1598
  address: string | null;
@@ -1614,7 +1623,7 @@ export declare const cxLogContract: {
1614
1623
  displayName: string;
1615
1624
  }[];
1616
1625
  }[];
1617
- extension?: {
1626
+ extension: {
1618
1627
  id: string;
1619
1628
  createdAt: Date;
1620
1629
  updatedAt: Date;
@@ -1622,10 +1631,11 @@ export declare const cxLogContract: {
1622
1631
  userId: string | null;
1623
1632
  sipServerUrl: string;
1624
1633
  sipUserName: string;
1634
+ webphoneLoginUser: string;
1625
1635
  extensionId: number;
1626
1636
  extensionName: string;
1627
1637
  telephonySignature: string | null;
1628
- } | undefined;
1638
+ };
1629
1639
  }>;
1630
1640
  channel: z.ZodOptional<z.ZodObject<{
1631
1641
  id: z.ZodOptional<z.ZodString>;
@@ -1736,7 +1746,7 @@ export declare const cxLogContract: {
1736
1746
  displayName: string;
1737
1747
  }[];
1738
1748
  }>, "many">;
1739
- extension: z.ZodOptional<z.ZodObject<{
1749
+ extension: z.ZodObject<{
1740
1750
  id: z.ZodString;
1741
1751
  createdAt: z.ZodDate;
1742
1752
  updatedAt: z.ZodDate;
@@ -1744,6 +1754,7 @@ export declare const cxLogContract: {
1744
1754
  userId: z.ZodNullable<z.ZodString>;
1745
1755
  sipServerUrl: z.ZodString;
1746
1756
  sipUserName: z.ZodString;
1757
+ webphoneLoginUser: z.ZodString;
1747
1758
  extensionId: z.ZodNumber;
1748
1759
  extensionName: z.ZodString;
1749
1760
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -1755,6 +1766,7 @@ export declare const cxLogContract: {
1755
1766
  userId: string | null;
1756
1767
  sipServerUrl: string;
1757
1768
  sipUserName: string;
1769
+ webphoneLoginUser: string;
1758
1770
  extensionId: number;
1759
1771
  extensionName: string;
1760
1772
  telephonySignature: string | null;
@@ -1766,10 +1778,11 @@ export declare const cxLogContract: {
1766
1778
  userId: string | null;
1767
1779
  sipServerUrl: string;
1768
1780
  sipUserName: string;
1781
+ webphoneLoginUser: string;
1769
1782
  extensionId: number;
1770
1783
  extensionName: string;
1771
1784
  telephonySignature: string | null;
1772
- }>>;
1785
+ }>;
1773
1786
  }, "strip", z.ZodTypeAny, {
1774
1787
  id: string;
1775
1788
  address: string | null;
@@ -1800,7 +1813,7 @@ export declare const cxLogContract: {
1800
1813
  displayName: string;
1801
1814
  }[];
1802
1815
  }[];
1803
- extension?: {
1816
+ extension: {
1804
1817
  id: string;
1805
1818
  createdAt: Date;
1806
1819
  updatedAt: Date;
@@ -1808,10 +1821,11 @@ export declare const cxLogContract: {
1808
1821
  userId: string | null;
1809
1822
  sipServerUrl: string;
1810
1823
  sipUserName: string;
1824
+ webphoneLoginUser: string;
1811
1825
  extensionId: number;
1812
1826
  extensionName: string;
1813
1827
  telephonySignature: string | null;
1814
- } | undefined;
1828
+ };
1815
1829
  }, {
1816
1830
  id: string;
1817
1831
  address: string | null;
@@ -1842,7 +1856,7 @@ export declare const cxLogContract: {
1842
1856
  displayName: string;
1843
1857
  }[];
1844
1858
  }[];
1845
- extension?: {
1859
+ extension: {
1846
1860
  id: string;
1847
1861
  createdAt: Date;
1848
1862
  updatedAt: Date;
@@ -1850,10 +1864,11 @@ export declare const cxLogContract: {
1850
1864
  userId: string | null;
1851
1865
  sipServerUrl: string;
1852
1866
  sipUserName: string;
1867
+ webphoneLoginUser: string;
1853
1868
  extensionId: number;
1854
1869
  extensionName: string;
1855
1870
  telephonySignature: string | null;
1856
- } | undefined;
1871
+ };
1857
1872
  }>>;
1858
1873
  }, "strip", z.ZodTypeAny, {
1859
1874
  id?: string | undefined;
@@ -1904,7 +1919,7 @@ export declare const cxLogContract: {
1904
1919
  displayName: string;
1905
1920
  }[];
1906
1921
  }[];
1907
- extension?: {
1922
+ extension: {
1908
1923
  id: string;
1909
1924
  createdAt: Date;
1910
1925
  updatedAt: Date;
@@ -1912,10 +1927,11 @@ export declare const cxLogContract: {
1912
1927
  userId: string | null;
1913
1928
  sipServerUrl: string;
1914
1929
  sipUserName: string;
1930
+ webphoneLoginUser: string;
1915
1931
  extensionId: number;
1916
1932
  extensionName: string;
1917
1933
  telephonySignature: string | null;
1918
- } | undefined;
1934
+ };
1919
1935
  } | undefined;
1920
1936
  }, {
1921
1937
  id?: string | undefined;
@@ -1966,7 +1982,7 @@ export declare const cxLogContract: {
1966
1982
  displayName: string;
1967
1983
  }[];
1968
1984
  }[];
1969
- extension?: {
1985
+ extension: {
1970
1986
  id: string;
1971
1987
  createdAt: Date;
1972
1988
  updatedAt: Date;
@@ -1974,10 +1990,11 @@ export declare const cxLogContract: {
1974
1990
  userId: string | null;
1975
1991
  sipServerUrl: string;
1976
1992
  sipUserName: string;
1993
+ webphoneLoginUser: string;
1977
1994
  extensionId: number;
1978
1995
  extensionName: string;
1979
1996
  telephonySignature: string | null;
1980
- } | undefined;
1997
+ };
1981
1998
  } | undefined;
1982
1999
  }>>;
1983
2000
  }, "strip", z.ZodTypeAny, {
@@ -2016,7 +2033,7 @@ export declare const cxLogContract: {
2016
2033
  displayName: string;
2017
2034
  }[];
2018
2035
  }[];
2019
- extension?: {
2036
+ extension: {
2020
2037
  id: string;
2021
2038
  createdAt: Date;
2022
2039
  updatedAt: Date;
@@ -2024,10 +2041,11 @@ export declare const cxLogContract: {
2024
2041
  userId: string | null;
2025
2042
  sipServerUrl: string;
2026
2043
  sipUserName: string;
2044
+ webphoneLoginUser: string;
2027
2045
  extensionId: number;
2028
2046
  extensionName: string;
2029
2047
  telephonySignature: string | null;
2030
- } | undefined;
2048
+ };
2031
2049
  };
2032
2050
  firstResponseTime: number;
2033
2051
  lastMessage: string;
@@ -2184,7 +2202,7 @@ export declare const cxLogContract: {
2184
2202
  displayName: string;
2185
2203
  }[];
2186
2204
  }[];
2187
- extension?: {
2205
+ extension: {
2188
2206
  id: string;
2189
2207
  createdAt: Date;
2190
2208
  updatedAt: Date;
@@ -2192,10 +2210,11 @@ export declare const cxLogContract: {
2192
2210
  userId: string | null;
2193
2211
  sipServerUrl: string;
2194
2212
  sipUserName: string;
2213
+ webphoneLoginUser: string;
2195
2214
  extensionId: number;
2196
2215
  extensionName: string;
2197
2216
  telephonySignature: string | null;
2198
- } | undefined;
2217
+ };
2199
2218
  };
2200
2219
  channel?: {
2201
2220
  id?: string | undefined;
@@ -2246,7 +2265,7 @@ export declare const cxLogContract: {
2246
2265
  displayName: string;
2247
2266
  }[];
2248
2267
  }[];
2249
- extension?: {
2268
+ extension: {
2250
2269
  id: string;
2251
2270
  createdAt: Date;
2252
2271
  updatedAt: Date;
@@ -2254,10 +2273,11 @@ export declare const cxLogContract: {
2254
2273
  userId: string | null;
2255
2274
  sipServerUrl: string;
2256
2275
  sipUserName: string;
2276
+ webphoneLoginUser: string;
2257
2277
  extensionId: number;
2258
2278
  extensionName: string;
2259
2279
  telephonySignature: string | null;
2260
- } | undefined;
2280
+ };
2261
2281
  } | undefined;
2262
2282
  } | undefined;
2263
2283
  }, {
@@ -2296,7 +2316,7 @@ export declare const cxLogContract: {
2296
2316
  displayName: string;
2297
2317
  }[];
2298
2318
  }[];
2299
- extension?: {
2319
+ extension: {
2300
2320
  id: string;
2301
2321
  createdAt: Date;
2302
2322
  updatedAt: Date;
@@ -2304,10 +2324,11 @@ export declare const cxLogContract: {
2304
2324
  userId: string | null;
2305
2325
  sipServerUrl: string;
2306
2326
  sipUserName: string;
2327
+ webphoneLoginUser: string;
2307
2328
  extensionId: number;
2308
2329
  extensionName: string;
2309
2330
  telephonySignature: string | null;
2310
- } | undefined;
2331
+ };
2311
2332
  };
2312
2333
  firstResponseTime: number;
2313
2334
  lastMessage: string;
@@ -2464,7 +2485,7 @@ export declare const cxLogContract: {
2464
2485
  displayName: string;
2465
2486
  }[];
2466
2487
  }[];
2467
- extension?: {
2488
+ extension: {
2468
2489
  id: string;
2469
2490
  createdAt: Date;
2470
2491
  updatedAt: Date;
@@ -2472,10 +2493,11 @@ export declare const cxLogContract: {
2472
2493
  userId: string | null;
2473
2494
  sipServerUrl: string;
2474
2495
  sipUserName: string;
2496
+ webphoneLoginUser: string;
2475
2497
  extensionId: number;
2476
2498
  extensionName: string;
2477
2499
  telephonySignature: string | null;
2478
- } | undefined;
2500
+ };
2479
2501
  };
2480
2502
  channel?: {
2481
2503
  id?: string | undefined;
@@ -2526,7 +2548,7 @@ export declare const cxLogContract: {
2526
2548
  displayName: string;
2527
2549
  }[];
2528
2550
  }[];
2529
- extension?: {
2551
+ extension: {
2530
2552
  id: string;
2531
2553
  createdAt: Date;
2532
2554
  updatedAt: Date;
@@ -2534,10 +2556,11 @@ export declare const cxLogContract: {
2534
2556
  userId: string | null;
2535
2557
  sipServerUrl: string;
2536
2558
  sipUserName: string;
2559
+ webphoneLoginUser: string;
2537
2560
  extensionId: number;
2538
2561
  extensionName: string;
2539
2562
  telephonySignature: string | null;
2540
- } | undefined;
2563
+ };
2541
2564
  } | undefined;
2542
2565
  } | undefined;
2543
2566
  }>>;
@@ -3503,7 +3526,7 @@ export declare const cxLogContract: {
3503
3526
  displayName: string;
3504
3527
  }[];
3505
3528
  }>, "many">;
3506
- extension: z.ZodOptional<z.ZodObject<{
3529
+ extension: z.ZodObject<{
3507
3530
  id: z.ZodString;
3508
3531
  createdAt: z.ZodDate;
3509
3532
  updatedAt: z.ZodDate;
@@ -3511,6 +3534,7 @@ export declare const cxLogContract: {
3511
3534
  userId: z.ZodNullable<z.ZodString>;
3512
3535
  sipServerUrl: z.ZodString;
3513
3536
  sipUserName: z.ZodString;
3537
+ webphoneLoginUser: z.ZodString;
3514
3538
  extensionId: z.ZodNumber;
3515
3539
  extensionName: z.ZodString;
3516
3540
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -3522,6 +3546,7 @@ export declare const cxLogContract: {
3522
3546
  userId: string | null;
3523
3547
  sipServerUrl: string;
3524
3548
  sipUserName: string;
3549
+ webphoneLoginUser: string;
3525
3550
  extensionId: number;
3526
3551
  extensionName: string;
3527
3552
  telephonySignature: string | null;
@@ -3533,10 +3558,11 @@ export declare const cxLogContract: {
3533
3558
  userId: string | null;
3534
3559
  sipServerUrl: string;
3535
3560
  sipUserName: string;
3561
+ webphoneLoginUser: string;
3536
3562
  extensionId: number;
3537
3563
  extensionName: string;
3538
3564
  telephonySignature: string | null;
3539
- }>>;
3565
+ }>;
3540
3566
  }, "strip", z.ZodTypeAny, {
3541
3567
  id: string;
3542
3568
  address: string | null;
@@ -3567,7 +3593,7 @@ export declare const cxLogContract: {
3567
3593
  displayName: string;
3568
3594
  }[];
3569
3595
  }[];
3570
- extension?: {
3596
+ extension: {
3571
3597
  id: string;
3572
3598
  createdAt: Date;
3573
3599
  updatedAt: Date;
@@ -3575,10 +3601,11 @@ export declare const cxLogContract: {
3575
3601
  userId: string | null;
3576
3602
  sipServerUrl: string;
3577
3603
  sipUserName: string;
3604
+ webphoneLoginUser: string;
3578
3605
  extensionId: number;
3579
3606
  extensionName: string;
3580
3607
  telephonySignature: string | null;
3581
- } | undefined;
3608
+ };
3582
3609
  }, {
3583
3610
  id: string;
3584
3611
  address: string | null;
@@ -3609,7 +3636,7 @@ export declare const cxLogContract: {
3609
3636
  displayName: string;
3610
3637
  }[];
3611
3638
  }[];
3612
- extension?: {
3639
+ extension: {
3613
3640
  id: string;
3614
3641
  createdAt: Date;
3615
3642
  updatedAt: Date;
@@ -3617,10 +3644,11 @@ export declare const cxLogContract: {
3617
3644
  userId: string | null;
3618
3645
  sipServerUrl: string;
3619
3646
  sipUserName: string;
3647
+ webphoneLoginUser: string;
3620
3648
  extensionId: number;
3621
3649
  extensionName: string;
3622
3650
  telephonySignature: string | null;
3623
- } | undefined;
3651
+ };
3624
3652
  }>>;
3625
3653
  }, "strip", z.ZodTypeAny, {
3626
3654
  id: string;
@@ -3803,7 +3831,7 @@ export declare const cxLogContract: {
3803
3831
  displayName: string;
3804
3832
  }[];
3805
3833
  }[];
3806
- extension?: {
3834
+ extension: {
3807
3835
  id: string;
3808
3836
  createdAt: Date;
3809
3837
  updatedAt: Date;
@@ -3811,10 +3839,11 @@ export declare const cxLogContract: {
3811
3839
  userId: string | null;
3812
3840
  sipServerUrl: string;
3813
3841
  sipUserName: string;
3842
+ webphoneLoginUser: string;
3814
3843
  extensionId: number;
3815
3844
  extensionName: string;
3816
3845
  telephonySignature: string | null;
3817
- } | undefined;
3846
+ };
3818
3847
  };
3819
3848
  firstResponseTime: number;
3820
3849
  lastMessage: string;
@@ -3971,7 +4000,7 @@ export declare const cxLogContract: {
3971
4000
  displayName: string;
3972
4001
  }[];
3973
4002
  }[];
3974
- extension?: {
4003
+ extension: {
3975
4004
  id: string;
3976
4005
  createdAt: Date;
3977
4006
  updatedAt: Date;
@@ -3979,10 +4008,11 @@ export declare const cxLogContract: {
3979
4008
  userId: string | null;
3980
4009
  sipServerUrl: string;
3981
4010
  sipUserName: string;
4011
+ webphoneLoginUser: string;
3982
4012
  extensionId: number;
3983
4013
  extensionName: string;
3984
4014
  telephonySignature: string | null;
3985
- } | undefined;
4015
+ };
3986
4016
  };
3987
4017
  channel?: {
3988
4018
  id?: string | undefined;
@@ -4033,7 +4063,7 @@ export declare const cxLogContract: {
4033
4063
  displayName: string;
4034
4064
  }[];
4035
4065
  }[];
4036
- extension?: {
4066
+ extension: {
4037
4067
  id: string;
4038
4068
  createdAt: Date;
4039
4069
  updatedAt: Date;
@@ -4041,10 +4071,11 @@ export declare const cxLogContract: {
4041
4071
  userId: string | null;
4042
4072
  sipServerUrl: string;
4043
4073
  sipUserName: string;
4074
+ webphoneLoginUser: string;
4044
4075
  extensionId: number;
4045
4076
  extensionName: string;
4046
4077
  telephonySignature: string | null;
4047
- } | undefined;
4078
+ };
4048
4079
  } | undefined;
4049
4080
  } | undefined;
4050
4081
  } | null;
@@ -4117,7 +4148,7 @@ export declare const cxLogContract: {
4117
4148
  displayName: string;
4118
4149
  }[];
4119
4150
  }[];
4120
- extension?: {
4151
+ extension: {
4121
4152
  id: string;
4122
4153
  createdAt: Date;
4123
4154
  updatedAt: Date;
@@ -4125,10 +4156,11 @@ export declare const cxLogContract: {
4125
4156
  userId: string | null;
4126
4157
  sipServerUrl: string;
4127
4158
  sipUserName: string;
4159
+ webphoneLoginUser: string;
4128
4160
  extensionId: number;
4129
4161
  extensionName: string;
4130
4162
  telephonySignature: string | null;
4131
- } | undefined;
4163
+ };
4132
4164
  } | null;
4133
4165
  }, {
4134
4166
  id: string;
@@ -4311,7 +4343,7 @@ export declare const cxLogContract: {
4311
4343
  displayName: string;
4312
4344
  }[];
4313
4345
  }[];
4314
- extension?: {
4346
+ extension: {
4315
4347
  id: string;
4316
4348
  createdAt: Date;
4317
4349
  updatedAt: Date;
@@ -4319,10 +4351,11 @@ export declare const cxLogContract: {
4319
4351
  userId: string | null;
4320
4352
  sipServerUrl: string;
4321
4353
  sipUserName: string;
4354
+ webphoneLoginUser: string;
4322
4355
  extensionId: number;
4323
4356
  extensionName: string;
4324
4357
  telephonySignature: string | null;
4325
- } | undefined;
4358
+ };
4326
4359
  };
4327
4360
  firstResponseTime: number;
4328
4361
  lastMessage: string;
@@ -4479,7 +4512,7 @@ export declare const cxLogContract: {
4479
4512
  displayName: string;
4480
4513
  }[];
4481
4514
  }[];
4482
- extension?: {
4515
+ extension: {
4483
4516
  id: string;
4484
4517
  createdAt: Date;
4485
4518
  updatedAt: Date;
@@ -4487,10 +4520,11 @@ export declare const cxLogContract: {
4487
4520
  userId: string | null;
4488
4521
  sipServerUrl: string;
4489
4522
  sipUserName: string;
4523
+ webphoneLoginUser: string;
4490
4524
  extensionId: number;
4491
4525
  extensionName: string;
4492
4526
  telephonySignature: string | null;
4493
- } | undefined;
4527
+ };
4494
4528
  };
4495
4529
  channel?: {
4496
4530
  id?: string | undefined;
@@ -4541,7 +4575,7 @@ export declare const cxLogContract: {
4541
4575
  displayName: string;
4542
4576
  }[];
4543
4577
  }[];
4544
- extension?: {
4578
+ extension: {
4545
4579
  id: string;
4546
4580
  createdAt: Date;
4547
4581
  updatedAt: Date;
@@ -4549,10 +4583,11 @@ export declare const cxLogContract: {
4549
4583
  userId: string | null;
4550
4584
  sipServerUrl: string;
4551
4585
  sipUserName: string;
4586
+ webphoneLoginUser: string;
4552
4587
  extensionId: number;
4553
4588
  extensionName: string;
4554
4589
  telephonySignature: string | null;
4555
- } | undefined;
4590
+ };
4556
4591
  } | undefined;
4557
4592
  } | undefined;
4558
4593
  } | null;
@@ -4625,7 +4660,7 @@ export declare const cxLogContract: {
4625
4660
  displayName: string;
4626
4661
  }[];
4627
4662
  }[];
4628
- extension?: {
4663
+ extension: {
4629
4664
  id: string;
4630
4665
  createdAt: Date;
4631
4666
  updatedAt: Date;
@@ -4633,10 +4668,11 @@ export declare const cxLogContract: {
4633
4668
  userId: string | null;
4634
4669
  sipServerUrl: string;
4635
4670
  sipUserName: string;
4671
+ webphoneLoginUser: string;
4636
4672
  extensionId: number;
4637
4673
  extensionName: string;
4638
4674
  telephonySignature: string | null;
4639
- } | undefined;
4675
+ };
4640
4676
  } | null;
4641
4677
  }>, "many">;
4642
4678
  }, "strip", z.ZodTypeAny, {
@@ -4825,7 +4861,7 @@ export declare const cxLogContract: {
4825
4861
  displayName: string;
4826
4862
  }[];
4827
4863
  }[];
4828
- extension?: {
4864
+ extension: {
4829
4865
  id: string;
4830
4866
  createdAt: Date;
4831
4867
  updatedAt: Date;
@@ -4833,10 +4869,11 @@ export declare const cxLogContract: {
4833
4869
  userId: string | null;
4834
4870
  sipServerUrl: string;
4835
4871
  sipUserName: string;
4872
+ webphoneLoginUser: string;
4836
4873
  extensionId: number;
4837
4874
  extensionName: string;
4838
4875
  telephonySignature: string | null;
4839
- } | undefined;
4876
+ };
4840
4877
  };
4841
4878
  firstResponseTime: number;
4842
4879
  lastMessage: string;
@@ -4993,7 +5030,7 @@ export declare const cxLogContract: {
4993
5030
  displayName: string;
4994
5031
  }[];
4995
5032
  }[];
4996
- extension?: {
5033
+ extension: {
4997
5034
  id: string;
4998
5035
  createdAt: Date;
4999
5036
  updatedAt: Date;
@@ -5001,10 +5038,11 @@ export declare const cxLogContract: {
5001
5038
  userId: string | null;
5002
5039
  sipServerUrl: string;
5003
5040
  sipUserName: string;
5041
+ webphoneLoginUser: string;
5004
5042
  extensionId: number;
5005
5043
  extensionName: string;
5006
5044
  telephonySignature: string | null;
5007
- } | undefined;
5045
+ };
5008
5046
  };
5009
5047
  channel?: {
5010
5048
  id?: string | undefined;
@@ -5055,7 +5093,7 @@ export declare const cxLogContract: {
5055
5093
  displayName: string;
5056
5094
  }[];
5057
5095
  }[];
5058
- extension?: {
5096
+ extension: {
5059
5097
  id: string;
5060
5098
  createdAt: Date;
5061
5099
  updatedAt: Date;
@@ -5063,10 +5101,11 @@ export declare const cxLogContract: {
5063
5101
  userId: string | null;
5064
5102
  sipServerUrl: string;
5065
5103
  sipUserName: string;
5104
+ webphoneLoginUser: string;
5066
5105
  extensionId: number;
5067
5106
  extensionName: string;
5068
5107
  telephonySignature: string | null;
5069
- } | undefined;
5108
+ };
5070
5109
  } | undefined;
5071
5110
  } | undefined;
5072
5111
  } | null;
@@ -5139,7 +5178,7 @@ export declare const cxLogContract: {
5139
5178
  displayName: string;
5140
5179
  }[];
5141
5180
  }[];
5142
- extension?: {
5181
+ extension: {
5143
5182
  id: string;
5144
5183
  createdAt: Date;
5145
5184
  updatedAt: Date;
@@ -5147,10 +5186,11 @@ export declare const cxLogContract: {
5147
5186
  userId: string | null;
5148
5187
  sipServerUrl: string;
5149
5188
  sipUserName: string;
5189
+ webphoneLoginUser: string;
5150
5190
  extensionId: number;
5151
5191
  extensionName: string;
5152
5192
  telephonySignature: string | null;
5153
- } | undefined;
5193
+ };
5154
5194
  } | null;
5155
5195
  }[];
5156
5196
  }, {
@@ -5339,7 +5379,7 @@ export declare const cxLogContract: {
5339
5379
  displayName: string;
5340
5380
  }[];
5341
5381
  }[];
5342
- extension?: {
5382
+ extension: {
5343
5383
  id: string;
5344
5384
  createdAt: Date;
5345
5385
  updatedAt: Date;
@@ -5347,10 +5387,11 @@ export declare const cxLogContract: {
5347
5387
  userId: string | null;
5348
5388
  sipServerUrl: string;
5349
5389
  sipUserName: string;
5390
+ webphoneLoginUser: string;
5350
5391
  extensionId: number;
5351
5392
  extensionName: string;
5352
5393
  telephonySignature: string | null;
5353
- } | undefined;
5394
+ };
5354
5395
  };
5355
5396
  firstResponseTime: number;
5356
5397
  lastMessage: string;
@@ -5507,7 +5548,7 @@ export declare const cxLogContract: {
5507
5548
  displayName: string;
5508
5549
  }[];
5509
5550
  }[];
5510
- extension?: {
5551
+ extension: {
5511
5552
  id: string;
5512
5553
  createdAt: Date;
5513
5554
  updatedAt: Date;
@@ -5515,10 +5556,11 @@ export declare const cxLogContract: {
5515
5556
  userId: string | null;
5516
5557
  sipServerUrl: string;
5517
5558
  sipUserName: string;
5559
+ webphoneLoginUser: string;
5518
5560
  extensionId: number;
5519
5561
  extensionName: string;
5520
5562
  telephonySignature: string | null;
5521
- } | undefined;
5563
+ };
5522
5564
  };
5523
5565
  channel?: {
5524
5566
  id?: string | undefined;
@@ -5569,7 +5611,7 @@ export declare const cxLogContract: {
5569
5611
  displayName: string;
5570
5612
  }[];
5571
5613
  }[];
5572
- extension?: {
5614
+ extension: {
5573
5615
  id: string;
5574
5616
  createdAt: Date;
5575
5617
  updatedAt: Date;
@@ -5577,10 +5619,11 @@ export declare const cxLogContract: {
5577
5619
  userId: string | null;
5578
5620
  sipServerUrl: string;
5579
5621
  sipUserName: string;
5622
+ webphoneLoginUser: string;
5580
5623
  extensionId: number;
5581
5624
  extensionName: string;
5582
5625
  telephonySignature: string | null;
5583
- } | undefined;
5626
+ };
5584
5627
  } | undefined;
5585
5628
  } | undefined;
5586
5629
  } | null;
@@ -5653,7 +5696,7 @@ export declare const cxLogContract: {
5653
5696
  displayName: string;
5654
5697
  }[];
5655
5698
  }[];
5656
- extension?: {
5699
+ extension: {
5657
5700
  id: string;
5658
5701
  createdAt: Date;
5659
5702
  updatedAt: Date;
@@ -5661,10 +5704,11 @@ export declare const cxLogContract: {
5661
5704
  userId: string | null;
5662
5705
  sipServerUrl: string;
5663
5706
  sipUserName: string;
5707
+ webphoneLoginUser: string;
5664
5708
  extensionId: number;
5665
5709
  extensionName: string;
5666
5710
  telephonySignature: string | null;
5667
- } | undefined;
5711
+ };
5668
5712
  } | null;
5669
5713
  }[];
5670
5714
  }>;