@kl1/contracts 1.0.46 → 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 (41) hide show
  1. package/dist/index.js +173 -11
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +173 -11
  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 +839 -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 +99 -96
  35. package/dist/src/ticket/index.d.ts.map +1 -1
  36. package/dist/src/ticket/schema.d.ts +14 -14
  37. package/dist/src/user/index.d.ts +23 -23
  38. package/dist/src/user/schema.d.ts +5 -5
  39. package/dist/src/user-presence-status-log/index.d.ts +4 -4
  40. package/dist/src/user-presence-status-log/schema.d.ts +7 -7
  41. package/package.json +1 -1
@@ -98,7 +98,7 @@ export declare const CommentSchema: z.ZodObject<{
98
98
  sipServerUrl: z.ZodString;
99
99
  sipUserName: z.ZodString;
100
100
  webphoneLoginUser: z.ZodString;
101
- extensionId: z.ZodNumber;
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 CommentSchema: z.ZodObject<{
110
110
  sipServerUrl: string;
111
111
  sipUserName: string;
112
112
  webphoneLoginUser: string;
113
- extensionId: number;
113
+ extensionId: string | null;
114
114
  extensionName: string;
115
115
  telephonySignature: string | null;
116
116
  }, {
@@ -122,7 +122,7 @@ export declare const CommentSchema: z.ZodObject<{
122
122
  sipServerUrl: string;
123
123
  sipUserName: string;
124
124
  webphoneLoginUser: string;
125
- extensionId: number;
125
+ extensionId: string | null;
126
126
  extensionName: string;
127
127
  telephonySignature: string | null;
128
128
  }>;
@@ -165,7 +165,7 @@ export declare const CommentSchema: z.ZodObject<{
165
165
  sipServerUrl: string;
166
166
  sipUserName: string;
167
167
  webphoneLoginUser: string;
168
- extensionId: number;
168
+ extensionId: string | null;
169
169
  extensionName: string;
170
170
  telephonySignature: string | null;
171
171
  };
@@ -208,7 +208,7 @@ export declare const CommentSchema: z.ZodObject<{
208
208
  sipServerUrl: string;
209
209
  sipUserName: string;
210
210
  webphoneLoginUser: string;
211
- extensionId: number;
211
+ extensionId: string | null;
212
212
  extensionName: string;
213
213
  telephonySignature: string | null;
214
214
  };
@@ -282,7 +282,7 @@ export declare const CommentSchema: z.ZodObject<{
282
282
  sipServerUrl: string;
283
283
  sipUserName: string;
284
284
  webphoneLoginUser: string;
285
- extensionId: number;
285
+ extensionId: string | null;
286
286
  extensionName: string;
287
287
  telephonySignature: string | null;
288
288
  };
@@ -341,7 +341,7 @@ export declare const CommentSchema: z.ZodObject<{
341
341
  sipServerUrl: string;
342
342
  sipUserName: string;
343
343
  webphoneLoginUser: string;
344
- extensionId: number;
344
+ extensionId: string | null;
345
345
  extensionName: string;
346
346
  telephonySignature: string | null;
347
347
  };
@@ -460,7 +460,7 @@ export declare const CommentSchema: z.ZodObject<{
460
460
  sipServerUrl: z.ZodString;
461
461
  sipUserName: z.ZodString;
462
462
  webphoneLoginUser: z.ZodString;
463
- extensionId: z.ZodNumber;
463
+ extensionId: z.ZodNullable<z.ZodString>;
464
464
  extensionName: z.ZodString;
465
465
  telephonySignature: z.ZodNullable<z.ZodString>;
466
466
  }, "strip", z.ZodTypeAny, {
@@ -472,7 +472,7 @@ export declare const CommentSchema: z.ZodObject<{
472
472
  sipServerUrl: string;
473
473
  sipUserName: string;
474
474
  webphoneLoginUser: string;
475
- extensionId: number;
475
+ extensionId: string | null;
476
476
  extensionName: string;
477
477
  telephonySignature: string | null;
478
478
  }, {
@@ -484,7 +484,7 @@ export declare const CommentSchema: z.ZodObject<{
484
484
  sipServerUrl: string;
485
485
  sipUserName: string;
486
486
  webphoneLoginUser: string;
487
- extensionId: number;
487
+ extensionId: string | null;
488
488
  extensionName: string;
489
489
  telephonySignature: string | null;
490
490
  }>;
@@ -527,7 +527,7 @@ export declare const CommentSchema: z.ZodObject<{
527
527
  sipServerUrl: string;
528
528
  sipUserName: string;
529
529
  webphoneLoginUser: string;
530
- extensionId: number;
530
+ extensionId: string | null;
531
531
  extensionName: string;
532
532
  telephonySignature: string | null;
533
533
  };
@@ -570,7 +570,7 @@ export declare const CommentSchema: z.ZodObject<{
570
570
  sipServerUrl: string;
571
571
  sipUserName: string;
572
572
  webphoneLoginUser: string;
573
- extensionId: number;
573
+ extensionId: string | null;
574
574
  extensionName: string;
575
575
  telephonySignature: string | null;
576
576
  };
@@ -665,7 +665,7 @@ export declare const CommentSchema: z.ZodObject<{
665
665
  sipServerUrl: z.ZodString;
666
666
  sipUserName: z.ZodString;
667
667
  webphoneLoginUser: z.ZodString;
668
- extensionId: z.ZodNumber;
668
+ extensionId: z.ZodNullable<z.ZodString>;
669
669
  extensionName: z.ZodString;
670
670
  telephonySignature: z.ZodNullable<z.ZodString>;
671
671
  }, "strip", z.ZodTypeAny, {
@@ -677,7 +677,7 @@ export declare const CommentSchema: z.ZodObject<{
677
677
  sipServerUrl: string;
678
678
  sipUserName: string;
679
679
  webphoneLoginUser: string;
680
- extensionId: number;
680
+ extensionId: string | null;
681
681
  extensionName: string;
682
682
  telephonySignature: string | null;
683
683
  }, {
@@ -689,7 +689,7 @@ export declare const CommentSchema: z.ZodObject<{
689
689
  sipServerUrl: string;
690
690
  sipUserName: string;
691
691
  webphoneLoginUser: string;
692
- extensionId: number;
692
+ extensionId: string | null;
693
693
  extensionName: string;
694
694
  telephonySignature: string | null;
695
695
  }>;
@@ -732,7 +732,7 @@ export declare const CommentSchema: z.ZodObject<{
732
732
  sipServerUrl: string;
733
733
  sipUserName: string;
734
734
  webphoneLoginUser: string;
735
- extensionId: number;
735
+ extensionId: string | null;
736
736
  extensionName: string;
737
737
  telephonySignature: string | null;
738
738
  };
@@ -775,7 +775,7 @@ export declare const CommentSchema: z.ZodObject<{
775
775
  sipServerUrl: string;
776
776
  sipUserName: string;
777
777
  webphoneLoginUser: string;
778
- extensionId: number;
778
+ extensionId: string | null;
779
779
  extensionName: string;
780
780
  telephonySignature: string | null;
781
781
  };
@@ -2077,7 +2077,7 @@ export declare const CommentSchema: z.ZodObject<{
2077
2077
  sipServerUrl: string;
2078
2078
  sipUserName: string;
2079
2079
  webphoneLoginUser: string;
2080
- extensionId: number;
2080
+ extensionId: string | null;
2081
2081
  extensionName: string;
2082
2082
  telephonySignature: string | null;
2083
2083
  };
@@ -2121,7 +2121,7 @@ export declare const CommentSchema: z.ZodObject<{
2121
2121
  sipServerUrl: string;
2122
2122
  sipUserName: string;
2123
2123
  webphoneLoginUser: string;
2124
- extensionId: number;
2124
+ extensionId: string | null;
2125
2125
  extensionName: string;
2126
2126
  telephonySignature: string | null;
2127
2127
  };
@@ -2350,7 +2350,7 @@ export declare const CommentSchema: z.ZodObject<{
2350
2350
  sipServerUrl: string;
2351
2351
  sipUserName: string;
2352
2352
  webphoneLoginUser: string;
2353
- extensionId: number;
2353
+ extensionId: string | null;
2354
2354
  extensionName: string;
2355
2355
  telephonySignature: string | null;
2356
2356
  };
@@ -2394,7 +2394,7 @@ export declare const CommentSchema: z.ZodObject<{
2394
2394
  sipServerUrl: string;
2395
2395
  sipUserName: string;
2396
2396
  webphoneLoginUser: string;
2397
- extensionId: number;
2397
+ extensionId: string | null;
2398
2398
  extensionName: string;
2399
2399
  telephonySignature: string | null;
2400
2400
  };
@@ -2490,7 +2490,7 @@ export declare const CommentSchema: z.ZodObject<{
2490
2490
  sipServerUrl: z.ZodString;
2491
2491
  sipUserName: z.ZodString;
2492
2492
  webphoneLoginUser: z.ZodString;
2493
- extensionId: z.ZodNumber;
2493
+ extensionId: z.ZodNullable<z.ZodString>;
2494
2494
  extensionName: z.ZodString;
2495
2495
  telephonySignature: z.ZodNullable<z.ZodString>;
2496
2496
  }, "strip", z.ZodTypeAny, {
@@ -2502,7 +2502,7 @@ export declare const CommentSchema: z.ZodObject<{
2502
2502
  sipServerUrl: string;
2503
2503
  sipUserName: string;
2504
2504
  webphoneLoginUser: string;
2505
- extensionId: number;
2505
+ extensionId: string | null;
2506
2506
  extensionName: string;
2507
2507
  telephonySignature: string | null;
2508
2508
  }, {
@@ -2514,7 +2514,7 @@ export declare const CommentSchema: z.ZodObject<{
2514
2514
  sipServerUrl: string;
2515
2515
  sipUserName: string;
2516
2516
  webphoneLoginUser: string;
2517
- extensionId: number;
2517
+ extensionId: string | null;
2518
2518
  extensionName: string;
2519
2519
  telephonySignature: string | null;
2520
2520
  }>;
@@ -2557,7 +2557,7 @@ export declare const CommentSchema: z.ZodObject<{
2557
2557
  sipServerUrl: string;
2558
2558
  sipUserName: string;
2559
2559
  webphoneLoginUser: string;
2560
- extensionId: number;
2560
+ extensionId: string | null;
2561
2561
  extensionName: string;
2562
2562
  telephonySignature: string | null;
2563
2563
  };
@@ -2600,7 +2600,7 @@ export declare const CommentSchema: z.ZodObject<{
2600
2600
  sipServerUrl: string;
2601
2601
  sipUserName: string;
2602
2602
  webphoneLoginUser: string;
2603
- extensionId: number;
2603
+ extensionId: string | null;
2604
2604
  extensionName: string;
2605
2605
  telephonySignature: string | null;
2606
2606
  };
@@ -2655,7 +2655,7 @@ export declare const CommentSchema: z.ZodObject<{
2655
2655
  sipServerUrl: string;
2656
2656
  sipUserName: string;
2657
2657
  webphoneLoginUser: string;
2658
- extensionId: number;
2658
+ extensionId: string | null;
2659
2659
  extensionName: string;
2660
2660
  telephonySignature: string | null;
2661
2661
  };
@@ -2709,7 +2709,7 @@ export declare const CommentSchema: z.ZodObject<{
2709
2709
  sipServerUrl: string;
2710
2710
  sipUserName: string;
2711
2711
  webphoneLoginUser: string;
2712
- extensionId: number;
2712
+ extensionId: string | null;
2713
2713
  extensionName: string;
2714
2714
  telephonySignature: string | null;
2715
2715
  };
@@ -2937,7 +2937,7 @@ export declare const CommentSchema: z.ZodObject<{
2937
2937
  sipServerUrl: string;
2938
2938
  sipUserName: string;
2939
2939
  webphoneLoginUser: string;
2940
- extensionId: number;
2940
+ extensionId: string | null;
2941
2941
  extensionName: string;
2942
2942
  telephonySignature: string | null;
2943
2943
  };
@@ -2981,7 +2981,7 @@ export declare const CommentSchema: z.ZodObject<{
2981
2981
  sipServerUrl: string;
2982
2982
  sipUserName: string;
2983
2983
  webphoneLoginUser: string;
2984
- extensionId: number;
2984
+ extensionId: string | null;
2985
2985
  extensionName: string;
2986
2986
  telephonySignature: string | null;
2987
2987
  };
@@ -3040,7 +3040,7 @@ export declare const CommentSchema: z.ZodObject<{
3040
3040
  sipServerUrl: string;
3041
3041
  sipUserName: string;
3042
3042
  webphoneLoginUser: string;
3043
- extensionId: number;
3043
+ extensionId: string | null;
3044
3044
  extensionName: string;
3045
3045
  telephonySignature: string | null;
3046
3046
  };
@@ -3094,7 +3094,7 @@ export declare const CommentSchema: z.ZodObject<{
3094
3094
  sipServerUrl: string;
3095
3095
  sipUserName: string;
3096
3096
  webphoneLoginUser: string;
3097
- extensionId: number;
3097
+ extensionId: string | null;
3098
3098
  extensionName: string;
3099
3099
  telephonySignature: string | null;
3100
3100
  };
@@ -3322,7 +3322,7 @@ export declare const CommentSchema: z.ZodObject<{
3322
3322
  sipServerUrl: string;
3323
3323
  sipUserName: string;
3324
3324
  webphoneLoginUser: string;
3325
- extensionId: number;
3325
+ extensionId: string | null;
3326
3326
  extensionName: string;
3327
3327
  telephonySignature: string | null;
3328
3328
  };
@@ -3366,7 +3366,7 @@ export declare const CommentSchema: z.ZodObject<{
3366
3366
  sipServerUrl: string;
3367
3367
  sipUserName: string;
3368
3368
  webphoneLoginUser: string;
3369
- extensionId: number;
3369
+ extensionId: string | null;
3370
3370
  extensionName: string;
3371
3371
  telephonySignature: string | null;
3372
3372
  };