@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.
- package/dist/index.js +976 -932
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +975 -932
- package/dist/index.mjs.map +1 -1
- package/dist/src/activity-log/index.d.ts +17 -10
- package/dist/src/activity-log/index.d.ts.map +1 -1
- package/dist/src/activity-log/schema.d.ts +17 -10
- package/dist/src/activity-log/schema.d.ts.map +1 -1
- package/dist/src/auth/index.d.ts +17 -10
- package/dist/src/auth/index.d.ts.map +1 -1
- package/dist/src/channel/index.d.ts +92 -56
- package/dist/src/channel/index.d.ts.map +1 -1
- package/dist/src/channel/schema.d.ts +18 -12
- package/dist/src/channel/schema.d.ts.map +1 -1
- package/dist/src/chat/index.d.ts +1068 -656
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +183 -110
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +306 -188
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/comment/index.d.ts +965 -88
- package/dist/src/comment/index.d.ts.map +1 -1
- package/dist/src/comment/schema.d.ts +275 -24
- package/dist/src/comment/schema.d.ts.map +1 -1
- package/dist/src/contract.d.ts +10243 -6747
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +116 -72
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +92 -56
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/evaluate-form/index.d.ts +6 -6
- package/dist/src/evaluate-form/validation.d.ts +8 -8
- package/dist/src/extension/index.d.ts +29 -120
- package/dist/src/extension/index.d.ts.map +1 -1
- package/dist/src/extension/schema.d.ts +3 -0
- package/dist/src/extension/schema.d.ts.map +1 -1
- package/dist/src/extension/validation.d.ts +6 -0
- package/dist/src/extension/validation.d.ts.map +1 -1
- package/dist/src/messenger/index.d.ts +162 -100
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
- package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
- package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
- package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
- package/dist/src/telephony-extension/index.d.ts +2 -0
- package/dist/src/telephony-extension/index.d.ts.map +1 -1
- package/dist/src/ticket/index.d.ts +3794 -1641
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/schema.d.ts +177 -0
- package/dist/src/ticket/schema.d.ts.map +1 -1
- package/dist/src/user/index.d.ts +57 -34
- package/dist/src/user/index.d.ts.map +1 -1
- package/dist/src/user/schema.d.ts +11 -6
- package/dist/src/user/schema.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/index.d.ts +12 -8
- package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
- package/dist/src/user-presence-status-log/schema.d.ts +17 -10
- package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
- package/dist/src/widget/index.d.ts +3 -13
- package/dist/src/widget/index.d.ts.map +1 -1
- package/package.json +1 -1
@@ -161,7 +161,7 @@ export declare const channelContract: {
|
|
161
161
|
displayName: string;
|
162
162
|
}[];
|
163
163
|
}>, "many">;
|
164
|
-
extension: z.
|
164
|
+
extension: z.ZodObject<{
|
165
165
|
id: z.ZodString;
|
166
166
|
createdAt: z.ZodDate;
|
167
167
|
updatedAt: z.ZodDate;
|
@@ -169,6 +169,7 @@ export declare const channelContract: {
|
|
169
169
|
userId: z.ZodNullable<z.ZodString>;
|
170
170
|
sipServerUrl: z.ZodString;
|
171
171
|
sipUserName: z.ZodString;
|
172
|
+
webphoneLoginUser: z.ZodString;
|
172
173
|
extensionId: z.ZodNumber;
|
173
174
|
extensionName: z.ZodString;
|
174
175
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -180,6 +181,7 @@ export declare const channelContract: {
|
|
180
181
|
userId: string | null;
|
181
182
|
sipServerUrl: string;
|
182
183
|
sipUserName: string;
|
184
|
+
webphoneLoginUser: string;
|
183
185
|
extensionId: number;
|
184
186
|
extensionName: string;
|
185
187
|
telephonySignature: string | null;
|
@@ -191,10 +193,11 @@ export declare const channelContract: {
|
|
191
193
|
userId: string | null;
|
192
194
|
sipServerUrl: string;
|
193
195
|
sipUserName: string;
|
196
|
+
webphoneLoginUser: string;
|
194
197
|
extensionId: number;
|
195
198
|
extensionName: string;
|
196
199
|
telephonySignature: string | null;
|
197
|
-
}
|
200
|
+
}>;
|
198
201
|
}, "strip", z.ZodTypeAny, {
|
199
202
|
id: string;
|
200
203
|
address: string | null;
|
@@ -225,7 +228,7 @@ export declare const channelContract: {
|
|
225
228
|
displayName: string;
|
226
229
|
}[];
|
227
230
|
}[];
|
228
|
-
extension
|
231
|
+
extension: {
|
229
232
|
id: string;
|
230
233
|
createdAt: Date;
|
231
234
|
updatedAt: Date;
|
@@ -233,10 +236,11 @@ export declare const channelContract: {
|
|
233
236
|
userId: string | null;
|
234
237
|
sipServerUrl: string;
|
235
238
|
sipUserName: string;
|
239
|
+
webphoneLoginUser: string;
|
236
240
|
extensionId: number;
|
237
241
|
extensionName: string;
|
238
242
|
telephonySignature: string | null;
|
239
|
-
}
|
243
|
+
};
|
240
244
|
}, {
|
241
245
|
id: string;
|
242
246
|
address: string | null;
|
@@ -267,7 +271,7 @@ export declare const channelContract: {
|
|
267
271
|
displayName: string;
|
268
272
|
}[];
|
269
273
|
}[];
|
270
|
-
extension
|
274
|
+
extension: {
|
271
275
|
id: string;
|
272
276
|
createdAt: Date;
|
273
277
|
updatedAt: Date;
|
@@ -275,10 +279,11 @@ export declare const channelContract: {
|
|
275
279
|
userId: string | null;
|
276
280
|
sipServerUrl: string;
|
277
281
|
sipUserName: string;
|
282
|
+
webphoneLoginUser: string;
|
278
283
|
extensionId: number;
|
279
284
|
extensionName: string;
|
280
285
|
telephonySignature: string | null;
|
281
|
-
}
|
286
|
+
};
|
282
287
|
}>>;
|
283
288
|
}, "strip", z.ZodTypeAny, {
|
284
289
|
id?: string | undefined;
|
@@ -329,7 +334,7 @@ export declare const channelContract: {
|
|
329
334
|
displayName: string;
|
330
335
|
}[];
|
331
336
|
}[];
|
332
|
-
extension
|
337
|
+
extension: {
|
333
338
|
id: string;
|
334
339
|
createdAt: Date;
|
335
340
|
updatedAt: Date;
|
@@ -337,10 +342,11 @@ export declare const channelContract: {
|
|
337
342
|
userId: string | null;
|
338
343
|
sipServerUrl: string;
|
339
344
|
sipUserName: string;
|
345
|
+
webphoneLoginUser: string;
|
340
346
|
extensionId: number;
|
341
347
|
extensionName: string;
|
342
348
|
telephonySignature: string | null;
|
343
|
-
}
|
349
|
+
};
|
344
350
|
} | undefined;
|
345
351
|
}, {
|
346
352
|
id?: string | undefined;
|
@@ -391,7 +397,7 @@ export declare const channelContract: {
|
|
391
397
|
displayName: string;
|
392
398
|
}[];
|
393
399
|
}[];
|
394
|
-
extension
|
400
|
+
extension: {
|
395
401
|
id: string;
|
396
402
|
createdAt: Date;
|
397
403
|
updatedAt: Date;
|
@@ -399,10 +405,11 @@ export declare const channelContract: {
|
|
399
405
|
userId: string | null;
|
400
406
|
sipServerUrl: string;
|
401
407
|
sipUserName: string;
|
408
|
+
webphoneLoginUser: string;
|
402
409
|
extensionId: number;
|
403
410
|
extensionName: string;
|
404
411
|
telephonySignature: string | null;
|
405
|
-
}
|
412
|
+
};
|
406
413
|
} | undefined;
|
407
414
|
}>>;
|
408
415
|
}, "strip", z.ZodTypeAny, {
|
@@ -456,7 +463,7 @@ export declare const channelContract: {
|
|
456
463
|
displayName: string;
|
457
464
|
}[];
|
458
465
|
}[];
|
459
|
-
extension
|
466
|
+
extension: {
|
460
467
|
id: string;
|
461
468
|
createdAt: Date;
|
462
469
|
updatedAt: Date;
|
@@ -464,10 +471,11 @@ export declare const channelContract: {
|
|
464
471
|
userId: string | null;
|
465
472
|
sipServerUrl: string;
|
466
473
|
sipUserName: string;
|
474
|
+
webphoneLoginUser: string;
|
467
475
|
extensionId: number;
|
468
476
|
extensionName: string;
|
469
477
|
telephonySignature: string | null;
|
470
|
-
}
|
478
|
+
};
|
471
479
|
} | undefined;
|
472
480
|
} | undefined;
|
473
481
|
}, {
|
@@ -521,7 +529,7 @@ export declare const channelContract: {
|
|
521
529
|
displayName: string;
|
522
530
|
}[];
|
523
531
|
}[];
|
524
|
-
extension
|
532
|
+
extension: {
|
525
533
|
id: string;
|
526
534
|
createdAt: Date;
|
527
535
|
updatedAt: Date;
|
@@ -529,10 +537,11 @@ export declare const channelContract: {
|
|
529
537
|
userId: string | null;
|
530
538
|
sipServerUrl: string;
|
531
539
|
sipUserName: string;
|
540
|
+
webphoneLoginUser: string;
|
532
541
|
extensionId: number;
|
533
542
|
extensionName: string;
|
534
543
|
telephonySignature: string | null;
|
535
|
-
}
|
544
|
+
};
|
536
545
|
} | undefined;
|
537
546
|
} | undefined;
|
538
547
|
}>;
|
@@ -688,7 +697,7 @@ export declare const channelContract: {
|
|
688
697
|
displayName: string;
|
689
698
|
}[];
|
690
699
|
}>, "many">;
|
691
|
-
extension: z.
|
700
|
+
extension: z.ZodObject<{
|
692
701
|
id: z.ZodString;
|
693
702
|
createdAt: z.ZodDate;
|
694
703
|
updatedAt: z.ZodDate;
|
@@ -696,6 +705,7 @@ export declare const channelContract: {
|
|
696
705
|
userId: z.ZodNullable<z.ZodString>;
|
697
706
|
sipServerUrl: z.ZodString;
|
698
707
|
sipUserName: z.ZodString;
|
708
|
+
webphoneLoginUser: z.ZodString;
|
699
709
|
extensionId: z.ZodNumber;
|
700
710
|
extensionName: z.ZodString;
|
701
711
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -707,6 +717,7 @@ export declare const channelContract: {
|
|
707
717
|
userId: string | null;
|
708
718
|
sipServerUrl: string;
|
709
719
|
sipUserName: string;
|
720
|
+
webphoneLoginUser: string;
|
710
721
|
extensionId: number;
|
711
722
|
extensionName: string;
|
712
723
|
telephonySignature: string | null;
|
@@ -718,10 +729,11 @@ export declare const channelContract: {
|
|
718
729
|
userId: string | null;
|
719
730
|
sipServerUrl: string;
|
720
731
|
sipUserName: string;
|
732
|
+
webphoneLoginUser: string;
|
721
733
|
extensionId: number;
|
722
734
|
extensionName: string;
|
723
735
|
telephonySignature: string | null;
|
724
|
-
}
|
736
|
+
}>;
|
725
737
|
}, "strip", z.ZodTypeAny, {
|
726
738
|
id: string;
|
727
739
|
address: string | null;
|
@@ -752,7 +764,7 @@ export declare const channelContract: {
|
|
752
764
|
displayName: string;
|
753
765
|
}[];
|
754
766
|
}[];
|
755
|
-
extension
|
767
|
+
extension: {
|
756
768
|
id: string;
|
757
769
|
createdAt: Date;
|
758
770
|
updatedAt: Date;
|
@@ -760,10 +772,11 @@ export declare const channelContract: {
|
|
760
772
|
userId: string | null;
|
761
773
|
sipServerUrl: string;
|
762
774
|
sipUserName: string;
|
775
|
+
webphoneLoginUser: string;
|
763
776
|
extensionId: number;
|
764
777
|
extensionName: string;
|
765
778
|
telephonySignature: string | null;
|
766
|
-
}
|
779
|
+
};
|
767
780
|
}, {
|
768
781
|
id: string;
|
769
782
|
address: string | null;
|
@@ -794,7 +807,7 @@ export declare const channelContract: {
|
|
794
807
|
displayName: string;
|
795
808
|
}[];
|
796
809
|
}[];
|
797
|
-
extension
|
810
|
+
extension: {
|
798
811
|
id: string;
|
799
812
|
createdAt: Date;
|
800
813
|
updatedAt: Date;
|
@@ -802,10 +815,11 @@ export declare const channelContract: {
|
|
802
815
|
userId: string | null;
|
803
816
|
sipServerUrl: string;
|
804
817
|
sipUserName: string;
|
818
|
+
webphoneLoginUser: string;
|
805
819
|
extensionId: number;
|
806
820
|
extensionName: string;
|
807
821
|
telephonySignature: string | null;
|
808
|
-
}
|
822
|
+
};
|
809
823
|
}>>;
|
810
824
|
}, "strip", z.ZodTypeAny, {
|
811
825
|
id?: string | undefined;
|
@@ -856,7 +870,7 @@ export declare const channelContract: {
|
|
856
870
|
displayName: string;
|
857
871
|
}[];
|
858
872
|
}[];
|
859
|
-
extension
|
873
|
+
extension: {
|
860
874
|
id: string;
|
861
875
|
createdAt: Date;
|
862
876
|
updatedAt: Date;
|
@@ -864,10 +878,11 @@ export declare const channelContract: {
|
|
864
878
|
userId: string | null;
|
865
879
|
sipServerUrl: string;
|
866
880
|
sipUserName: string;
|
881
|
+
webphoneLoginUser: string;
|
867
882
|
extensionId: number;
|
868
883
|
extensionName: string;
|
869
884
|
telephonySignature: string | null;
|
870
|
-
}
|
885
|
+
};
|
871
886
|
} | undefined;
|
872
887
|
}, {
|
873
888
|
id?: string | undefined;
|
@@ -918,7 +933,7 @@ export declare const channelContract: {
|
|
918
933
|
displayName: string;
|
919
934
|
}[];
|
920
935
|
}[];
|
921
|
-
extension
|
936
|
+
extension: {
|
922
937
|
id: string;
|
923
938
|
createdAt: Date;
|
924
939
|
updatedAt: Date;
|
@@ -926,10 +941,11 @@ export declare const channelContract: {
|
|
926
941
|
userId: string | null;
|
927
942
|
sipServerUrl: string;
|
928
943
|
sipUserName: string;
|
944
|
+
webphoneLoginUser: string;
|
929
945
|
extensionId: number;
|
930
946
|
extensionName: string;
|
931
947
|
telephonySignature: string | null;
|
932
|
-
}
|
948
|
+
};
|
933
949
|
} | undefined;
|
934
950
|
}>>;
|
935
951
|
}, "strip", z.ZodTypeAny, {
|
@@ -983,7 +999,7 @@ export declare const channelContract: {
|
|
983
999
|
displayName: string;
|
984
1000
|
}[];
|
985
1001
|
}[];
|
986
|
-
extension
|
1002
|
+
extension: {
|
987
1003
|
id: string;
|
988
1004
|
createdAt: Date;
|
989
1005
|
updatedAt: Date;
|
@@ -991,10 +1007,11 @@ export declare const channelContract: {
|
|
991
1007
|
userId: string | null;
|
992
1008
|
sipServerUrl: string;
|
993
1009
|
sipUserName: string;
|
1010
|
+
webphoneLoginUser: string;
|
994
1011
|
extensionId: number;
|
995
1012
|
extensionName: string;
|
996
1013
|
telephonySignature: string | null;
|
997
|
-
}
|
1014
|
+
};
|
998
1015
|
} | undefined;
|
999
1016
|
} | undefined;
|
1000
1017
|
}, {
|
@@ -1048,7 +1065,7 @@ export declare const channelContract: {
|
|
1048
1065
|
displayName: string;
|
1049
1066
|
}[];
|
1050
1067
|
}[];
|
1051
|
-
extension
|
1068
|
+
extension: {
|
1052
1069
|
id: string;
|
1053
1070
|
createdAt: Date;
|
1054
1071
|
updatedAt: Date;
|
@@ -1056,10 +1073,11 @@ export declare const channelContract: {
|
|
1056
1073
|
userId: string | null;
|
1057
1074
|
sipServerUrl: string;
|
1058
1075
|
sipUserName: string;
|
1076
|
+
webphoneLoginUser: string;
|
1059
1077
|
extensionId: number;
|
1060
1078
|
extensionName: string;
|
1061
1079
|
telephonySignature: string | null;
|
1062
|
-
}
|
1080
|
+
};
|
1063
1081
|
} | undefined;
|
1064
1082
|
} | undefined;
|
1065
1083
|
}>;
|
@@ -1251,7 +1269,7 @@ export declare const channelContract: {
|
|
1251
1269
|
displayName: string;
|
1252
1270
|
}[];
|
1253
1271
|
}>, "many">;
|
1254
|
-
extension: z.
|
1272
|
+
extension: z.ZodObject<{
|
1255
1273
|
id: z.ZodString;
|
1256
1274
|
createdAt: z.ZodDate;
|
1257
1275
|
updatedAt: z.ZodDate;
|
@@ -1259,6 +1277,7 @@ export declare const channelContract: {
|
|
1259
1277
|
userId: z.ZodNullable<z.ZodString>;
|
1260
1278
|
sipServerUrl: z.ZodString;
|
1261
1279
|
sipUserName: z.ZodString;
|
1280
|
+
webphoneLoginUser: z.ZodString;
|
1262
1281
|
extensionId: z.ZodNumber;
|
1263
1282
|
extensionName: z.ZodString;
|
1264
1283
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1270,6 +1289,7 @@ export declare const channelContract: {
|
|
1270
1289
|
userId: string | null;
|
1271
1290
|
sipServerUrl: string;
|
1272
1291
|
sipUserName: string;
|
1292
|
+
webphoneLoginUser: string;
|
1273
1293
|
extensionId: number;
|
1274
1294
|
extensionName: string;
|
1275
1295
|
telephonySignature: string | null;
|
@@ -1281,10 +1301,11 @@ export declare const channelContract: {
|
|
1281
1301
|
userId: string | null;
|
1282
1302
|
sipServerUrl: string;
|
1283
1303
|
sipUserName: string;
|
1304
|
+
webphoneLoginUser: string;
|
1284
1305
|
extensionId: number;
|
1285
1306
|
extensionName: string;
|
1286
1307
|
telephonySignature: string | null;
|
1287
|
-
}
|
1308
|
+
}>;
|
1288
1309
|
}, "strip", z.ZodTypeAny, {
|
1289
1310
|
id: string;
|
1290
1311
|
address: string | null;
|
@@ -1315,7 +1336,7 @@ export declare const channelContract: {
|
|
1315
1336
|
displayName: string;
|
1316
1337
|
}[];
|
1317
1338
|
}[];
|
1318
|
-
extension
|
1339
|
+
extension: {
|
1319
1340
|
id: string;
|
1320
1341
|
createdAt: Date;
|
1321
1342
|
updatedAt: Date;
|
@@ -1323,10 +1344,11 @@ export declare const channelContract: {
|
|
1323
1344
|
userId: string | null;
|
1324
1345
|
sipServerUrl: string;
|
1325
1346
|
sipUserName: string;
|
1347
|
+
webphoneLoginUser: string;
|
1326
1348
|
extensionId: number;
|
1327
1349
|
extensionName: string;
|
1328
1350
|
telephonySignature: string | null;
|
1329
|
-
}
|
1351
|
+
};
|
1330
1352
|
}, {
|
1331
1353
|
id: string;
|
1332
1354
|
address: string | null;
|
@@ -1357,7 +1379,7 @@ export declare const channelContract: {
|
|
1357
1379
|
displayName: string;
|
1358
1380
|
}[];
|
1359
1381
|
}[];
|
1360
|
-
extension
|
1382
|
+
extension: {
|
1361
1383
|
id: string;
|
1362
1384
|
createdAt: Date;
|
1363
1385
|
updatedAt: Date;
|
@@ -1365,10 +1387,11 @@ export declare const channelContract: {
|
|
1365
1387
|
userId: string | null;
|
1366
1388
|
sipServerUrl: string;
|
1367
1389
|
sipUserName: string;
|
1390
|
+
webphoneLoginUser: string;
|
1368
1391
|
extensionId: number;
|
1369
1392
|
extensionName: string;
|
1370
1393
|
telephonySignature: string | null;
|
1371
|
-
}
|
1394
|
+
};
|
1372
1395
|
}>>;
|
1373
1396
|
}, "strip", z.ZodTypeAny, {
|
1374
1397
|
id?: string | undefined;
|
@@ -1419,7 +1442,7 @@ export declare const channelContract: {
|
|
1419
1442
|
displayName: string;
|
1420
1443
|
}[];
|
1421
1444
|
}[];
|
1422
|
-
extension
|
1445
|
+
extension: {
|
1423
1446
|
id: string;
|
1424
1447
|
createdAt: Date;
|
1425
1448
|
updatedAt: Date;
|
@@ -1427,10 +1450,11 @@ export declare const channelContract: {
|
|
1427
1450
|
userId: string | null;
|
1428
1451
|
sipServerUrl: string;
|
1429
1452
|
sipUserName: string;
|
1453
|
+
webphoneLoginUser: string;
|
1430
1454
|
extensionId: number;
|
1431
1455
|
extensionName: string;
|
1432
1456
|
telephonySignature: string | null;
|
1433
|
-
}
|
1457
|
+
};
|
1434
1458
|
} | undefined;
|
1435
1459
|
}, {
|
1436
1460
|
id?: string | undefined;
|
@@ -1481,7 +1505,7 @@ export declare const channelContract: {
|
|
1481
1505
|
displayName: string;
|
1482
1506
|
}[];
|
1483
1507
|
}[];
|
1484
|
-
extension
|
1508
|
+
extension: {
|
1485
1509
|
id: string;
|
1486
1510
|
createdAt: Date;
|
1487
1511
|
updatedAt: Date;
|
@@ -1489,10 +1513,11 @@ export declare const channelContract: {
|
|
1489
1513
|
userId: string | null;
|
1490
1514
|
sipServerUrl: string;
|
1491
1515
|
sipUserName: string;
|
1516
|
+
webphoneLoginUser: string;
|
1492
1517
|
extensionId: number;
|
1493
1518
|
extensionName: string;
|
1494
1519
|
telephonySignature: string | null;
|
1495
|
-
}
|
1520
|
+
};
|
1496
1521
|
} | undefined;
|
1497
1522
|
}>>;
|
1498
1523
|
}, "strip", z.ZodTypeAny, {
|
@@ -1546,7 +1571,7 @@ export declare const channelContract: {
|
|
1546
1571
|
displayName: string;
|
1547
1572
|
}[];
|
1548
1573
|
}[];
|
1549
|
-
extension
|
1574
|
+
extension: {
|
1550
1575
|
id: string;
|
1551
1576
|
createdAt: Date;
|
1552
1577
|
updatedAt: Date;
|
@@ -1554,10 +1579,11 @@ export declare const channelContract: {
|
|
1554
1579
|
userId: string | null;
|
1555
1580
|
sipServerUrl: string;
|
1556
1581
|
sipUserName: string;
|
1582
|
+
webphoneLoginUser: string;
|
1557
1583
|
extensionId: number;
|
1558
1584
|
extensionName: string;
|
1559
1585
|
telephonySignature: string | null;
|
1560
|
-
}
|
1586
|
+
};
|
1561
1587
|
} | undefined;
|
1562
1588
|
} | undefined;
|
1563
1589
|
}, {
|
@@ -1611,7 +1637,7 @@ export declare const channelContract: {
|
|
1611
1637
|
displayName: string;
|
1612
1638
|
}[];
|
1613
1639
|
}[];
|
1614
|
-
extension
|
1640
|
+
extension: {
|
1615
1641
|
id: string;
|
1616
1642
|
createdAt: Date;
|
1617
1643
|
updatedAt: Date;
|
@@ -1619,10 +1645,11 @@ export declare const channelContract: {
|
|
1619
1645
|
userId: string | null;
|
1620
1646
|
sipServerUrl: string;
|
1621
1647
|
sipUserName: string;
|
1648
|
+
webphoneLoginUser: string;
|
1622
1649
|
extensionId: number;
|
1623
1650
|
extensionName: string;
|
1624
1651
|
telephonySignature: string | null;
|
1625
|
-
}
|
1652
|
+
};
|
1626
1653
|
} | undefined;
|
1627
1654
|
} | undefined;
|
1628
1655
|
}>;
|
@@ -1770,7 +1797,7 @@ export declare const channelContract: {
|
|
1770
1797
|
displayName: string;
|
1771
1798
|
}[];
|
1772
1799
|
}>, "many">;
|
1773
|
-
extension: z.
|
1800
|
+
extension: z.ZodObject<{
|
1774
1801
|
id: z.ZodString;
|
1775
1802
|
createdAt: z.ZodDate;
|
1776
1803
|
updatedAt: z.ZodDate;
|
@@ -1778,6 +1805,7 @@ export declare const channelContract: {
|
|
1778
1805
|
userId: z.ZodNullable<z.ZodString>;
|
1779
1806
|
sipServerUrl: z.ZodString;
|
1780
1807
|
sipUserName: z.ZodString;
|
1808
|
+
webphoneLoginUser: z.ZodString;
|
1781
1809
|
extensionId: z.ZodNumber;
|
1782
1810
|
extensionName: z.ZodString;
|
1783
1811
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
@@ -1789,6 +1817,7 @@ export declare const channelContract: {
|
|
1789
1817
|
userId: string | null;
|
1790
1818
|
sipServerUrl: string;
|
1791
1819
|
sipUserName: string;
|
1820
|
+
webphoneLoginUser: string;
|
1792
1821
|
extensionId: number;
|
1793
1822
|
extensionName: string;
|
1794
1823
|
telephonySignature: string | null;
|
@@ -1800,10 +1829,11 @@ export declare const channelContract: {
|
|
1800
1829
|
userId: string | null;
|
1801
1830
|
sipServerUrl: string;
|
1802
1831
|
sipUserName: string;
|
1832
|
+
webphoneLoginUser: string;
|
1803
1833
|
extensionId: number;
|
1804
1834
|
extensionName: string;
|
1805
1835
|
telephonySignature: string | null;
|
1806
|
-
}
|
1836
|
+
}>;
|
1807
1837
|
}, "strip", z.ZodTypeAny, {
|
1808
1838
|
id: string;
|
1809
1839
|
address: string | null;
|
@@ -1834,7 +1864,7 @@ export declare const channelContract: {
|
|
1834
1864
|
displayName: string;
|
1835
1865
|
}[];
|
1836
1866
|
}[];
|
1837
|
-
extension
|
1867
|
+
extension: {
|
1838
1868
|
id: string;
|
1839
1869
|
createdAt: Date;
|
1840
1870
|
updatedAt: Date;
|
@@ -1842,10 +1872,11 @@ export declare const channelContract: {
|
|
1842
1872
|
userId: string | null;
|
1843
1873
|
sipServerUrl: string;
|
1844
1874
|
sipUserName: string;
|
1875
|
+
webphoneLoginUser: string;
|
1845
1876
|
extensionId: number;
|
1846
1877
|
extensionName: string;
|
1847
1878
|
telephonySignature: string | null;
|
1848
|
-
}
|
1879
|
+
};
|
1849
1880
|
}, {
|
1850
1881
|
id: string;
|
1851
1882
|
address: string | null;
|
@@ -1876,7 +1907,7 @@ export declare const channelContract: {
|
|
1876
1907
|
displayName: string;
|
1877
1908
|
}[];
|
1878
1909
|
}[];
|
1879
|
-
extension
|
1910
|
+
extension: {
|
1880
1911
|
id: string;
|
1881
1912
|
createdAt: Date;
|
1882
1913
|
updatedAt: Date;
|
@@ -1884,10 +1915,11 @@ export declare const channelContract: {
|
|
1884
1915
|
userId: string | null;
|
1885
1916
|
sipServerUrl: string;
|
1886
1917
|
sipUserName: string;
|
1918
|
+
webphoneLoginUser: string;
|
1887
1919
|
extensionId: number;
|
1888
1920
|
extensionName: string;
|
1889
1921
|
telephonySignature: string | null;
|
1890
|
-
}
|
1922
|
+
};
|
1891
1923
|
}>>;
|
1892
1924
|
}, "strip", z.ZodTypeAny, {
|
1893
1925
|
id?: string | undefined;
|
@@ -1938,7 +1970,7 @@ export declare const channelContract: {
|
|
1938
1970
|
displayName: string;
|
1939
1971
|
}[];
|
1940
1972
|
}[];
|
1941
|
-
extension
|
1973
|
+
extension: {
|
1942
1974
|
id: string;
|
1943
1975
|
createdAt: Date;
|
1944
1976
|
updatedAt: Date;
|
@@ -1946,10 +1978,11 @@ export declare const channelContract: {
|
|
1946
1978
|
userId: string | null;
|
1947
1979
|
sipServerUrl: string;
|
1948
1980
|
sipUserName: string;
|
1981
|
+
webphoneLoginUser: string;
|
1949
1982
|
extensionId: number;
|
1950
1983
|
extensionName: string;
|
1951
1984
|
telephonySignature: string | null;
|
1952
|
-
}
|
1985
|
+
};
|
1953
1986
|
} | undefined;
|
1954
1987
|
}, {
|
1955
1988
|
id?: string | undefined;
|
@@ -2000,7 +2033,7 @@ export declare const channelContract: {
|
|
2000
2033
|
displayName: string;
|
2001
2034
|
}[];
|
2002
2035
|
}[];
|
2003
|
-
extension
|
2036
|
+
extension: {
|
2004
2037
|
id: string;
|
2005
2038
|
createdAt: Date;
|
2006
2039
|
updatedAt: Date;
|
@@ -2008,10 +2041,11 @@ export declare const channelContract: {
|
|
2008
2041
|
userId: string | null;
|
2009
2042
|
sipServerUrl: string;
|
2010
2043
|
sipUserName: string;
|
2044
|
+
webphoneLoginUser: string;
|
2011
2045
|
extensionId: number;
|
2012
2046
|
extensionName: string;
|
2013
2047
|
telephonySignature: string | null;
|
2014
|
-
}
|
2048
|
+
};
|
2015
2049
|
} | undefined;
|
2016
2050
|
}>>, "many">;
|
2017
2051
|
}, "strip", z.ZodTypeAny, {
|
@@ -2065,7 +2099,7 @@ export declare const channelContract: {
|
|
2065
2099
|
displayName: string;
|
2066
2100
|
}[];
|
2067
2101
|
}[];
|
2068
|
-
extension
|
2102
|
+
extension: {
|
2069
2103
|
id: string;
|
2070
2104
|
createdAt: Date;
|
2071
2105
|
updatedAt: Date;
|
@@ -2073,10 +2107,11 @@ export declare const channelContract: {
|
|
2073
2107
|
userId: string | null;
|
2074
2108
|
sipServerUrl: string;
|
2075
2109
|
sipUserName: string;
|
2110
|
+
webphoneLoginUser: string;
|
2076
2111
|
extensionId: number;
|
2077
2112
|
extensionName: string;
|
2078
2113
|
telephonySignature: string | null;
|
2079
|
-
}
|
2114
|
+
};
|
2080
2115
|
} | undefined;
|
2081
2116
|
} | undefined)[];
|
2082
2117
|
}, {
|
@@ -2130,7 +2165,7 @@ export declare const channelContract: {
|
|
2130
2165
|
displayName: string;
|
2131
2166
|
}[];
|
2132
2167
|
}[];
|
2133
|
-
extension
|
2168
|
+
extension: {
|
2134
2169
|
id: string;
|
2135
2170
|
createdAt: Date;
|
2136
2171
|
updatedAt: Date;
|
@@ -2138,10 +2173,11 @@ export declare const channelContract: {
|
|
2138
2173
|
userId: string | null;
|
2139
2174
|
sipServerUrl: string;
|
2140
2175
|
sipUserName: string;
|
2176
|
+
webphoneLoginUser: string;
|
2141
2177
|
extensionId: number;
|
2142
2178
|
extensionName: string;
|
2143
2179
|
telephonySignature: string | null;
|
2144
|
-
}
|
2180
|
+
};
|
2145
2181
|
} | undefined;
|
2146
2182
|
} | undefined)[];
|
2147
2183
|
}>;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAqB1E,eAAO,MAAM,eAAe
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/channel/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AAWpB,OAAO,EAAE,oBAAoB,EAAE,MAAM,cAAc,CAAC;AAEpD,MAAM,MAAM,qBAAqB,GAAG,CAAC,CAAC,MAAM,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAqB1E,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA4D3B,CAAC"}
|