@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.
- package/dist/index.js +168 -10
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +168 -10
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +7 -7
- package/dist/src/activity-log/schema.d.ts +7 -7
- package/dist/src/auth/index.d.ts +7 -7
- package/dist/src/call-log/schema.d.ts +3 -3
- package/dist/src/channel/index.d.ts +36 -36
- package/dist/src/channel/schema.d.ts +8 -10
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +353 -350
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +73 -73
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +121 -118
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +118 -118
- package/dist/src/comment/schema.d.ts +34 -34
- package/dist/src/contract.d.ts +836 -827
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +66 -66
- package/dist/src/cx-log/schema.d.ts +54 -54
- package/dist/src/extension/index.d.ts +33 -27
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -3
- package/dist/src/extension/validation.d.ts +12 -6
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +62 -62
- package/dist/src/telephony-agent-presence-status/index.d.ts +23 -23
- package/dist/src/telephony-agent-presence-status/schema.d.ts +7 -7
- package/dist/src/telephony-cdr/index.d.ts +57 -57
- package/dist/src/telephony-cdr/schema.d.ts +20 -20
- package/dist/src/ticket/index.d.ts +96 -96
- package/dist/src/ticket/schema.d.ts +14 -14
- package/dist/src/user/index.d.ts +23 -23
- package/dist/src/user/schema.d.ts +5 -5
- package/dist/src/user-presence-status-log/index.d.ts +4 -4
- package/dist/src/user-presence-status-log/schema.d.ts +7 -7
- package/package.json +1 -1
@@ -1369,7 +1369,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1369
1369
|
sipServerUrl: z.ZodString;
|
1370
1370
|
sipUserName: z.ZodString;
|
1371
1371
|
webphoneLoginUser: z.ZodString;
|
1372
|
-
extensionId: z.
|
1372
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
1373
1373
|
extensionName: z.ZodString;
|
1374
1374
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1375
1375
|
}, "strip", z.ZodTypeAny, {
|
@@ -1381,7 +1381,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1381
1381
|
sipServerUrl: string;
|
1382
1382
|
sipUserName: string;
|
1383
1383
|
webphoneLoginUser: string;
|
1384
|
-
extensionId:
|
1384
|
+
extensionId: string | null;
|
1385
1385
|
extensionName: string;
|
1386
1386
|
telephonySignature: string | null;
|
1387
1387
|
}, {
|
@@ -1393,7 +1393,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1393
1393
|
sipServerUrl: string;
|
1394
1394
|
sipUserName: string;
|
1395
1395
|
webphoneLoginUser: string;
|
1396
|
-
extensionId:
|
1396
|
+
extensionId: string | null;
|
1397
1397
|
extensionName: string;
|
1398
1398
|
telephonySignature: string | null;
|
1399
1399
|
}>;
|
@@ -1436,7 +1436,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1436
1436
|
sipServerUrl: string;
|
1437
1437
|
sipUserName: string;
|
1438
1438
|
webphoneLoginUser: string;
|
1439
|
-
extensionId:
|
1439
|
+
extensionId: string | null;
|
1440
1440
|
extensionName: string;
|
1441
1441
|
telephonySignature: string | null;
|
1442
1442
|
};
|
@@ -1479,7 +1479,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1479
1479
|
sipServerUrl: string;
|
1480
1480
|
sipUserName: string;
|
1481
1481
|
webphoneLoginUser: string;
|
1482
|
-
extensionId:
|
1482
|
+
extensionId: string | null;
|
1483
1483
|
extensionName: string;
|
1484
1484
|
telephonySignature: string | null;
|
1485
1485
|
};
|
@@ -1573,7 +1573,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1573
1573
|
sipServerUrl: z.ZodString;
|
1574
1574
|
sipUserName: z.ZodString;
|
1575
1575
|
webphoneLoginUser: z.ZodString;
|
1576
|
-
extensionId: z.
|
1576
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
1577
1577
|
extensionName: z.ZodString;
|
1578
1578
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1579
1579
|
}, "strip", z.ZodTypeAny, {
|
@@ -1585,7 +1585,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1585
1585
|
sipServerUrl: string;
|
1586
1586
|
sipUserName: string;
|
1587
1587
|
webphoneLoginUser: string;
|
1588
|
-
extensionId:
|
1588
|
+
extensionId: string | null;
|
1589
1589
|
extensionName: string;
|
1590
1590
|
telephonySignature: string | null;
|
1591
1591
|
}, {
|
@@ -1597,7 +1597,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1597
1597
|
sipServerUrl: string;
|
1598
1598
|
sipUserName: string;
|
1599
1599
|
webphoneLoginUser: string;
|
1600
|
-
extensionId:
|
1600
|
+
extensionId: string | null;
|
1601
1601
|
extensionName: string;
|
1602
1602
|
telephonySignature: string | null;
|
1603
1603
|
}>;
|
@@ -1640,7 +1640,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1640
1640
|
sipServerUrl: string;
|
1641
1641
|
sipUserName: string;
|
1642
1642
|
webphoneLoginUser: string;
|
1643
|
-
extensionId:
|
1643
|
+
extensionId: string | null;
|
1644
1644
|
extensionName: string;
|
1645
1645
|
telephonySignature: string | null;
|
1646
1646
|
};
|
@@ -1683,7 +1683,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1683
1683
|
sipServerUrl: string;
|
1684
1684
|
sipUserName: string;
|
1685
1685
|
webphoneLoginUser: string;
|
1686
|
-
extensionId:
|
1686
|
+
extensionId: string | null;
|
1687
1687
|
extensionName: string;
|
1688
1688
|
telephonySignature: string | null;
|
1689
1689
|
};
|
@@ -1806,7 +1806,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1806
1806
|
sipServerUrl: z.ZodString;
|
1807
1807
|
sipUserName: z.ZodString;
|
1808
1808
|
webphoneLoginUser: z.ZodString;
|
1809
|
-
extensionId: z.
|
1809
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
1810
1810
|
extensionName: z.ZodString;
|
1811
1811
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1812
1812
|
}, "strip", z.ZodTypeAny, {
|
@@ -1818,7 +1818,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1818
1818
|
sipServerUrl: string;
|
1819
1819
|
sipUserName: string;
|
1820
1820
|
webphoneLoginUser: string;
|
1821
|
-
extensionId:
|
1821
|
+
extensionId: string | null;
|
1822
1822
|
extensionName: string;
|
1823
1823
|
telephonySignature: string | null;
|
1824
1824
|
}, {
|
@@ -1830,7 +1830,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1830
1830
|
sipServerUrl: string;
|
1831
1831
|
sipUserName: string;
|
1832
1832
|
webphoneLoginUser: string;
|
1833
|
-
extensionId:
|
1833
|
+
extensionId: string | null;
|
1834
1834
|
extensionName: string;
|
1835
1835
|
telephonySignature: string | null;
|
1836
1836
|
}>;
|
@@ -1873,7 +1873,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1873
1873
|
sipServerUrl: string;
|
1874
1874
|
sipUserName: string;
|
1875
1875
|
webphoneLoginUser: string;
|
1876
|
-
extensionId:
|
1876
|
+
extensionId: string | null;
|
1877
1877
|
extensionName: string;
|
1878
1878
|
telephonySignature: string | null;
|
1879
1879
|
};
|
@@ -1916,7 +1916,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1916
1916
|
sipServerUrl: string;
|
1917
1917
|
sipUserName: string;
|
1918
1918
|
webphoneLoginUser: string;
|
1919
|
-
extensionId:
|
1919
|
+
extensionId: string | null;
|
1920
1920
|
extensionName: string;
|
1921
1921
|
telephonySignature: string | null;
|
1922
1922
|
};
|
@@ -1979,7 +1979,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
1979
1979
|
sipServerUrl: string;
|
1980
1980
|
sipUserName: string;
|
1981
1981
|
webphoneLoginUser: string;
|
1982
|
-
extensionId:
|
1982
|
+
extensionId: string | null;
|
1983
1983
|
extensionName: string;
|
1984
1984
|
telephonySignature: string | null;
|
1985
1985
|
};
|
@@ -2042,7 +2042,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2042
2042
|
sipServerUrl: string;
|
2043
2043
|
sipUserName: string;
|
2044
2044
|
webphoneLoginUser: string;
|
2045
|
-
extensionId:
|
2045
|
+
extensionId: string | null;
|
2046
2046
|
extensionName: string;
|
2047
2047
|
telephonySignature: string | null;
|
2048
2048
|
};
|
@@ -2093,7 +2093,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2093
2093
|
sipServerUrl: string;
|
2094
2094
|
sipUserName: string;
|
2095
2095
|
webphoneLoginUser: string;
|
2096
|
-
extensionId:
|
2096
|
+
extensionId: string | null;
|
2097
2097
|
extensionName: string;
|
2098
2098
|
telephonySignature: string | null;
|
2099
2099
|
};
|
@@ -2263,7 +2263,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2263
2263
|
sipServerUrl: string;
|
2264
2264
|
sipUserName: string;
|
2265
2265
|
webphoneLoginUser: string;
|
2266
|
-
extensionId:
|
2266
|
+
extensionId: string | null;
|
2267
2267
|
extensionName: string;
|
2268
2268
|
telephonySignature: string | null;
|
2269
2269
|
};
|
@@ -2326,7 +2326,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2326
2326
|
sipServerUrl: string;
|
2327
2327
|
sipUserName: string;
|
2328
2328
|
webphoneLoginUser: string;
|
2329
|
-
extensionId:
|
2329
|
+
extensionId: string | null;
|
2330
2330
|
extensionName: string;
|
2331
2331
|
telephonySignature: string | null;
|
2332
2332
|
};
|
@@ -2377,7 +2377,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2377
2377
|
sipServerUrl: string;
|
2378
2378
|
sipUserName: string;
|
2379
2379
|
webphoneLoginUser: string;
|
2380
|
-
extensionId:
|
2380
|
+
extensionId: string | null;
|
2381
2381
|
extensionName: string;
|
2382
2382
|
telephonySignature: string | null;
|
2383
2383
|
};
|
@@ -2547,7 +2547,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2547
2547
|
sipServerUrl: string;
|
2548
2548
|
sipUserName: string;
|
2549
2549
|
webphoneLoginUser: string;
|
2550
|
-
extensionId:
|
2550
|
+
extensionId: string | null;
|
2551
2551
|
extensionName: string;
|
2552
2552
|
telephonySignature: string | null;
|
2553
2553
|
};
|
@@ -2610,7 +2610,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
2610
2610
|
sipServerUrl: string;
|
2611
2611
|
sipUserName: string;
|
2612
2612
|
webphoneLoginUser: string;
|
2613
|
-
extensionId:
|
2613
|
+
extensionId: string | null;
|
2614
2614
|
extensionName: string;
|
2615
2615
|
telephonySignature: string | null;
|
2616
2616
|
};
|
@@ -3468,7 +3468,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3468
3468
|
sipServerUrl: z.ZodString;
|
3469
3469
|
sipUserName: z.ZodString;
|
3470
3470
|
webphoneLoginUser: z.ZodString;
|
3471
|
-
extensionId: z.
|
3471
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
3472
3472
|
extensionName: z.ZodString;
|
3473
3473
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
3474
3474
|
user: z.ZodNullable<z.ZodOptional<z.ZodObject<{
|
@@ -3560,7 +3560,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3560
3560
|
sipServerUrl: z.ZodString;
|
3561
3561
|
sipUserName: z.ZodString;
|
3562
3562
|
webphoneLoginUser: z.ZodString;
|
3563
|
-
extensionId: z.
|
3563
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
3564
3564
|
extensionName: z.ZodString;
|
3565
3565
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
3566
3566
|
}, "strip", z.ZodTypeAny, {
|
@@ -3572,7 +3572,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3572
3572
|
sipServerUrl: string;
|
3573
3573
|
sipUserName: string;
|
3574
3574
|
webphoneLoginUser: string;
|
3575
|
-
extensionId:
|
3575
|
+
extensionId: string | null;
|
3576
3576
|
extensionName: string;
|
3577
3577
|
telephonySignature: string | null;
|
3578
3578
|
}, {
|
@@ -3584,7 +3584,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3584
3584
|
sipServerUrl: string;
|
3585
3585
|
sipUserName: string;
|
3586
3586
|
webphoneLoginUser: string;
|
3587
|
-
extensionId:
|
3587
|
+
extensionId: string | null;
|
3588
3588
|
extensionName: string;
|
3589
3589
|
telephonySignature: string | null;
|
3590
3590
|
}>;
|
@@ -3627,7 +3627,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3627
3627
|
sipServerUrl: string;
|
3628
3628
|
sipUserName: string;
|
3629
3629
|
webphoneLoginUser: string;
|
3630
|
-
extensionId:
|
3630
|
+
extensionId: string | null;
|
3631
3631
|
extensionName: string;
|
3632
3632
|
telephonySignature: string | null;
|
3633
3633
|
};
|
@@ -3670,7 +3670,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3670
3670
|
sipServerUrl: string;
|
3671
3671
|
sipUserName: string;
|
3672
3672
|
webphoneLoginUser: string;
|
3673
|
-
extensionId:
|
3673
|
+
extensionId: string | null;
|
3674
3674
|
extensionName: string;
|
3675
3675
|
telephonySignature: string | null;
|
3676
3676
|
};
|
@@ -3684,7 +3684,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3684
3684
|
sipServerUrl: string;
|
3685
3685
|
sipUserName: string;
|
3686
3686
|
webphoneLoginUser: string;
|
3687
|
-
extensionId:
|
3687
|
+
extensionId: string | null;
|
3688
3688
|
extensionName: string;
|
3689
3689
|
telephonySignature: string | null;
|
3690
3690
|
user?: {
|
@@ -3726,7 +3726,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3726
3726
|
sipServerUrl: string;
|
3727
3727
|
sipUserName: string;
|
3728
3728
|
webphoneLoginUser: string;
|
3729
|
-
extensionId:
|
3729
|
+
extensionId: string | null;
|
3730
3730
|
extensionName: string;
|
3731
3731
|
telephonySignature: string | null;
|
3732
3732
|
};
|
@@ -3740,7 +3740,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3740
3740
|
sipServerUrl: string;
|
3741
3741
|
sipUserName: string;
|
3742
3742
|
webphoneLoginUser: string;
|
3743
|
-
extensionId:
|
3743
|
+
extensionId: string | null;
|
3744
3744
|
extensionName: string;
|
3745
3745
|
telephonySignature: string | null;
|
3746
3746
|
user?: {
|
@@ -3782,7 +3782,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3782
3782
|
sipServerUrl: string;
|
3783
3783
|
sipUserName: string;
|
3784
3784
|
webphoneLoginUser: string;
|
3785
|
-
extensionId:
|
3785
|
+
extensionId: string | null;
|
3786
3786
|
extensionName: string;
|
3787
3787
|
telephonySignature: string | null;
|
3788
3788
|
};
|
@@ -3949,7 +3949,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3949
3949
|
sipServerUrl: string;
|
3950
3950
|
sipUserName: string;
|
3951
3951
|
webphoneLoginUser: string;
|
3952
|
-
extensionId:
|
3952
|
+
extensionId: string | null;
|
3953
3953
|
extensionName: string;
|
3954
3954
|
telephonySignature: string | null;
|
3955
3955
|
user?: {
|
@@ -3991,7 +3991,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
3991
3991
|
sipServerUrl: string;
|
3992
3992
|
sipUserName: string;
|
3993
3993
|
webphoneLoginUser: string;
|
3994
|
-
extensionId:
|
3994
|
+
extensionId: string | null;
|
3995
3995
|
extensionName: string;
|
3996
3996
|
telephonySignature: string | null;
|
3997
3997
|
};
|
@@ -4156,7 +4156,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
4156
4156
|
sipServerUrl: string;
|
4157
4157
|
sipUserName: string;
|
4158
4158
|
webphoneLoginUser: string;
|
4159
|
-
extensionId:
|
4159
|
+
extensionId: string | null;
|
4160
4160
|
extensionName: string;
|
4161
4161
|
telephonySignature: string | null;
|
4162
4162
|
user?: {
|
@@ -4198,7 +4198,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
4198
4198
|
sipServerUrl: string;
|
4199
4199
|
sipUserName: string;
|
4200
4200
|
webphoneLoginUser: string;
|
4201
|
-
extensionId:
|
4201
|
+
extensionId: string | null;
|
4202
4202
|
extensionName: string;
|
4203
4203
|
telephonySignature: string | null;
|
4204
4204
|
};
|
@@ -5059,7 +5059,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5059
5059
|
sipServerUrl: z.ZodString;
|
5060
5060
|
sipUserName: z.ZodString;
|
5061
5061
|
webphoneLoginUser: z.ZodString;
|
5062
|
-
extensionId: z.
|
5062
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
5063
5063
|
extensionName: z.ZodString;
|
5064
5064
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
5065
5065
|
}, "strip", z.ZodTypeAny, {
|
@@ -5071,7 +5071,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5071
5071
|
sipServerUrl: string;
|
5072
5072
|
sipUserName: string;
|
5073
5073
|
webphoneLoginUser: string;
|
5074
|
-
extensionId:
|
5074
|
+
extensionId: string | null;
|
5075
5075
|
extensionName: string;
|
5076
5076
|
telephonySignature: string | null;
|
5077
5077
|
}, {
|
@@ -5083,7 +5083,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5083
5083
|
sipServerUrl: string;
|
5084
5084
|
sipUserName: string;
|
5085
5085
|
webphoneLoginUser: string;
|
5086
|
-
extensionId:
|
5086
|
+
extensionId: string | null;
|
5087
5087
|
extensionName: string;
|
5088
5088
|
telephonySignature: string | null;
|
5089
5089
|
}>;
|
@@ -5126,7 +5126,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5126
5126
|
sipServerUrl: string;
|
5127
5127
|
sipUserName: string;
|
5128
5128
|
webphoneLoginUser: string;
|
5129
|
-
extensionId:
|
5129
|
+
extensionId: string | null;
|
5130
5130
|
extensionName: string;
|
5131
5131
|
telephonySignature: string | null;
|
5132
5132
|
};
|
@@ -5169,7 +5169,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5169
5169
|
sipServerUrl: string;
|
5170
5170
|
sipUserName: string;
|
5171
5171
|
webphoneLoginUser: string;
|
5172
|
-
extensionId:
|
5172
|
+
extensionId: string | null;
|
5173
5173
|
extensionName: string;
|
5174
5174
|
telephonySignature: string | null;
|
5175
5175
|
};
|
@@ -5366,7 +5366,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5366
5366
|
sipServerUrl: string;
|
5367
5367
|
sipUserName: string;
|
5368
5368
|
webphoneLoginUser: string;
|
5369
|
-
extensionId:
|
5369
|
+
extensionId: string | null;
|
5370
5370
|
extensionName: string;
|
5371
5371
|
telephonySignature: string | null;
|
5372
5372
|
};
|
@@ -5536,7 +5536,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5536
5536
|
sipServerUrl: string;
|
5537
5537
|
sipUserName: string;
|
5538
5538
|
webphoneLoginUser: string;
|
5539
|
-
extensionId:
|
5539
|
+
extensionId: string | null;
|
5540
5540
|
extensionName: string;
|
5541
5541
|
telephonySignature: string | null;
|
5542
5542
|
};
|
@@ -5599,7 +5599,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5599
5599
|
sipServerUrl: string;
|
5600
5600
|
sipUserName: string;
|
5601
5601
|
webphoneLoginUser: string;
|
5602
|
-
extensionId:
|
5602
|
+
extensionId: string | null;
|
5603
5603
|
extensionName: string;
|
5604
5604
|
telephonySignature: string | null;
|
5605
5605
|
};
|
@@ -5765,7 +5765,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5765
5765
|
sipServerUrl: string;
|
5766
5766
|
sipUserName: string;
|
5767
5767
|
webphoneLoginUser: string;
|
5768
|
-
extensionId:
|
5768
|
+
extensionId: string | null;
|
5769
5769
|
extensionName: string;
|
5770
5770
|
telephonySignature: string | null;
|
5771
5771
|
user?: {
|
@@ -5807,7 +5807,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5807
5807
|
sipServerUrl: string;
|
5808
5808
|
sipUserName: string;
|
5809
5809
|
webphoneLoginUser: string;
|
5810
|
-
extensionId:
|
5810
|
+
extensionId: string | null;
|
5811
5811
|
extensionName: string;
|
5812
5812
|
telephonySignature: string | null;
|
5813
5813
|
};
|
@@ -5856,7 +5856,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
5856
5856
|
sipServerUrl: string;
|
5857
5857
|
sipUserName: string;
|
5858
5858
|
webphoneLoginUser: string;
|
5859
|
-
extensionId:
|
5859
|
+
extensionId: string | null;
|
5860
5860
|
extensionName: string;
|
5861
5861
|
telephonySignature: string | null;
|
5862
5862
|
};
|
@@ -6053,7 +6053,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6053
6053
|
sipServerUrl: string;
|
6054
6054
|
sipUserName: string;
|
6055
6055
|
webphoneLoginUser: string;
|
6056
|
-
extensionId:
|
6056
|
+
extensionId: string | null;
|
6057
6057
|
extensionName: string;
|
6058
6058
|
telephonySignature: string | null;
|
6059
6059
|
};
|
@@ -6223,7 +6223,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6223
6223
|
sipServerUrl: string;
|
6224
6224
|
sipUserName: string;
|
6225
6225
|
webphoneLoginUser: string;
|
6226
|
-
extensionId:
|
6226
|
+
extensionId: string | null;
|
6227
6227
|
extensionName: string;
|
6228
6228
|
telephonySignature: string | null;
|
6229
6229
|
};
|
@@ -6286,7 +6286,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6286
6286
|
sipServerUrl: string;
|
6287
6287
|
sipUserName: string;
|
6288
6288
|
webphoneLoginUser: string;
|
6289
|
-
extensionId:
|
6289
|
+
extensionId: string | null;
|
6290
6290
|
extensionName: string;
|
6291
6291
|
telephonySignature: string | null;
|
6292
6292
|
};
|
@@ -6452,7 +6452,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6452
6452
|
sipServerUrl: string;
|
6453
6453
|
sipUserName: string;
|
6454
6454
|
webphoneLoginUser: string;
|
6455
|
-
extensionId:
|
6455
|
+
extensionId: string | null;
|
6456
6456
|
extensionName: string;
|
6457
6457
|
telephonySignature: string | null;
|
6458
6458
|
user?: {
|
@@ -6494,7 +6494,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6494
6494
|
sipServerUrl: string;
|
6495
6495
|
sipUserName: string;
|
6496
6496
|
webphoneLoginUser: string;
|
6497
|
-
extensionId:
|
6497
|
+
extensionId: string | null;
|
6498
6498
|
extensionName: string;
|
6499
6499
|
telephonySignature: string | null;
|
6500
6500
|
};
|
@@ -6543,7 +6543,7 @@ export declare const CxLogSchemaWithRelations: z.ZodObject<{
|
|
6543
6543
|
sipServerUrl: string;
|
6544
6544
|
sipUserName: string;
|
6545
6545
|
webphoneLoginUser: string;
|
6546
|
-
extensionId:
|
6546
|
+
extensionId: string | null;
|
6547
6547
|
extensionName: string;
|
6548
6548
|
telephonySignature: string | null;
|
6549
6549
|
};
|