@kl1/contracts 1.0.35 → 1.0.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. package/dist/index.js +976 -932
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +975 -932
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/activity-log/index.d.ts +17 -10
  6. package/dist/src/activity-log/index.d.ts.map +1 -1
  7. package/dist/src/activity-log/schema.d.ts +17 -10
  8. package/dist/src/activity-log/schema.d.ts.map +1 -1
  9. package/dist/src/auth/index.d.ts +17 -10
  10. package/dist/src/auth/index.d.ts.map +1 -1
  11. package/dist/src/channel/index.d.ts +92 -56
  12. package/dist/src/channel/index.d.ts.map +1 -1
  13. package/dist/src/channel/schema.d.ts +18 -12
  14. package/dist/src/channel/schema.d.ts.map +1 -1
  15. package/dist/src/chat/index.d.ts +1068 -656
  16. package/dist/src/chat/index.d.ts.map +1 -1
  17. package/dist/src/chat/schema.d.ts +183 -110
  18. package/dist/src/chat/schema.d.ts.map +1 -1
  19. package/dist/src/chat/validation.d.ts +306 -188
  20. package/dist/src/chat/validation.d.ts.map +1 -1
  21. package/dist/src/comment/index.d.ts +965 -88
  22. package/dist/src/comment/index.d.ts.map +1 -1
  23. package/dist/src/comment/schema.d.ts +275 -24
  24. package/dist/src/comment/schema.d.ts.map +1 -1
  25. package/dist/src/contract.d.ts +10243 -6747
  26. package/dist/src/contract.d.ts.map +1 -1
  27. package/dist/src/cx-log/index.d.ts +116 -72
  28. package/dist/src/cx-log/index.d.ts.map +1 -1
  29. package/dist/src/cx-log/schema.d.ts +92 -56
  30. package/dist/src/cx-log/schema.d.ts.map +1 -1
  31. package/dist/src/evaluate-form/index.d.ts +6 -6
  32. package/dist/src/evaluate-form/validation.d.ts +8 -8
  33. package/dist/src/extension/index.d.ts +29 -120
  34. package/dist/src/extension/index.d.ts.map +1 -1
  35. package/dist/src/extension/schema.d.ts +3 -0
  36. package/dist/src/extension/schema.d.ts.map +1 -1
  37. package/dist/src/extension/validation.d.ts +6 -0
  38. package/dist/src/extension/validation.d.ts.map +1 -1
  39. package/dist/src/messenger/index.d.ts +162 -100
  40. package/dist/src/messenger/index.d.ts.map +1 -1
  41. package/dist/src/telephony-agent-presence-status/index.d.ts +57 -34
  42. package/dist/src/telephony-agent-presence-status/index.d.ts.map +1 -1
  43. package/dist/src/telephony-agent-presence-status/schema.d.ts +17 -10
  44. package/dist/src/telephony-agent-presence-status/schema.d.ts.map +1 -1
  45. package/dist/src/telephony-extension/index.d.ts +2 -0
  46. package/dist/src/telephony-extension/index.d.ts.map +1 -1
  47. package/dist/src/ticket/index.d.ts +3794 -1641
  48. package/dist/src/ticket/index.d.ts.map +1 -1
  49. package/dist/src/ticket/schema.d.ts +177 -0
  50. package/dist/src/ticket/schema.d.ts.map +1 -1
  51. package/dist/src/user/index.d.ts +57 -34
  52. package/dist/src/user/index.d.ts.map +1 -1
  53. package/dist/src/user/schema.d.ts +11 -6
  54. package/dist/src/user/schema.d.ts.map +1 -1
  55. package/dist/src/user-presence-status-log/index.d.ts +12 -8
  56. package/dist/src/user-presence-status-log/index.d.ts.map +1 -1
  57. package/dist/src/user-presence-status-log/schema.d.ts +17 -10
  58. package/dist/src/user-presence-status-log/schema.d.ts.map +1 -1
  59. package/dist/src/widget/index.d.ts +3 -13
  60. package/dist/src/widget/index.d.ts.map +1 -1
  61. package/package.json +1 -1
@@ -332,7 +332,7 @@ export declare const SendMessageSchema: z.ZodObject<{
332
332
  displayName: string;
333
333
  }[];
334
334
  }>, "many">;
335
- extension: z.ZodOptional<z.ZodObject<{
335
+ extension: z.ZodObject<{
336
336
  id: z.ZodString;
337
337
  createdAt: z.ZodDate;
338
338
  updatedAt: z.ZodDate;
@@ -340,6 +340,7 @@ export declare const SendMessageSchema: z.ZodObject<{
340
340
  userId: z.ZodNullable<z.ZodString>;
341
341
  sipServerUrl: z.ZodString;
342
342
  sipUserName: z.ZodString;
343
+ webphoneLoginUser: z.ZodString;
343
344
  extensionId: z.ZodNumber;
344
345
  extensionName: z.ZodString;
345
346
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -351,6 +352,7 @@ export declare const SendMessageSchema: z.ZodObject<{
351
352
  userId: string | null;
352
353
  sipServerUrl: string;
353
354
  sipUserName: string;
355
+ webphoneLoginUser: string;
354
356
  extensionId: number;
355
357
  extensionName: string;
356
358
  telephonySignature: string | null;
@@ -362,10 +364,11 @@ export declare const SendMessageSchema: z.ZodObject<{
362
364
  userId: string | null;
363
365
  sipServerUrl: string;
364
366
  sipUserName: string;
367
+ webphoneLoginUser: string;
365
368
  extensionId: number;
366
369
  extensionName: string;
367
370
  telephonySignature: string | null;
368
- }>>;
371
+ }>;
369
372
  }, "strip", z.ZodTypeAny, {
370
373
  id: string;
371
374
  address: string | null;
@@ -396,7 +399,7 @@ export declare const SendMessageSchema: z.ZodObject<{
396
399
  displayName: string;
397
400
  }[];
398
401
  }[];
399
- extension?: {
402
+ extension: {
400
403
  id: string;
401
404
  createdAt: Date;
402
405
  updatedAt: Date;
@@ -404,10 +407,11 @@ export declare const SendMessageSchema: z.ZodObject<{
404
407
  userId: string | null;
405
408
  sipServerUrl: string;
406
409
  sipUserName: string;
410
+ webphoneLoginUser: string;
407
411
  extensionId: number;
408
412
  extensionName: string;
409
413
  telephonySignature: string | null;
410
- } | undefined;
414
+ };
411
415
  }, {
412
416
  id: string;
413
417
  address: string | null;
@@ -438,7 +442,7 @@ export declare const SendMessageSchema: z.ZodObject<{
438
442
  displayName: string;
439
443
  }[];
440
444
  }[];
441
- extension?: {
445
+ extension: {
442
446
  id: string;
443
447
  createdAt: Date;
444
448
  updatedAt: Date;
@@ -446,10 +450,11 @@ export declare const SendMessageSchema: z.ZodObject<{
446
450
  userId: string | null;
447
451
  sipServerUrl: string;
448
452
  sipUserName: string;
453
+ webphoneLoginUser: string;
449
454
  extensionId: number;
450
455
  extensionName: string;
451
456
  telephonySignature: string | null;
452
- } | undefined;
457
+ };
453
458
  }>>;
454
459
  packageId: z.ZodOptional<z.ZodNumber>;
455
460
  stickerId: z.ZodOptional<z.ZodNumber>;
@@ -496,7 +501,7 @@ export declare const SendMessageSchema: z.ZodObject<{
496
501
  displayName: string;
497
502
  }[];
498
503
  }[];
499
- extension?: {
504
+ extension: {
500
505
  id: string;
501
506
  createdAt: Date;
502
507
  updatedAt: Date;
@@ -504,10 +509,11 @@ export declare const SendMessageSchema: z.ZodObject<{
504
509
  userId: string | null;
505
510
  sipServerUrl: string;
506
511
  sipUserName: string;
512
+ webphoneLoginUser: string;
507
513
  extensionId: number;
508
514
  extensionName: string;
509
515
  telephonySignature: string | null;
510
- } | undefined;
516
+ };
511
517
  } | undefined;
512
518
  packageId?: number | undefined;
513
519
  stickerId?: number | undefined;
@@ -554,7 +560,7 @@ export declare const SendMessageSchema: z.ZodObject<{
554
560
  displayName: string;
555
561
  }[];
556
562
  }[];
557
- extension?: {
563
+ extension: {
558
564
  id: string;
559
565
  createdAt: Date;
560
566
  updatedAt: Date;
@@ -562,10 +568,11 @@ export declare const SendMessageSchema: z.ZodObject<{
562
568
  userId: string | null;
563
569
  sipServerUrl: string;
564
570
  sipUserName: string;
571
+ webphoneLoginUser: string;
565
572
  extensionId: number;
566
573
  extensionName: string;
567
574
  telephonySignature: string | null;
568
- } | undefined;
575
+ };
569
576
  } | undefined;
570
577
  packageId?: number | undefined;
571
578
  stickerId?: number | undefined;
@@ -2407,7 +2414,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2407
2414
  displayName: string;
2408
2415
  }[];
2409
2416
  }>, "many">;
2410
- extension: z.ZodOptional<z.ZodObject<{
2417
+ extension: z.ZodObject<{
2411
2418
  id: z.ZodString;
2412
2419
  createdAt: z.ZodDate;
2413
2420
  updatedAt: z.ZodDate;
@@ -2415,6 +2422,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2415
2422
  userId: z.ZodNullable<z.ZodString>;
2416
2423
  sipServerUrl: z.ZodString;
2417
2424
  sipUserName: z.ZodString;
2425
+ webphoneLoginUser: z.ZodString;
2418
2426
  extensionId: z.ZodNumber;
2419
2427
  extensionName: z.ZodString;
2420
2428
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -2426,6 +2434,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2426
2434
  userId: string | null;
2427
2435
  sipServerUrl: string;
2428
2436
  sipUserName: string;
2437
+ webphoneLoginUser: string;
2429
2438
  extensionId: number;
2430
2439
  extensionName: string;
2431
2440
  telephonySignature: string | null;
@@ -2437,10 +2446,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2437
2446
  userId: string | null;
2438
2447
  sipServerUrl: string;
2439
2448
  sipUserName: string;
2449
+ webphoneLoginUser: string;
2440
2450
  extensionId: number;
2441
2451
  extensionName: string;
2442
2452
  telephonySignature: string | null;
2443
- }>>;
2453
+ }>;
2444
2454
  }, "strip", z.ZodTypeAny, {
2445
2455
  id: string;
2446
2456
  address: string | null;
@@ -2471,7 +2481,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2471
2481
  displayName: string;
2472
2482
  }[];
2473
2483
  }[];
2474
- extension?: {
2484
+ extension: {
2475
2485
  id: string;
2476
2486
  createdAt: Date;
2477
2487
  updatedAt: Date;
@@ -2479,10 +2489,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2479
2489
  userId: string | null;
2480
2490
  sipServerUrl: string;
2481
2491
  sipUserName: string;
2492
+ webphoneLoginUser: string;
2482
2493
  extensionId: number;
2483
2494
  extensionName: string;
2484
2495
  telephonySignature: string | null;
2485
- } | undefined;
2496
+ };
2486
2497
  }, {
2487
2498
  id: string;
2488
2499
  address: string | null;
@@ -2513,7 +2524,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2513
2524
  displayName: string;
2514
2525
  }[];
2515
2526
  }[];
2516
- extension?: {
2527
+ extension: {
2517
2528
  id: string;
2518
2529
  createdAt: Date;
2519
2530
  updatedAt: Date;
@@ -2521,10 +2532,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2521
2532
  userId: string | null;
2522
2533
  sipServerUrl: string;
2523
2534
  sipUserName: string;
2535
+ webphoneLoginUser: string;
2524
2536
  extensionId: number;
2525
2537
  extensionName: string;
2526
2538
  telephonySignature: string | null;
2527
- } | undefined;
2539
+ };
2528
2540
  }>;
2529
2541
  assignee: z.ZodObject<{
2530
2542
  id: z.ZodString;
@@ -2606,7 +2618,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2606
2618
  displayName: string;
2607
2619
  }[];
2608
2620
  }>, "many">;
2609
- extension: z.ZodOptional<z.ZodObject<{
2621
+ extension: z.ZodObject<{
2610
2622
  id: z.ZodString;
2611
2623
  createdAt: z.ZodDate;
2612
2624
  updatedAt: z.ZodDate;
@@ -2614,6 +2626,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2614
2626
  userId: z.ZodNullable<z.ZodString>;
2615
2627
  sipServerUrl: z.ZodString;
2616
2628
  sipUserName: z.ZodString;
2629
+ webphoneLoginUser: z.ZodString;
2617
2630
  extensionId: z.ZodNumber;
2618
2631
  extensionName: z.ZodString;
2619
2632
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -2625,6 +2638,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2625
2638
  userId: string | null;
2626
2639
  sipServerUrl: string;
2627
2640
  sipUserName: string;
2641
+ webphoneLoginUser: string;
2628
2642
  extensionId: number;
2629
2643
  extensionName: string;
2630
2644
  telephonySignature: string | null;
@@ -2636,10 +2650,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2636
2650
  userId: string | null;
2637
2651
  sipServerUrl: string;
2638
2652
  sipUserName: string;
2653
+ webphoneLoginUser: string;
2639
2654
  extensionId: number;
2640
2655
  extensionName: string;
2641
2656
  telephonySignature: string | null;
2642
- }>>;
2657
+ }>;
2643
2658
  }, "strip", z.ZodTypeAny, {
2644
2659
  id: string;
2645
2660
  address: string | null;
@@ -2670,7 +2685,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2670
2685
  displayName: string;
2671
2686
  }[];
2672
2687
  }[];
2673
- extension?: {
2688
+ extension: {
2674
2689
  id: string;
2675
2690
  createdAt: Date;
2676
2691
  updatedAt: Date;
@@ -2678,10 +2693,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2678
2693
  userId: string | null;
2679
2694
  sipServerUrl: string;
2680
2695
  sipUserName: string;
2696
+ webphoneLoginUser: string;
2681
2697
  extensionId: number;
2682
2698
  extensionName: string;
2683
2699
  telephonySignature: string | null;
2684
- } | undefined;
2700
+ };
2685
2701
  }, {
2686
2702
  id: string;
2687
2703
  address: string | null;
@@ -2712,7 +2728,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2712
2728
  displayName: string;
2713
2729
  }[];
2714
2730
  }[];
2715
- extension?: {
2731
+ extension: {
2716
2732
  id: string;
2717
2733
  createdAt: Date;
2718
2734
  updatedAt: Date;
@@ -2720,10 +2736,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2720
2736
  userId: string | null;
2721
2737
  sipServerUrl: string;
2722
2738
  sipUserName: string;
2739
+ webphoneLoginUser: string;
2723
2740
  extensionId: number;
2724
2741
  extensionName: string;
2725
2742
  telephonySignature: string | null;
2726
- } | undefined;
2743
+ };
2727
2744
  }>;
2728
2745
  channel: z.ZodOptional<z.ZodObject<{
2729
2746
  id: z.ZodOptional<z.ZodString>;
@@ -2834,7 +2851,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2834
2851
  displayName: string;
2835
2852
  }[];
2836
2853
  }>, "many">;
2837
- extension: z.ZodOptional<z.ZodObject<{
2854
+ extension: z.ZodObject<{
2838
2855
  id: z.ZodString;
2839
2856
  createdAt: z.ZodDate;
2840
2857
  updatedAt: z.ZodDate;
@@ -2842,6 +2859,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2842
2859
  userId: z.ZodNullable<z.ZodString>;
2843
2860
  sipServerUrl: z.ZodString;
2844
2861
  sipUserName: z.ZodString;
2862
+ webphoneLoginUser: z.ZodString;
2845
2863
  extensionId: z.ZodNumber;
2846
2864
  extensionName: z.ZodString;
2847
2865
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -2853,6 +2871,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2853
2871
  userId: string | null;
2854
2872
  sipServerUrl: string;
2855
2873
  sipUserName: string;
2874
+ webphoneLoginUser: string;
2856
2875
  extensionId: number;
2857
2876
  extensionName: string;
2858
2877
  telephonySignature: string | null;
@@ -2864,10 +2883,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2864
2883
  userId: string | null;
2865
2884
  sipServerUrl: string;
2866
2885
  sipUserName: string;
2886
+ webphoneLoginUser: string;
2867
2887
  extensionId: number;
2868
2888
  extensionName: string;
2869
2889
  telephonySignature: string | null;
2870
- }>>;
2890
+ }>;
2871
2891
  }, "strip", z.ZodTypeAny, {
2872
2892
  id: string;
2873
2893
  address: string | null;
@@ -2898,7 +2918,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2898
2918
  displayName: string;
2899
2919
  }[];
2900
2920
  }[];
2901
- extension?: {
2921
+ extension: {
2902
2922
  id: string;
2903
2923
  createdAt: Date;
2904
2924
  updatedAt: Date;
@@ -2906,10 +2926,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2906
2926
  userId: string | null;
2907
2927
  sipServerUrl: string;
2908
2928
  sipUserName: string;
2929
+ webphoneLoginUser: string;
2909
2930
  extensionId: number;
2910
2931
  extensionName: string;
2911
2932
  telephonySignature: string | null;
2912
- } | undefined;
2933
+ };
2913
2934
  }, {
2914
2935
  id: string;
2915
2936
  address: string | null;
@@ -2940,7 +2961,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2940
2961
  displayName: string;
2941
2962
  }[];
2942
2963
  }[];
2943
- extension?: {
2964
+ extension: {
2944
2965
  id: string;
2945
2966
  createdAt: Date;
2946
2967
  updatedAt: Date;
@@ -2948,10 +2969,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
2948
2969
  userId: string | null;
2949
2970
  sipServerUrl: string;
2950
2971
  sipUserName: string;
2972
+ webphoneLoginUser: string;
2951
2973
  extensionId: number;
2952
2974
  extensionName: string;
2953
2975
  telephonySignature: string | null;
2954
- } | undefined;
2976
+ };
2955
2977
  }>>;
2956
2978
  }, "strip", z.ZodTypeAny, {
2957
2979
  id?: string | undefined;
@@ -3002,7 +3024,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3002
3024
  displayName: string;
3003
3025
  }[];
3004
3026
  }[];
3005
- extension?: {
3027
+ extension: {
3006
3028
  id: string;
3007
3029
  createdAt: Date;
3008
3030
  updatedAt: Date;
@@ -3010,10 +3032,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3010
3032
  userId: string | null;
3011
3033
  sipServerUrl: string;
3012
3034
  sipUserName: string;
3035
+ webphoneLoginUser: string;
3013
3036
  extensionId: number;
3014
3037
  extensionName: string;
3015
3038
  telephonySignature: string | null;
3016
- } | undefined;
3039
+ };
3017
3040
  } | undefined;
3018
3041
  }, {
3019
3042
  id?: string | undefined;
@@ -3064,7 +3087,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3064
3087
  displayName: string;
3065
3088
  }[];
3066
3089
  }[];
3067
- extension?: {
3090
+ extension: {
3068
3091
  id: string;
3069
3092
  createdAt: Date;
3070
3093
  updatedAt: Date;
@@ -3072,10 +3095,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3072
3095
  userId: string | null;
3073
3096
  sipServerUrl: string;
3074
3097
  sipUserName: string;
3098
+ webphoneLoginUser: string;
3075
3099
  extensionId: number;
3076
3100
  extensionName: string;
3077
3101
  telephonySignature: string | null;
3078
- } | undefined;
3102
+ };
3079
3103
  } | undefined;
3080
3104
  }>>;
3081
3105
  cxlog: z.ZodObject<{
@@ -3261,7 +3285,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3261
3285
  displayName: string;
3262
3286
  }[];
3263
3287
  }[];
3264
- extension?: {
3288
+ extension: {
3265
3289
  id: string;
3266
3290
  createdAt: Date;
3267
3291
  updatedAt: Date;
@@ -3269,10 +3293,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3269
3293
  userId: string | null;
3270
3294
  sipServerUrl: string;
3271
3295
  sipUserName: string;
3296
+ webphoneLoginUser: string;
3272
3297
  extensionId: number;
3273
3298
  extensionName: string;
3274
3299
  telephonySignature: string | null;
3275
- } | undefined;
3300
+ };
3276
3301
  };
3277
3302
  firstResponseTime: number;
3278
3303
  lastMessage: string;
@@ -3429,7 +3454,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3429
3454
  displayName: string;
3430
3455
  }[];
3431
3456
  }[];
3432
- extension?: {
3457
+ extension: {
3433
3458
  id: string;
3434
3459
  createdAt: Date;
3435
3460
  updatedAt: Date;
@@ -3437,10 +3462,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3437
3462
  userId: string | null;
3438
3463
  sipServerUrl: string;
3439
3464
  sipUserName: string;
3465
+ webphoneLoginUser: string;
3440
3466
  extensionId: number;
3441
3467
  extensionName: string;
3442
3468
  telephonySignature: string | null;
3443
- } | undefined;
3469
+ };
3444
3470
  };
3445
3471
  cxlog: {
3446
3472
  id: string;
@@ -3526,7 +3552,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3526
3552
  displayName: string;
3527
3553
  }[];
3528
3554
  }[];
3529
- extension?: {
3555
+ extension: {
3530
3556
  id: string;
3531
3557
  createdAt: Date;
3532
3558
  updatedAt: Date;
@@ -3534,10 +3560,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3534
3560
  userId: string | null;
3535
3561
  sipServerUrl: string;
3536
3562
  sipUserName: string;
3563
+ webphoneLoginUser: string;
3537
3564
  extensionId: number;
3538
3565
  extensionName: string;
3539
3566
  telephonySignature: string | null;
3540
- } | undefined;
3567
+ };
3541
3568
  } | undefined;
3542
3569
  } | undefined;
3543
3570
  }, {
@@ -3576,7 +3603,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3576
3603
  displayName: string;
3577
3604
  }[];
3578
3605
  }[];
3579
- extension?: {
3606
+ extension: {
3580
3607
  id: string;
3581
3608
  createdAt: Date;
3582
3609
  updatedAt: Date;
@@ -3584,10 +3611,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3584
3611
  userId: string | null;
3585
3612
  sipServerUrl: string;
3586
3613
  sipUserName: string;
3614
+ webphoneLoginUser: string;
3587
3615
  extensionId: number;
3588
3616
  extensionName: string;
3589
3617
  telephonySignature: string | null;
3590
- } | undefined;
3618
+ };
3591
3619
  };
3592
3620
  firstResponseTime: number;
3593
3621
  lastMessage: string;
@@ -3744,7 +3772,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3744
3772
  displayName: string;
3745
3773
  }[];
3746
3774
  }[];
3747
- extension?: {
3775
+ extension: {
3748
3776
  id: string;
3749
3777
  createdAt: Date;
3750
3778
  updatedAt: Date;
@@ -3752,10 +3780,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3752
3780
  userId: string | null;
3753
3781
  sipServerUrl: string;
3754
3782
  sipUserName: string;
3783
+ webphoneLoginUser: string;
3755
3784
  extensionId: number;
3756
3785
  extensionName: string;
3757
3786
  telephonySignature: string | null;
3758
- } | undefined;
3787
+ };
3759
3788
  };
3760
3789
  cxlog: {
3761
3790
  id: string;
@@ -3841,7 +3870,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3841
3870
  displayName: string;
3842
3871
  }[];
3843
3872
  }[];
3844
- extension?: {
3873
+ extension: {
3845
3874
  id: string;
3846
3875
  createdAt: Date;
3847
3876
  updatedAt: Date;
@@ -3849,10 +3878,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3849
3878
  userId: string | null;
3850
3879
  sipServerUrl: string;
3851
3880
  sipUserName: string;
3881
+ webphoneLoginUser: string;
3852
3882
  extensionId: number;
3853
3883
  extensionName: string;
3854
3884
  telephonySignature: string | null;
3855
- } | undefined;
3885
+ };
3856
3886
  } | undefined;
3857
3887
  } | undefined;
3858
3888
  }>;
@@ -3967,7 +3997,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3967
3997
  displayName: string;
3968
3998
  }[];
3969
3999
  }>, "many">;
3970
- extension: z.ZodOptional<z.ZodObject<{
4000
+ extension: z.ZodObject<{
3971
4001
  id: z.ZodString;
3972
4002
  createdAt: z.ZodDate;
3973
4003
  updatedAt: z.ZodDate;
@@ -3975,6 +4005,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3975
4005
  userId: z.ZodNullable<z.ZodString>;
3976
4006
  sipServerUrl: z.ZodString;
3977
4007
  sipUserName: z.ZodString;
4008
+ webphoneLoginUser: z.ZodString;
3978
4009
  extensionId: z.ZodNumber;
3979
4010
  extensionName: z.ZodString;
3980
4011
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -3986,6 +4017,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3986
4017
  userId: string | null;
3987
4018
  sipServerUrl: string;
3988
4019
  sipUserName: string;
4020
+ webphoneLoginUser: string;
3989
4021
  extensionId: number;
3990
4022
  extensionName: string;
3991
4023
  telephonySignature: string | null;
@@ -3997,10 +4029,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
3997
4029
  userId: string | null;
3998
4030
  sipServerUrl: string;
3999
4031
  sipUserName: string;
4032
+ webphoneLoginUser: string;
4000
4033
  extensionId: number;
4001
4034
  extensionName: string;
4002
4035
  telephonySignature: string | null;
4003
- }>>;
4036
+ }>;
4004
4037
  }, "strip", z.ZodTypeAny, {
4005
4038
  id: string;
4006
4039
  address: string | null;
@@ -4031,7 +4064,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4031
4064
  displayName: string;
4032
4065
  }[];
4033
4066
  }[];
4034
- extension?: {
4067
+ extension: {
4035
4068
  id: string;
4036
4069
  createdAt: Date;
4037
4070
  updatedAt: Date;
@@ -4039,10 +4072,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4039
4072
  userId: string | null;
4040
4073
  sipServerUrl: string;
4041
4074
  sipUserName: string;
4075
+ webphoneLoginUser: string;
4042
4076
  extensionId: number;
4043
4077
  extensionName: string;
4044
4078
  telephonySignature: string | null;
4045
- } | undefined;
4079
+ };
4046
4080
  }, {
4047
4081
  id: string;
4048
4082
  address: string | null;
@@ -4073,7 +4107,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4073
4107
  displayName: string;
4074
4108
  }[];
4075
4109
  }[];
4076
- extension?: {
4110
+ extension: {
4077
4111
  id: string;
4078
4112
  createdAt: Date;
4079
4113
  updatedAt: Date;
@@ -4081,10 +4115,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4081
4115
  userId: string | null;
4082
4116
  sipServerUrl: string;
4083
4117
  sipUserName: string;
4118
+ webphoneLoginUser: string;
4084
4119
  extensionId: number;
4085
4120
  extensionName: string;
4086
4121
  telephonySignature: string | null;
4087
- } | undefined;
4122
+ };
4088
4123
  }>;
4089
4124
  assignee: z.ZodObject<{
4090
4125
  id: z.ZodString;
@@ -4166,7 +4201,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4166
4201
  displayName: string;
4167
4202
  }[];
4168
4203
  }>, "many">;
4169
- extension: z.ZodOptional<z.ZodObject<{
4204
+ extension: z.ZodObject<{
4170
4205
  id: z.ZodString;
4171
4206
  createdAt: z.ZodDate;
4172
4207
  updatedAt: z.ZodDate;
@@ -4174,6 +4209,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4174
4209
  userId: z.ZodNullable<z.ZodString>;
4175
4210
  sipServerUrl: z.ZodString;
4176
4211
  sipUserName: z.ZodString;
4212
+ webphoneLoginUser: z.ZodString;
4177
4213
  extensionId: z.ZodNumber;
4178
4214
  extensionName: z.ZodString;
4179
4215
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -4185,6 +4221,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4185
4221
  userId: string | null;
4186
4222
  sipServerUrl: string;
4187
4223
  sipUserName: string;
4224
+ webphoneLoginUser: string;
4188
4225
  extensionId: number;
4189
4226
  extensionName: string;
4190
4227
  telephonySignature: string | null;
@@ -4196,10 +4233,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4196
4233
  userId: string | null;
4197
4234
  sipServerUrl: string;
4198
4235
  sipUserName: string;
4236
+ webphoneLoginUser: string;
4199
4237
  extensionId: number;
4200
4238
  extensionName: string;
4201
4239
  telephonySignature: string | null;
4202
- }>>;
4240
+ }>;
4203
4241
  }, "strip", z.ZodTypeAny, {
4204
4242
  id: string;
4205
4243
  address: string | null;
@@ -4230,7 +4268,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4230
4268
  displayName: string;
4231
4269
  }[];
4232
4270
  }[];
4233
- extension?: {
4271
+ extension: {
4234
4272
  id: string;
4235
4273
  createdAt: Date;
4236
4274
  updatedAt: Date;
@@ -4238,10 +4276,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4238
4276
  userId: string | null;
4239
4277
  sipServerUrl: string;
4240
4278
  sipUserName: string;
4279
+ webphoneLoginUser: string;
4241
4280
  extensionId: number;
4242
4281
  extensionName: string;
4243
4282
  telephonySignature: string | null;
4244
- } | undefined;
4283
+ };
4245
4284
  }, {
4246
4285
  id: string;
4247
4286
  address: string | null;
@@ -4272,7 +4311,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4272
4311
  displayName: string;
4273
4312
  }[];
4274
4313
  }[];
4275
- extension?: {
4314
+ extension: {
4276
4315
  id: string;
4277
4316
  createdAt: Date;
4278
4317
  updatedAt: Date;
@@ -4280,10 +4319,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4280
4319
  userId: string | null;
4281
4320
  sipServerUrl: string;
4282
4321
  sipUserName: string;
4322
+ webphoneLoginUser: string;
4283
4323
  extensionId: number;
4284
4324
  extensionName: string;
4285
4325
  telephonySignature: string | null;
4286
- } | undefined;
4326
+ };
4287
4327
  }>;
4288
4328
  sender: z.ZodObject<{
4289
4329
  id: z.ZodString;
@@ -4365,7 +4405,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4365
4405
  displayName: string;
4366
4406
  }[];
4367
4407
  }>, "many">;
4368
- extension: z.ZodOptional<z.ZodObject<{
4408
+ extension: z.ZodObject<{
4369
4409
  id: z.ZodString;
4370
4410
  createdAt: z.ZodDate;
4371
4411
  updatedAt: z.ZodDate;
@@ -4373,6 +4413,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4373
4413
  userId: z.ZodNullable<z.ZodString>;
4374
4414
  sipServerUrl: z.ZodString;
4375
4415
  sipUserName: z.ZodString;
4416
+ webphoneLoginUser: z.ZodString;
4376
4417
  extensionId: z.ZodNumber;
4377
4418
  extensionName: z.ZodString;
4378
4419
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -4384,6 +4425,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4384
4425
  userId: string | null;
4385
4426
  sipServerUrl: string;
4386
4427
  sipUserName: string;
4428
+ webphoneLoginUser: string;
4387
4429
  extensionId: number;
4388
4430
  extensionName: string;
4389
4431
  telephonySignature: string | null;
@@ -4395,10 +4437,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4395
4437
  userId: string | null;
4396
4438
  sipServerUrl: string;
4397
4439
  sipUserName: string;
4440
+ webphoneLoginUser: string;
4398
4441
  extensionId: number;
4399
4442
  extensionName: string;
4400
4443
  telephonySignature: string | null;
4401
- }>>;
4444
+ }>;
4402
4445
  }, "strip", z.ZodTypeAny, {
4403
4446
  id: string;
4404
4447
  address: string | null;
@@ -4429,7 +4472,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4429
4472
  displayName: string;
4430
4473
  }[];
4431
4474
  }[];
4432
- extension?: {
4475
+ extension: {
4433
4476
  id: string;
4434
4477
  createdAt: Date;
4435
4478
  updatedAt: Date;
@@ -4437,10 +4480,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4437
4480
  userId: string | null;
4438
4481
  sipServerUrl: string;
4439
4482
  sipUserName: string;
4483
+ webphoneLoginUser: string;
4440
4484
  extensionId: number;
4441
4485
  extensionName: string;
4442
4486
  telephonySignature: string | null;
4443
- } | undefined;
4487
+ };
4444
4488
  }, {
4445
4489
  id: string;
4446
4490
  address: string | null;
@@ -4471,7 +4515,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4471
4515
  displayName: string;
4472
4516
  }[];
4473
4517
  }[];
4474
- extension?: {
4518
+ extension: {
4475
4519
  id: string;
4476
4520
  createdAt: Date;
4477
4521
  updatedAt: Date;
@@ -4479,10 +4523,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4479
4523
  userId: string | null;
4480
4524
  sipServerUrl: string;
4481
4525
  sipUserName: string;
4526
+ webphoneLoginUser: string;
4482
4527
  extensionId: number;
4483
4528
  extensionName: string;
4484
4529
  telephonySignature: string | null;
4485
- } | undefined;
4530
+ };
4486
4531
  }>;
4487
4532
  }, "strip", z.ZodTypeAny, {
4488
4533
  type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
@@ -4524,7 +4569,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4524
4569
  displayName: string;
4525
4570
  }[];
4526
4571
  }[];
4527
- extension?: {
4572
+ extension: {
4528
4573
  id: string;
4529
4574
  createdAt: Date;
4530
4575
  updatedAt: Date;
@@ -4532,10 +4577,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4532
4577
  userId: string | null;
4533
4578
  sipServerUrl: string;
4534
4579
  sipUserName: string;
4580
+ webphoneLoginUser: string;
4535
4581
  extensionId: number;
4536
4582
  extensionName: string;
4537
4583
  telephonySignature: string | null;
4538
- } | undefined;
4584
+ };
4539
4585
  };
4540
4586
  upload: {
4541
4587
  id: string;
@@ -4578,7 +4624,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4578
4624
  displayName: string;
4579
4625
  }[];
4580
4626
  }[];
4581
- extension?: {
4627
+ extension: {
4582
4628
  id: string;
4583
4629
  createdAt: Date;
4584
4630
  updatedAt: Date;
@@ -4586,10 +4632,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4586
4632
  userId: string | null;
4587
4633
  sipServerUrl: string;
4588
4634
  sipUserName: string;
4635
+ webphoneLoginUser: string;
4589
4636
  extensionId: number;
4590
4637
  extensionName: string;
4591
4638
  telephonySignature: string | null;
4592
- } | undefined;
4639
+ };
4593
4640
  };
4594
4641
  room: {
4595
4642
  id: string;
@@ -4627,7 +4674,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4627
4674
  displayName: string;
4628
4675
  }[];
4629
4676
  }[];
4630
- extension?: {
4677
+ extension: {
4631
4678
  id: string;
4632
4679
  createdAt: Date;
4633
4680
  updatedAt: Date;
@@ -4635,10 +4682,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4635
4682
  userId: string | null;
4636
4683
  sipServerUrl: string;
4637
4684
  sipUserName: string;
4685
+ webphoneLoginUser: string;
4638
4686
  extensionId: number;
4639
4687
  extensionName: string;
4640
4688
  telephonySignature: string | null;
4641
- } | undefined;
4689
+ };
4642
4690
  };
4643
4691
  firstResponseTime: number;
4644
4692
  lastMessage: string;
@@ -4795,7 +4843,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4795
4843
  displayName: string;
4796
4844
  }[];
4797
4845
  }[];
4798
- extension?: {
4846
+ extension: {
4799
4847
  id: string;
4800
4848
  createdAt: Date;
4801
4849
  updatedAt: Date;
@@ -4803,10 +4851,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4803
4851
  userId: string | null;
4804
4852
  sipServerUrl: string;
4805
4853
  sipUserName: string;
4854
+ webphoneLoginUser: string;
4806
4855
  extensionId: number;
4807
4856
  extensionName: string;
4808
4857
  telephonySignature: string | null;
4809
- } | undefined;
4858
+ };
4810
4859
  };
4811
4860
  cxlog: {
4812
4861
  id: string;
@@ -4892,7 +4941,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4892
4941
  displayName: string;
4893
4942
  }[];
4894
4943
  }[];
4895
- extension?: {
4944
+ extension: {
4896
4945
  id: string;
4897
4946
  createdAt: Date;
4898
4947
  updatedAt: Date;
@@ -4900,10 +4949,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4900
4949
  userId: string | null;
4901
4950
  sipServerUrl: string;
4902
4951
  sipUserName: string;
4952
+ webphoneLoginUser: string;
4903
4953
  extensionId: number;
4904
4954
  extensionName: string;
4905
4955
  telephonySignature: string | null;
4906
- } | undefined;
4956
+ };
4907
4957
  } | undefined;
4908
4958
  } | undefined;
4909
4959
  };
@@ -4943,7 +4993,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4943
4993
  displayName: string;
4944
4994
  }[];
4945
4995
  }[];
4946
- extension?: {
4996
+ extension: {
4947
4997
  id: string;
4948
4998
  createdAt: Date;
4949
4999
  updatedAt: Date;
@@ -4951,10 +5001,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4951
5001
  userId: string | null;
4952
5002
  sipServerUrl: string;
4953
5003
  sipUserName: string;
5004
+ webphoneLoginUser: string;
4954
5005
  extensionId: number;
4955
5006
  extensionName: string;
4956
5007
  telephonySignature: string | null;
4957
- } | undefined;
5008
+ };
4958
5009
  };
4959
5010
  metadata?: any;
4960
5011
  template?: any;
@@ -4998,7 +5049,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
4998
5049
  displayName: string;
4999
5050
  }[];
5000
5051
  }[];
5001
- extension?: {
5052
+ extension: {
5002
5053
  id: string;
5003
5054
  createdAt: Date;
5004
5055
  updatedAt: Date;
@@ -5006,10 +5057,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5006
5057
  userId: string | null;
5007
5058
  sipServerUrl: string;
5008
5059
  sipUserName: string;
5060
+ webphoneLoginUser: string;
5009
5061
  extensionId: number;
5010
5062
  extensionName: string;
5011
5063
  telephonySignature: string | null;
5012
- } | undefined;
5064
+ };
5013
5065
  };
5014
5066
  upload: {
5015
5067
  id: string;
@@ -5052,7 +5104,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5052
5104
  displayName: string;
5053
5105
  }[];
5054
5106
  }[];
5055
- extension?: {
5107
+ extension: {
5056
5108
  id: string;
5057
5109
  createdAt: Date;
5058
5110
  updatedAt: Date;
@@ -5060,10 +5112,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5060
5112
  userId: string | null;
5061
5113
  sipServerUrl: string;
5062
5114
  sipUserName: string;
5115
+ webphoneLoginUser: string;
5063
5116
  extensionId: number;
5064
5117
  extensionName: string;
5065
5118
  telephonySignature: string | null;
5066
- } | undefined;
5119
+ };
5067
5120
  };
5068
5121
  room: {
5069
5122
  id: string;
@@ -5101,7 +5154,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5101
5154
  displayName: string;
5102
5155
  }[];
5103
5156
  }[];
5104
- extension?: {
5157
+ extension: {
5105
5158
  id: string;
5106
5159
  createdAt: Date;
5107
5160
  updatedAt: Date;
@@ -5109,10 +5162,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5109
5162
  userId: string | null;
5110
5163
  sipServerUrl: string;
5111
5164
  sipUserName: string;
5165
+ webphoneLoginUser: string;
5112
5166
  extensionId: number;
5113
5167
  extensionName: string;
5114
5168
  telephonySignature: string | null;
5115
- } | undefined;
5169
+ };
5116
5170
  };
5117
5171
  firstResponseTime: number;
5118
5172
  lastMessage: string;
@@ -5269,7 +5323,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5269
5323
  displayName: string;
5270
5324
  }[];
5271
5325
  }[];
5272
- extension?: {
5326
+ extension: {
5273
5327
  id: string;
5274
5328
  createdAt: Date;
5275
5329
  updatedAt: Date;
@@ -5277,10 +5331,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5277
5331
  userId: string | null;
5278
5332
  sipServerUrl: string;
5279
5333
  sipUserName: string;
5334
+ webphoneLoginUser: string;
5280
5335
  extensionId: number;
5281
5336
  extensionName: string;
5282
5337
  telephonySignature: string | null;
5283
- } | undefined;
5338
+ };
5284
5339
  };
5285
5340
  cxlog: {
5286
5341
  id: string;
@@ -5366,7 +5421,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5366
5421
  displayName: string;
5367
5422
  }[];
5368
5423
  }[];
5369
- extension?: {
5424
+ extension: {
5370
5425
  id: string;
5371
5426
  createdAt: Date;
5372
5427
  updatedAt: Date;
@@ -5374,10 +5429,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5374
5429
  userId: string | null;
5375
5430
  sipServerUrl: string;
5376
5431
  sipUserName: string;
5432
+ webphoneLoginUser: string;
5377
5433
  extensionId: number;
5378
5434
  extensionName: string;
5379
5435
  telephonySignature: string | null;
5380
- } | undefined;
5436
+ };
5381
5437
  } | undefined;
5382
5438
  } | undefined;
5383
5439
  };
@@ -5417,7 +5473,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5417
5473
  displayName: string;
5418
5474
  }[];
5419
5475
  }[];
5420
- extension?: {
5476
+ extension: {
5421
5477
  id: string;
5422
5478
  createdAt: Date;
5423
5479
  updatedAt: Date;
@@ -5425,10 +5481,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5425
5481
  userId: string | null;
5426
5482
  sipServerUrl: string;
5427
5483
  sipUserName: string;
5484
+ webphoneLoginUser: string;
5428
5485
  extensionId: number;
5429
5486
  extensionName: string;
5430
5487
  telephonySignature: string | null;
5431
- } | undefined;
5488
+ };
5432
5489
  };
5433
5490
  metadata?: any;
5434
5491
  template?: any;
@@ -5474,7 +5531,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5474
5531
  displayName: string;
5475
5532
  }[];
5476
5533
  }[];
5477
- extension?: {
5534
+ extension: {
5478
5535
  id: string;
5479
5536
  createdAt: Date;
5480
5537
  updatedAt: Date;
@@ -5482,10 +5539,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5482
5539
  userId: string | null;
5483
5540
  sipServerUrl: string;
5484
5541
  sipUserName: string;
5542
+ webphoneLoginUser: string;
5485
5543
  extensionId: number;
5486
5544
  extensionName: string;
5487
5545
  telephonySignature: string | null;
5488
- } | undefined;
5546
+ };
5489
5547
  };
5490
5548
  upload: {
5491
5549
  id: string;
@@ -5528,7 +5586,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5528
5586
  displayName: string;
5529
5587
  }[];
5530
5588
  }[];
5531
- extension?: {
5589
+ extension: {
5532
5590
  id: string;
5533
5591
  createdAt: Date;
5534
5592
  updatedAt: Date;
@@ -5536,10 +5594,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5536
5594
  userId: string | null;
5537
5595
  sipServerUrl: string;
5538
5596
  sipUserName: string;
5597
+ webphoneLoginUser: string;
5539
5598
  extensionId: number;
5540
5599
  extensionName: string;
5541
5600
  telephonySignature: string | null;
5542
- } | undefined;
5601
+ };
5543
5602
  };
5544
5603
  room: {
5545
5604
  id: string;
@@ -5577,7 +5636,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5577
5636
  displayName: string;
5578
5637
  }[];
5579
5638
  }[];
5580
- extension?: {
5639
+ extension: {
5581
5640
  id: string;
5582
5641
  createdAt: Date;
5583
5642
  updatedAt: Date;
@@ -5585,10 +5644,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5585
5644
  userId: string | null;
5586
5645
  sipServerUrl: string;
5587
5646
  sipUserName: string;
5647
+ webphoneLoginUser: string;
5588
5648
  extensionId: number;
5589
5649
  extensionName: string;
5590
5650
  telephonySignature: string | null;
5591
- } | undefined;
5651
+ };
5592
5652
  };
5593
5653
  firstResponseTime: number;
5594
5654
  lastMessage: string;
@@ -5745,7 +5805,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5745
5805
  displayName: string;
5746
5806
  }[];
5747
5807
  }[];
5748
- extension?: {
5808
+ extension: {
5749
5809
  id: string;
5750
5810
  createdAt: Date;
5751
5811
  updatedAt: Date;
@@ -5753,10 +5813,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5753
5813
  userId: string | null;
5754
5814
  sipServerUrl: string;
5755
5815
  sipUserName: string;
5816
+ webphoneLoginUser: string;
5756
5817
  extensionId: number;
5757
5818
  extensionName: string;
5758
5819
  telephonySignature: string | null;
5759
- } | undefined;
5820
+ };
5760
5821
  };
5761
5822
  cxlog: {
5762
5823
  id: string;
@@ -5842,7 +5903,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5842
5903
  displayName: string;
5843
5904
  }[];
5844
5905
  }[];
5845
- extension?: {
5906
+ extension: {
5846
5907
  id: string;
5847
5908
  createdAt: Date;
5848
5909
  updatedAt: Date;
@@ -5850,10 +5911,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5850
5911
  userId: string | null;
5851
5912
  sipServerUrl: string;
5852
5913
  sipUserName: string;
5914
+ webphoneLoginUser: string;
5853
5915
  extensionId: number;
5854
5916
  extensionName: string;
5855
5917
  telephonySignature: string | null;
5856
- } | undefined;
5918
+ };
5857
5919
  } | undefined;
5858
5920
  } | undefined;
5859
5921
  };
@@ -5893,7 +5955,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5893
5955
  displayName: string;
5894
5956
  }[];
5895
5957
  }[];
5896
- extension?: {
5958
+ extension: {
5897
5959
  id: string;
5898
5960
  createdAt: Date;
5899
5961
  updatedAt: Date;
@@ -5901,10 +5963,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5901
5963
  userId: string | null;
5902
5964
  sipServerUrl: string;
5903
5965
  sipUserName: string;
5966
+ webphoneLoginUser: string;
5904
5967
  extensionId: number;
5905
5968
  extensionName: string;
5906
5969
  telephonySignature: string | null;
5907
- } | undefined;
5970
+ };
5908
5971
  };
5909
5972
  metadata?: any;
5910
5973
  template?: any;
@@ -5951,7 +6014,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5951
6014
  displayName: string;
5952
6015
  }[];
5953
6016
  }[];
5954
- extension?: {
6017
+ extension: {
5955
6018
  id: string;
5956
6019
  createdAt: Date;
5957
6020
  updatedAt: Date;
@@ -5959,10 +6022,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
5959
6022
  userId: string | null;
5960
6023
  sipServerUrl: string;
5961
6024
  sipUserName: string;
6025
+ webphoneLoginUser: string;
5962
6026
  extensionId: number;
5963
6027
  extensionName: string;
5964
6028
  telephonySignature: string | null;
5965
- } | undefined;
6029
+ };
5966
6030
  };
5967
6031
  upload: {
5968
6032
  id: string;
@@ -6005,7 +6069,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6005
6069
  displayName: string;
6006
6070
  }[];
6007
6071
  }[];
6008
- extension?: {
6072
+ extension: {
6009
6073
  id: string;
6010
6074
  createdAt: Date;
6011
6075
  updatedAt: Date;
@@ -6013,10 +6077,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6013
6077
  userId: string | null;
6014
6078
  sipServerUrl: string;
6015
6079
  sipUserName: string;
6080
+ webphoneLoginUser: string;
6016
6081
  extensionId: number;
6017
6082
  extensionName: string;
6018
6083
  telephonySignature: string | null;
6019
- } | undefined;
6084
+ };
6020
6085
  };
6021
6086
  room: {
6022
6087
  id: string;
@@ -6054,7 +6119,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6054
6119
  displayName: string;
6055
6120
  }[];
6056
6121
  }[];
6057
- extension?: {
6122
+ extension: {
6058
6123
  id: string;
6059
6124
  createdAt: Date;
6060
6125
  updatedAt: Date;
@@ -6062,10 +6127,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6062
6127
  userId: string | null;
6063
6128
  sipServerUrl: string;
6064
6129
  sipUserName: string;
6130
+ webphoneLoginUser: string;
6065
6131
  extensionId: number;
6066
6132
  extensionName: string;
6067
6133
  telephonySignature: string | null;
6068
- } | undefined;
6134
+ };
6069
6135
  };
6070
6136
  firstResponseTime: number;
6071
6137
  lastMessage: string;
@@ -6222,7 +6288,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6222
6288
  displayName: string;
6223
6289
  }[];
6224
6290
  }[];
6225
- extension?: {
6291
+ extension: {
6226
6292
  id: string;
6227
6293
  createdAt: Date;
6228
6294
  updatedAt: Date;
@@ -6230,10 +6296,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6230
6296
  userId: string | null;
6231
6297
  sipServerUrl: string;
6232
6298
  sipUserName: string;
6299
+ webphoneLoginUser: string;
6233
6300
  extensionId: number;
6234
6301
  extensionName: string;
6235
6302
  telephonySignature: string | null;
6236
- } | undefined;
6303
+ };
6237
6304
  };
6238
6305
  cxlog: {
6239
6306
  id: string;
@@ -6319,7 +6386,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6319
6386
  displayName: string;
6320
6387
  }[];
6321
6388
  }[];
6322
- extension?: {
6389
+ extension: {
6323
6390
  id: string;
6324
6391
  createdAt: Date;
6325
6392
  updatedAt: Date;
@@ -6327,10 +6394,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6327
6394
  userId: string | null;
6328
6395
  sipServerUrl: string;
6329
6396
  sipUserName: string;
6397
+ webphoneLoginUser: string;
6330
6398
  extensionId: number;
6331
6399
  extensionName: string;
6332
6400
  telephonySignature: string | null;
6333
- } | undefined;
6401
+ };
6334
6402
  } | undefined;
6335
6403
  } | undefined;
6336
6404
  };
@@ -6370,7 +6438,7 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6370
6438
  displayName: string;
6371
6439
  }[];
6372
6440
  }[];
6373
- extension?: {
6441
+ extension: {
6374
6442
  id: string;
6375
6443
  createdAt: Date;
6376
6444
  updatedAt: Date;
@@ -6378,10 +6446,11 @@ export declare const SendMessageResponseSchema: z.ZodObject<{
6378
6446
  userId: string | null;
6379
6447
  sipServerUrl: string;
6380
6448
  sipUserName: string;
6449
+ webphoneLoginUser: string;
6381
6450
  extensionId: number;
6382
6451
  extensionName: string;
6383
6452
  telephonySignature: string | null;
6384
- } | undefined;
6453
+ };
6385
6454
  };
6386
6455
  metadata?: any;
6387
6456
  template?: any;
@@ -7636,7 +7705,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7636
7705
  displayName: string;
7637
7706
  }[];
7638
7707
  }>, "many">;
7639
- extension: z.ZodOptional<z.ZodObject<{
7708
+ extension: z.ZodObject<{
7640
7709
  id: z.ZodString;
7641
7710
  createdAt: z.ZodDate;
7642
7711
  updatedAt: z.ZodDate;
@@ -7644,6 +7713,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7644
7713
  userId: z.ZodNullable<z.ZodString>;
7645
7714
  sipServerUrl: z.ZodString;
7646
7715
  sipUserName: z.ZodString;
7716
+ webphoneLoginUser: z.ZodString;
7647
7717
  extensionId: z.ZodNumber;
7648
7718
  extensionName: z.ZodString;
7649
7719
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -7655,6 +7725,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7655
7725
  userId: string | null;
7656
7726
  sipServerUrl: string;
7657
7727
  sipUserName: string;
7728
+ webphoneLoginUser: string;
7658
7729
  extensionId: number;
7659
7730
  extensionName: string;
7660
7731
  telephonySignature: string | null;
@@ -7666,10 +7737,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7666
7737
  userId: string | null;
7667
7738
  sipServerUrl: string;
7668
7739
  sipUserName: string;
7740
+ webphoneLoginUser: string;
7669
7741
  extensionId: number;
7670
7742
  extensionName: string;
7671
7743
  telephonySignature: string | null;
7672
- }>>;
7744
+ }>;
7673
7745
  }, "strip", z.ZodTypeAny, {
7674
7746
  id: string;
7675
7747
  address: string | null;
@@ -7700,7 +7772,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7700
7772
  displayName: string;
7701
7773
  }[];
7702
7774
  }[];
7703
- extension?: {
7775
+ extension: {
7704
7776
  id: string;
7705
7777
  createdAt: Date;
7706
7778
  updatedAt: Date;
@@ -7708,10 +7780,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7708
7780
  userId: string | null;
7709
7781
  sipServerUrl: string;
7710
7782
  sipUserName: string;
7783
+ webphoneLoginUser: string;
7711
7784
  extensionId: number;
7712
7785
  extensionName: string;
7713
7786
  telephonySignature: string | null;
7714
- } | undefined;
7787
+ };
7715
7788
  }, {
7716
7789
  id: string;
7717
7790
  address: string | null;
@@ -7742,7 +7815,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7742
7815
  displayName: string;
7743
7816
  }[];
7744
7817
  }[];
7745
- extension?: {
7818
+ extension: {
7746
7819
  id: string;
7747
7820
  createdAt: Date;
7748
7821
  updatedAt: Date;
@@ -7750,10 +7823,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7750
7823
  userId: string | null;
7751
7824
  sipServerUrl: string;
7752
7825
  sipUserName: string;
7826
+ webphoneLoginUser: string;
7753
7827
  extensionId: number;
7754
7828
  extensionName: string;
7755
7829
  telephonySignature: string | null;
7756
- } | undefined;
7830
+ };
7757
7831
  }>>;
7758
7832
  assignee: z.ZodOptional<z.ZodObject<{
7759
7833
  id: z.ZodString;
@@ -7835,7 +7909,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7835
7909
  displayName: string;
7836
7910
  }[];
7837
7911
  }>, "many">;
7838
- extension: z.ZodOptional<z.ZodObject<{
7912
+ extension: z.ZodObject<{
7839
7913
  id: z.ZodString;
7840
7914
  createdAt: z.ZodDate;
7841
7915
  updatedAt: z.ZodDate;
@@ -7843,6 +7917,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7843
7917
  userId: z.ZodNullable<z.ZodString>;
7844
7918
  sipServerUrl: z.ZodString;
7845
7919
  sipUserName: z.ZodString;
7920
+ webphoneLoginUser: z.ZodString;
7846
7921
  extensionId: z.ZodNumber;
7847
7922
  extensionName: z.ZodString;
7848
7923
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -7854,6 +7929,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7854
7929
  userId: string | null;
7855
7930
  sipServerUrl: string;
7856
7931
  sipUserName: string;
7932
+ webphoneLoginUser: string;
7857
7933
  extensionId: number;
7858
7934
  extensionName: string;
7859
7935
  telephonySignature: string | null;
@@ -7865,10 +7941,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7865
7941
  userId: string | null;
7866
7942
  sipServerUrl: string;
7867
7943
  sipUserName: string;
7944
+ webphoneLoginUser: string;
7868
7945
  extensionId: number;
7869
7946
  extensionName: string;
7870
7947
  telephonySignature: string | null;
7871
- }>>;
7948
+ }>;
7872
7949
  }, "strip", z.ZodTypeAny, {
7873
7950
  id: string;
7874
7951
  address: string | null;
@@ -7899,7 +7976,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7899
7976
  displayName: string;
7900
7977
  }[];
7901
7978
  }[];
7902
- extension?: {
7979
+ extension: {
7903
7980
  id: string;
7904
7981
  createdAt: Date;
7905
7982
  updatedAt: Date;
@@ -7907,10 +7984,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7907
7984
  userId: string | null;
7908
7985
  sipServerUrl: string;
7909
7986
  sipUserName: string;
7987
+ webphoneLoginUser: string;
7910
7988
  extensionId: number;
7911
7989
  extensionName: string;
7912
7990
  telephonySignature: string | null;
7913
- } | undefined;
7991
+ };
7914
7992
  }, {
7915
7993
  id: string;
7916
7994
  address: string | null;
@@ -7941,7 +8019,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7941
8019
  displayName: string;
7942
8020
  }[];
7943
8021
  }[];
7944
- extension?: {
8022
+ extension: {
7945
8023
  id: string;
7946
8024
  createdAt: Date;
7947
8025
  updatedAt: Date;
@@ -7949,10 +8027,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
7949
8027
  userId: string | null;
7950
8028
  sipServerUrl: string;
7951
8029
  sipUserName: string;
8030
+ webphoneLoginUser: string;
7952
8031
  extensionId: number;
7953
8032
  extensionName: string;
7954
8033
  telephonySignature: string | null;
7955
- } | undefined;
8034
+ };
7956
8035
  }>>;
7957
8036
  channel: z.ZodOptional<z.ZodObject<{
7958
8037
  name: z.ZodString;
@@ -8344,7 +8423,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8344
8423
  displayName: string;
8345
8424
  }[];
8346
8425
  }[];
8347
- extension?: {
8426
+ extension: {
8348
8427
  id: string;
8349
8428
  createdAt: Date;
8350
8429
  updatedAt: Date;
@@ -8352,10 +8431,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8352
8431
  userId: string | null;
8353
8432
  sipServerUrl: string;
8354
8433
  sipUserName: string;
8434
+ webphoneLoginUser: string;
8355
8435
  extensionId: number;
8356
8436
  extensionName: string;
8357
8437
  telephonySignature: string | null;
8358
- } | undefined;
8438
+ };
8359
8439
  } | undefined;
8360
8440
  assignee?: {
8361
8441
  id: string;
@@ -8387,7 +8467,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8387
8467
  displayName: string;
8388
8468
  }[];
8389
8469
  }[];
8390
- extension?: {
8470
+ extension: {
8391
8471
  id: string;
8392
8472
  createdAt: Date;
8393
8473
  updatedAt: Date;
@@ -8395,10 +8475,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8395
8475
  userId: string | null;
8396
8476
  sipServerUrl: string;
8397
8477
  sipUserName: string;
8478
+ webphoneLoginUser: string;
8398
8479
  extensionId: number;
8399
8480
  extensionName: string;
8400
8481
  telephonySignature: string | null;
8401
- } | undefined;
8482
+ };
8402
8483
  } | undefined;
8403
8484
  channel?: {
8404
8485
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -8614,7 +8695,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8614
8695
  displayName: string;
8615
8696
  }[];
8616
8697
  }[];
8617
- extension?: {
8698
+ extension: {
8618
8699
  id: string;
8619
8700
  createdAt: Date;
8620
8701
  updatedAt: Date;
@@ -8622,10 +8703,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8622
8703
  userId: string | null;
8623
8704
  sipServerUrl: string;
8624
8705
  sipUserName: string;
8706
+ webphoneLoginUser: string;
8625
8707
  extensionId: number;
8626
8708
  extensionName: string;
8627
8709
  telephonySignature: string | null;
8628
- } | undefined;
8710
+ };
8629
8711
  } | undefined;
8630
8712
  assignee?: {
8631
8713
  id: string;
@@ -8657,7 +8739,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8657
8739
  displayName: string;
8658
8740
  }[];
8659
8741
  }[];
8660
- extension?: {
8742
+ extension: {
8661
8743
  id: string;
8662
8744
  createdAt: Date;
8663
8745
  updatedAt: Date;
@@ -8665,10 +8747,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8665
8747
  userId: string | null;
8666
8748
  sipServerUrl: string;
8667
8749
  sipUserName: string;
8750
+ webphoneLoginUser: string;
8668
8751
  extensionId: number;
8669
8752
  extensionName: string;
8670
8753
  telephonySignature: string | null;
8671
- } | undefined;
8754
+ };
8672
8755
  } | undefined;
8673
8756
  channel?: {
8674
8757
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -8839,7 +8922,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8839
8922
  displayName: string;
8840
8923
  }[];
8841
8924
  }>, "many">;
8842
- extension: z.ZodOptional<z.ZodObject<{
8925
+ extension: z.ZodObject<{
8843
8926
  id: z.ZodString;
8844
8927
  createdAt: z.ZodDate;
8845
8928
  updatedAt: z.ZodDate;
@@ -8847,6 +8930,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8847
8930
  userId: z.ZodNullable<z.ZodString>;
8848
8931
  sipServerUrl: z.ZodString;
8849
8932
  sipUserName: z.ZodString;
8933
+ webphoneLoginUser: z.ZodString;
8850
8934
  extensionId: z.ZodNumber;
8851
8935
  extensionName: z.ZodString;
8852
8936
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -8858,6 +8942,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8858
8942
  userId: string | null;
8859
8943
  sipServerUrl: string;
8860
8944
  sipUserName: string;
8945
+ webphoneLoginUser: string;
8861
8946
  extensionId: number;
8862
8947
  extensionName: string;
8863
8948
  telephonySignature: string | null;
@@ -8869,10 +8954,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8869
8954
  userId: string | null;
8870
8955
  sipServerUrl: string;
8871
8956
  sipUserName: string;
8957
+ webphoneLoginUser: string;
8872
8958
  extensionId: number;
8873
8959
  extensionName: string;
8874
8960
  telephonySignature: string | null;
8875
- }>>;
8961
+ }>;
8876
8962
  }, "strip", z.ZodTypeAny, {
8877
8963
  id: string;
8878
8964
  address: string | null;
@@ -8903,7 +8989,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8903
8989
  displayName: string;
8904
8990
  }[];
8905
8991
  }[];
8906
- extension?: {
8992
+ extension: {
8907
8993
  id: string;
8908
8994
  createdAt: Date;
8909
8995
  updatedAt: Date;
@@ -8911,10 +8997,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8911
8997
  userId: string | null;
8912
8998
  sipServerUrl: string;
8913
8999
  sipUserName: string;
9000
+ webphoneLoginUser: string;
8914
9001
  extensionId: number;
8915
9002
  extensionName: string;
8916
9003
  telephonySignature: string | null;
8917
- } | undefined;
9004
+ };
8918
9005
  }, {
8919
9006
  id: string;
8920
9007
  address: string | null;
@@ -8945,7 +9032,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8945
9032
  displayName: string;
8946
9033
  }[];
8947
9034
  }[];
8948
- extension?: {
9035
+ extension: {
8949
9036
  id: string;
8950
9037
  createdAt: Date;
8951
9038
  updatedAt: Date;
@@ -8953,10 +9040,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
8953
9040
  userId: string | null;
8954
9041
  sipServerUrl: string;
8955
9042
  sipUserName: string;
9043
+ webphoneLoginUser: string;
8956
9044
  extensionId: number;
8957
9045
  extensionName: string;
8958
9046
  telephonySignature: string | null;
8959
- } | undefined;
9047
+ };
8960
9048
  }>>;
8961
9049
  assignee: z.ZodOptional<z.ZodObject<{
8962
9050
  id: z.ZodString;
@@ -9038,7 +9126,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9038
9126
  displayName: string;
9039
9127
  }[];
9040
9128
  }>, "many">;
9041
- extension: z.ZodOptional<z.ZodObject<{
9129
+ extension: z.ZodObject<{
9042
9130
  id: z.ZodString;
9043
9131
  createdAt: z.ZodDate;
9044
9132
  updatedAt: z.ZodDate;
@@ -9046,6 +9134,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9046
9134
  userId: z.ZodNullable<z.ZodString>;
9047
9135
  sipServerUrl: z.ZodString;
9048
9136
  sipUserName: z.ZodString;
9137
+ webphoneLoginUser: z.ZodString;
9049
9138
  extensionId: z.ZodNumber;
9050
9139
  extensionName: z.ZodString;
9051
9140
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -9057,6 +9146,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9057
9146
  userId: string | null;
9058
9147
  sipServerUrl: string;
9059
9148
  sipUserName: string;
9149
+ webphoneLoginUser: string;
9060
9150
  extensionId: number;
9061
9151
  extensionName: string;
9062
9152
  telephonySignature: string | null;
@@ -9068,10 +9158,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9068
9158
  userId: string | null;
9069
9159
  sipServerUrl: string;
9070
9160
  sipUserName: string;
9161
+ webphoneLoginUser: string;
9071
9162
  extensionId: number;
9072
9163
  extensionName: string;
9073
9164
  telephonySignature: string | null;
9074
- }>>;
9165
+ }>;
9075
9166
  }, "strip", z.ZodTypeAny, {
9076
9167
  id: string;
9077
9168
  address: string | null;
@@ -9102,7 +9193,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9102
9193
  displayName: string;
9103
9194
  }[];
9104
9195
  }[];
9105
- extension?: {
9196
+ extension: {
9106
9197
  id: string;
9107
9198
  createdAt: Date;
9108
9199
  updatedAt: Date;
@@ -9110,10 +9201,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9110
9201
  userId: string | null;
9111
9202
  sipServerUrl: string;
9112
9203
  sipUserName: string;
9204
+ webphoneLoginUser: string;
9113
9205
  extensionId: number;
9114
9206
  extensionName: string;
9115
9207
  telephonySignature: string | null;
9116
- } | undefined;
9208
+ };
9117
9209
  }, {
9118
9210
  id: string;
9119
9211
  address: string | null;
@@ -9144,7 +9236,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9144
9236
  displayName: string;
9145
9237
  }[];
9146
9238
  }[];
9147
- extension?: {
9239
+ extension: {
9148
9240
  id: string;
9149
9241
  createdAt: Date;
9150
9242
  updatedAt: Date;
@@ -9152,10 +9244,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9152
9244
  userId: string | null;
9153
9245
  sipServerUrl: string;
9154
9246
  sipUserName: string;
9247
+ webphoneLoginUser: string;
9155
9248
  extensionId: number;
9156
9249
  extensionName: string;
9157
9250
  telephonySignature: string | null;
9158
- } | undefined;
9251
+ };
9159
9252
  }>>;
9160
9253
  sender: z.ZodOptional<z.ZodObject<{
9161
9254
  id: z.ZodString;
@@ -9237,7 +9330,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9237
9330
  displayName: string;
9238
9331
  }[];
9239
9332
  }>, "many">;
9240
- extension: z.ZodOptional<z.ZodObject<{
9333
+ extension: z.ZodObject<{
9241
9334
  id: z.ZodString;
9242
9335
  createdAt: z.ZodDate;
9243
9336
  updatedAt: z.ZodDate;
@@ -9245,6 +9338,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9245
9338
  userId: z.ZodNullable<z.ZodString>;
9246
9339
  sipServerUrl: z.ZodString;
9247
9340
  sipUserName: z.ZodString;
9341
+ webphoneLoginUser: z.ZodString;
9248
9342
  extensionId: z.ZodNumber;
9249
9343
  extensionName: z.ZodString;
9250
9344
  telephonySignature: z.ZodNullable<z.ZodString>;
@@ -9256,6 +9350,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9256
9350
  userId: string | null;
9257
9351
  sipServerUrl: string;
9258
9352
  sipUserName: string;
9353
+ webphoneLoginUser: string;
9259
9354
  extensionId: number;
9260
9355
  extensionName: string;
9261
9356
  telephonySignature: string | null;
@@ -9267,10 +9362,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9267
9362
  userId: string | null;
9268
9363
  sipServerUrl: string;
9269
9364
  sipUserName: string;
9365
+ webphoneLoginUser: string;
9270
9366
  extensionId: number;
9271
9367
  extensionName: string;
9272
9368
  telephonySignature: string | null;
9273
- }>>;
9369
+ }>;
9274
9370
  }, "strip", z.ZodTypeAny, {
9275
9371
  id: string;
9276
9372
  address: string | null;
@@ -9301,7 +9397,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9301
9397
  displayName: string;
9302
9398
  }[];
9303
9399
  }[];
9304
- extension?: {
9400
+ extension: {
9305
9401
  id: string;
9306
9402
  createdAt: Date;
9307
9403
  updatedAt: Date;
@@ -9309,10 +9405,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9309
9405
  userId: string | null;
9310
9406
  sipServerUrl: string;
9311
9407
  sipUserName: string;
9408
+ webphoneLoginUser: string;
9312
9409
  extensionId: number;
9313
9410
  extensionName: string;
9314
9411
  telephonySignature: string | null;
9315
- } | undefined;
9412
+ };
9316
9413
  }, {
9317
9414
  id: string;
9318
9415
  address: string | null;
@@ -9343,7 +9440,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9343
9440
  displayName: string;
9344
9441
  }[];
9345
9442
  }[];
9346
- extension?: {
9443
+ extension: {
9347
9444
  id: string;
9348
9445
  createdAt: Date;
9349
9446
  updatedAt: Date;
@@ -9351,10 +9448,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9351
9448
  userId: string | null;
9352
9449
  sipServerUrl: string;
9353
9450
  sipUserName: string;
9451
+ webphoneLoginUser: string;
9354
9452
  extensionId: number;
9355
9453
  extensionName: string;
9356
9454
  telephonySignature: string | null;
9357
- } | undefined;
9455
+ };
9358
9456
  }>>;
9359
9457
  }, "strip", z.ZodTypeAny, {
9360
9458
  type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
@@ -9518,7 +9616,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9518
9616
  displayName: string;
9519
9617
  }[];
9520
9618
  }[];
9521
- extension?: {
9619
+ extension: {
9522
9620
  id: string;
9523
9621
  createdAt: Date;
9524
9622
  updatedAt: Date;
@@ -9526,10 +9624,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9526
9624
  userId: string | null;
9527
9625
  sipServerUrl: string;
9528
9626
  sipUserName: string;
9627
+ webphoneLoginUser: string;
9529
9628
  extensionId: number;
9530
9629
  extensionName: string;
9531
9630
  telephonySignature: string | null;
9532
- } | undefined;
9631
+ };
9533
9632
  } | undefined;
9534
9633
  assignee?: {
9535
9634
  id: string;
@@ -9561,7 +9660,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9561
9660
  displayName: string;
9562
9661
  }[];
9563
9662
  }[];
9564
- extension?: {
9663
+ extension: {
9565
9664
  id: string;
9566
9665
  createdAt: Date;
9567
9666
  updatedAt: Date;
@@ -9569,10 +9668,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9569
9668
  userId: string | null;
9570
9669
  sipServerUrl: string;
9571
9670
  sipUserName: string;
9671
+ webphoneLoginUser: string;
9572
9672
  extensionId: number;
9573
9673
  extensionName: string;
9574
9674
  telephonySignature: string | null;
9575
- } | undefined;
9675
+ };
9576
9676
  } | undefined;
9577
9677
  channel?: {
9578
9678
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -9681,7 +9781,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9681
9781
  displayName: string;
9682
9782
  }[];
9683
9783
  }[];
9684
- extension?: {
9784
+ extension: {
9685
9785
  id: string;
9686
9786
  createdAt: Date;
9687
9787
  updatedAt: Date;
@@ -9689,10 +9789,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9689
9789
  userId: string | null;
9690
9790
  sipServerUrl: string;
9691
9791
  sipUserName: string;
9792
+ webphoneLoginUser: string;
9692
9793
  extensionId: number;
9693
9794
  extensionName: string;
9694
9795
  telephonySignature: string | null;
9695
- } | undefined;
9796
+ };
9696
9797
  } | undefined;
9697
9798
  assignee?: {
9698
9799
  id: string;
@@ -9724,7 +9825,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9724
9825
  displayName: string;
9725
9826
  }[];
9726
9827
  }[];
9727
- extension?: {
9828
+ extension: {
9728
9829
  id: string;
9729
9830
  createdAt: Date;
9730
9831
  updatedAt: Date;
@@ -9732,10 +9833,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9732
9833
  userId: string | null;
9733
9834
  sipServerUrl: string;
9734
9835
  sipUserName: string;
9836
+ webphoneLoginUser: string;
9735
9837
  extensionId: number;
9736
9838
  extensionName: string;
9737
9839
  telephonySignature: string | null;
9738
- } | undefined;
9840
+ };
9739
9841
  } | undefined;
9740
9842
  sender?: {
9741
9843
  id: string;
@@ -9767,7 +9869,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9767
9869
  displayName: string;
9768
9870
  }[];
9769
9871
  }[];
9770
- extension?: {
9872
+ extension: {
9771
9873
  id: string;
9772
9874
  createdAt: Date;
9773
9875
  updatedAt: Date;
@@ -9775,10 +9877,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9775
9877
  userId: string | null;
9776
9878
  sipServerUrl: string;
9777
9879
  sipUserName: string;
9880
+ webphoneLoginUser: string;
9778
9881
  extensionId: number;
9779
9882
  extensionName: string;
9780
9883
  telephonySignature: string | null;
9781
- } | undefined;
9884
+ };
9782
9885
  } | undefined;
9783
9886
  }, {
9784
9887
  type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "reopen" | "handed_over" | "updated" | "started";
@@ -9942,7 +10045,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9942
10045
  displayName: string;
9943
10046
  }[];
9944
10047
  }[];
9945
- extension?: {
10048
+ extension: {
9946
10049
  id: string;
9947
10050
  createdAt: Date;
9948
10051
  updatedAt: Date;
@@ -9950,10 +10053,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9950
10053
  userId: string | null;
9951
10054
  sipServerUrl: string;
9952
10055
  sipUserName: string;
10056
+ webphoneLoginUser: string;
9953
10057
  extensionId: number;
9954
10058
  extensionName: string;
9955
10059
  telephonySignature: string | null;
9956
- } | undefined;
10060
+ };
9957
10061
  } | undefined;
9958
10062
  assignee?: {
9959
10063
  id: string;
@@ -9985,7 +10089,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9985
10089
  displayName: string;
9986
10090
  }[];
9987
10091
  }[];
9988
- extension?: {
10092
+ extension: {
9989
10093
  id: string;
9990
10094
  createdAt: Date;
9991
10095
  updatedAt: Date;
@@ -9993,10 +10097,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
9993
10097
  userId: string | null;
9994
10098
  sipServerUrl: string;
9995
10099
  sipUserName: string;
10100
+ webphoneLoginUser: string;
9996
10101
  extensionId: number;
9997
10102
  extensionName: string;
9998
10103
  telephonySignature: string | null;
9999
- } | undefined;
10104
+ };
10000
10105
  } | undefined;
10001
10106
  channel?: {
10002
10107
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -10105,7 +10210,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10105
10210
  displayName: string;
10106
10211
  }[];
10107
10212
  }[];
10108
- extension?: {
10213
+ extension: {
10109
10214
  id: string;
10110
10215
  createdAt: Date;
10111
10216
  updatedAt: Date;
@@ -10113,10 +10218,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10113
10218
  userId: string | null;
10114
10219
  sipServerUrl: string;
10115
10220
  sipUserName: string;
10221
+ webphoneLoginUser: string;
10116
10222
  extensionId: number;
10117
10223
  extensionName: string;
10118
10224
  telephonySignature: string | null;
10119
- } | undefined;
10225
+ };
10120
10226
  } | undefined;
10121
10227
  assignee?: {
10122
10228
  id: string;
@@ -10148,7 +10254,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10148
10254
  displayName: string;
10149
10255
  }[];
10150
10256
  }[];
10151
- extension?: {
10257
+ extension: {
10152
10258
  id: string;
10153
10259
  createdAt: Date;
10154
10260
  updatedAt: Date;
@@ -10156,10 +10262,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10156
10262
  userId: string | null;
10157
10263
  sipServerUrl: string;
10158
10264
  sipUserName: string;
10265
+ webphoneLoginUser: string;
10159
10266
  extensionId: number;
10160
10267
  extensionName: string;
10161
10268
  telephonySignature: string | null;
10162
- } | undefined;
10269
+ };
10163
10270
  } | undefined;
10164
10271
  sender?: {
10165
10272
  id: string;
@@ -10191,7 +10298,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10191
10298
  displayName: string;
10192
10299
  }[];
10193
10300
  }[];
10194
- extension?: {
10301
+ extension: {
10195
10302
  id: string;
10196
10303
  createdAt: Date;
10197
10304
  updatedAt: Date;
@@ -10199,10 +10306,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10199
10306
  userId: string | null;
10200
10307
  sipServerUrl: string;
10201
10308
  sipUserName: string;
10309
+ webphoneLoginUser: string;
10202
10310
  extensionId: number;
10203
10311
  extensionName: string;
10204
10312
  telephonySignature: string | null;
10205
- } | undefined;
10313
+ };
10206
10314
  } | undefined;
10207
10315
  }>;
10208
10316
  }, "strip", z.ZodTypeAny, {
@@ -10368,7 +10476,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10368
10476
  displayName: string;
10369
10477
  }[];
10370
10478
  }[];
10371
- extension?: {
10479
+ extension: {
10372
10480
  id: string;
10373
10481
  createdAt: Date;
10374
10482
  updatedAt: Date;
@@ -10376,10 +10484,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10376
10484
  userId: string | null;
10377
10485
  sipServerUrl: string;
10378
10486
  sipUserName: string;
10487
+ webphoneLoginUser: string;
10379
10488
  extensionId: number;
10380
10489
  extensionName: string;
10381
10490
  telephonySignature: string | null;
10382
- } | undefined;
10491
+ };
10383
10492
  } | undefined;
10384
10493
  assignee?: {
10385
10494
  id: string;
@@ -10411,7 +10520,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10411
10520
  displayName: string;
10412
10521
  }[];
10413
10522
  }[];
10414
- extension?: {
10523
+ extension: {
10415
10524
  id: string;
10416
10525
  createdAt: Date;
10417
10526
  updatedAt: Date;
@@ -10419,10 +10528,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10419
10528
  userId: string | null;
10420
10529
  sipServerUrl: string;
10421
10530
  sipUserName: string;
10531
+ webphoneLoginUser: string;
10422
10532
  extensionId: number;
10423
10533
  extensionName: string;
10424
10534
  telephonySignature: string | null;
10425
- } | undefined;
10535
+ };
10426
10536
  } | undefined;
10427
10537
  channel?: {
10428
10538
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -10531,7 +10641,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10531
10641
  displayName: string;
10532
10642
  }[];
10533
10643
  }[];
10534
- extension?: {
10644
+ extension: {
10535
10645
  id: string;
10536
10646
  createdAt: Date;
10537
10647
  updatedAt: Date;
@@ -10539,10 +10649,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10539
10649
  userId: string | null;
10540
10650
  sipServerUrl: string;
10541
10651
  sipUserName: string;
10652
+ webphoneLoginUser: string;
10542
10653
  extensionId: number;
10543
10654
  extensionName: string;
10544
10655
  telephonySignature: string | null;
10545
- } | undefined;
10656
+ };
10546
10657
  } | undefined;
10547
10658
  assignee?: {
10548
10659
  id: string;
@@ -10574,7 +10685,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10574
10685
  displayName: string;
10575
10686
  }[];
10576
10687
  }[];
10577
- extension?: {
10688
+ extension: {
10578
10689
  id: string;
10579
10690
  createdAt: Date;
10580
10691
  updatedAt: Date;
@@ -10582,10 +10693,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10582
10693
  userId: string | null;
10583
10694
  sipServerUrl: string;
10584
10695
  sipUserName: string;
10696
+ webphoneLoginUser: string;
10585
10697
  extensionId: number;
10586
10698
  extensionName: string;
10587
10699
  telephonySignature: string | null;
10588
- } | undefined;
10700
+ };
10589
10701
  } | undefined;
10590
10702
  sender?: {
10591
10703
  id: string;
@@ -10617,7 +10729,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10617
10729
  displayName: string;
10618
10730
  }[];
10619
10731
  }[];
10620
- extension?: {
10732
+ extension: {
10621
10733
  id: string;
10622
10734
  createdAt: Date;
10623
10735
  updatedAt: Date;
@@ -10625,10 +10737,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10625
10737
  userId: string | null;
10626
10738
  sipServerUrl: string;
10627
10739
  sipUserName: string;
10740
+ webphoneLoginUser: string;
10628
10741
  extensionId: number;
10629
10742
  extensionName: string;
10630
10743
  telephonySignature: string | null;
10631
- } | undefined;
10744
+ };
10632
10745
  } | undefined;
10633
10746
  };
10634
10747
  }, {
@@ -10794,7 +10907,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10794
10907
  displayName: string;
10795
10908
  }[];
10796
10909
  }[];
10797
- extension?: {
10910
+ extension: {
10798
10911
  id: string;
10799
10912
  createdAt: Date;
10800
10913
  updatedAt: Date;
@@ -10802,10 +10915,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10802
10915
  userId: string | null;
10803
10916
  sipServerUrl: string;
10804
10917
  sipUserName: string;
10918
+ webphoneLoginUser: string;
10805
10919
  extensionId: number;
10806
10920
  extensionName: string;
10807
10921
  telephonySignature: string | null;
10808
- } | undefined;
10922
+ };
10809
10923
  } | undefined;
10810
10924
  assignee?: {
10811
10925
  id: string;
@@ -10837,7 +10951,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10837
10951
  displayName: string;
10838
10952
  }[];
10839
10953
  }[];
10840
- extension?: {
10954
+ extension: {
10841
10955
  id: string;
10842
10956
  createdAt: Date;
10843
10957
  updatedAt: Date;
@@ -10845,10 +10959,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10845
10959
  userId: string | null;
10846
10960
  sipServerUrl: string;
10847
10961
  sipUserName: string;
10962
+ webphoneLoginUser: string;
10848
10963
  extensionId: number;
10849
10964
  extensionName: string;
10850
10965
  telephonySignature: string | null;
10851
- } | undefined;
10966
+ };
10852
10967
  } | undefined;
10853
10968
  channel?: {
10854
10969
  type: "line" | "whatsapp" | "messenger" | "telegram" | "viber" | "kakao" | "shopee" | "lazada" | "instagram";
@@ -10957,7 +11072,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10957
11072
  displayName: string;
10958
11073
  }[];
10959
11074
  }[];
10960
- extension?: {
11075
+ extension: {
10961
11076
  id: string;
10962
11077
  createdAt: Date;
10963
11078
  updatedAt: Date;
@@ -10965,10 +11080,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
10965
11080
  userId: string | null;
10966
11081
  sipServerUrl: string;
10967
11082
  sipUserName: string;
11083
+ webphoneLoginUser: string;
10968
11084
  extensionId: number;
10969
11085
  extensionName: string;
10970
11086
  telephonySignature: string | null;
10971
- } | undefined;
11087
+ };
10972
11088
  } | undefined;
10973
11089
  assignee?: {
10974
11090
  id: string;
@@ -11000,7 +11116,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11000
11116
  displayName: string;
11001
11117
  }[];
11002
11118
  }[];
11003
- extension?: {
11119
+ extension: {
11004
11120
  id: string;
11005
11121
  createdAt: Date;
11006
11122
  updatedAt: Date;
@@ -11008,10 +11124,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11008
11124
  userId: string | null;
11009
11125
  sipServerUrl: string;
11010
11126
  sipUserName: string;
11127
+ webphoneLoginUser: string;
11011
11128
  extensionId: number;
11012
11129
  extensionName: string;
11013
11130
  telephonySignature: string | null;
11014
- } | undefined;
11131
+ };
11015
11132
  } | undefined;
11016
11133
  sender?: {
11017
11134
  id: string;
@@ -11043,7 +11160,7 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11043
11160
  displayName: string;
11044
11161
  }[];
11045
11162
  }[];
11046
- extension?: {
11163
+ extension: {
11047
11164
  id: string;
11048
11165
  createdAt: Date;
11049
11166
  updatedAt: Date;
@@ -11051,10 +11168,11 @@ export declare const ReceiveMessageSchema: z.ZodObject<{
11051
11168
  userId: string | null;
11052
11169
  sipServerUrl: string;
11053
11170
  sipUserName: string;
11171
+ webphoneLoginUser: string;
11054
11172
  extensionId: number;
11055
11173
  extensionName: string;
11056
11174
  telephonySignature: string | null;
11057
- } | undefined;
11175
+ };
11058
11176
  } | undefined;
11059
11177
  };
11060
11178
  }>;