@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
@@ -172,7 +172,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
172
172
|
sipServerUrl: z.ZodString;
|
173
173
|
sipUserName: z.ZodString;
|
174
174
|
webphoneLoginUser: z.ZodString;
|
175
|
-
extensionId: z.
|
175
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
176
176
|
extensionName: z.ZodString;
|
177
177
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
178
178
|
}, "strip", z.ZodTypeAny, {
|
@@ -184,7 +184,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
184
184
|
sipServerUrl: string;
|
185
185
|
sipUserName: string;
|
186
186
|
webphoneLoginUser: string;
|
187
|
-
extensionId:
|
187
|
+
extensionId: string | null;
|
188
188
|
extensionName: string;
|
189
189
|
telephonySignature: string | null;
|
190
190
|
}, {
|
@@ -196,7 +196,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
196
196
|
sipServerUrl: string;
|
197
197
|
sipUserName: string;
|
198
198
|
webphoneLoginUser: string;
|
199
|
-
extensionId:
|
199
|
+
extensionId: string | null;
|
200
200
|
extensionName: string;
|
201
201
|
telephonySignature: string | null;
|
202
202
|
}>;
|
@@ -239,7 +239,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
239
239
|
sipServerUrl: string;
|
240
240
|
sipUserName: string;
|
241
241
|
webphoneLoginUser: string;
|
242
|
-
extensionId:
|
242
|
+
extensionId: string | null;
|
243
243
|
extensionName: string;
|
244
244
|
telephonySignature: string | null;
|
245
245
|
};
|
@@ -282,7 +282,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
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
|
};
|
@@ -351,7 +351,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
351
351
|
sipServerUrl: string;
|
352
352
|
sipUserName: string;
|
353
353
|
webphoneLoginUser: string;
|
354
|
-
extensionId:
|
354
|
+
extensionId: string | null;
|
355
355
|
extensionName: string;
|
356
356
|
telephonySignature: string | null;
|
357
357
|
};
|
@@ -409,7 +409,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
409
409
|
sipServerUrl: string;
|
410
410
|
sipUserName: string;
|
411
411
|
webphoneLoginUser: string;
|
412
|
-
extensionId:
|
412
|
+
extensionId: string | null;
|
413
413
|
extensionName: string;
|
414
414
|
telephonySignature: string | null;
|
415
415
|
};
|
@@ -578,7 +578,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
578
578
|
sipServerUrl: z.ZodString;
|
579
579
|
sipUserName: z.ZodString;
|
580
580
|
webphoneLoginUser: z.ZodString;
|
581
|
-
extensionId: z.
|
581
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
582
582
|
extensionName: z.ZodString;
|
583
583
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
584
584
|
}, "strip", z.ZodTypeAny, {
|
@@ -590,7 +590,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
590
590
|
sipServerUrl: string;
|
591
591
|
sipUserName: string;
|
592
592
|
webphoneLoginUser: string;
|
593
|
-
extensionId:
|
593
|
+
extensionId: string | null;
|
594
594
|
extensionName: string;
|
595
595
|
telephonySignature: string | null;
|
596
596
|
}, {
|
@@ -602,7 +602,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
602
602
|
sipServerUrl: string;
|
603
603
|
sipUserName: string;
|
604
604
|
webphoneLoginUser: string;
|
605
|
-
extensionId:
|
605
|
+
extensionId: string | null;
|
606
606
|
extensionName: string;
|
607
607
|
telephonySignature: string | null;
|
608
608
|
}>;
|
@@ -645,7 +645,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
645
645
|
sipServerUrl: string;
|
646
646
|
sipUserName: string;
|
647
647
|
webphoneLoginUser: string;
|
648
|
-
extensionId:
|
648
|
+
extensionId: string | null;
|
649
649
|
extensionName: string;
|
650
650
|
telephonySignature: string | null;
|
651
651
|
};
|
@@ -688,7 +688,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
688
688
|
sipServerUrl: string;
|
689
689
|
sipUserName: string;
|
690
690
|
webphoneLoginUser: string;
|
691
|
-
extensionId:
|
691
|
+
extensionId: string | null;
|
692
692
|
extensionName: string;
|
693
693
|
telephonySignature: string | null;
|
694
694
|
};
|
@@ -757,7 +757,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
757
757
|
sipServerUrl: string;
|
758
758
|
sipUserName: string;
|
759
759
|
webphoneLoginUser: string;
|
760
|
-
extensionId:
|
760
|
+
extensionId: string | null;
|
761
761
|
extensionName: string;
|
762
762
|
telephonySignature: string | null;
|
763
763
|
};
|
@@ -815,7 +815,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
815
815
|
sipServerUrl: string;
|
816
816
|
sipUserName: string;
|
817
817
|
webphoneLoginUser: string;
|
818
|
-
extensionId:
|
818
|
+
extensionId: string | null;
|
819
819
|
extensionName: string;
|
820
820
|
telephonySignature: string | null;
|
821
821
|
};
|
@@ -995,7 +995,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
995
995
|
sipServerUrl: z.ZodString;
|
996
996
|
sipUserName: z.ZodString;
|
997
997
|
webphoneLoginUser: z.ZodString;
|
998
|
-
extensionId: z.
|
998
|
+
extensionId: z.ZodNullable<z.ZodString>;
|
999
999
|
extensionName: z.ZodString;
|
1000
1000
|
telephonySignature: z.ZodNullable<z.ZodString>;
|
1001
1001
|
}, "strip", z.ZodTypeAny, {
|
@@ -1007,7 +1007,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1007
1007
|
sipServerUrl: string;
|
1008
1008
|
sipUserName: string;
|
1009
1009
|
webphoneLoginUser: string;
|
1010
|
-
extensionId:
|
1010
|
+
extensionId: string | null;
|
1011
1011
|
extensionName: string;
|
1012
1012
|
telephonySignature: string | null;
|
1013
1013
|
}, {
|
@@ -1019,7 +1019,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1019
1019
|
sipServerUrl: string;
|
1020
1020
|
sipUserName: string;
|
1021
1021
|
webphoneLoginUser: string;
|
1022
|
-
extensionId:
|
1022
|
+
extensionId: string | null;
|
1023
1023
|
extensionName: string;
|
1024
1024
|
telephonySignature: string | null;
|
1025
1025
|
}>;
|
@@ -1062,7 +1062,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1062
1062
|
sipServerUrl: string;
|
1063
1063
|
sipUserName: string;
|
1064
1064
|
webphoneLoginUser: string;
|
1065
|
-
extensionId:
|
1065
|
+
extensionId: string | null;
|
1066
1066
|
extensionName: string;
|
1067
1067
|
telephonySignature: string | null;
|
1068
1068
|
};
|
@@ -1105,7 +1105,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1105
1105
|
sipServerUrl: string;
|
1106
1106
|
sipUserName: string;
|
1107
1107
|
webphoneLoginUser: string;
|
1108
|
-
extensionId:
|
1108
|
+
extensionId: string | null;
|
1109
1109
|
extensionName: string;
|
1110
1110
|
telephonySignature: string | null;
|
1111
1111
|
};
|
@@ -1174,7 +1174,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1174
1174
|
sipServerUrl: string;
|
1175
1175
|
sipUserName: string;
|
1176
1176
|
webphoneLoginUser: string;
|
1177
|
-
extensionId:
|
1177
|
+
extensionId: string | null;
|
1178
1178
|
extensionName: string;
|
1179
1179
|
telephonySignature: string | null;
|
1180
1180
|
};
|
@@ -1232,7 +1232,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1232
1232
|
sipServerUrl: string;
|
1233
1233
|
sipUserName: string;
|
1234
1234
|
webphoneLoginUser: string;
|
1235
|
-
extensionId:
|
1235
|
+
extensionId: string | null;
|
1236
1236
|
extensionName: string;
|
1237
1237
|
telephonySignature: string | null;
|
1238
1238
|
};
|
@@ -1293,7 +1293,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1293
1293
|
sipServerUrl: string;
|
1294
1294
|
sipUserName: string;
|
1295
1295
|
webphoneLoginUser: string;
|
1296
|
-
extensionId:
|
1296
|
+
extensionId: string | null;
|
1297
1297
|
extensionName: string;
|
1298
1298
|
telephonySignature: string | null;
|
1299
1299
|
};
|
@@ -1354,7 +1354,7 @@ export declare const telephonyAgentPresenceStatusContract: {
|
|
1354
1354
|
sipServerUrl: string;
|
1355
1355
|
sipUserName: string;
|
1356
1356
|
webphoneLoginUser: string;
|
1357
|
-
extensionId:
|
1357
|
+
extensionId: string | null;
|
1358
1358
|
extensionName: string;
|
1359
1359
|
telephonySignature: string | null;
|
1360
1360
|
};
|
@@ -115,7 +115,7 @@ export declare const UserPresenceStatusSchema: 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 UserPresenceStatusSchema: 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 UserPresenceStatusSchema: 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 UserPresenceStatusSchema: 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 UserPresenceStatusSchema: 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
|
};
|
@@ -294,7 +294,7 @@ export declare const UserPresenceStatusSchema: z.ZodObject<{
|
|
294
294
|
sipServerUrl: string;
|
295
295
|
sipUserName: string;
|
296
296
|
webphoneLoginUser: string;
|
297
|
-
extensionId:
|
297
|
+
extensionId: string | null;
|
298
298
|
extensionName: string;
|
299
299
|
telephonySignature: string | null;
|
300
300
|
};
|
@@ -352,7 +352,7 @@ export declare const UserPresenceStatusSchema: z.ZodObject<{
|
|
352
352
|
sipServerUrl: string;
|
353
353
|
sipUserName: string;
|
354
354
|
webphoneLoginUser: string;
|
355
|
-
extensionId:
|
355
|
+
extensionId: string | null;
|
356
356
|
extensionName: string;
|
357
357
|
telephonySignature: string | null;
|
358
358
|
};
|