@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
@@ -357,7 +357,7 @@ export declare const SendMessageSchema: z.ZodObject<{
357
357
  sipServerUrl: z.ZodString;
358
358
  sipUserName: z.ZodString;
359
359
  webphoneLoginUser: z.ZodString;
360
- extensionId: z.ZodNumber;
360
+ extensionId: z.ZodNullable<z.ZodString>;
361
361
  extensionName: z.ZodString;
362
362
  telephonySignature: z.ZodNullable<z.ZodString>;
363
363
  }, "strip", z.ZodTypeAny, {
@@ -369,7 +369,7 @@ export declare const SendMessageSchema: z.ZodObject<{
369
369
  sipServerUrl: string;
370
370
  sipUserName: string;
371
371
  webphoneLoginUser: string;
372
- extensionId: number;
372
+ extensionId: string | null;
373
373
  extensionName: string;
374
374
  telephonySignature: string | null;
375
375
  }, {
@@ -381,7 +381,7 @@ export declare const SendMessageSchema: z.ZodObject<{
381
381
  sipServerUrl: string;
382
382
  sipUserName: string;
383
383
  webphoneLoginUser: string;
384
- extensionId: number;
384
+ extensionId: string | null;
385
385
  extensionName: string;
386
386
  telephonySignature: string | null;
387
387
  }>;
@@ -424,7 +424,7 @@ export declare const SendMessageSchema: z.ZodObject<{
424
424
  sipServerUrl: string;
425
425
  sipUserName: string;
426
426
  webphoneLoginUser: string;
427
- extensionId: number;
427
+ extensionId: string | null;
428
428
  extensionName: string;
429
429
  telephonySignature: string | null;
430
430
  };
@@ -467,7 +467,7 @@ export declare const SendMessageSchema: z.ZodObject<{
467
467
  sipServerUrl: string;
468
468
  sipUserName: string;
469
469
  webphoneLoginUser: string;
470
- extensionId: number;
470
+ extensionId: string | null;
471
471
  extensionName: string;
472
472
  telephonySignature: string | null;
473
473
  };
@@ -482,6 +482,7 @@ export declare const SendMessageSchema: z.ZodObject<{
482
482
  packageId?: number | undefined;
483
483
  stickerId?: number | undefined;
484
484
  }>>;
485
+ file: z.ZodOptional<z.ZodType<File, z.ZodTypeDef, File>>;
485
486
  }, "strip", z.ZodTypeAny, {
486
487
  messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
487
488
  roomId: string;
@@ -534,7 +535,7 @@ export declare const SendMessageSchema: z.ZodObject<{
534
535
  sipServerUrl: string;
535
536
  sipUserName: string;
536
537
  webphoneLoginUser: string;
537
- extensionId: number;
538
+ extensionId: string | null;
538
539
  extensionName: string;
539
540
  telephonySignature: string | null;
540
541
  };
@@ -543,6 +544,7 @@ export declare const SendMessageSchema: z.ZodObject<{
543
544
  packageId?: number | undefined;
544
545
  stickerId?: number | undefined;
545
546
  } | undefined;
547
+ file?: File | undefined;
546
548
  }, {
547
549
  messageType: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
548
550
  roomId: string;
@@ -595,7 +597,7 @@ export declare const SendMessageSchema: z.ZodObject<{
595
597
  sipServerUrl: string;
596
598
  sipUserName: string;
597
599
  webphoneLoginUser: string;
598
- extensionId: number;
600
+ extensionId: string | null;
599
601
  extensionName: string;
600
602
  telephonySignature: string | null;
601
603
  };
@@ -604,6 +606,7 @@ export declare const SendMessageSchema: z.ZodObject<{
604
606
  packageId?: number | undefined;
605
607
  stickerId?: number | undefined;
606
608
  } | undefined;
609
+ file?: File | undefined;
607
610
  }>;
608
611
  export declare const SolveRoomSchema: z.ZodObject<{
609
612
  roomId: z.ZodString;
@@ -2424,7 +2427,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2424
2427
  sipServerUrl: z.ZodString;
2425
2428
  sipUserName: z.ZodString;
2426
2429
  webphoneLoginUser: z.ZodString;
2427
- extensionId: z.ZodNumber;
2430
+ extensionId: z.ZodNullable<z.ZodString>;
2428
2431
  extensionName: z.ZodString;
2429
2432
  telephonySignature: z.ZodNullable<z.ZodString>;
2430
2433
  }, "strip", z.ZodTypeAny, {
@@ -2436,7 +2439,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2436
2439
  sipServerUrl: string;
2437
2440
  sipUserName: string;
2438
2441
  webphoneLoginUser: string;
2439
- extensionId: number;
2442
+ extensionId: string | null;
2440
2443
  extensionName: string;
2441
2444
  telephonySignature: string | null;
2442
2445
  }, {
@@ -2448,7 +2451,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2448
2451
  sipServerUrl: string;
2449
2452
  sipUserName: string;
2450
2453
  webphoneLoginUser: string;
2451
- extensionId: number;
2454
+ extensionId: string | null;
2452
2455
  extensionName: string;
2453
2456
  telephonySignature: string | null;
2454
2457
  }>;
@@ -2491,7 +2494,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2491
2494
  sipServerUrl: string;
2492
2495
  sipUserName: string;
2493
2496
  webphoneLoginUser: string;
2494
- extensionId: number;
2497
+ extensionId: string | null;
2495
2498
  extensionName: string;
2496
2499
  telephonySignature: string | null;
2497
2500
  };
@@ -2534,7 +2537,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2534
2537
  sipServerUrl: string;
2535
2538
  sipUserName: string;
2536
2539
  webphoneLoginUser: string;
2537
- extensionId: number;
2540
+ extensionId: string | null;
2538
2541
  extensionName: string;
2539
2542
  telephonySignature: string | null;
2540
2543
  };
@@ -2628,7 +2631,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2628
2631
  sipServerUrl: z.ZodString;
2629
2632
  sipUserName: z.ZodString;
2630
2633
  webphoneLoginUser: z.ZodString;
2631
- extensionId: z.ZodNumber;
2634
+ extensionId: z.ZodNullable<z.ZodString>;
2632
2635
  extensionName: z.ZodString;
2633
2636
  telephonySignature: z.ZodNullable<z.ZodString>;
2634
2637
  }, "strip", z.ZodTypeAny, {
@@ -2640,7 +2643,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2640
2643
  sipServerUrl: string;
2641
2644
  sipUserName: string;
2642
2645
  webphoneLoginUser: string;
2643
- extensionId: number;
2646
+ extensionId: string | null;
2644
2647
  extensionName: string;
2645
2648
  telephonySignature: string | null;
2646
2649
  }, {
@@ -2652,7 +2655,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2652
2655
  sipServerUrl: string;
2653
2656
  sipUserName: string;
2654
2657
  webphoneLoginUser: string;
2655
- extensionId: number;
2658
+ extensionId: string | null;
2656
2659
  extensionName: string;
2657
2660
  telephonySignature: string | null;
2658
2661
  }>;
@@ -2695,7 +2698,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2695
2698
  sipServerUrl: string;
2696
2699
  sipUserName: string;
2697
2700
  webphoneLoginUser: string;
2698
- extensionId: number;
2701
+ extensionId: string | null;
2699
2702
  extensionName: string;
2700
2703
  telephonySignature: string | null;
2701
2704
  };
@@ -2738,7 +2741,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2738
2741
  sipServerUrl: string;
2739
2742
  sipUserName: string;
2740
2743
  webphoneLoginUser: string;
2741
- extensionId: number;
2744
+ extensionId: string | null;
2742
2745
  extensionName: string;
2743
2746
  telephonySignature: string | null;
2744
2747
  };
@@ -2861,7 +2864,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2861
2864
  sipServerUrl: z.ZodString;
2862
2865
  sipUserName: z.ZodString;
2863
2866
  webphoneLoginUser: z.ZodString;
2864
- extensionId: z.ZodNumber;
2867
+ extensionId: z.ZodNullable<z.ZodString>;
2865
2868
  extensionName: z.ZodString;
2866
2869
  telephonySignature: z.ZodNullable<z.ZodString>;
2867
2870
  }, "strip", z.ZodTypeAny, {
@@ -2873,7 +2876,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2873
2876
  sipServerUrl: string;
2874
2877
  sipUserName: string;
2875
2878
  webphoneLoginUser: string;
2876
- extensionId: number;
2879
+ extensionId: string | null;
2877
2880
  extensionName: string;
2878
2881
  telephonySignature: string | null;
2879
2882
  }, {
@@ -2885,7 +2888,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2885
2888
  sipServerUrl: string;
2886
2889
  sipUserName: string;
2887
2890
  webphoneLoginUser: string;
2888
- extensionId: number;
2891
+ extensionId: string | null;
2889
2892
  extensionName: string;
2890
2893
  telephonySignature: string | null;
2891
2894
  }>;
@@ -2928,7 +2931,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2928
2931
  sipServerUrl: string;
2929
2932
  sipUserName: string;
2930
2933
  webphoneLoginUser: string;
2931
- extensionId: number;
2934
+ extensionId: string | null;
2932
2935
  extensionName: string;
2933
2936
  telephonySignature: string | null;
2934
2937
  };
@@ -2971,7 +2974,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2971
2974
  sipServerUrl: string;
2972
2975
  sipUserName: string;
2973
2976
  webphoneLoginUser: string;
2974
- extensionId: number;
2977
+ extensionId: string | null;
2975
2978
  extensionName: string;
2976
2979
  telephonySignature: string | null;
2977
2980
  };
@@ -3034,7 +3037,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3034
3037
  sipServerUrl: string;
3035
3038
  sipUserName: string;
3036
3039
  webphoneLoginUser: string;
3037
- extensionId: number;
3040
+ extensionId: string | null;
3038
3041
  extensionName: string;
3039
3042
  telephonySignature: string | null;
3040
3043
  };
@@ -3097,7 +3100,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3097
3100
  sipServerUrl: string;
3098
3101
  sipUserName: string;
3099
3102
  webphoneLoginUser: string;
3100
- extensionId: number;
3103
+ extensionId: string | null;
3101
3104
  extensionName: string;
3102
3105
  telephonySignature: string | null;
3103
3106
  };
@@ -3295,7 +3298,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3295
3298
  sipServerUrl: string;
3296
3299
  sipUserName: string;
3297
3300
  webphoneLoginUser: string;
3298
- extensionId: number;
3301
+ extensionId: string | null;
3299
3302
  extensionName: string;
3300
3303
  telephonySignature: string | null;
3301
3304
  };
@@ -3465,7 +3468,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3465
3468
  sipServerUrl: string;
3466
3469
  sipUserName: string;
3467
3470
  webphoneLoginUser: string;
3468
- extensionId: number;
3471
+ extensionId: string | null;
3469
3472
  extensionName: string;
3470
3473
  telephonySignature: string | null;
3471
3474
  };
@@ -3563,7 +3566,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3563
3566
  sipServerUrl: string;
3564
3567
  sipUserName: string;
3565
3568
  webphoneLoginUser: string;
3566
- extensionId: number;
3569
+ extensionId: string | null;
3567
3570
  extensionName: string;
3568
3571
  telephonySignature: string | null;
3569
3572
  };
@@ -3614,7 +3617,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3614
3617
  sipServerUrl: string;
3615
3618
  sipUserName: string;
3616
3619
  webphoneLoginUser: string;
3617
- extensionId: number;
3620
+ extensionId: string | null;
3618
3621
  extensionName: string;
3619
3622
  telephonySignature: string | null;
3620
3623
  };
@@ -3784,7 +3787,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3784
3787
  sipServerUrl: string;
3785
3788
  sipUserName: string;
3786
3789
  webphoneLoginUser: string;
3787
- extensionId: number;
3790
+ extensionId: string | null;
3788
3791
  extensionName: string;
3789
3792
  telephonySignature: string | null;
3790
3793
  };
@@ -3882,7 +3885,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3882
3885
  sipServerUrl: string;
3883
3886
  sipUserName: string;
3884
3887
  webphoneLoginUser: string;
3885
- extensionId: number;
3888
+ extensionId: string | null;
3886
3889
  extensionName: string;
3887
3890
  telephonySignature: string | null;
3888
3891
  };
@@ -4012,7 +4015,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4012
4015
  sipServerUrl: z.ZodString;
4013
4016
  sipUserName: z.ZodString;
4014
4017
  webphoneLoginUser: z.ZodString;
4015
- extensionId: z.ZodNumber;
4018
+ extensionId: z.ZodNullable<z.ZodString>;
4016
4019
  extensionName: z.ZodString;
4017
4020
  telephonySignature: z.ZodNullable<z.ZodString>;
4018
4021
  }, "strip", z.ZodTypeAny, {
@@ -4024,7 +4027,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4024
4027
  sipServerUrl: string;
4025
4028
  sipUserName: string;
4026
4029
  webphoneLoginUser: string;
4027
- extensionId: number;
4030
+ extensionId: string | null;
4028
4031
  extensionName: string;
4029
4032
  telephonySignature: string | null;
4030
4033
  }, {
@@ -4036,7 +4039,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4036
4039
  sipServerUrl: string;
4037
4040
  sipUserName: string;
4038
4041
  webphoneLoginUser: string;
4039
- extensionId: number;
4042
+ extensionId: string | null;
4040
4043
  extensionName: string;
4041
4044
  telephonySignature: string | null;
4042
4045
  }>;
@@ -4079,7 +4082,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4079
4082
  sipServerUrl: string;
4080
4083
  sipUserName: string;
4081
4084
  webphoneLoginUser: string;
4082
- extensionId: number;
4085
+ extensionId: string | null;
4083
4086
  extensionName: string;
4084
4087
  telephonySignature: string | null;
4085
4088
  };
@@ -4122,7 +4125,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4122
4125
  sipServerUrl: string;
4123
4126
  sipUserName: string;
4124
4127
  webphoneLoginUser: string;
4125
- extensionId: number;
4128
+ extensionId: string | null;
4126
4129
  extensionName: string;
4127
4130
  telephonySignature: string | null;
4128
4131
  };
@@ -4216,7 +4219,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4216
4219
  sipServerUrl: z.ZodString;
4217
4220
  sipUserName: z.ZodString;
4218
4221
  webphoneLoginUser: z.ZodString;
4219
- extensionId: z.ZodNumber;
4222
+ extensionId: z.ZodNullable<z.ZodString>;
4220
4223
  extensionName: z.ZodString;
4221
4224
  telephonySignature: z.ZodNullable<z.ZodString>;
4222
4225
  }, "strip", z.ZodTypeAny, {
@@ -4228,7 +4231,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4228
4231
  sipServerUrl: string;
4229
4232
  sipUserName: string;
4230
4233
  webphoneLoginUser: string;
4231
- extensionId: number;
4234
+ extensionId: string | null;
4232
4235
  extensionName: string;
4233
4236
  telephonySignature: string | null;
4234
4237
  }, {
@@ -4240,7 +4243,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4240
4243
  sipServerUrl: string;
4241
4244
  sipUserName: string;
4242
4245
  webphoneLoginUser: string;
4243
- extensionId: number;
4246
+ extensionId: string | null;
4244
4247
  extensionName: string;
4245
4248
  telephonySignature: string | null;
4246
4249
  }>;
@@ -4283,7 +4286,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4283
4286
  sipServerUrl: string;
4284
4287
  sipUserName: string;
4285
4288
  webphoneLoginUser: string;
4286
- extensionId: number;
4289
+ extensionId: string | null;
4287
4290
  extensionName: string;
4288
4291
  telephonySignature: string | null;
4289
4292
  };
@@ -4326,7 +4329,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4326
4329
  sipServerUrl: string;
4327
4330
  sipUserName: string;
4328
4331
  webphoneLoginUser: string;
4329
- extensionId: number;
4332
+ extensionId: string | null;
4330
4333
  extensionName: string;
4331
4334
  telephonySignature: string | null;
4332
4335
  };
@@ -4420,7 +4423,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4420
4423
  sipServerUrl: z.ZodString;
4421
4424
  sipUserName: z.ZodString;
4422
4425
  webphoneLoginUser: z.ZodString;
4423
- extensionId: z.ZodNumber;
4426
+ extensionId: z.ZodNullable<z.ZodString>;
4424
4427
  extensionName: z.ZodString;
4425
4428
  telephonySignature: z.ZodNullable<z.ZodString>;
4426
4429
  }, "strip", z.ZodTypeAny, {
@@ -4432,7 +4435,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4432
4435
  sipServerUrl: string;
4433
4436
  sipUserName: string;
4434
4437
  webphoneLoginUser: string;
4435
- extensionId: number;
4438
+ extensionId: string | null;
4436
4439
  extensionName: string;
4437
4440
  telephonySignature: string | null;
4438
4441
  }, {
@@ -4444,7 +4447,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4444
4447
  sipServerUrl: string;
4445
4448
  sipUserName: string;
4446
4449
  webphoneLoginUser: string;
4447
- extensionId: number;
4450
+ extensionId: string | null;
4448
4451
  extensionName: string;
4449
4452
  telephonySignature: string | null;
4450
4453
  }>;
@@ -4487,7 +4490,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4487
4490
  sipServerUrl: string;
4488
4491
  sipUserName: string;
4489
4492
  webphoneLoginUser: string;
4490
- extensionId: number;
4493
+ extensionId: string | null;
4491
4494
  extensionName: string;
4492
4495
  telephonySignature: string | null;
4493
4496
  };
@@ -4530,7 +4533,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4530
4533
  sipServerUrl: string;
4531
4534
  sipUserName: string;
4532
4535
  webphoneLoginUser: string;
4533
- extensionId: number;
4536
+ extensionId: string | null;
4534
4537
  extensionName: string;
4535
4538
  telephonySignature: string | null;
4536
4539
  };
@@ -4584,7 +4587,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4584
4587
  sipServerUrl: string;
4585
4588
  sipUserName: string;
4586
4589
  webphoneLoginUser: string;
4587
- extensionId: number;
4590
+ extensionId: string | null;
4588
4591
  extensionName: string;
4589
4592
  telephonySignature: string | null;
4590
4593
  };
@@ -4640,7 +4643,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4640
4643
  sipServerUrl: string;
4641
4644
  sipUserName: string;
4642
4645
  webphoneLoginUser: string;
4643
- extensionId: number;
4646
+ extensionId: string | null;
4644
4647
  extensionName: string;
4645
4648
  telephonySignature: string | null;
4646
4649
  };
@@ -4690,7 +4693,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4690
4693
  sipServerUrl: string;
4691
4694
  sipUserName: string;
4692
4695
  webphoneLoginUser: string;
4693
- extensionId: number;
4696
+ extensionId: string | null;
4694
4697
  extensionName: string;
4695
4698
  telephonySignature: string | null;
4696
4699
  };
@@ -4860,7 +4863,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4860
4863
  sipServerUrl: string;
4861
4864
  sipUserName: string;
4862
4865
  webphoneLoginUser: string;
4863
- extensionId: number;
4866
+ extensionId: string | null;
4864
4867
  extensionName: string;
4865
4868
  telephonySignature: string | null;
4866
4869
  };
@@ -4958,7 +4961,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4958
4961
  sipServerUrl: string;
4959
4962
  sipUserName: string;
4960
4963
  webphoneLoginUser: string;
4961
- extensionId: number;
4964
+ extensionId: string | null;
4962
4965
  extensionName: string;
4963
4966
  telephonySignature: string | null;
4964
4967
  };
@@ -5010,7 +5013,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5010
5013
  sipServerUrl: string;
5011
5014
  sipUserName: string;
5012
5015
  webphoneLoginUser: string;
5013
- extensionId: number;
5016
+ extensionId: string | null;
5014
5017
  extensionName: string;
5015
5018
  telephonySignature: string | null;
5016
5019
  };
@@ -5066,7 +5069,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5066
5069
  sipServerUrl: string;
5067
5070
  sipUserName: string;
5068
5071
  webphoneLoginUser: string;
5069
- extensionId: number;
5072
+ extensionId: string | null;
5070
5073
  extensionName: string;
5071
5074
  telephonySignature: string | null;
5072
5075
  };
@@ -5122,7 +5125,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5122
5125
  sipServerUrl: string;
5123
5126
  sipUserName: string;
5124
5127
  webphoneLoginUser: string;
5125
- extensionId: number;
5128
+ extensionId: string | null;
5126
5129
  extensionName: string;
5127
5130
  telephonySignature: string | null;
5128
5131
  };
@@ -5172,7 +5175,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5172
5175
  sipServerUrl: string;
5173
5176
  sipUserName: string;
5174
5177
  webphoneLoginUser: string;
5175
- extensionId: number;
5178
+ extensionId: string | null;
5176
5179
  extensionName: string;
5177
5180
  telephonySignature: string | null;
5178
5181
  };
@@ -5342,7 +5345,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5342
5345
  sipServerUrl: string;
5343
5346
  sipUserName: string;
5344
5347
  webphoneLoginUser: string;
5345
- extensionId: number;
5348
+ extensionId: string | null;
5346
5349
  extensionName: string;
5347
5350
  telephonySignature: string | null;
5348
5351
  };
@@ -5440,7 +5443,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5440
5443
  sipServerUrl: string;
5441
5444
  sipUserName: string;
5442
5445
  webphoneLoginUser: string;
5443
- extensionId: number;
5446
+ extensionId: string | null;
5444
5447
  extensionName: string;
5445
5448
  telephonySignature: string | null;
5446
5449
  };
@@ -5492,7 +5495,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5492
5495
  sipServerUrl: string;
5493
5496
  sipUserName: string;
5494
5497
  webphoneLoginUser: string;
5495
- extensionId: number;
5498
+ extensionId: string | null;
5496
5499
  extensionName: string;
5497
5500
  telephonySignature: string | null;
5498
5501
  };
@@ -5550,7 +5553,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5550
5553
  sipServerUrl: string;
5551
5554
  sipUserName: string;
5552
5555
  webphoneLoginUser: string;
5553
- extensionId: number;
5556
+ extensionId: string | null;
5554
5557
  extensionName: string;
5555
5558
  telephonySignature: string | null;
5556
5559
  };
@@ -5606,7 +5609,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5606
5609
  sipServerUrl: string;
5607
5610
  sipUserName: string;
5608
5611
  webphoneLoginUser: string;
5609
- extensionId: number;
5612
+ extensionId: string | null;
5610
5613
  extensionName: string;
5611
5614
  telephonySignature: string | null;
5612
5615
  };
@@ -5656,7 +5659,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5656
5659
  sipServerUrl: string;
5657
5660
  sipUserName: string;
5658
5661
  webphoneLoginUser: string;
5659
- extensionId: number;
5662
+ extensionId: string | null;
5660
5663
  extensionName: string;
5661
5664
  telephonySignature: string | null;
5662
5665
  };
@@ -5826,7 +5829,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5826
5829
  sipServerUrl: string;
5827
5830
  sipUserName: string;
5828
5831
  webphoneLoginUser: string;
5829
- extensionId: number;
5832
+ extensionId: string | null;
5830
5833
  extensionName: string;
5831
5834
  telephonySignature: string | null;
5832
5835
  };
@@ -5924,7 +5927,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5924
5927
  sipServerUrl: string;
5925
5928
  sipUserName: string;
5926
5929
  webphoneLoginUser: string;
5927
- extensionId: number;
5930
+ extensionId: string | null;
5928
5931
  extensionName: string;
5929
5932
  telephonySignature: string | null;
5930
5933
  };
@@ -5976,7 +5979,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5976
5979
  sipServerUrl: string;
5977
5980
  sipUserName: string;
5978
5981
  webphoneLoginUser: string;
5979
- extensionId: number;
5982
+ extensionId: string | null;
5980
5983
  extensionName: string;
5981
5984
  telephonySignature: string | null;
5982
5985
  };
@@ -6035,7 +6038,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6035
6038
  sipServerUrl: string;
6036
6039
  sipUserName: string;
6037
6040
  webphoneLoginUser: string;
6038
- extensionId: number;
6041
+ extensionId: string | null;
6039
6042
  extensionName: string;
6040
6043
  telephonySignature: string | null;
6041
6044
  };
@@ -6091,7 +6094,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6091
6094
  sipServerUrl: string;
6092
6095
  sipUserName: string;
6093
6096
  webphoneLoginUser: string;
6094
- extensionId: number;
6097
+ extensionId: string | null;
6095
6098
  extensionName: string;
6096
6099
  telephonySignature: string | null;
6097
6100
  };
@@ -6141,7 +6144,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6141
6144
  sipServerUrl: string;
6142
6145
  sipUserName: string;
6143
6146
  webphoneLoginUser: string;
6144
- extensionId: number;
6147
+ extensionId: string | null;
6145
6148
  extensionName: string;
6146
6149
  telephonySignature: string | null;
6147
6150
  };
@@ -6311,7 +6314,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6311
6314
  sipServerUrl: string;
6312
6315
  sipUserName: string;
6313
6316
  webphoneLoginUser: string;
6314
- extensionId: number;
6317
+ extensionId: string | null;
6315
6318
  extensionName: string;
6316
6319
  telephonySignature: string | null;
6317
6320
  };
@@ -6409,7 +6412,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6409
6412
  sipServerUrl: string;
6410
6413
  sipUserName: string;
6411
6414
  webphoneLoginUser: string;
6412
- extensionId: number;
6415
+ extensionId: string | null;
6413
6416
  extensionName: string;
6414
6417
  telephonySignature: string | null;
6415
6418
  };
@@ -6461,7 +6464,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6461
6464
  sipServerUrl: string;
6462
6465
  sipUserName: string;
6463
6466
  webphoneLoginUser: string;
6464
- extensionId: number;
6467
+ extensionId: string | null;
6465
6468
  extensionName: string;
6466
6469
  telephonySignature: string | null;
6467
6470
  };
@@ -7739,7 +7742,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7739
7742
  sipServerUrl: z.ZodString;
7740
7743
  sipUserName: z.ZodString;
7741
7744
  webphoneLoginUser: z.ZodString;
7742
- extensionId: z.ZodNumber;
7745
+ extensionId: z.ZodNullable<z.ZodString>;
7743
7746
  extensionName: z.ZodString;
7744
7747
  telephonySignature: z.ZodNullable<z.ZodString>;
7745
7748
  }, "strip", z.ZodTypeAny, {
@@ -7751,7 +7754,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7751
7754
  sipServerUrl: string;
7752
7755
  sipUserName: string;
7753
7756
  webphoneLoginUser: string;
7754
- extensionId: number;
7757
+ extensionId: string | null;
7755
7758
  extensionName: string;
7756
7759
  telephonySignature: string | null;
7757
7760
  }, {
@@ -7763,7 +7766,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7763
7766
  sipServerUrl: string;
7764
7767
  sipUserName: string;
7765
7768
  webphoneLoginUser: string;
7766
- extensionId: number;
7769
+ extensionId: string | null;
7767
7770
  extensionName: string;
7768
7771
  telephonySignature: string | null;
7769
7772
  }>;
@@ -7806,7 +7809,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7806
7809
  sipServerUrl: string;
7807
7810
  sipUserName: string;
7808
7811
  webphoneLoginUser: string;
7809
- extensionId: number;
7812
+ extensionId: string | null;
7810
7813
  extensionName: string;
7811
7814
  telephonySignature: string | null;
7812
7815
  };
@@ -7849,7 +7852,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7849
7852
  sipServerUrl: string;
7850
7853
  sipUserName: string;
7851
7854
  webphoneLoginUser: string;
7852
- extensionId: number;
7855
+ extensionId: string | null;
7853
7856
  extensionName: string;
7854
7857
  telephonySignature: string | null;
7855
7858
  };
@@ -7943,7 +7946,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7943
7946
  sipServerUrl: z.ZodString;
7944
7947
  sipUserName: z.ZodString;
7945
7948
  webphoneLoginUser: z.ZodString;
7946
- extensionId: z.ZodNumber;
7949
+ extensionId: z.ZodNullable<z.ZodString>;
7947
7950
  extensionName: z.ZodString;
7948
7951
  telephonySignature: z.ZodNullable<z.ZodString>;
7949
7952
  }, "strip", z.ZodTypeAny, {
@@ -7955,7 +7958,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7955
7958
  sipServerUrl: string;
7956
7959
  sipUserName: string;
7957
7960
  webphoneLoginUser: string;
7958
- extensionId: number;
7961
+ extensionId: string | null;
7959
7962
  extensionName: string;
7960
7963
  telephonySignature: string | null;
7961
7964
  }, {
@@ -7967,7 +7970,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7967
7970
  sipServerUrl: string;
7968
7971
  sipUserName: string;
7969
7972
  webphoneLoginUser: string;
7970
- extensionId: number;
7973
+ extensionId: string | null;
7971
7974
  extensionName: string;
7972
7975
  telephonySignature: string | null;
7973
7976
  }>;
@@ -8010,7 +8013,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8010
8013
  sipServerUrl: string;
8011
8014
  sipUserName: string;
8012
8015
  webphoneLoginUser: string;
8013
- extensionId: number;
8016
+ extensionId: string | null;
8014
8017
  extensionName: string;
8015
8018
  telephonySignature: string | null;
8016
8019
  };
@@ -8053,7 +8056,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8053
8056
  sipServerUrl: string;
8054
8057
  sipUserName: string;
8055
8058
  webphoneLoginUser: string;
8056
- extensionId: number;
8059
+ extensionId: string | null;
8057
8060
  extensionName: string;
8058
8061
  telephonySignature: string | null;
8059
8062
  };
@@ -8458,7 +8461,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8458
8461
  sipServerUrl: string;
8459
8462
  sipUserName: string;
8460
8463
  webphoneLoginUser: string;
8461
- extensionId: number;
8464
+ extensionId: string | null;
8462
8465
  extensionName: string;
8463
8466
  telephonySignature: string | null;
8464
8467
  };
@@ -8502,7 +8505,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8502
8505
  sipServerUrl: string;
8503
8506
  sipUserName: string;
8504
8507
  webphoneLoginUser: string;
8505
- extensionId: number;
8508
+ extensionId: string | null;
8506
8509
  extensionName: string;
8507
8510
  telephonySignature: string | null;
8508
8511
  };
@@ -8731,7 +8734,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8731
8734
  sipServerUrl: string;
8732
8735
  sipUserName: string;
8733
8736
  webphoneLoginUser: string;
8734
- extensionId: number;
8737
+ extensionId: string | null;
8735
8738
  extensionName: string;
8736
8739
  telephonySignature: string | null;
8737
8740
  };
@@ -8775,7 +8778,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8775
8778
  sipServerUrl: string;
8776
8779
  sipUserName: string;
8777
8780
  webphoneLoginUser: string;
8778
- extensionId: number;
8781
+ extensionId: string | null;
8779
8782
  extensionName: string;
8780
8783
  telephonySignature: string | null;
8781
8784
  };
@@ -8961,7 +8964,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8961
8964
  sipServerUrl: z.ZodString;
8962
8965
  sipUserName: z.ZodString;
8963
8966
  webphoneLoginUser: z.ZodString;
8964
- extensionId: z.ZodNumber;
8967
+ extensionId: z.ZodNullable<z.ZodString>;
8965
8968
  extensionName: z.ZodString;
8966
8969
  telephonySignature: z.ZodNullable<z.ZodString>;
8967
8970
  }, "strip", z.ZodTypeAny, {
@@ -8973,7 +8976,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8973
8976
  sipServerUrl: string;
8974
8977
  sipUserName: string;
8975
8978
  webphoneLoginUser: string;
8976
- extensionId: number;
8979
+ extensionId: string | null;
8977
8980
  extensionName: string;
8978
8981
  telephonySignature: string | null;
8979
8982
  }, {
@@ -8985,7 +8988,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8985
8988
  sipServerUrl: string;
8986
8989
  sipUserName: string;
8987
8990
  webphoneLoginUser: string;
8988
- extensionId: number;
8991
+ extensionId: string | null;
8989
8992
  extensionName: string;
8990
8993
  telephonySignature: string | null;
8991
8994
  }>;
@@ -9028,7 +9031,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9028
9031
  sipServerUrl: string;
9029
9032
  sipUserName: string;
9030
9033
  webphoneLoginUser: string;
9031
- extensionId: number;
9034
+ extensionId: string | null;
9032
9035
  extensionName: string;
9033
9036
  telephonySignature: string | null;
9034
9037
  };
@@ -9071,7 +9074,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9071
9074
  sipServerUrl: string;
9072
9075
  sipUserName: string;
9073
9076
  webphoneLoginUser: string;
9074
- extensionId: number;
9077
+ extensionId: string | null;
9075
9078
  extensionName: string;
9076
9079
  telephonySignature: string | null;
9077
9080
  };
@@ -9165,7 +9168,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9165
9168
  sipServerUrl: z.ZodString;
9166
9169
  sipUserName: z.ZodString;
9167
9170
  webphoneLoginUser: z.ZodString;
9168
- extensionId: z.ZodNumber;
9171
+ extensionId: z.ZodNullable<z.ZodString>;
9169
9172
  extensionName: z.ZodString;
9170
9173
  telephonySignature: z.ZodNullable<z.ZodString>;
9171
9174
  }, "strip", z.ZodTypeAny, {
@@ -9177,7 +9180,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9177
9180
  sipServerUrl: string;
9178
9181
  sipUserName: string;
9179
9182
  webphoneLoginUser: string;
9180
- extensionId: number;
9183
+ extensionId: string | null;
9181
9184
  extensionName: string;
9182
9185
  telephonySignature: string | null;
9183
9186
  }, {
@@ -9189,7 +9192,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9189
9192
  sipServerUrl: string;
9190
9193
  sipUserName: string;
9191
9194
  webphoneLoginUser: string;
9192
- extensionId: number;
9195
+ extensionId: string | null;
9193
9196
  extensionName: string;
9194
9197
  telephonySignature: string | null;
9195
9198
  }>;
@@ -9232,7 +9235,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9232
9235
  sipServerUrl: string;
9233
9236
  sipUserName: string;
9234
9237
  webphoneLoginUser: string;
9235
- extensionId: number;
9238
+ extensionId: string | null;
9236
9239
  extensionName: string;
9237
9240
  telephonySignature: string | null;
9238
9241
  };
@@ -9275,7 +9278,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9275
9278
  sipServerUrl: string;
9276
9279
  sipUserName: string;
9277
9280
  webphoneLoginUser: string;
9278
- extensionId: number;
9281
+ extensionId: string | null;
9279
9282
  extensionName: string;
9280
9283
  telephonySignature: string | null;
9281
9284
  };
@@ -9369,7 +9372,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9369
9372
  sipServerUrl: z.ZodString;
9370
9373
  sipUserName: z.ZodString;
9371
9374
  webphoneLoginUser: z.ZodString;
9372
- extensionId: z.ZodNumber;
9375
+ extensionId: z.ZodNullable<z.ZodString>;
9373
9376
  extensionName: z.ZodString;
9374
9377
  telephonySignature: z.ZodNullable<z.ZodString>;
9375
9378
  }, "strip", z.ZodTypeAny, {
@@ -9381,7 +9384,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9381
9384
  sipServerUrl: string;
9382
9385
  sipUserName: string;
9383
9386
  webphoneLoginUser: string;
9384
- extensionId: number;
9387
+ extensionId: string | null;
9385
9388
  extensionName: string;
9386
9389
  telephonySignature: string | null;
9387
9390
  }, {
@@ -9393,7 +9396,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9393
9396
  sipServerUrl: string;
9394
9397
  sipUserName: string;
9395
9398
  webphoneLoginUser: string;
9396
- extensionId: number;
9399
+ extensionId: string | null;
9397
9400
  extensionName: string;
9398
9401
  telephonySignature: string | null;
9399
9402
  }>;
@@ -9436,7 +9439,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9436
9439
  sipServerUrl: string;
9437
9440
  sipUserName: string;
9438
9441
  webphoneLoginUser: string;
9439
- extensionId: number;
9442
+ extensionId: string | null;
9440
9443
  extensionName: string;
9441
9444
  telephonySignature: string | null;
9442
9445
  };
@@ -9479,7 +9482,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9479
9482
  sipServerUrl: string;
9480
9483
  sipUserName: string;
9481
9484
  webphoneLoginUser: string;
9482
- extensionId: number;
9485
+ extensionId: string | null;
9483
9486
  extensionName: string;
9484
9487
  telephonySignature: string | null;
9485
9488
  };
@@ -9656,7 +9659,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9656
9659
  sipServerUrl: string;
9657
9660
  sipUserName: string;
9658
9661
  webphoneLoginUser: string;
9659
- extensionId: number;
9662
+ extensionId: string | null;
9660
9663
  extensionName: string;
9661
9664
  telephonySignature: string | null;
9662
9665
  };
@@ -9700,7 +9703,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9700
9703
  sipServerUrl: string;
9701
9704
  sipUserName: string;
9702
9705
  webphoneLoginUser: string;
9703
- extensionId: number;
9706
+ extensionId: string | null;
9704
9707
  extensionName: string;
9705
9708
  telephonySignature: string | null;
9706
9709
  };
@@ -9822,7 +9825,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9822
9825
  sipServerUrl: string;
9823
9826
  sipUserName: string;
9824
9827
  webphoneLoginUser: string;
9825
- extensionId: number;
9828
+ extensionId: string | null;
9826
9829
  extensionName: string;
9827
9830
  telephonySignature: string | null;
9828
9831
  };
@@ -9866,7 +9869,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9866
9869
  sipServerUrl: string;
9867
9870
  sipUserName: string;
9868
9871
  webphoneLoginUser: string;
9869
- extensionId: number;
9872
+ extensionId: string | null;
9870
9873
  extensionName: string;
9871
9874
  telephonySignature: string | null;
9872
9875
  };
@@ -9910,7 +9913,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9910
9913
  sipServerUrl: string;
9911
9914
  sipUserName: string;
9912
9915
  webphoneLoginUser: string;
9913
- extensionId: number;
9916
+ extensionId: string | null;
9914
9917
  extensionName: string;
9915
9918
  telephonySignature: string | null;
9916
9919
  };
@@ -10087,7 +10090,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10087
10090
  sipServerUrl: string;
10088
10091
  sipUserName: string;
10089
10092
  webphoneLoginUser: string;
10090
- extensionId: number;
10093
+ extensionId: string | null;
10091
10094
  extensionName: string;
10092
10095
  telephonySignature: string | null;
10093
10096
  };
@@ -10131,7 +10134,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10131
10134
  sipServerUrl: string;
10132
10135
  sipUserName: string;
10133
10136
  webphoneLoginUser: string;
10134
- extensionId: number;
10137
+ extensionId: string | null;
10135
10138
  extensionName: string;
10136
10139
  telephonySignature: string | null;
10137
10140
  };
@@ -10253,7 +10256,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10253
10256
  sipServerUrl: string;
10254
10257
  sipUserName: string;
10255
10258
  webphoneLoginUser: string;
10256
- extensionId: number;
10259
+ extensionId: string | null;
10257
10260
  extensionName: string;
10258
10261
  telephonySignature: string | null;
10259
10262
  };
@@ -10297,7 +10300,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10297
10300
  sipServerUrl: string;
10298
10301
  sipUserName: string;
10299
10302
  webphoneLoginUser: string;
10300
- extensionId: number;
10303
+ extensionId: string | null;
10301
10304
  extensionName: string;
10302
10305
  telephonySignature: string | null;
10303
10306
  };
@@ -10341,7 +10344,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10341
10344
  sipServerUrl: string;
10342
10345
  sipUserName: string;
10343
10346
  webphoneLoginUser: string;
10344
- extensionId: number;
10347
+ extensionId: string | null;
10345
10348
  extensionName: string;
10346
10349
  telephonySignature: string | null;
10347
10350
  };
@@ -10520,7 +10523,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10520
10523
  sipServerUrl: string;
10521
10524
  sipUserName: string;
10522
10525
  webphoneLoginUser: string;
10523
- extensionId: number;
10526
+ extensionId: string | null;
10524
10527
  extensionName: string;
10525
10528
  telephonySignature: string | null;
10526
10529
  };
@@ -10564,7 +10567,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10564
10567
  sipServerUrl: string;
10565
10568
  sipUserName: string;
10566
10569
  webphoneLoginUser: string;
10567
- extensionId: number;
10570
+ extensionId: string | null;
10568
10571
  extensionName: string;
10569
10572
  telephonySignature: string | null;
10570
10573
  };
@@ -10686,7 +10689,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10686
10689
  sipServerUrl: string;
10687
10690
  sipUserName: string;
10688
10691
  webphoneLoginUser: string;
10689
- extensionId: number;
10692
+ extensionId: string | null;
10690
10693
  extensionName: string;
10691
10694
  telephonySignature: string | null;
10692
10695
  };
@@ -10730,7 +10733,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10730
10733
  sipServerUrl: string;
10731
10734
  sipUserName: string;
10732
10735
  webphoneLoginUser: string;
10733
- extensionId: number;
10736
+ extensionId: string | null;
10734
10737
  extensionName: string;
10735
10738
  telephonySignature: string | null;
10736
10739
  };
@@ -10774,7 +10777,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10774
10777
  sipServerUrl: string;
10775
10778
  sipUserName: string;
10776
10779
  webphoneLoginUser: string;
10777
- extensionId: number;
10780
+ extensionId: string | null;
10778
10781
  extensionName: string;
10779
10782
  telephonySignature: string | null;
10780
10783
  };
@@ -10953,7 +10956,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10953
10956
  sipServerUrl: string;
10954
10957
  sipUserName: string;
10955
10958
  webphoneLoginUser: string;
10956
- extensionId: number;
10959
+ extensionId: string | null;
10957
10960
  extensionName: string;
10958
10961
  telephonySignature: string | null;
10959
10962
  };
@@ -10997,7 +11000,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10997
11000
  sipServerUrl: string;
10998
11001
  sipUserName: string;
10999
11002
  webphoneLoginUser: string;
11000
- extensionId: number;
11003
+ extensionId: string | null;
11001
11004
  extensionName: string;
11002
11005
  telephonySignature: string | null;
11003
11006
  };
@@ -11119,7 +11122,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11119
11122
  sipServerUrl: string;
11120
11123
  sipUserName: string;
11121
11124
  webphoneLoginUser: string;
11122
- extensionId: number;
11125
+ extensionId: string | null;
11123
11126
  extensionName: string;
11124
11127
  telephonySignature: string | null;
11125
11128
  };
@@ -11163,7 +11166,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11163
11166
  sipServerUrl: string;
11164
11167
  sipUserName: string;
11165
11168
  webphoneLoginUser: string;
11166
- extensionId: number;
11169
+ extensionId: string | null;
11167
11170
  extensionName: string;
11168
11171
  telephonySignature: string | null;
11169
11172
  };
@@ -11207,7 +11210,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11207
11210
  sipServerUrl: string;
11208
11211
  sipUserName: string;
11209
11212
  webphoneLoginUser: string;
11210
- extensionId: number;
11213
+ extensionId: string | null;
11211
11214
  extensionName: string;
11212
11215
  telephonySignature: string | null;
11213
11216
  };