@kl1/contracts 1.0.47 → 1.0.48

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 (40) hide show
  1. package/dist/index.js +168 -10
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +168 -10
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +7 -7
  6. package/dist/src/activity-log/schema.d.ts +7 -7
  7. package/dist/src/auth/index.d.ts +7 -7
  8. package/dist/src/call-log/schema.d.ts +3 -3
  9. package/dist/src/channel/index.d.ts +36 -36
  10. package/dist/src/channel/schema.d.ts +8 -10
  11. package/dist/src/channel/schema.d.ts.map +1 -1
  12. package/dist/src/chat/index.d.ts +353 -350
  13. package/dist/src/chat/index.d.ts.map +1 -1
  14. package/dist/src/chat/schema.d.ts +73 -73
  15. package/dist/src/chat/schema.d.ts.map +1 -1
  16. package/dist/src/chat/validation.d.ts +121 -118
  17. package/dist/src/chat/validation.d.ts.map +1 -1
  18. package/dist/src/comment/index.d.ts +118 -118
  19. package/dist/src/comment/schema.d.ts +34 -34
  20. package/dist/src/contract.d.ts +836 -827
  21. package/dist/src/contract.d.ts.map +1 -1
  22. package/dist/src/cx-log/index.d.ts +66 -66
  23. package/dist/src/cx-log/schema.d.ts +54 -54
  24. package/dist/src/extension/index.d.ts +33 -27
  25. package/dist/src/extension/index.d.ts.map +1 -1
  26. package/dist/src/extension/schema.d.ts +3 -3
  27. package/dist/src/extension/validation.d.ts +12 -6
  28. package/dist/src/extension/validation.d.ts.map +1 -1
  29. package/dist/src/messenger/index.d.ts +62 -62
  30. package/dist/src/telephony-agent-presence-status/index.d.ts +23 -23
  31. package/dist/src/telephony-agent-presence-status/schema.d.ts +7 -7
  32. package/dist/src/telephony-cdr/index.d.ts +57 -57
  33. package/dist/src/telephony-cdr/schema.d.ts +20 -20
  34. package/dist/src/ticket/index.d.ts +96 -96
  35. package/dist/src/ticket/schema.d.ts +14 -14
  36. package/dist/src/user/index.d.ts +23 -23
  37. package/dist/src/user/schema.d.ts +5 -5
  38. package/dist/src/user-presence-status-log/index.d.ts +4 -4
  39. package/dist/src/user-presence-status-log/schema.d.ts +7 -7
  40. package/package.json +1 -1
@@ -1329,7 +1329,7 @@ export declare const cxLogContract: {
1329
1329
  sipServerUrl: z.ZodString;
1330
1330
  sipUserName: z.ZodString;
1331
1331
  webphoneLoginUser: z.ZodString;
1332
- extensionId: z.ZodNumber;
1332
+ extensionId: z.ZodNullable<z.ZodString>;
1333
1333
  extensionName: z.ZodString;
1334
1334
  telephonySignature: z.ZodNullable<z.ZodString>;
1335
1335
  }, "strip", z.ZodTypeAny, {
@@ -1341,7 +1341,7 @@ export declare const cxLogContract: {
1341
1341
  sipServerUrl: string;
1342
1342
  sipUserName: string;
1343
1343
  webphoneLoginUser: string;
1344
- extensionId: number;
1344
+ extensionId: string | null;
1345
1345
  extensionName: string;
1346
1346
  telephonySignature: string | null;
1347
1347
  }, {
@@ -1353,7 +1353,7 @@ export declare const cxLogContract: {
1353
1353
  sipServerUrl: string;
1354
1354
  sipUserName: string;
1355
1355
  webphoneLoginUser: string;
1356
- extensionId: number;
1356
+ extensionId: string | null;
1357
1357
  extensionName: string;
1358
1358
  telephonySignature: string | null;
1359
1359
  }>;
@@ -1396,7 +1396,7 @@ export declare const cxLogContract: {
1396
1396
  sipServerUrl: string;
1397
1397
  sipUserName: string;
1398
1398
  webphoneLoginUser: string;
1399
- extensionId: number;
1399
+ extensionId: string | null;
1400
1400
  extensionName: string;
1401
1401
  telephonySignature: string | null;
1402
1402
  };
@@ -1439,7 +1439,7 @@ export declare const cxLogContract: {
1439
1439
  sipServerUrl: string;
1440
1440
  sipUserName: string;
1441
1441
  webphoneLoginUser: string;
1442
- extensionId: number;
1442
+ extensionId: string | null;
1443
1443
  extensionName: string;
1444
1444
  telephonySignature: string | null;
1445
1445
  };
@@ -1533,7 +1533,7 @@ export declare const cxLogContract: {
1533
1533
  sipServerUrl: z.ZodString;
1534
1534
  sipUserName: z.ZodString;
1535
1535
  webphoneLoginUser: z.ZodString;
1536
- extensionId: z.ZodNumber;
1536
+ extensionId: z.ZodNullable<z.ZodString>;
1537
1537
  extensionName: z.ZodString;
1538
1538
  telephonySignature: z.ZodNullable<z.ZodString>;
1539
1539
  }, "strip", z.ZodTypeAny, {
@@ -1545,7 +1545,7 @@ export declare const cxLogContract: {
1545
1545
  sipServerUrl: string;
1546
1546
  sipUserName: string;
1547
1547
  webphoneLoginUser: string;
1548
- extensionId: number;
1548
+ extensionId: string | null;
1549
1549
  extensionName: string;
1550
1550
  telephonySignature: string | null;
1551
1551
  }, {
@@ -1557,7 +1557,7 @@ export declare const cxLogContract: {
1557
1557
  sipServerUrl: string;
1558
1558
  sipUserName: string;
1559
1559
  webphoneLoginUser: string;
1560
- extensionId: number;
1560
+ extensionId: string | null;
1561
1561
  extensionName: string;
1562
1562
  telephonySignature: string | null;
1563
1563
  }>;
@@ -1600,7 +1600,7 @@ export declare const cxLogContract: {
1600
1600
  sipServerUrl: string;
1601
1601
  sipUserName: string;
1602
1602
  webphoneLoginUser: string;
1603
- extensionId: number;
1603
+ extensionId: string | null;
1604
1604
  extensionName: string;
1605
1605
  telephonySignature: string | null;
1606
1606
  };
@@ -1643,7 +1643,7 @@ export declare const cxLogContract: {
1643
1643
  sipServerUrl: string;
1644
1644
  sipUserName: string;
1645
1645
  webphoneLoginUser: string;
1646
- extensionId: number;
1646
+ extensionId: string | null;
1647
1647
  extensionName: string;
1648
1648
  telephonySignature: string | null;
1649
1649
  };
@@ -1766,7 +1766,7 @@ export declare const cxLogContract: {
1766
1766
  sipServerUrl: z.ZodString;
1767
1767
  sipUserName: z.ZodString;
1768
1768
  webphoneLoginUser: z.ZodString;
1769
- extensionId: z.ZodNumber;
1769
+ extensionId: z.ZodNullable<z.ZodString>;
1770
1770
  extensionName: z.ZodString;
1771
1771
  telephonySignature: z.ZodNullable<z.ZodString>;
1772
1772
  }, "strip", z.ZodTypeAny, {
@@ -1778,7 +1778,7 @@ export declare const cxLogContract: {
1778
1778
  sipServerUrl: string;
1779
1779
  sipUserName: string;
1780
1780
  webphoneLoginUser: string;
1781
- extensionId: number;
1781
+ extensionId: string | null;
1782
1782
  extensionName: string;
1783
1783
  telephonySignature: string | null;
1784
1784
  }, {
@@ -1790,7 +1790,7 @@ export declare const cxLogContract: {
1790
1790
  sipServerUrl: string;
1791
1791
  sipUserName: string;
1792
1792
  webphoneLoginUser: string;
1793
- extensionId: number;
1793
+ extensionId: string | null;
1794
1794
  extensionName: string;
1795
1795
  telephonySignature: string | null;
1796
1796
  }>;
@@ -1833,7 +1833,7 @@ export declare const cxLogContract: {
1833
1833
  sipServerUrl: string;
1834
1834
  sipUserName: string;
1835
1835
  webphoneLoginUser: string;
1836
- extensionId: number;
1836
+ extensionId: string | null;
1837
1837
  extensionName: string;
1838
1838
  telephonySignature: string | null;
1839
1839
  };
@@ -1876,7 +1876,7 @@ export declare const cxLogContract: {
1876
1876
  sipServerUrl: string;
1877
1877
  sipUserName: string;
1878
1878
  webphoneLoginUser: string;
1879
- extensionId: number;
1879
+ extensionId: string | null;
1880
1880
  extensionName: string;
1881
1881
  telephonySignature: string | null;
1882
1882
  };
@@ -1939,7 +1939,7 @@ export declare const cxLogContract: {
1939
1939
  sipServerUrl: string;
1940
1940
  sipUserName: string;
1941
1941
  webphoneLoginUser: string;
1942
- extensionId: number;
1942
+ extensionId: string | null;
1943
1943
  extensionName: string;
1944
1944
  telephonySignature: string | null;
1945
1945
  };
@@ -2002,7 +2002,7 @@ export declare const cxLogContract: {
2002
2002
  sipServerUrl: string;
2003
2003
  sipUserName: string;
2004
2004
  webphoneLoginUser: string;
2005
- extensionId: number;
2005
+ extensionId: string | null;
2006
2006
  extensionName: string;
2007
2007
  telephonySignature: string | null;
2008
2008
  };
@@ -2053,7 +2053,7 @@ export declare const cxLogContract: {
2053
2053
  sipServerUrl: string;
2054
2054
  sipUserName: string;
2055
2055
  webphoneLoginUser: string;
2056
- extensionId: number;
2056
+ extensionId: string | null;
2057
2057
  extensionName: string;
2058
2058
  telephonySignature: string | null;
2059
2059
  };
@@ -2223,7 +2223,7 @@ export declare const cxLogContract: {
2223
2223
  sipServerUrl: string;
2224
2224
  sipUserName: string;
2225
2225
  webphoneLoginUser: string;
2226
- extensionId: number;
2226
+ extensionId: string | null;
2227
2227
  extensionName: string;
2228
2228
  telephonySignature: string | null;
2229
2229
  };
@@ -2286,7 +2286,7 @@ export declare const cxLogContract: {
2286
2286
  sipServerUrl: string;
2287
2287
  sipUserName: string;
2288
2288
  webphoneLoginUser: string;
2289
- extensionId: number;
2289
+ extensionId: string | null;
2290
2290
  extensionName: string;
2291
2291
  telephonySignature: string | null;
2292
2292
  };
@@ -2337,7 +2337,7 @@ export declare const cxLogContract: {
2337
2337
  sipServerUrl: string;
2338
2338
  sipUserName: string;
2339
2339
  webphoneLoginUser: string;
2340
- extensionId: number;
2340
+ extensionId: string | null;
2341
2341
  extensionName: string;
2342
2342
  telephonySignature: string | null;
2343
2343
  };
@@ -2507,7 +2507,7 @@ export declare const cxLogContract: {
2507
2507
  sipServerUrl: string;
2508
2508
  sipUserName: string;
2509
2509
  webphoneLoginUser: string;
2510
- extensionId: number;
2510
+ extensionId: string | null;
2511
2511
  extensionName: string;
2512
2512
  telephonySignature: string | null;
2513
2513
  };
@@ -2570,7 +2570,7 @@ export declare const cxLogContract: {
2570
2570
  sipServerUrl: string;
2571
2571
  sipUserName: string;
2572
2572
  webphoneLoginUser: string;
2573
- extensionId: number;
2573
+ extensionId: string | null;
2574
2574
  extensionName: string;
2575
2575
  telephonySignature: string | null;
2576
2576
  };
@@ -3428,7 +3428,7 @@ export declare const cxLogContract: {
3428
3428
  sipServerUrl: z.ZodString;
3429
3429
  sipUserName: z.ZodString;
3430
3430
  webphoneLoginUser: z.ZodString;
3431
- extensionId: z.ZodNumber;
3431
+ extensionId: z.ZodNullable<z.ZodString>;
3432
3432
  extensionName: z.ZodString;
3433
3433
  telephonySignature: z.ZodNullable<z.ZodString>;
3434
3434
  user: z.ZodNullable<z.ZodOptional<z.ZodObject<{
@@ -3520,7 +3520,7 @@ export declare const cxLogContract: {
3520
3520
  sipServerUrl: z.ZodString;
3521
3521
  sipUserName: z.ZodString;
3522
3522
  webphoneLoginUser: z.ZodString;
3523
- extensionId: z.ZodNumber;
3523
+ extensionId: z.ZodNullable<z.ZodString>;
3524
3524
  extensionName: z.ZodString;
3525
3525
  telephonySignature: z.ZodNullable<z.ZodString>;
3526
3526
  }, "strip", z.ZodTypeAny, {
@@ -3532,7 +3532,7 @@ export declare const cxLogContract: {
3532
3532
  sipServerUrl: string;
3533
3533
  sipUserName: string;
3534
3534
  webphoneLoginUser: string;
3535
- extensionId: number;
3535
+ extensionId: string | null;
3536
3536
  extensionName: string;
3537
3537
  telephonySignature: string | null;
3538
3538
  }, {
@@ -3544,7 +3544,7 @@ export declare const cxLogContract: {
3544
3544
  sipServerUrl: string;
3545
3545
  sipUserName: string;
3546
3546
  webphoneLoginUser: string;
3547
- extensionId: number;
3547
+ extensionId: string | null;
3548
3548
  extensionName: string;
3549
3549
  telephonySignature: string | null;
3550
3550
  }>;
@@ -3587,7 +3587,7 @@ export declare const cxLogContract: {
3587
3587
  sipServerUrl: string;
3588
3588
  sipUserName: string;
3589
3589
  webphoneLoginUser: string;
3590
- extensionId: number;
3590
+ extensionId: string | null;
3591
3591
  extensionName: string;
3592
3592
  telephonySignature: string | null;
3593
3593
  };
@@ -3630,7 +3630,7 @@ export declare const cxLogContract: {
3630
3630
  sipServerUrl: string;
3631
3631
  sipUserName: string;
3632
3632
  webphoneLoginUser: string;
3633
- extensionId: number;
3633
+ extensionId: string | null;
3634
3634
  extensionName: string;
3635
3635
  telephonySignature: string | null;
3636
3636
  };
@@ -3644,7 +3644,7 @@ export declare const cxLogContract: {
3644
3644
  sipServerUrl: string;
3645
3645
  sipUserName: string;
3646
3646
  webphoneLoginUser: string;
3647
- extensionId: number;
3647
+ extensionId: string | null;
3648
3648
  extensionName: string;
3649
3649
  telephonySignature: string | null;
3650
3650
  user?: {
@@ -3686,7 +3686,7 @@ export declare const cxLogContract: {
3686
3686
  sipServerUrl: string;
3687
3687
  sipUserName: string;
3688
3688
  webphoneLoginUser: string;
3689
- extensionId: number;
3689
+ extensionId: string | null;
3690
3690
  extensionName: string;
3691
3691
  telephonySignature: string | null;
3692
3692
  };
@@ -3700,7 +3700,7 @@ export declare const cxLogContract: {
3700
3700
  sipServerUrl: string;
3701
3701
  sipUserName: string;
3702
3702
  webphoneLoginUser: string;
3703
- extensionId: number;
3703
+ extensionId: string | null;
3704
3704
  extensionName: string;
3705
3705
  telephonySignature: string | null;
3706
3706
  user?: {
@@ -3742,7 +3742,7 @@ export declare const cxLogContract: {
3742
3742
  sipServerUrl: string;
3743
3743
  sipUserName: string;
3744
3744
  webphoneLoginUser: string;
3745
- extensionId: number;
3745
+ extensionId: string | null;
3746
3746
  extensionName: string;
3747
3747
  telephonySignature: string | null;
3748
3748
  };
@@ -3909,7 +3909,7 @@ export declare const cxLogContract: {
3909
3909
  sipServerUrl: string;
3910
3910
  sipUserName: string;
3911
3911
  webphoneLoginUser: string;
3912
- extensionId: number;
3912
+ extensionId: string | null;
3913
3913
  extensionName: string;
3914
3914
  telephonySignature: string | null;
3915
3915
  user?: {
@@ -3951,7 +3951,7 @@ export declare const cxLogContract: {
3951
3951
  sipServerUrl: string;
3952
3952
  sipUserName: string;
3953
3953
  webphoneLoginUser: string;
3954
- extensionId: number;
3954
+ extensionId: string | null;
3955
3955
  extensionName: string;
3956
3956
  telephonySignature: string | null;
3957
3957
  };
@@ -4116,7 +4116,7 @@ export declare const cxLogContract: {
4116
4116
  sipServerUrl: string;
4117
4117
  sipUserName: string;
4118
4118
  webphoneLoginUser: string;
4119
- extensionId: number;
4119
+ extensionId: string | null;
4120
4120
  extensionName: string;
4121
4121
  telephonySignature: string | null;
4122
4122
  user?: {
@@ -4158,7 +4158,7 @@ export declare const cxLogContract: {
4158
4158
  sipServerUrl: string;
4159
4159
  sipUserName: string;
4160
4160
  webphoneLoginUser: string;
4161
- extensionId: number;
4161
+ extensionId: string | null;
4162
4162
  extensionName: string;
4163
4163
  telephonySignature: string | null;
4164
4164
  };
@@ -5019,7 +5019,7 @@ export declare const cxLogContract: {
5019
5019
  sipServerUrl: z.ZodString;
5020
5020
  sipUserName: z.ZodString;
5021
5021
  webphoneLoginUser: z.ZodString;
5022
- extensionId: z.ZodNumber;
5022
+ extensionId: z.ZodNullable<z.ZodString>;
5023
5023
  extensionName: z.ZodString;
5024
5024
  telephonySignature: z.ZodNullable<z.ZodString>;
5025
5025
  }, "strip", z.ZodTypeAny, {
@@ -5031,7 +5031,7 @@ export declare const cxLogContract: {
5031
5031
  sipServerUrl: string;
5032
5032
  sipUserName: string;
5033
5033
  webphoneLoginUser: string;
5034
- extensionId: number;
5034
+ extensionId: string | null;
5035
5035
  extensionName: string;
5036
5036
  telephonySignature: string | null;
5037
5037
  }, {
@@ -5043,7 +5043,7 @@ export declare const cxLogContract: {
5043
5043
  sipServerUrl: string;
5044
5044
  sipUserName: string;
5045
5045
  webphoneLoginUser: string;
5046
- extensionId: number;
5046
+ extensionId: string | null;
5047
5047
  extensionName: string;
5048
5048
  telephonySignature: string | null;
5049
5049
  }>;
@@ -5086,7 +5086,7 @@ export declare const cxLogContract: {
5086
5086
  sipServerUrl: string;
5087
5087
  sipUserName: string;
5088
5088
  webphoneLoginUser: string;
5089
- extensionId: number;
5089
+ extensionId: string | null;
5090
5090
  extensionName: string;
5091
5091
  telephonySignature: string | null;
5092
5092
  };
@@ -5129,7 +5129,7 @@ export declare const cxLogContract: {
5129
5129
  sipServerUrl: string;
5130
5130
  sipUserName: string;
5131
5131
  webphoneLoginUser: string;
5132
- extensionId: number;
5132
+ extensionId: string | null;
5133
5133
  extensionName: string;
5134
5134
  telephonySignature: string | null;
5135
5135
  };
@@ -5326,7 +5326,7 @@ export declare const cxLogContract: {
5326
5326
  sipServerUrl: string;
5327
5327
  sipUserName: string;
5328
5328
  webphoneLoginUser: string;
5329
- extensionId: number;
5329
+ extensionId: string | null;
5330
5330
  extensionName: string;
5331
5331
  telephonySignature: string | null;
5332
5332
  };
@@ -5496,7 +5496,7 @@ export declare const cxLogContract: {
5496
5496
  sipServerUrl: string;
5497
5497
  sipUserName: string;
5498
5498
  webphoneLoginUser: string;
5499
- extensionId: number;
5499
+ extensionId: string | null;
5500
5500
  extensionName: string;
5501
5501
  telephonySignature: string | null;
5502
5502
  };
@@ -5559,7 +5559,7 @@ export declare const cxLogContract: {
5559
5559
  sipServerUrl: string;
5560
5560
  sipUserName: string;
5561
5561
  webphoneLoginUser: string;
5562
- extensionId: number;
5562
+ extensionId: string | null;
5563
5563
  extensionName: string;
5564
5564
  telephonySignature: string | null;
5565
5565
  };
@@ -5725,7 +5725,7 @@ export declare const cxLogContract: {
5725
5725
  sipServerUrl: string;
5726
5726
  sipUserName: string;
5727
5727
  webphoneLoginUser: string;
5728
- extensionId: number;
5728
+ extensionId: string | null;
5729
5729
  extensionName: string;
5730
5730
  telephonySignature: string | null;
5731
5731
  user?: {
@@ -5767,7 +5767,7 @@ export declare const cxLogContract: {
5767
5767
  sipServerUrl: string;
5768
5768
  sipUserName: string;
5769
5769
  webphoneLoginUser: string;
5770
- extensionId: number;
5770
+ extensionId: string | null;
5771
5771
  extensionName: string;
5772
5772
  telephonySignature: string | null;
5773
5773
  };
@@ -5816,7 +5816,7 @@ export declare const cxLogContract: {
5816
5816
  sipServerUrl: string;
5817
5817
  sipUserName: string;
5818
5818
  webphoneLoginUser: string;
5819
- extensionId: number;
5819
+ extensionId: string | null;
5820
5820
  extensionName: string;
5821
5821
  telephonySignature: string | null;
5822
5822
  };
@@ -6013,7 +6013,7 @@ export declare const cxLogContract: {
6013
6013
  sipServerUrl: string;
6014
6014
  sipUserName: string;
6015
6015
  webphoneLoginUser: string;
6016
- extensionId: number;
6016
+ extensionId: string | null;
6017
6017
  extensionName: string;
6018
6018
  telephonySignature: string | null;
6019
6019
  };
@@ -6183,7 +6183,7 @@ export declare const cxLogContract: {
6183
6183
  sipServerUrl: string;
6184
6184
  sipUserName: string;
6185
6185
  webphoneLoginUser: string;
6186
- extensionId: number;
6186
+ extensionId: string | null;
6187
6187
  extensionName: string;
6188
6188
  telephonySignature: string | null;
6189
6189
  };
@@ -6246,7 +6246,7 @@ export declare const cxLogContract: {
6246
6246
  sipServerUrl: string;
6247
6247
  sipUserName: string;
6248
6248
  webphoneLoginUser: string;
6249
- extensionId: number;
6249
+ extensionId: string | null;
6250
6250
  extensionName: string;
6251
6251
  telephonySignature: string | null;
6252
6252
  };
@@ -6412,7 +6412,7 @@ export declare const cxLogContract: {
6412
6412
  sipServerUrl: string;
6413
6413
  sipUserName: string;
6414
6414
  webphoneLoginUser: string;
6415
- extensionId: number;
6415
+ extensionId: string | null;
6416
6416
  extensionName: string;
6417
6417
  telephonySignature: string | null;
6418
6418
  user?: {
@@ -6454,7 +6454,7 @@ export declare const cxLogContract: {
6454
6454
  sipServerUrl: string;
6455
6455
  sipUserName: string;
6456
6456
  webphoneLoginUser: string;
6457
- extensionId: number;
6457
+ extensionId: string | null;
6458
6458
  extensionName: string;
6459
6459
  telephonySignature: string | null;
6460
6460
  };
@@ -6503,7 +6503,7 @@ export declare const cxLogContract: {
6503
6503
  sipServerUrl: string;
6504
6504
  sipUserName: string;
6505
6505
  webphoneLoginUser: string;
6506
- extensionId: number;
6506
+ extensionId: string | null;
6507
6507
  extensionName: string;
6508
6508
  telephonySignature: string | null;
6509
6509
  };
@@ -6706,7 +6706,7 @@ export declare const cxLogContract: {
6706
6706
  sipServerUrl: string;
6707
6707
  sipUserName: string;
6708
6708
  webphoneLoginUser: string;
6709
- extensionId: number;
6709
+ extensionId: string | null;
6710
6710
  extensionName: string;
6711
6711
  telephonySignature: string | null;
6712
6712
  };
@@ -6876,7 +6876,7 @@ export declare const cxLogContract: {
6876
6876
  sipServerUrl: string;
6877
6877
  sipUserName: string;
6878
6878
  webphoneLoginUser: string;
6879
- extensionId: number;
6879
+ extensionId: string | null;
6880
6880
  extensionName: string;
6881
6881
  telephonySignature: string | null;
6882
6882
  };
@@ -6939,7 +6939,7 @@ export declare const cxLogContract: {
6939
6939
  sipServerUrl: string;
6940
6940
  sipUserName: string;
6941
6941
  webphoneLoginUser: string;
6942
- extensionId: number;
6942
+ extensionId: string | null;
6943
6943
  extensionName: string;
6944
6944
  telephonySignature: string | null;
6945
6945
  };
@@ -7105,7 +7105,7 @@ export declare const cxLogContract: {
7105
7105
  sipServerUrl: string;
7106
7106
  sipUserName: string;
7107
7107
  webphoneLoginUser: string;
7108
- extensionId: number;
7108
+ extensionId: string | null;
7109
7109
  extensionName: string;
7110
7110
  telephonySignature: string | null;
7111
7111
  user?: {
@@ -7147,7 +7147,7 @@ export declare const cxLogContract: {
7147
7147
  sipServerUrl: string;
7148
7148
  sipUserName: string;
7149
7149
  webphoneLoginUser: string;
7150
- extensionId: number;
7150
+ extensionId: string | null;
7151
7151
  extensionName: string;
7152
7152
  telephonySignature: string | null;
7153
7153
  };
@@ -7196,7 +7196,7 @@ export declare const cxLogContract: {
7196
7196
  sipServerUrl: string;
7197
7197
  sipUserName: string;
7198
7198
  webphoneLoginUser: string;
7199
- extensionId: number;
7199
+ extensionId: string | null;
7200
7200
  extensionName: string;
7201
7201
  telephonySignature: string | null;
7202
7202
  };
@@ -7399,7 +7399,7 @@ export declare const cxLogContract: {
7399
7399
  sipServerUrl: string;
7400
7400
  sipUserName: string;
7401
7401
  webphoneLoginUser: string;
7402
- extensionId: number;
7402
+ extensionId: string | null;
7403
7403
  extensionName: string;
7404
7404
  telephonySignature: string | null;
7405
7405
  };
@@ -7569,7 +7569,7 @@ export declare const cxLogContract: {
7569
7569
  sipServerUrl: string;
7570
7570
  sipUserName: string;
7571
7571
  webphoneLoginUser: string;
7572
- extensionId: number;
7572
+ extensionId: string | null;
7573
7573
  extensionName: string;
7574
7574
  telephonySignature: string | null;
7575
7575
  };
@@ -7632,7 +7632,7 @@ export declare const cxLogContract: {
7632
7632
  sipServerUrl: string;
7633
7633
  sipUserName: string;
7634
7634
  webphoneLoginUser: string;
7635
- extensionId: number;
7635
+ extensionId: string | null;
7636
7636
  extensionName: string;
7637
7637
  telephonySignature: string | null;
7638
7638
  };
@@ -7798,7 +7798,7 @@ export declare const cxLogContract: {
7798
7798
  sipServerUrl: string;
7799
7799
  sipUserName: string;
7800
7800
  webphoneLoginUser: string;
7801
- extensionId: number;
7801
+ extensionId: string | null;
7802
7802
  extensionName: string;
7803
7803
  telephonySignature: string | null;
7804
7804
  user?: {
@@ -7840,7 +7840,7 @@ export declare const cxLogContract: {
7840
7840
  sipServerUrl: string;
7841
7841
  sipUserName: string;
7842
7842
  webphoneLoginUser: string;
7843
- extensionId: number;
7843
+ extensionId: string | null;
7844
7844
  extensionName: string;
7845
7845
  telephonySignature: string | null;
7846
7846
  };
@@ -7889,7 +7889,7 @@ export declare const cxLogContract: {
7889
7889
  sipServerUrl: string;
7890
7890
  sipUserName: string;
7891
7891
  webphoneLoginUser: string;
7892
- extensionId: number;
7892
+ extensionId: string | null;
7893
7893
  extensionName: string;
7894
7894
  telephonySignature: string | null;
7895
7895
  };