@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.
Files changed (40) hide show
  1. package/dist/index.js +168 -10
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +168 -10
  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 +836 -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 +96 -96
  35. package/dist/src/ticket/schema.d.ts +14 -14
  36. package/dist/src/user/index.d.ts +23 -23
  37. package/dist/src/user/schema.d.ts +5 -5
  38. package/dist/src/user-presence-status-log/index.d.ts +4 -4
  39. package/dist/src/user-presence-status-log/schema.d.ts +7 -7
  40. package/package.json +1 -1
@@ -124,7 +124,7 @@ export declare const commentContract: {
124
124
  sipServerUrl: z.ZodString;
125
125
  sipUserName: z.ZodString;
126
126
  webphoneLoginUser: z.ZodString;
127
- extensionId: z.ZodNumber;
127
+ extensionId: z.ZodNullable<z.ZodString>;
128
128
  extensionName: z.ZodString;
129
129
  telephonySignature: z.ZodNullable<z.ZodString>;
130
130
  }, "strip", z.ZodTypeAny, {
@@ -136,7 +136,7 @@ export declare const commentContract: {
136
136
  sipServerUrl: string;
137
137
  sipUserName: string;
138
138
  webphoneLoginUser: string;
139
- extensionId: number;
139
+ extensionId: string | null;
140
140
  extensionName: string;
141
141
  telephonySignature: string | null;
142
142
  }, {
@@ -148,7 +148,7 @@ export declare const commentContract: {
148
148
  sipServerUrl: string;
149
149
  sipUserName: string;
150
150
  webphoneLoginUser: string;
151
- extensionId: number;
151
+ extensionId: string | null;
152
152
  extensionName: string;
153
153
  telephonySignature: string | null;
154
154
  }>;
@@ -191,7 +191,7 @@ export declare const commentContract: {
191
191
  sipServerUrl: string;
192
192
  sipUserName: string;
193
193
  webphoneLoginUser: string;
194
- extensionId: number;
194
+ extensionId: string | null;
195
195
  extensionName: string;
196
196
  telephonySignature: string | null;
197
197
  };
@@ -234,7 +234,7 @@ export declare const commentContract: {
234
234
  sipServerUrl: string;
235
235
  sipUserName: string;
236
236
  webphoneLoginUser: string;
237
- extensionId: number;
237
+ extensionId: string | null;
238
238
  extensionName: string;
239
239
  telephonySignature: string | null;
240
240
  };
@@ -308,7 +308,7 @@ export declare const commentContract: {
308
308
  sipServerUrl: string;
309
309
  sipUserName: string;
310
310
  webphoneLoginUser: string;
311
- extensionId: number;
311
+ extensionId: string | null;
312
312
  extensionName: string;
313
313
  telephonySignature: string | null;
314
314
  };
@@ -367,7 +367,7 @@ export declare const commentContract: {
367
367
  sipServerUrl: string;
368
368
  sipUserName: string;
369
369
  webphoneLoginUser: string;
370
- extensionId: number;
370
+ extensionId: string | null;
371
371
  extensionName: string;
372
372
  telephonySignature: string | null;
373
373
  };
@@ -486,7 +486,7 @@ export declare const commentContract: {
486
486
  sipServerUrl: z.ZodString;
487
487
  sipUserName: z.ZodString;
488
488
  webphoneLoginUser: z.ZodString;
489
- extensionId: z.ZodNumber;
489
+ extensionId: z.ZodNullable<z.ZodString>;
490
490
  extensionName: z.ZodString;
491
491
  telephonySignature: z.ZodNullable<z.ZodString>;
492
492
  }, "strip", z.ZodTypeAny, {
@@ -498,7 +498,7 @@ export declare const commentContract: {
498
498
  sipServerUrl: string;
499
499
  sipUserName: string;
500
500
  webphoneLoginUser: string;
501
- extensionId: number;
501
+ extensionId: string | null;
502
502
  extensionName: string;
503
503
  telephonySignature: string | null;
504
504
  }, {
@@ -510,7 +510,7 @@ export declare const commentContract: {
510
510
  sipServerUrl: string;
511
511
  sipUserName: string;
512
512
  webphoneLoginUser: string;
513
- extensionId: number;
513
+ extensionId: string | null;
514
514
  extensionName: string;
515
515
  telephonySignature: string | null;
516
516
  }>;
@@ -553,7 +553,7 @@ export declare const commentContract: {
553
553
  sipServerUrl: string;
554
554
  sipUserName: string;
555
555
  webphoneLoginUser: string;
556
- extensionId: number;
556
+ extensionId: string | null;
557
557
  extensionName: string;
558
558
  telephonySignature: string | null;
559
559
  };
@@ -596,7 +596,7 @@ export declare const commentContract: {
596
596
  sipServerUrl: string;
597
597
  sipUserName: string;
598
598
  webphoneLoginUser: string;
599
- extensionId: number;
599
+ extensionId: string | null;
600
600
  extensionName: string;
601
601
  telephonySignature: string | null;
602
602
  };
@@ -691,7 +691,7 @@ export declare const commentContract: {
691
691
  sipServerUrl: z.ZodString;
692
692
  sipUserName: z.ZodString;
693
693
  webphoneLoginUser: z.ZodString;
694
- extensionId: z.ZodNumber;
694
+ extensionId: z.ZodNullable<z.ZodString>;
695
695
  extensionName: z.ZodString;
696
696
  telephonySignature: z.ZodNullable<z.ZodString>;
697
697
  }, "strip", z.ZodTypeAny, {
@@ -703,7 +703,7 @@ export declare const commentContract: {
703
703
  sipServerUrl: string;
704
704
  sipUserName: string;
705
705
  webphoneLoginUser: string;
706
- extensionId: number;
706
+ extensionId: string | null;
707
707
  extensionName: string;
708
708
  telephonySignature: string | null;
709
709
  }, {
@@ -715,7 +715,7 @@ export declare const commentContract: {
715
715
  sipServerUrl: string;
716
716
  sipUserName: string;
717
717
  webphoneLoginUser: string;
718
- extensionId: number;
718
+ extensionId: string | null;
719
719
  extensionName: string;
720
720
  telephonySignature: string | null;
721
721
  }>;
@@ -758,7 +758,7 @@ export declare const commentContract: {
758
758
  sipServerUrl: string;
759
759
  sipUserName: string;
760
760
  webphoneLoginUser: string;
761
- extensionId: number;
761
+ extensionId: string | null;
762
762
  extensionName: string;
763
763
  telephonySignature: string | null;
764
764
  };
@@ -801,7 +801,7 @@ export declare const commentContract: {
801
801
  sipServerUrl: string;
802
802
  sipUserName: string;
803
803
  webphoneLoginUser: string;
804
- extensionId: number;
804
+ extensionId: string | null;
805
805
  extensionName: string;
806
806
  telephonySignature: string | null;
807
807
  };
@@ -2103,7 +2103,7 @@ export declare const commentContract: {
2103
2103
  sipServerUrl: string;
2104
2104
  sipUserName: string;
2105
2105
  webphoneLoginUser: string;
2106
- extensionId: number;
2106
+ extensionId: string | null;
2107
2107
  extensionName: string;
2108
2108
  telephonySignature: string | null;
2109
2109
  };
@@ -2147,7 +2147,7 @@ export declare const commentContract: {
2147
2147
  sipServerUrl: string;
2148
2148
  sipUserName: string;
2149
2149
  webphoneLoginUser: string;
2150
- extensionId: number;
2150
+ extensionId: string | null;
2151
2151
  extensionName: string;
2152
2152
  telephonySignature: string | null;
2153
2153
  };
@@ -2376,7 +2376,7 @@ export declare const commentContract: {
2376
2376
  sipServerUrl: string;
2377
2377
  sipUserName: string;
2378
2378
  webphoneLoginUser: string;
2379
- extensionId: number;
2379
+ extensionId: string | null;
2380
2380
  extensionName: string;
2381
2381
  telephonySignature: string | null;
2382
2382
  };
@@ -2420,7 +2420,7 @@ export declare const commentContract: {
2420
2420
  sipServerUrl: string;
2421
2421
  sipUserName: string;
2422
2422
  webphoneLoginUser: string;
2423
- extensionId: number;
2423
+ extensionId: string | null;
2424
2424
  extensionName: string;
2425
2425
  telephonySignature: string | null;
2426
2426
  };
@@ -2516,7 +2516,7 @@ export declare const commentContract: {
2516
2516
  sipServerUrl: z.ZodString;
2517
2517
  sipUserName: z.ZodString;
2518
2518
  webphoneLoginUser: z.ZodString;
2519
- extensionId: z.ZodNumber;
2519
+ extensionId: z.ZodNullable<z.ZodString>;
2520
2520
  extensionName: z.ZodString;
2521
2521
  telephonySignature: z.ZodNullable<z.ZodString>;
2522
2522
  }, "strip", z.ZodTypeAny, {
@@ -2528,7 +2528,7 @@ export declare const commentContract: {
2528
2528
  sipServerUrl: string;
2529
2529
  sipUserName: string;
2530
2530
  webphoneLoginUser: string;
2531
- extensionId: number;
2531
+ extensionId: string | null;
2532
2532
  extensionName: string;
2533
2533
  telephonySignature: string | null;
2534
2534
  }, {
@@ -2540,7 +2540,7 @@ export declare const commentContract: {
2540
2540
  sipServerUrl: string;
2541
2541
  sipUserName: string;
2542
2542
  webphoneLoginUser: string;
2543
- extensionId: number;
2543
+ extensionId: string | null;
2544
2544
  extensionName: string;
2545
2545
  telephonySignature: string | null;
2546
2546
  }>;
@@ -2583,7 +2583,7 @@ export declare const commentContract: {
2583
2583
  sipServerUrl: string;
2584
2584
  sipUserName: string;
2585
2585
  webphoneLoginUser: string;
2586
- extensionId: number;
2586
+ extensionId: string | null;
2587
2587
  extensionName: string;
2588
2588
  telephonySignature: string | null;
2589
2589
  };
@@ -2626,7 +2626,7 @@ export declare const commentContract: {
2626
2626
  sipServerUrl: string;
2627
2627
  sipUserName: string;
2628
2628
  webphoneLoginUser: string;
2629
- extensionId: number;
2629
+ extensionId: string | null;
2630
2630
  extensionName: string;
2631
2631
  telephonySignature: string | null;
2632
2632
  };
@@ -2681,7 +2681,7 @@ export declare const commentContract: {
2681
2681
  sipServerUrl: string;
2682
2682
  sipUserName: string;
2683
2683
  webphoneLoginUser: string;
2684
- extensionId: number;
2684
+ extensionId: string | null;
2685
2685
  extensionName: string;
2686
2686
  telephonySignature: string | null;
2687
2687
  };
@@ -2735,7 +2735,7 @@ export declare const commentContract: {
2735
2735
  sipServerUrl: string;
2736
2736
  sipUserName: string;
2737
2737
  webphoneLoginUser: string;
2738
- extensionId: number;
2738
+ extensionId: string | null;
2739
2739
  extensionName: string;
2740
2740
  telephonySignature: string | null;
2741
2741
  };
@@ -2963,7 +2963,7 @@ export declare const commentContract: {
2963
2963
  sipServerUrl: string;
2964
2964
  sipUserName: string;
2965
2965
  webphoneLoginUser: string;
2966
- extensionId: number;
2966
+ extensionId: string | null;
2967
2967
  extensionName: string;
2968
2968
  telephonySignature: string | null;
2969
2969
  };
@@ -3007,7 +3007,7 @@ export declare const commentContract: {
3007
3007
  sipServerUrl: string;
3008
3008
  sipUserName: string;
3009
3009
  webphoneLoginUser: string;
3010
- extensionId: number;
3010
+ extensionId: string | null;
3011
3011
  extensionName: string;
3012
3012
  telephonySignature: string | null;
3013
3013
  };
@@ -3066,7 +3066,7 @@ export declare const commentContract: {
3066
3066
  sipServerUrl: string;
3067
3067
  sipUserName: string;
3068
3068
  webphoneLoginUser: string;
3069
- extensionId: number;
3069
+ extensionId: string | null;
3070
3070
  extensionName: string;
3071
3071
  telephonySignature: string | null;
3072
3072
  };
@@ -3120,7 +3120,7 @@ export declare const commentContract: {
3120
3120
  sipServerUrl: string;
3121
3121
  sipUserName: string;
3122
3122
  webphoneLoginUser: string;
3123
- extensionId: number;
3123
+ extensionId: string | null;
3124
3124
  extensionName: string;
3125
3125
  telephonySignature: string | null;
3126
3126
  };
@@ -3348,7 +3348,7 @@ export declare const commentContract: {
3348
3348
  sipServerUrl: string;
3349
3349
  sipUserName: string;
3350
3350
  webphoneLoginUser: string;
3351
- extensionId: number;
3351
+ extensionId: string | null;
3352
3352
  extensionName: string;
3353
3353
  telephonySignature: string | null;
3354
3354
  };
@@ -3392,7 +3392,7 @@ export declare const commentContract: {
3392
3392
  sipServerUrl: string;
3393
3393
  sipUserName: string;
3394
3394
  webphoneLoginUser: string;
3395
- extensionId: number;
3395
+ extensionId: string | null;
3396
3396
  extensionName: string;
3397
3397
  telephonySignature: string | null;
3398
3398
  };
@@ -3454,7 +3454,7 @@ export declare const commentContract: {
3454
3454
  sipServerUrl: string;
3455
3455
  sipUserName: string;
3456
3456
  webphoneLoginUser: string;
3457
- extensionId: number;
3457
+ extensionId: string | null;
3458
3458
  extensionName: string;
3459
3459
  telephonySignature: string | null;
3460
3460
  };
@@ -3508,7 +3508,7 @@ export declare const commentContract: {
3508
3508
  sipServerUrl: string;
3509
3509
  sipUserName: string;
3510
3510
  webphoneLoginUser: string;
3511
- extensionId: number;
3511
+ extensionId: string | null;
3512
3512
  extensionName: string;
3513
3513
  telephonySignature: string | null;
3514
3514
  };
@@ -3736,7 +3736,7 @@ export declare const commentContract: {
3736
3736
  sipServerUrl: string;
3737
3737
  sipUserName: string;
3738
3738
  webphoneLoginUser: string;
3739
- extensionId: number;
3739
+ extensionId: string | null;
3740
3740
  extensionName: string;
3741
3741
  telephonySignature: string | null;
3742
3742
  };
@@ -3780,7 +3780,7 @@ export declare const commentContract: {
3780
3780
  sipServerUrl: string;
3781
3781
  sipUserName: string;
3782
3782
  webphoneLoginUser: string;
3783
- extensionId: number;
3783
+ extensionId: string | null;
3784
3784
  extensionName: string;
3785
3785
  telephonySignature: string | null;
3786
3786
  };
@@ -3842,7 +3842,7 @@ export declare const commentContract: {
3842
3842
  sipServerUrl: string;
3843
3843
  sipUserName: string;
3844
3844
  webphoneLoginUser: string;
3845
- extensionId: number;
3845
+ extensionId: string | null;
3846
3846
  extensionName: string;
3847
3847
  telephonySignature: string | null;
3848
3848
  };
@@ -3896,7 +3896,7 @@ export declare const commentContract: {
3896
3896
  sipServerUrl: string;
3897
3897
  sipUserName: string;
3898
3898
  webphoneLoginUser: string;
3899
- extensionId: number;
3899
+ extensionId: string | null;
3900
3900
  extensionName: string;
3901
3901
  telephonySignature: string | null;
3902
3902
  };
@@ -4124,7 +4124,7 @@ export declare const commentContract: {
4124
4124
  sipServerUrl: string;
4125
4125
  sipUserName: string;
4126
4126
  webphoneLoginUser: string;
4127
- extensionId: number;
4127
+ extensionId: string | null;
4128
4128
  extensionName: string;
4129
4129
  telephonySignature: string | null;
4130
4130
  };
@@ -4168,7 +4168,7 @@ export declare const commentContract: {
4168
4168
  sipServerUrl: string;
4169
4169
  sipUserName: string;
4170
4170
  webphoneLoginUser: string;
4171
- extensionId: number;
4171
+ extensionId: string | null;
4172
4172
  extensionName: string;
4173
4173
  telephonySignature: string | null;
4174
4174
  };
@@ -4338,7 +4338,7 @@ export declare const commentContract: {
4338
4338
  sipServerUrl: z.ZodString;
4339
4339
  sipUserName: z.ZodString;
4340
4340
  webphoneLoginUser: z.ZodString;
4341
- extensionId: z.ZodNumber;
4341
+ extensionId: z.ZodNullable<z.ZodString>;
4342
4342
  extensionName: z.ZodString;
4343
4343
  telephonySignature: z.ZodNullable<z.ZodString>;
4344
4344
  }, "strip", z.ZodTypeAny, {
@@ -4350,7 +4350,7 @@ export declare const commentContract: {
4350
4350
  sipServerUrl: string;
4351
4351
  sipUserName: string;
4352
4352
  webphoneLoginUser: string;
4353
- extensionId: number;
4353
+ extensionId: string | null;
4354
4354
  extensionName: string;
4355
4355
  telephonySignature: string | null;
4356
4356
  }, {
@@ -4362,7 +4362,7 @@ export declare const commentContract: {
4362
4362
  sipServerUrl: string;
4363
4363
  sipUserName: string;
4364
4364
  webphoneLoginUser: string;
4365
- extensionId: number;
4365
+ extensionId: string | null;
4366
4366
  extensionName: string;
4367
4367
  telephonySignature: string | null;
4368
4368
  }>;
@@ -4405,7 +4405,7 @@ export declare const commentContract: {
4405
4405
  sipServerUrl: string;
4406
4406
  sipUserName: string;
4407
4407
  webphoneLoginUser: string;
4408
- extensionId: number;
4408
+ extensionId: string | null;
4409
4409
  extensionName: string;
4410
4410
  telephonySignature: string | null;
4411
4411
  };
@@ -4448,7 +4448,7 @@ export declare const commentContract: {
4448
4448
  sipServerUrl: string;
4449
4449
  sipUserName: string;
4450
4450
  webphoneLoginUser: string;
4451
- extensionId: number;
4451
+ extensionId: string | null;
4452
4452
  extensionName: string;
4453
4453
  telephonySignature: string | null;
4454
4454
  };
@@ -4522,7 +4522,7 @@ export declare const commentContract: {
4522
4522
  sipServerUrl: string;
4523
4523
  sipUserName: string;
4524
4524
  webphoneLoginUser: string;
4525
- extensionId: number;
4525
+ extensionId: string | null;
4526
4526
  extensionName: string;
4527
4527
  telephonySignature: string | null;
4528
4528
  };
@@ -4581,7 +4581,7 @@ export declare const commentContract: {
4581
4581
  sipServerUrl: string;
4582
4582
  sipUserName: string;
4583
4583
  webphoneLoginUser: string;
4584
- extensionId: number;
4584
+ extensionId: string | null;
4585
4585
  extensionName: string;
4586
4586
  telephonySignature: string | null;
4587
4587
  };
@@ -4700,7 +4700,7 @@ export declare const commentContract: {
4700
4700
  sipServerUrl: z.ZodString;
4701
4701
  sipUserName: z.ZodString;
4702
4702
  webphoneLoginUser: z.ZodString;
4703
- extensionId: z.ZodNumber;
4703
+ extensionId: z.ZodNullable<z.ZodString>;
4704
4704
  extensionName: z.ZodString;
4705
4705
  telephonySignature: z.ZodNullable<z.ZodString>;
4706
4706
  }, "strip", z.ZodTypeAny, {
@@ -4712,7 +4712,7 @@ export declare const commentContract: {
4712
4712
  sipServerUrl: string;
4713
4713
  sipUserName: string;
4714
4714
  webphoneLoginUser: string;
4715
- extensionId: number;
4715
+ extensionId: string | null;
4716
4716
  extensionName: string;
4717
4717
  telephonySignature: string | null;
4718
4718
  }, {
@@ -4724,7 +4724,7 @@ export declare const commentContract: {
4724
4724
  sipServerUrl: string;
4725
4725
  sipUserName: string;
4726
4726
  webphoneLoginUser: string;
4727
- extensionId: number;
4727
+ extensionId: string | null;
4728
4728
  extensionName: string;
4729
4729
  telephonySignature: string | null;
4730
4730
  }>;
@@ -4767,7 +4767,7 @@ export declare const commentContract: {
4767
4767
  sipServerUrl: string;
4768
4768
  sipUserName: string;
4769
4769
  webphoneLoginUser: string;
4770
- extensionId: number;
4770
+ extensionId: string | null;
4771
4771
  extensionName: string;
4772
4772
  telephonySignature: string | null;
4773
4773
  };
@@ -4810,7 +4810,7 @@ export declare const commentContract: {
4810
4810
  sipServerUrl: string;
4811
4811
  sipUserName: string;
4812
4812
  webphoneLoginUser: string;
4813
- extensionId: number;
4813
+ extensionId: string | null;
4814
4814
  extensionName: string;
4815
4815
  telephonySignature: string | null;
4816
4816
  };
@@ -4905,7 +4905,7 @@ export declare const commentContract: {
4905
4905
  sipServerUrl: z.ZodString;
4906
4906
  sipUserName: z.ZodString;
4907
4907
  webphoneLoginUser: z.ZodString;
4908
- extensionId: z.ZodNumber;
4908
+ extensionId: z.ZodNullable<z.ZodString>;
4909
4909
  extensionName: z.ZodString;
4910
4910
  telephonySignature: z.ZodNullable<z.ZodString>;
4911
4911
  }, "strip", z.ZodTypeAny, {
@@ -4917,7 +4917,7 @@ export declare const commentContract: {
4917
4917
  sipServerUrl: string;
4918
4918
  sipUserName: string;
4919
4919
  webphoneLoginUser: string;
4920
- extensionId: number;
4920
+ extensionId: string | null;
4921
4921
  extensionName: string;
4922
4922
  telephonySignature: string | null;
4923
4923
  }, {
@@ -4929,7 +4929,7 @@ export declare const commentContract: {
4929
4929
  sipServerUrl: string;
4930
4930
  sipUserName: string;
4931
4931
  webphoneLoginUser: string;
4932
- extensionId: number;
4932
+ extensionId: string | null;
4933
4933
  extensionName: string;
4934
4934
  telephonySignature: string | null;
4935
4935
  }>;
@@ -4972,7 +4972,7 @@ export declare const commentContract: {
4972
4972
  sipServerUrl: string;
4973
4973
  sipUserName: string;
4974
4974
  webphoneLoginUser: string;
4975
- extensionId: number;
4975
+ extensionId: string | null;
4976
4976
  extensionName: string;
4977
4977
  telephonySignature: string | null;
4978
4978
  };
@@ -5015,7 +5015,7 @@ export declare const commentContract: {
5015
5015
  sipServerUrl: string;
5016
5016
  sipUserName: string;
5017
5017
  webphoneLoginUser: string;
5018
- extensionId: number;
5018
+ extensionId: string | null;
5019
5019
  extensionName: string;
5020
5020
  telephonySignature: string | null;
5021
5021
  };
@@ -6317,7 +6317,7 @@ export declare const commentContract: {
6317
6317
  sipServerUrl: string;
6318
6318
  sipUserName: string;
6319
6319
  webphoneLoginUser: string;
6320
- extensionId: number;
6320
+ extensionId: string | null;
6321
6321
  extensionName: string;
6322
6322
  telephonySignature: string | null;
6323
6323
  };
@@ -6361,7 +6361,7 @@ export declare const commentContract: {
6361
6361
  sipServerUrl: string;
6362
6362
  sipUserName: string;
6363
6363
  webphoneLoginUser: string;
6364
- extensionId: number;
6364
+ extensionId: string | null;
6365
6365
  extensionName: string;
6366
6366
  telephonySignature: string | null;
6367
6367
  };
@@ -6590,7 +6590,7 @@ export declare const commentContract: {
6590
6590
  sipServerUrl: string;
6591
6591
  sipUserName: string;
6592
6592
  webphoneLoginUser: string;
6593
- extensionId: number;
6593
+ extensionId: string | null;
6594
6594
  extensionName: string;
6595
6595
  telephonySignature: string | null;
6596
6596
  };
@@ -6634,7 +6634,7 @@ export declare const commentContract: {
6634
6634
  sipServerUrl: string;
6635
6635
  sipUserName: string;
6636
6636
  webphoneLoginUser: string;
6637
- extensionId: number;
6637
+ extensionId: string | null;
6638
6638
  extensionName: string;
6639
6639
  telephonySignature: string | null;
6640
6640
  };
@@ -6730,7 +6730,7 @@ export declare const commentContract: {
6730
6730
  sipServerUrl: z.ZodString;
6731
6731
  sipUserName: z.ZodString;
6732
6732
  webphoneLoginUser: z.ZodString;
6733
- extensionId: z.ZodNumber;
6733
+ extensionId: z.ZodNullable<z.ZodString>;
6734
6734
  extensionName: z.ZodString;
6735
6735
  telephonySignature: z.ZodNullable<z.ZodString>;
6736
6736
  }, "strip", z.ZodTypeAny, {
@@ -6742,7 +6742,7 @@ export declare const commentContract: {
6742
6742
  sipServerUrl: string;
6743
6743
  sipUserName: string;
6744
6744
  webphoneLoginUser: string;
6745
- extensionId: number;
6745
+ extensionId: string | null;
6746
6746
  extensionName: string;
6747
6747
  telephonySignature: string | null;
6748
6748
  }, {
@@ -6754,7 +6754,7 @@ export declare const commentContract: {
6754
6754
  sipServerUrl: string;
6755
6755
  sipUserName: string;
6756
6756
  webphoneLoginUser: string;
6757
- extensionId: number;
6757
+ extensionId: string | null;
6758
6758
  extensionName: string;
6759
6759
  telephonySignature: string | null;
6760
6760
  }>;
@@ -6797,7 +6797,7 @@ export declare const commentContract: {
6797
6797
  sipServerUrl: string;
6798
6798
  sipUserName: string;
6799
6799
  webphoneLoginUser: string;
6800
- extensionId: number;
6800
+ extensionId: string | null;
6801
6801
  extensionName: string;
6802
6802
  telephonySignature: string | null;
6803
6803
  };
@@ -6840,7 +6840,7 @@ export declare const commentContract: {
6840
6840
  sipServerUrl: string;
6841
6841
  sipUserName: string;
6842
6842
  webphoneLoginUser: string;
6843
- extensionId: number;
6843
+ extensionId: string | null;
6844
6844
  extensionName: string;
6845
6845
  telephonySignature: string | null;
6846
6846
  };
@@ -6895,7 +6895,7 @@ export declare const commentContract: {
6895
6895
  sipServerUrl: string;
6896
6896
  sipUserName: string;
6897
6897
  webphoneLoginUser: string;
6898
- extensionId: number;
6898
+ extensionId: string | null;
6899
6899
  extensionName: string;
6900
6900
  telephonySignature: string | null;
6901
6901
  };
@@ -6949,7 +6949,7 @@ export declare const commentContract: {
6949
6949
  sipServerUrl: string;
6950
6950
  sipUserName: string;
6951
6951
  webphoneLoginUser: string;
6952
- extensionId: number;
6952
+ extensionId: string | null;
6953
6953
  extensionName: string;
6954
6954
  telephonySignature: string | null;
6955
6955
  };
@@ -7177,7 +7177,7 @@ export declare const commentContract: {
7177
7177
  sipServerUrl: string;
7178
7178
  sipUserName: string;
7179
7179
  webphoneLoginUser: string;
7180
- extensionId: number;
7180
+ extensionId: string | null;
7181
7181
  extensionName: string;
7182
7182
  telephonySignature: string | null;
7183
7183
  };
@@ -7221,7 +7221,7 @@ export declare const commentContract: {
7221
7221
  sipServerUrl: string;
7222
7222
  sipUserName: string;
7223
7223
  webphoneLoginUser: string;
7224
- extensionId: number;
7224
+ extensionId: string | null;
7225
7225
  extensionName: string;
7226
7226
  telephonySignature: string | null;
7227
7227
  };
@@ -7280,7 +7280,7 @@ export declare const commentContract: {
7280
7280
  sipServerUrl: string;
7281
7281
  sipUserName: string;
7282
7282
  webphoneLoginUser: string;
7283
- extensionId: number;
7283
+ extensionId: string | null;
7284
7284
  extensionName: string;
7285
7285
  telephonySignature: string | null;
7286
7286
  };
@@ -7334,7 +7334,7 @@ export declare const commentContract: {
7334
7334
  sipServerUrl: string;
7335
7335
  sipUserName: string;
7336
7336
  webphoneLoginUser: string;
7337
- extensionId: number;
7337
+ extensionId: string | null;
7338
7338
  extensionName: string;
7339
7339
  telephonySignature: string | null;
7340
7340
  };
@@ -7562,7 +7562,7 @@ export declare const commentContract: {
7562
7562
  sipServerUrl: string;
7563
7563
  sipUserName: string;
7564
7564
  webphoneLoginUser: string;
7565
- extensionId: number;
7565
+ extensionId: string | null;
7566
7566
  extensionName: string;
7567
7567
  telephonySignature: string | null;
7568
7568
  };
@@ -7606,7 +7606,7 @@ export declare const commentContract: {
7606
7606
  sipServerUrl: string;
7607
7607
  sipUserName: string;
7608
7608
  webphoneLoginUser: string;
7609
- extensionId: number;
7609
+ extensionId: string | null;
7610
7610
  extensionName: string;
7611
7611
  telephonySignature: string | null;
7612
7612
  };
@@ -7787,7 +7787,7 @@ export declare const commentContract: {
7787
7787
  sipServerUrl: z.ZodString;
7788
7788
  sipUserName: z.ZodString;
7789
7789
  webphoneLoginUser: z.ZodString;
7790
- extensionId: z.ZodNumber;
7790
+ extensionId: z.ZodNullable<z.ZodString>;
7791
7791
  extensionName: z.ZodString;
7792
7792
  telephonySignature: z.ZodNullable<z.ZodString>;
7793
7793
  }, "strip", z.ZodTypeAny, {
@@ -7799,7 +7799,7 @@ export declare const commentContract: {
7799
7799
  sipServerUrl: string;
7800
7800
  sipUserName: string;
7801
7801
  webphoneLoginUser: string;
7802
- extensionId: number;
7802
+ extensionId: string | null;
7803
7803
  extensionName: string;
7804
7804
  telephonySignature: string | null;
7805
7805
  }, {
@@ -7811,7 +7811,7 @@ export declare const commentContract: {
7811
7811
  sipServerUrl: string;
7812
7812
  sipUserName: string;
7813
7813
  webphoneLoginUser: string;
7814
- extensionId: number;
7814
+ extensionId: string | null;
7815
7815
  extensionName: string;
7816
7816
  telephonySignature: string | null;
7817
7817
  }>;
@@ -7854,7 +7854,7 @@ export declare const commentContract: {
7854
7854
  sipServerUrl: string;
7855
7855
  sipUserName: string;
7856
7856
  webphoneLoginUser: string;
7857
- extensionId: number;
7857
+ extensionId: string | null;
7858
7858
  extensionName: string;
7859
7859
  telephonySignature: string | null;
7860
7860
  };
@@ -7897,7 +7897,7 @@ export declare const commentContract: {
7897
7897
  sipServerUrl: string;
7898
7898
  sipUserName: string;
7899
7899
  webphoneLoginUser: string;
7900
- extensionId: number;
7900
+ extensionId: string | null;
7901
7901
  extensionName: string;
7902
7902
  telephonySignature: string | null;
7903
7903
  };
@@ -7971,7 +7971,7 @@ export declare const commentContract: {
7971
7971
  sipServerUrl: string;
7972
7972
  sipUserName: string;
7973
7973
  webphoneLoginUser: string;
7974
- extensionId: number;
7974
+ extensionId: string | null;
7975
7975
  extensionName: string;
7976
7976
  telephonySignature: string | null;
7977
7977
  };
@@ -8030,7 +8030,7 @@ export declare const commentContract: {
8030
8030
  sipServerUrl: string;
8031
8031
  sipUserName: string;
8032
8032
  webphoneLoginUser: string;
8033
- extensionId: number;
8033
+ extensionId: string | null;
8034
8034
  extensionName: string;
8035
8035
  telephonySignature: string | null;
8036
8036
  };
@@ -8149,7 +8149,7 @@ export declare const commentContract: {
8149
8149
  sipServerUrl: z.ZodString;
8150
8150
  sipUserName: z.ZodString;
8151
8151
  webphoneLoginUser: z.ZodString;
8152
- extensionId: z.ZodNumber;
8152
+ extensionId: z.ZodNullable<z.ZodString>;
8153
8153
  extensionName: z.ZodString;
8154
8154
  telephonySignature: z.ZodNullable<z.ZodString>;
8155
8155
  }, "strip", z.ZodTypeAny, {
@@ -8161,7 +8161,7 @@ export declare const commentContract: {
8161
8161
  sipServerUrl: string;
8162
8162
  sipUserName: string;
8163
8163
  webphoneLoginUser: string;
8164
- extensionId: number;
8164
+ extensionId: string | null;
8165
8165
  extensionName: string;
8166
8166
  telephonySignature: string | null;
8167
8167
  }, {
@@ -8173,7 +8173,7 @@ export declare const commentContract: {
8173
8173
  sipServerUrl: string;
8174
8174
  sipUserName: string;
8175
8175
  webphoneLoginUser: string;
8176
- extensionId: number;
8176
+ extensionId: string | null;
8177
8177
  extensionName: string;
8178
8178
  telephonySignature: string | null;
8179
8179
  }>;
@@ -8216,7 +8216,7 @@ export declare const commentContract: {
8216
8216
  sipServerUrl: string;
8217
8217
  sipUserName: string;
8218
8218
  webphoneLoginUser: string;
8219
- extensionId: number;
8219
+ extensionId: string | null;
8220
8220
  extensionName: string;
8221
8221
  telephonySignature: string | null;
8222
8222
  };
@@ -8259,7 +8259,7 @@ export declare const commentContract: {
8259
8259
  sipServerUrl: string;
8260
8260
  sipUserName: string;
8261
8261
  webphoneLoginUser: string;
8262
- extensionId: number;
8262
+ extensionId: string | null;
8263
8263
  extensionName: string;
8264
8264
  telephonySignature: string | null;
8265
8265
  };
@@ -8354,7 +8354,7 @@ export declare const commentContract: {
8354
8354
  sipServerUrl: z.ZodString;
8355
8355
  sipUserName: z.ZodString;
8356
8356
  webphoneLoginUser: z.ZodString;
8357
- extensionId: z.ZodNumber;
8357
+ extensionId: z.ZodNullable<z.ZodString>;
8358
8358
  extensionName: z.ZodString;
8359
8359
  telephonySignature: z.ZodNullable<z.ZodString>;
8360
8360
  }, "strip", z.ZodTypeAny, {
@@ -8366,7 +8366,7 @@ export declare const commentContract: {
8366
8366
  sipServerUrl: string;
8367
8367
  sipUserName: string;
8368
8368
  webphoneLoginUser: string;
8369
- extensionId: number;
8369
+ extensionId: string | null;
8370
8370
  extensionName: string;
8371
8371
  telephonySignature: string | null;
8372
8372
  }, {
@@ -8378,7 +8378,7 @@ export declare const commentContract: {
8378
8378
  sipServerUrl: string;
8379
8379
  sipUserName: string;
8380
8380
  webphoneLoginUser: string;
8381
- extensionId: number;
8381
+ extensionId: string | null;
8382
8382
  extensionName: string;
8383
8383
  telephonySignature: string | null;
8384
8384
  }>;
@@ -8421,7 +8421,7 @@ export declare const commentContract: {
8421
8421
  sipServerUrl: string;
8422
8422
  sipUserName: string;
8423
8423
  webphoneLoginUser: string;
8424
- extensionId: number;
8424
+ extensionId: string | null;
8425
8425
  extensionName: string;
8426
8426
  telephonySignature: string | null;
8427
8427
  };
@@ -8464,7 +8464,7 @@ export declare const commentContract: {
8464
8464
  sipServerUrl: string;
8465
8465
  sipUserName: string;
8466
8466
  webphoneLoginUser: string;
8467
- extensionId: number;
8467
+ extensionId: string | null;
8468
8468
  extensionName: string;
8469
8469
  telephonySignature: string | null;
8470
8470
  };
@@ -9766,7 +9766,7 @@ export declare const commentContract: {
9766
9766
  sipServerUrl: string;
9767
9767
  sipUserName: string;
9768
9768
  webphoneLoginUser: string;
9769
- extensionId: number;
9769
+ extensionId: string | null;
9770
9770
  extensionName: string;
9771
9771
  telephonySignature: string | null;
9772
9772
  };
@@ -9810,7 +9810,7 @@ export declare const commentContract: {
9810
9810
  sipServerUrl: string;
9811
9811
  sipUserName: string;
9812
9812
  webphoneLoginUser: string;
9813
- extensionId: number;
9813
+ extensionId: string | null;
9814
9814
  extensionName: string;
9815
9815
  telephonySignature: string | null;
9816
9816
  };
@@ -10039,7 +10039,7 @@ export declare const commentContract: {
10039
10039
  sipServerUrl: string;
10040
10040
  sipUserName: string;
10041
10041
  webphoneLoginUser: string;
10042
- extensionId: number;
10042
+ extensionId: string | null;
10043
10043
  extensionName: string;
10044
10044
  telephonySignature: string | null;
10045
10045
  };
@@ -10083,7 +10083,7 @@ export declare const commentContract: {
10083
10083
  sipServerUrl: string;
10084
10084
  sipUserName: string;
10085
10085
  webphoneLoginUser: string;
10086
- extensionId: number;
10086
+ extensionId: string | null;
10087
10087
  extensionName: string;
10088
10088
  telephonySignature: string | null;
10089
10089
  };
@@ -10179,7 +10179,7 @@ export declare const commentContract: {
10179
10179
  sipServerUrl: z.ZodString;
10180
10180
  sipUserName: z.ZodString;
10181
10181
  webphoneLoginUser: z.ZodString;
10182
- extensionId: z.ZodNumber;
10182
+ extensionId: z.ZodNullable<z.ZodString>;
10183
10183
  extensionName: z.ZodString;
10184
10184
  telephonySignature: z.ZodNullable<z.ZodString>;
10185
10185
  }, "strip", z.ZodTypeAny, {
@@ -10191,7 +10191,7 @@ export declare const commentContract: {
10191
10191
  sipServerUrl: string;
10192
10192
  sipUserName: string;
10193
10193
  webphoneLoginUser: string;
10194
- extensionId: number;
10194
+ extensionId: string | null;
10195
10195
  extensionName: string;
10196
10196
  telephonySignature: string | null;
10197
10197
  }, {
@@ -10203,7 +10203,7 @@ export declare const commentContract: {
10203
10203
  sipServerUrl: string;
10204
10204
  sipUserName: string;
10205
10205
  webphoneLoginUser: string;
10206
- extensionId: number;
10206
+ extensionId: string | null;
10207
10207
  extensionName: string;
10208
10208
  telephonySignature: string | null;
10209
10209
  }>;
@@ -10246,7 +10246,7 @@ export declare const commentContract: {
10246
10246
  sipServerUrl: string;
10247
10247
  sipUserName: string;
10248
10248
  webphoneLoginUser: string;
10249
- extensionId: number;
10249
+ extensionId: string | null;
10250
10250
  extensionName: string;
10251
10251
  telephonySignature: string | null;
10252
10252
  };
@@ -10289,7 +10289,7 @@ export declare const commentContract: {
10289
10289
  sipServerUrl: string;
10290
10290
  sipUserName: string;
10291
10291
  webphoneLoginUser: string;
10292
- extensionId: number;
10292
+ extensionId: string | null;
10293
10293
  extensionName: string;
10294
10294
  telephonySignature: string | null;
10295
10295
  };
@@ -10344,7 +10344,7 @@ export declare const commentContract: {
10344
10344
  sipServerUrl: string;
10345
10345
  sipUserName: string;
10346
10346
  webphoneLoginUser: string;
10347
- extensionId: number;
10347
+ extensionId: string | null;
10348
10348
  extensionName: string;
10349
10349
  telephonySignature: string | null;
10350
10350
  };
@@ -10398,7 +10398,7 @@ export declare const commentContract: {
10398
10398
  sipServerUrl: string;
10399
10399
  sipUserName: string;
10400
10400
  webphoneLoginUser: string;
10401
- extensionId: number;
10401
+ extensionId: string | null;
10402
10402
  extensionName: string;
10403
10403
  telephonySignature: string | null;
10404
10404
  };
@@ -10626,7 +10626,7 @@ export declare const commentContract: {
10626
10626
  sipServerUrl: string;
10627
10627
  sipUserName: string;
10628
10628
  webphoneLoginUser: string;
10629
- extensionId: number;
10629
+ extensionId: string | null;
10630
10630
  extensionName: string;
10631
10631
  telephonySignature: string | null;
10632
10632
  };
@@ -10670,7 +10670,7 @@ export declare const commentContract: {
10670
10670
  sipServerUrl: string;
10671
10671
  sipUserName: string;
10672
10672
  webphoneLoginUser: string;
10673
- extensionId: number;
10673
+ extensionId: string | null;
10674
10674
  extensionName: string;
10675
10675
  telephonySignature: string | null;
10676
10676
  };
@@ -10729,7 +10729,7 @@ export declare const commentContract: {
10729
10729
  sipServerUrl: string;
10730
10730
  sipUserName: string;
10731
10731
  webphoneLoginUser: string;
10732
- extensionId: number;
10732
+ extensionId: string | null;
10733
10733
  extensionName: string;
10734
10734
  telephonySignature: string | null;
10735
10735
  };
@@ -10783,7 +10783,7 @@ export declare const commentContract: {
10783
10783
  sipServerUrl: string;
10784
10784
  sipUserName: string;
10785
10785
  webphoneLoginUser: string;
10786
- extensionId: number;
10786
+ extensionId: string | null;
10787
10787
  extensionName: string;
10788
10788
  telephonySignature: string | null;
10789
10789
  };
@@ -11011,7 +11011,7 @@ export declare const commentContract: {
11011
11011
  sipServerUrl: string;
11012
11012
  sipUserName: string;
11013
11013
  webphoneLoginUser: string;
11014
- extensionId: number;
11014
+ extensionId: string | null;
11015
11015
  extensionName: string;
11016
11016
  telephonySignature: string | null;
11017
11017
  };
@@ -11055,7 +11055,7 @@ export declare const commentContract: {
11055
11055
  sipServerUrl: string;
11056
11056
  sipUserName: string;
11057
11057
  webphoneLoginUser: string;
11058
- extensionId: number;
11058
+ extensionId: string | null;
11059
11059
  extensionName: string;
11060
11060
  telephonySignature: string | null;
11061
11061
  };
@@ -11117,7 +11117,7 @@ export declare const commentContract: {
11117
11117
  sipServerUrl: string;
11118
11118
  sipUserName: string;
11119
11119
  webphoneLoginUser: string;
11120
- extensionId: number;
11120
+ extensionId: string | null;
11121
11121
  extensionName: string;
11122
11122
  telephonySignature: string | null;
11123
11123
  };
@@ -11171,7 +11171,7 @@ export declare const commentContract: {
11171
11171
  sipServerUrl: string;
11172
11172
  sipUserName: string;
11173
11173
  webphoneLoginUser: string;
11174
- extensionId: number;
11174
+ extensionId: string | null;
11175
11175
  extensionName: string;
11176
11176
  telephonySignature: string | null;
11177
11177
  };
@@ -11399,7 +11399,7 @@ export declare const commentContract: {
11399
11399
  sipServerUrl: string;
11400
11400
  sipUserName: string;
11401
11401
  webphoneLoginUser: string;
11402
- extensionId: number;
11402
+ extensionId: string | null;
11403
11403
  extensionName: string;
11404
11404
  telephonySignature: string | null;
11405
11405
  };
@@ -11443,7 +11443,7 @@ export declare const commentContract: {
11443
11443
  sipServerUrl: string;
11444
11444
  sipUserName: string;
11445
11445
  webphoneLoginUser: string;
11446
- extensionId: number;
11446
+ extensionId: string | null;
11447
11447
  extensionName: string;
11448
11448
  telephonySignature: string | null;
11449
11449
  };
@@ -11505,7 +11505,7 @@ export declare const commentContract: {
11505
11505
  sipServerUrl: string;
11506
11506
  sipUserName: string;
11507
11507
  webphoneLoginUser: string;
11508
- extensionId: number;
11508
+ extensionId: string | null;
11509
11509
  extensionName: string;
11510
11510
  telephonySignature: string | null;
11511
11511
  };
@@ -11559,7 +11559,7 @@ export declare const commentContract: {
11559
11559
  sipServerUrl: string;
11560
11560
  sipUserName: string;
11561
11561
  webphoneLoginUser: string;
11562
- extensionId: number;
11562
+ extensionId: string | null;
11563
11563
  extensionName: string;
11564
11564
  telephonySignature: string | null;
11565
11565
  };
@@ -11787,7 +11787,7 @@ export declare const commentContract: {
11787
11787
  sipServerUrl: string;
11788
11788
  sipUserName: string;
11789
11789
  webphoneLoginUser: string;
11790
- extensionId: number;
11790
+ extensionId: string | null;
11791
11791
  extensionName: string;
11792
11792
  telephonySignature: string | null;
11793
11793
  };
@@ -11831,7 +11831,7 @@ export declare const commentContract: {
11831
11831
  sipServerUrl: string;
11832
11832
  sipUserName: string;
11833
11833
  webphoneLoginUser: string;
11834
- extensionId: number;
11834
+ extensionId: string | null;
11835
11835
  extensionName: string;
11836
11836
  telephonySignature: string | null;
11837
11837
  };