@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
@@ -98,7 +98,7 @@ export declare const activityLogContract: {
|
|
98
98
|
sipServerUrl: z.ZodString;
|
99
99
|
sipUserName: z.ZodString;
|
100
100
|
webphoneLoginUser: z.ZodString;
|
101
|
-
extensionId: z.
|
101
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
102
102
|
extensionName: z.ZodString;
|
103
103
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
104
104
|
}, "strip", z.ZodTypeAny, {
|
@@ -110,7 +110,7 @@ export declare const activityLogContract: {
|
|
110
110
|
sipServerUrl: string;
|
111
111
|
sipUserName: string;
|
112
112
|
webphoneLoginUser: string;
|
113
|
-
extensionId:
|
113
|
+
extensionId: string | null;
|
114
114
|
extensionName: string;
|
115
115
|
telephonySignature: string | null;
|
116
116
|
}, {
|
@@ -122,7 +122,7 @@ export declare const activityLogContract: {
|
|
122
122
|
sipServerUrl: string;
|
123
123
|
sipUserName: string;
|
124
124
|
webphoneLoginUser: string;
|
125
|
-
extensionId:
|
125
|
+
extensionId: string | null;
|
126
126
|
extensionName: string;
|
127
127
|
telephonySignature: string | null;
|
128
128
|
}>;
|
@@ -165,7 +165,7 @@ export declare const activityLogContract: {
|
|
165
165
|
sipServerUrl: string;
|
166
166
|
sipUserName: string;
|
167
167
|
webphoneLoginUser: string;
|
168
|
-
extensionId:
|
168
|
+
extensionId: string | null;
|
169
169
|
extensionName: string;
|
170
170
|
telephonySignature: string | null;
|
171
171
|
};
|
@@ -208,7 +208,7 @@ export declare const activityLogContract: {
|
|
208
208
|
sipServerUrl: string;
|
209
209
|
sipUserName: string;
|
210
210
|
webphoneLoginUser: string;
|
211
|
-
extensionId:
|
211
|
+
extensionId: string | null;
|
212
212
|
extensionName: string;
|
213
213
|
telephonySignature: string | null;
|
214
214
|
};
|
@@ -282,7 +282,7 @@ export declare const activityLogContract: {
|
|
282
282
|
sipServerUrl: string;
|
283
283
|
sipUserName: string;
|
284
284
|
webphoneLoginUser: string;
|
285
|
-
extensionId:
|
285
|
+
extensionId: string | null;
|
286
286
|
extensionName: string;
|
287
287
|
telephonySignature: string | null;
|
288
288
|
};
|
@@ -341,7 +341,7 @@ export declare const activityLogContract: {
|
|
341
341
|
sipServerUrl: string;
|
342
342
|
sipUserName: string;
|
343
343
|
webphoneLoginUser: string;
|
344
|
-
extensionId:
|
344
|
+
extensionId: string | null;
|
345
345
|
extensionName: string;
|
346
346
|
telephonySignature: string | null;
|
347
347
|
};
|
@@ -115,7 +115,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
115
115
|
sipServerUrl: z.ZodString;
|
116
116
|
sipUserName: z.ZodString;
|
117
117
|
webphoneLoginUser: z.ZodString;
|
118
|
-
extensionId: z.
|
118
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
119
119
|
extensionName: z.ZodString;
|
120
120
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
121
121
|
}, "strip", z.ZodTypeAny, {
|
@@ -127,7 +127,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
127
127
|
sipServerUrl: string;
|
128
128
|
sipUserName: string;
|
129
129
|
webphoneLoginUser: string;
|
130
|
-
extensionId:
|
130
|
+
extensionId: string | null;
|
131
131
|
extensionName: string;
|
132
132
|
telephonySignature: string | null;
|
133
133
|
}, {
|
@@ -139,7 +139,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
139
139
|
sipServerUrl: string;
|
140
140
|
sipUserName: string;
|
141
141
|
webphoneLoginUser: string;
|
142
|
-
extensionId:
|
142
|
+
extensionId: string | null;
|
143
143
|
extensionName: string;
|
144
144
|
telephonySignature: string | null;
|
145
145
|
}>;
|
@@ -182,7 +182,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
182
182
|
sipServerUrl: string;
|
183
183
|
sipUserName: string;
|
184
184
|
webphoneLoginUser: string;
|
185
|
-
extensionId:
|
185
|
+
extensionId: string | null;
|
186
186
|
extensionName: string;
|
187
187
|
telephonySignature: string | null;
|
188
188
|
};
|
@@ -225,7 +225,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
225
225
|
sipServerUrl: string;
|
226
226
|
sipUserName: string;
|
227
227
|
webphoneLoginUser: string;
|
228
|
-
extensionId:
|
228
|
+
extensionId: string | null;
|
229
229
|
extensionName: string;
|
230
230
|
telephonySignature: string | null;
|
231
231
|
};
|
@@ -299,7 +299,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
299
299
|
sipServerUrl: string;
|
300
300
|
sipUserName: string;
|
301
301
|
webphoneLoginUser: string;
|
302
|
-
extensionId:
|
302
|
+
extensionId: string | null;
|
303
303
|
extensionName: string;
|
304
304
|
telephonySignature: string | null;
|
305
305
|
};
|
@@ -358,7 +358,7 @@ export declare const ActivityLogSchema: z.ZodObject<{
|
|
358
358
|
sipServerUrl: string;
|
359
359
|
sipUserName: string;
|
360
360
|
webphoneLoginUser: string;
|
361
|
-
extensionId:
|
361
|
+
extensionId: string | null;
|
362
362
|
extensionName: string;
|
363
363
|
telephonySignature: string | null;
|
364
364
|
};
|
package/dist/src/auth/index.d.ts
CHANGED
@@ -293,7 +293,7 @@ export declare const authContract: {
|
|
293
293
|
sipServerUrl: z.ZodString;
|
294
294
|
sipUserName: z.ZodString;
|
295
295
|
webphoneLoginUser: z.ZodString;
|
296
|
-
extensionId: z.
|
296
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
297
297
|
extensionName: z.ZodString;
|
298
298
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
299
299
|
}, "strip", z.ZodTypeAny, {
|
@@ -305,7 +305,7 @@ export declare const authContract: {
|
|
305
305
|
sipServerUrl: string;
|
306
306
|
sipUserName: string;
|
307
307
|
webphoneLoginUser: string;
|
308
|
-
extensionId:
|
308
|
+
extensionId: string | null;
|
309
309
|
extensionName: string;
|
310
310
|
telephonySignature: string | null;
|
311
311
|
}, {
|
@@ -317,7 +317,7 @@ export declare const authContract: {
|
|
317
317
|
sipServerUrl: string;
|
318
318
|
sipUserName: string;
|
319
319
|
webphoneLoginUser: string;
|
320
|
-
extensionId:
|
320
|
+
extensionId: string | null;
|
321
321
|
extensionName: string;
|
322
322
|
telephonySignature: string | null;
|
323
323
|
}>;
|
@@ -360,7 +360,7 @@ export declare const authContract: {
|
|
360
360
|
sipServerUrl: string;
|
361
361
|
sipUserName: string;
|
362
362
|
webphoneLoginUser: string;
|
363
|
-
extensionId:
|
363
|
+
extensionId: string | null;
|
364
364
|
extensionName: string;
|
365
365
|
telephonySignature: string | null;
|
366
366
|
};
|
@@ -403,7 +403,7 @@ export declare const authContract: {
|
|
403
403
|
sipServerUrl: string;
|
404
404
|
sipUserName: string;
|
405
405
|
webphoneLoginUser: string;
|
406
|
-
extensionId:
|
406
|
+
extensionId: string | null;
|
407
407
|
extensionName: string;
|
408
408
|
telephonySignature: string | null;
|
409
409
|
};
|
@@ -448,7 +448,7 @@ export declare const authContract: {
|
|
448
448
|
sipServerUrl: string;
|
449
449
|
sipUserName: string;
|
450
450
|
webphoneLoginUser: string;
|
451
|
-
extensionId:
|
451
|
+
extensionId: string | null;
|
452
452
|
extensionName: string;
|
453
453
|
telephonySignature: string | null;
|
454
454
|
};
|
@@ -494,7 +494,7 @@ export declare const authContract: {
|
|
494
494
|
sipServerUrl: string;
|
495
495
|
sipUserName: string;
|
496
496
|
webphoneLoginUser: string;
|
497
|
-
extensionId:
|
497
|
+
extensionId: string | null;
|
498
498
|
extensionName: string;
|
499
499
|
telephonySignature: string | null;
|
500
500
|
};
|
@@ -9,7 +9,7 @@ export declare const CallLogSchema: z.ZodObject<{
|
|
9
9
|
duration: z.ZodNumber;
|
10
10
|
type: z.ZodString;
|
11
11
|
status: z.ZodString;
|
12
|
-
extensionId: z.ZodString
|
12
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
13
13
|
contactId: z.ZodString;
|
14
14
|
uniqueCallId: z.ZodString;
|
15
15
|
uploadId: z.ZodString;
|
@@ -24,7 +24,7 @@ export declare const CallLogSchema: z.ZodObject<{
|
|
24
24
|
createdAt: Date;
|
25
25
|
updatedAt: Date;
|
26
26
|
deletedAt: Date | null;
|
27
|
-
extensionId: string;
|
27
|
+
extensionId: string | null;
|
28
28
|
uniqueCallId: string;
|
29
29
|
callFrom: string;
|
30
30
|
callTo: string;
|
@@ -42,7 +42,7 @@ export declare const CallLogSchema: z.ZodObject<{
|
|
42
42
|
createdAt: Date;
|
43
43
|
updatedAt: Date;
|
44
44
|
deletedAt: Date | null;
|
45
|
-
extensionId: string;
|
45
|
+
extensionId: string | null;
|
46
46
|
uniqueCallId: string;
|
47
47
|
callFrom: string;
|
48
48
|
callTo: string;
|
@@ -170,7 +170,7 @@ export declare const channelContract: {
|
|
170
170
|
sipServerUrl: z.ZodString;
|
171
171
|
sipUserName: z.ZodString;
|
172
172
|
webphoneLoginUser: z.ZodString;
|
173
|
-
extensionId: z.
|
173
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
174
174
|
extensionName: z.ZodString;
|
175
175
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
176
176
|
}, "strip", z.ZodTypeAny, {
|
@@ -182,7 +182,7 @@ export declare const channelContract: {
|
|
182
182
|
sipServerUrl: string;
|
183
183
|
sipUserName: string;
|
184
184
|
webphoneLoginUser: string;
|
185
|
-
extensionId:
|
185
|
+
extensionId: string | null;
|
186
186
|
extensionName: string;
|
187
187
|
telephonySignature: string | null;
|
188
188
|
}, {
|
@@ -194,7 +194,7 @@ export declare const channelContract: {
|
|
194
194
|
sipServerUrl: string;
|
195
195
|
sipUserName: string;
|
196
196
|
webphoneLoginUser: string;
|
197
|
-
extensionId:
|
197
|
+
extensionId: string | null;
|
198
198
|
extensionName: string;
|
199
199
|
telephonySignature: string | null;
|
200
200
|
}>;
|
@@ -237,7 +237,7 @@ export declare const channelContract: {
|
|
237
237
|
sipServerUrl: string;
|
238
238
|
sipUserName: string;
|
239
239
|
webphoneLoginUser: string;
|
240
|
-
extensionId:
|
240
|
+
extensionId: string | null;
|
241
241
|
extensionName: string;
|
242
242
|
telephonySignature: string | null;
|
243
243
|
};
|
@@ -280,7 +280,7 @@ export declare const channelContract: {
|
|
280
280
|
sipServerUrl: string;
|
281
281
|
sipUserName: string;
|
282
282
|
webphoneLoginUser: string;
|
283
|
-
extensionId:
|
283
|
+
extensionId: string | null;
|
284
284
|
extensionName: string;
|
285
285
|
telephonySignature: string | null;
|
286
286
|
};
|
@@ -343,7 +343,7 @@ export declare const channelContract: {
|
|
343
343
|
sipServerUrl: string;
|
344
344
|
sipUserName: string;
|
345
345
|
webphoneLoginUser: string;
|
346
|
-
extensionId:
|
346
|
+
extensionId: string | null;
|
347
347
|
extensionName: string;
|
348
348
|
telephonySignature: string | null;
|
349
349
|
};
|
@@ -406,7 +406,7 @@ export declare const channelContract: {
|
|
406
406
|
sipServerUrl: string;
|
407
407
|
sipUserName: string;
|
408
408
|
webphoneLoginUser: string;
|
409
|
-
extensionId:
|
409
|
+
extensionId: string | null;
|
410
410
|
extensionName: string;
|
411
411
|
telephonySignature: string | null;
|
412
412
|
};
|
@@ -472,7 +472,7 @@ export declare const channelContract: {
|
|
472
472
|
sipServerUrl: string;
|
473
473
|
sipUserName: string;
|
474
474
|
webphoneLoginUser: string;
|
475
|
-
extensionId:
|
475
|
+
extensionId: string | null;
|
476
476
|
extensionName: string;
|
477
477
|
telephonySignature: string | null;
|
478
478
|
};
|
@@ -538,7 +538,7 @@ export declare const channelContract: {
|
|
538
538
|
sipServerUrl: string;
|
539
539
|
sipUserName: string;
|
540
540
|
webphoneLoginUser: string;
|
541
|
-
extensionId:
|
541
|
+
extensionId: string | null;
|
542
542
|
extensionName: string;
|
543
543
|
telephonySignature: string | null;
|
544
544
|
};
|
@@ -706,7 +706,7 @@ export declare const channelContract: {
|
|
706
706
|
sipServerUrl: z.ZodString;
|
707
707
|
sipUserName: z.ZodString;
|
708
708
|
webphoneLoginUser: z.ZodString;
|
709
|
-
extensionId: z.
|
709
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
710
710
|
extensionName: z.ZodString;
|
711
711
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
712
712
|
}, "strip", z.ZodTypeAny, {
|
@@ -718,7 +718,7 @@ export declare const channelContract: {
|
|
718
718
|
sipServerUrl: string;
|
719
719
|
sipUserName: string;
|
720
720
|
webphoneLoginUser: string;
|
721
|
-
extensionId:
|
721
|
+
extensionId: string | null;
|
722
722
|
extensionName: string;
|
723
723
|
telephonySignature: string | null;
|
724
724
|
}, {
|
@@ -730,7 +730,7 @@ export declare const channelContract: {
|
|
730
730
|
sipServerUrl: string;
|
731
731
|
sipUserName: string;
|
732
732
|
webphoneLoginUser: string;
|
733
|
-
extensionId:
|
733
|
+
extensionId: string | null;
|
734
734
|
extensionName: string;
|
735
735
|
telephonySignature: string | null;
|
736
736
|
}>;
|
@@ -773,7 +773,7 @@ export declare const channelContract: {
|
|
773
773
|
sipServerUrl: string;
|
774
774
|
sipUserName: string;
|
775
775
|
webphoneLoginUser: string;
|
776
|
-
extensionId:
|
776
|
+
extensionId: string | null;
|
777
777
|
extensionName: string;
|
778
778
|
telephonySignature: string | null;
|
779
779
|
};
|
@@ -816,7 +816,7 @@ export declare const channelContract: {
|
|
816
816
|
sipServerUrl: string;
|
817
817
|
sipUserName: string;
|
818
818
|
webphoneLoginUser: string;
|
819
|
-
extensionId:
|
819
|
+
extensionId: string | null;
|
820
820
|
extensionName: string;
|
821
821
|
telephonySignature: string | null;
|
822
822
|
};
|
@@ -879,7 +879,7 @@ export declare const channelContract: {
|
|
879
879
|
sipServerUrl: string;
|
880
880
|
sipUserName: string;
|
881
881
|
webphoneLoginUser: string;
|
882
|
-
extensionId:
|
882
|
+
extensionId: string | null;
|
883
883
|
extensionName: string;
|
884
884
|
telephonySignature: string | null;
|
885
885
|
};
|
@@ -942,7 +942,7 @@ export declare const channelContract: {
|
|
942
942
|
sipServerUrl: string;
|
943
943
|
sipUserName: string;
|
944
944
|
webphoneLoginUser: string;
|
945
|
-
extensionId:
|
945
|
+
extensionId: string | null;
|
946
946
|
extensionName: string;
|
947
947
|
telephonySignature: string | null;
|
948
948
|
};
|
@@ -1008,7 +1008,7 @@ export declare const channelContract: {
|
|
1008
1008
|
sipServerUrl: string;
|
1009
1009
|
sipUserName: string;
|
1010
1010
|
webphoneLoginUser: string;
|
1011
|
-
extensionId:
|
1011
|
+
extensionId: string | null;
|
1012
1012
|
extensionName: string;
|
1013
1013
|
telephonySignature: string | null;
|
1014
1014
|
};
|
@@ -1074,7 +1074,7 @@ export declare const channelContract: {
|
|
1074
1074
|
sipServerUrl: string;
|
1075
1075
|
sipUserName: string;
|
1076
1076
|
webphoneLoginUser: string;
|
1077
|
-
extensionId:
|
1077
|
+
extensionId: string | null;
|
1078
1078
|
extensionName: string;
|
1079
1079
|
telephonySignature: string | null;
|
1080
1080
|
};
|
@@ -1278,7 +1278,7 @@ export declare const channelContract: {
|
|
1278
1278
|
sipServerUrl: z.ZodString;
|
1279
1279
|
sipUserName: z.ZodString;
|
1280
1280
|
webphoneLoginUser: z.ZodString;
|
1281
|
-
extensionId: z.
|
1281
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
1282
1282
|
extensionName: z.ZodString;
|
1283
1283
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1284
1284
|
}, "strip", z.ZodTypeAny, {
|
@@ -1290,7 +1290,7 @@ export declare const channelContract: {
|
|
1290
1290
|
sipServerUrl: string;
|
1291
1291
|
sipUserName: string;
|
1292
1292
|
webphoneLoginUser: string;
|
1293
|
-
extensionId:
|
1293
|
+
extensionId: string | null;
|
1294
1294
|
extensionName: string;
|
1295
1295
|
telephonySignature: string | null;
|
1296
1296
|
}, {
|
@@ -1302,7 +1302,7 @@ export declare const channelContract: {
|
|
1302
1302
|
sipServerUrl: string;
|
1303
1303
|
sipUserName: string;
|
1304
1304
|
webphoneLoginUser: string;
|
1305
|
-
extensionId:
|
1305
|
+
extensionId: string | null;
|
1306
1306
|
extensionName: string;
|
1307
1307
|
telephonySignature: string | null;
|
1308
1308
|
}>;
|
@@ -1345,7 +1345,7 @@ export declare const channelContract: {
|
|
1345
1345
|
sipServerUrl: string;
|
1346
1346
|
sipUserName: string;
|
1347
1347
|
webphoneLoginUser: string;
|
1348
|
-
extensionId:
|
1348
|
+
extensionId: string | null;
|
1349
1349
|
extensionName: string;
|
1350
1350
|
telephonySignature: string | null;
|
1351
1351
|
};
|
@@ -1388,7 +1388,7 @@ export declare const channelContract: {
|
|
1388
1388
|
sipServerUrl: string;
|
1389
1389
|
sipUserName: string;
|
1390
1390
|
webphoneLoginUser: string;
|
1391
|
-
extensionId:
|
1391
|
+
extensionId: string | null;
|
1392
1392
|
extensionName: string;
|
1393
1393
|
telephonySignature: string | null;
|
1394
1394
|
};
|
@@ -1451,7 +1451,7 @@ export declare const channelContract: {
|
|
1451
1451
|
sipServerUrl: string;
|
1452
1452
|
sipUserName: string;
|
1453
1453
|
webphoneLoginUser: string;
|
1454
|
-
extensionId:
|
1454
|
+
extensionId: string | null;
|
1455
1455
|
extensionName: string;
|
1456
1456
|
telephonySignature: string | null;
|
1457
1457
|
};
|
@@ -1514,7 +1514,7 @@ export declare const channelContract: {
|
|
1514
1514
|
sipServerUrl: string;
|
1515
1515
|
sipUserName: string;
|
1516
1516
|
webphoneLoginUser: string;
|
1517
|
-
extensionId:
|
1517
|
+
extensionId: string | null;
|
1518
1518
|
extensionName: string;
|
1519
1519
|
telephonySignature: string | null;
|
1520
1520
|
};
|
@@ -1580,7 +1580,7 @@ export declare const channelContract: {
|
|
1580
1580
|
sipServerUrl: string;
|
1581
1581
|
sipUserName: string;
|
1582
1582
|
webphoneLoginUser: string;
|
1583
|
-
extensionId:
|
1583
|
+
extensionId: string | null;
|
1584
1584
|
extensionName: string;
|
1585
1585
|
telephonySignature: string | null;
|
1586
1586
|
};
|
@@ -1646,7 +1646,7 @@ export declare const channelContract: {
|
|
1646
1646
|
sipServerUrl: string;
|
1647
1647
|
sipUserName: string;
|
1648
1648
|
webphoneLoginUser: string;
|
1649
|
-
extensionId:
|
1649
|
+
extensionId: string | null;
|
1650
1650
|
extensionName: string;
|
1651
1651
|
telephonySignature: string | null;
|
1652
1652
|
};
|
@@ -1806,7 +1806,7 @@ export declare const channelContract: {
|
|
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 channelContract: {
|
|
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 channelContract: {
|
|
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 channelContract: {
|
|
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 channelContract: {
|
|
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 channelContract: {
|
|
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 channelContract: {
|
|
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
|
};
|
@@ -2107,7 +2107,7 @@ export declare const channelContract: {
|
|
2107
2107
|
sipServerUrl: string;
|
2108
2108
|
sipUserName: string;
|
2109
2109
|
webphoneLoginUser: string;
|
2110
|
-
extensionId:
|
2110
|
+
extensionId: string | null;
|
2111
2111
|
extensionName: string;
|
2112
2112
|
telephonySignature: string | null;
|
2113
2113
|
};
|
@@ -2173,7 +2173,7 @@ export declare const channelContract: {
|
|
2173
2173
|
sipServerUrl: string;
|
2174
2174
|
sipUserName: string;
|
2175
2175
|
webphoneLoginUser: string;
|
2176
|
-
extensionId:
|
2176
|
+
extensionId: string | null;
|
2177
2177
|
extensionName: string;
|
2178
2178
|
telephonySignature: string | null;
|
2179
2179
|
};
|
@@ -64,9 +64,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
64
64
|
updatedAt: z.ZodDate;
|
65
65
|
deletedAt: z.ZodNullable<z.ZodDate>;
|
66
66
|
name: z.ZodString;
|
67
|
-
email: z.ZodString;
|
68
|
-
* Channel Status Type Enum
|
69
|
-
*/
|
67
|
+
email: z.ZodString;
|
70
68
|
emailVerifiedAt: z.ZodNullable<z.ZodDate>;
|
71
69
|
password: z.ZodString;
|
72
70
|
address: z.ZodNullable<z.ZodString>;
|
@@ -149,7 +147,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
149
147
|
sipServerUrl: z.ZodString;
|
150
148
|
sipUserName: z.ZodString;
|
151
149
|
webphoneLoginUser: z.ZodString;
|
152
|
-
extensionId: z.
|
150
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
153
151
|
extensionName: z.ZodString;
|
154
152
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
155
153
|
}, "strip", z.ZodTypeAny, {
|
@@ -161,7 +159,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
161
159
|
sipServerUrl: string;
|
162
160
|
sipUserName: string;
|
163
161
|
webphoneLoginUser: string;
|
164
|
-
extensionId:
|
162
|
+
extensionId: string | null;
|
165
163
|
extensionName: string;
|
166
164
|
telephonySignature: string | null;
|
167
165
|
}, {
|
@@ -173,7 +171,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
173
171
|
sipServerUrl: string;
|
174
172
|
sipUserName: string;
|
175
173
|
webphoneLoginUser: string;
|
176
|
-
extensionId:
|
174
|
+
extensionId: string | null;
|
177
175
|
extensionName: string;
|
178
176
|
telephonySignature: string | null;
|
179
177
|
}>;
|
@@ -216,7 +214,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
216
214
|
sipServerUrl: string;
|
217
215
|
sipUserName: string;
|
218
216
|
webphoneLoginUser: string;
|
219
|
-
extensionId:
|
217
|
+
extensionId: string | null;
|
220
218
|
extensionName: string;
|
221
219
|
telephonySignature: string | null;
|
222
220
|
};
|
@@ -259,7 +257,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
259
257
|
sipServerUrl: string;
|
260
258
|
sipUserName: string;
|
261
259
|
webphoneLoginUser: string;
|
262
|
-
extensionId:
|
260
|
+
extensionId: string | null;
|
263
261
|
extensionName: string;
|
264
262
|
telephonySignature: string | null;
|
265
263
|
};
|
@@ -322,7 +320,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
322
320
|
sipServerUrl: string;
|
323
321
|
sipUserName: string;
|
324
322
|
webphoneLoginUser: string;
|
325
|
-
extensionId:
|
323
|
+
extensionId: string | null;
|
326
324
|
extensionName: string;
|
327
325
|
telephonySignature: string | null;
|
328
326
|
};
|
@@ -385,7 +383,7 @@ export declare const ChannelSchema: z.ZodOptional<z.ZodObject<{
|
|
385
383
|
sipServerUrl: string;
|
386
384
|
sipUserName: string;
|
387
385
|
webphoneLoginUser: string;
|
388
|
-
extensionId:
|
386
|
+
extensionId: string | null;
|
389
387
|
extensionName: string;
|
390
388
|
telephonySignature: string | null;
|
391
389
|
};
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,6GAU5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa
|
1
|
+
{"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/channel/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAIpB;;GAEG;AACH,eAAO,MAAM,iBAAiB,6GAU5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,uDAGlC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;EAKhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAuCb,CAAC"}
|