@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
@@ -2176,7 +2176,7 @@ export declare const RoomSchema: z.ZodObject<{
2176
2176
  sipServerUrl: z.ZodString;
2177
2177
  sipUserName: z.ZodString;
2178
2178
  webphoneLoginUser: z.ZodString;
2179
- extensionId: z.ZodNumber;
2179
+ extensionId: z.ZodNullable<z.ZodString>;
2180
2180
  extensionName: z.ZodString;
2181
2181
  telephonySignature: z.ZodNullable<z.ZodString>;
2182
2182
  }, "strip", z.ZodTypeAny, {
@@ -2188,7 +2188,7 @@ export declare const RoomSchema: z.ZodObject<{
2188
2188
  sipServerUrl: string;
2189
2189
  sipUserName: string;
2190
2190
  webphoneLoginUser: string;
2191
- extensionId: number;
2191
+ extensionId: string | null;
2192
2192
  extensionName: string;
2193
2193
  telephonySignature: string | null;
2194
2194
  }, {
@@ -2200,7 +2200,7 @@ export declare const RoomSchema: z.ZodObject<{
2200
2200
  sipServerUrl: string;
2201
2201
  sipUserName: string;
2202
2202
  webphoneLoginUser: string;
2203
- extensionId: number;
2203
+ extensionId: string | null;
2204
2204
  extensionName: string;
2205
2205
  telephonySignature: string | null;
2206
2206
  }>;
@@ -2243,7 +2243,7 @@ export declare const RoomSchema: z.ZodObject<{
2243
2243
  sipServerUrl: string;
2244
2244
  sipUserName: string;
2245
2245
  webphoneLoginUser: string;
2246
- extensionId: number;
2246
+ extensionId: string | null;
2247
2247
  extensionName: string;
2248
2248
  telephonySignature: string | null;
2249
2249
  };
@@ -2286,7 +2286,7 @@ export declare const RoomSchema: z.ZodObject<{
2286
2286
  sipServerUrl: string;
2287
2287
  sipUserName: string;
2288
2288
  webphoneLoginUser: string;
2289
- extensionId: number;
2289
+ extensionId: string | null;
2290
2290
  extensionName: string;
2291
2291
  telephonySignature: string | null;
2292
2292
  };
@@ -2380,7 +2380,7 @@ export declare const RoomSchema: z.ZodObject<{
2380
2380
  sipServerUrl: z.ZodString;
2381
2381
  sipUserName: z.ZodString;
2382
2382
  webphoneLoginUser: z.ZodString;
2383
- extensionId: z.ZodNumber;
2383
+ extensionId: z.ZodNullable<z.ZodString>;
2384
2384
  extensionName: z.ZodString;
2385
2385
  telephonySignature: z.ZodNullable<z.ZodString>;
2386
2386
  }, "strip", z.ZodTypeAny, {
@@ -2392,7 +2392,7 @@ export declare const RoomSchema: z.ZodObject<{
2392
2392
  sipServerUrl: string;
2393
2393
  sipUserName: string;
2394
2394
  webphoneLoginUser: string;
2395
- extensionId: number;
2395
+ extensionId: string | null;
2396
2396
  extensionName: string;
2397
2397
  telephonySignature: string | null;
2398
2398
  }, {
@@ -2404,7 +2404,7 @@ export declare const RoomSchema: z.ZodObject<{
2404
2404
  sipServerUrl: string;
2405
2405
  sipUserName: string;
2406
2406
  webphoneLoginUser: string;
2407
- extensionId: number;
2407
+ extensionId: string | null;
2408
2408
  extensionName: string;
2409
2409
  telephonySignature: string | null;
2410
2410
  }>;
@@ -2447,7 +2447,7 @@ export declare const RoomSchema: z.ZodObject<{
2447
2447
  sipServerUrl: string;
2448
2448
  sipUserName: string;
2449
2449
  webphoneLoginUser: string;
2450
- extensionId: number;
2450
+ extensionId: string | null;
2451
2451
  extensionName: string;
2452
2452
  telephonySignature: string | null;
2453
2453
  };
@@ -2490,7 +2490,7 @@ export declare const RoomSchema: z.ZodObject<{
2490
2490
  sipServerUrl: string;
2491
2491
  sipUserName: string;
2492
2492
  webphoneLoginUser: string;
2493
- extensionId: number;
2493
+ extensionId: string | null;
2494
2494
  extensionName: string;
2495
2495
  telephonySignature: string | null;
2496
2496
  };
@@ -2613,7 +2613,7 @@ export declare const RoomSchema: z.ZodObject<{
2613
2613
  sipServerUrl: z.ZodString;
2614
2614
  sipUserName: z.ZodString;
2615
2615
  webphoneLoginUser: z.ZodString;
2616
- extensionId: z.ZodNumber;
2616
+ extensionId: z.ZodNullable<z.ZodString>;
2617
2617
  extensionName: z.ZodString;
2618
2618
  telephonySignature: z.ZodNullable<z.ZodString>;
2619
2619
  }, "strip", z.ZodTypeAny, {
@@ -2625,7 +2625,7 @@ export declare const RoomSchema: z.ZodObject<{
2625
2625
  sipServerUrl: string;
2626
2626
  sipUserName: string;
2627
2627
  webphoneLoginUser: string;
2628
- extensionId: number;
2628
+ extensionId: string | null;
2629
2629
  extensionName: string;
2630
2630
  telephonySignature: string | null;
2631
2631
  }, {
@@ -2637,7 +2637,7 @@ export declare const RoomSchema: z.ZodObject<{
2637
2637
  sipServerUrl: string;
2638
2638
  sipUserName: string;
2639
2639
  webphoneLoginUser: string;
2640
- extensionId: number;
2640
+ extensionId: string | null;
2641
2641
  extensionName: string;
2642
2642
  telephonySignature: string | null;
2643
2643
  }>;
@@ -2680,7 +2680,7 @@ export declare const RoomSchema: z.ZodObject<{
2680
2680
  sipServerUrl: string;
2681
2681
  sipUserName: string;
2682
2682
  webphoneLoginUser: string;
2683
- extensionId: number;
2683
+ extensionId: string | null;
2684
2684
  extensionName: string;
2685
2685
  telephonySignature: string | null;
2686
2686
  };
@@ -2723,7 +2723,7 @@ export declare const RoomSchema: z.ZodObject<{
2723
2723
  sipServerUrl: string;
2724
2724
  sipUserName: string;
2725
2725
  webphoneLoginUser: string;
2726
- extensionId: number;
2726
+ extensionId: string | null;
2727
2727
  extensionName: string;
2728
2728
  telephonySignature: string | null;
2729
2729
  };
@@ -2786,7 +2786,7 @@ export declare const RoomSchema: z.ZodObject<{
2786
2786
  sipServerUrl: string;
2787
2787
  sipUserName: string;
2788
2788
  webphoneLoginUser: string;
2789
- extensionId: number;
2789
+ extensionId: string | null;
2790
2790
  extensionName: string;
2791
2791
  telephonySignature: string | null;
2792
2792
  };
@@ -2849,7 +2849,7 @@ export declare const RoomSchema: z.ZodObject<{
2849
2849
  sipServerUrl: string;
2850
2850
  sipUserName: string;
2851
2851
  webphoneLoginUser: string;
2852
- extensionId: number;
2852
+ extensionId: string | null;
2853
2853
  extensionName: string;
2854
2854
  telephonySignature: string | null;
2855
2855
  };
@@ -3047,7 +3047,7 @@ export declare const RoomSchema: z.ZodObject<{
3047
3047
  sipServerUrl: string;
3048
3048
  sipUserName: string;
3049
3049
  webphoneLoginUser: string;
3050
- extensionId: number;
3050
+ extensionId: string | null;
3051
3051
  extensionName: string;
3052
3052
  telephonySignature: string | null;
3053
3053
  };
@@ -3217,7 +3217,7 @@ export declare const RoomSchema: z.ZodObject<{
3217
3217
  sipServerUrl: string;
3218
3218
  sipUserName: string;
3219
3219
  webphoneLoginUser: string;
3220
- extensionId: number;
3220
+ extensionId: string | null;
3221
3221
  extensionName: string;
3222
3222
  telephonySignature: string | null;
3223
3223
  };
@@ -3315,7 +3315,7 @@ export declare const RoomSchema: z.ZodObject<{
3315
3315
  sipServerUrl: string;
3316
3316
  sipUserName: string;
3317
3317
  webphoneLoginUser: string;
3318
- extensionId: number;
3318
+ extensionId: string | null;
3319
3319
  extensionName: string;
3320
3320
  telephonySignature: string | null;
3321
3321
  };
@@ -3366,7 +3366,7 @@ export declare const RoomSchema: z.ZodObject<{
3366
3366
  sipServerUrl: string;
3367
3367
  sipUserName: string;
3368
3368
  webphoneLoginUser: string;
3369
- extensionId: number;
3369
+ extensionId: string | null;
3370
3370
  extensionName: string;
3371
3371
  telephonySignature: string | null;
3372
3372
  };
@@ -3536,7 +3536,7 @@ export declare const RoomSchema: z.ZodObject<{
3536
3536
  sipServerUrl: string;
3537
3537
  sipUserName: string;
3538
3538
  webphoneLoginUser: string;
3539
- extensionId: number;
3539
+ extensionId: string | null;
3540
3540
  extensionName: string;
3541
3541
  telephonySignature: string | null;
3542
3542
  };
@@ -3634,7 +3634,7 @@ export declare const RoomSchema: z.ZodObject<{
3634
3634
  sipServerUrl: string;
3635
3635
  sipUserName: string;
3636
3636
  webphoneLoginUser: string;
3637
- extensionId: number;
3637
+ extensionId: string | null;
3638
3638
  extensionName: string;
3639
3639
  telephonySignature: string | null;
3640
3640
  };
@@ -4783,7 +4783,7 @@ export declare const MessageSchema: z.ZodObject<{
4783
4783
  sipServerUrl: z.ZodString;
4784
4784
  sipUserName: z.ZodString;
4785
4785
  webphoneLoginUser: z.ZodString;
4786
- extensionId: z.ZodNumber;
4786
+ extensionId: z.ZodNullable<z.ZodString>;
4787
4787
  extensionName: z.ZodString;
4788
4788
  telephonySignature: z.ZodNullable<z.ZodString>;
4789
4789
  }, "strip", z.ZodTypeAny, {
@@ -4795,7 +4795,7 @@ export declare const MessageSchema: z.ZodObject<{
4795
4795
  sipServerUrl: string;
4796
4796
  sipUserName: string;
4797
4797
  webphoneLoginUser: string;
4798
- extensionId: number;
4798
+ extensionId: string | null;
4799
4799
  extensionName: string;
4800
4800
  telephonySignature: string | null;
4801
4801
  }, {
@@ -4807,7 +4807,7 @@ export declare const MessageSchema: z.ZodObject<{
4807
4807
  sipServerUrl: string;
4808
4808
  sipUserName: string;
4809
4809
  webphoneLoginUser: string;
4810
- extensionId: number;
4810
+ extensionId: string | null;
4811
4811
  extensionName: string;
4812
4812
  telephonySignature: string | null;
4813
4813
  }>;
@@ -4850,7 +4850,7 @@ export declare const MessageSchema: z.ZodObject<{
4850
4850
  sipServerUrl: string;
4851
4851
  sipUserName: string;
4852
4852
  webphoneLoginUser: string;
4853
- extensionId: number;
4853
+ extensionId: string | null;
4854
4854
  extensionName: string;
4855
4855
  telephonySignature: string | null;
4856
4856
  };
@@ -4893,7 +4893,7 @@ export declare const MessageSchema: z.ZodObject<{
4893
4893
  sipServerUrl: string;
4894
4894
  sipUserName: string;
4895
4895
  webphoneLoginUser: string;
4896
- extensionId: number;
4896
+ extensionId: string | null;
4897
4897
  extensionName: string;
4898
4898
  telephonySignature: string | null;
4899
4899
  };
@@ -4987,7 +4987,7 @@ export declare const MessageSchema: z.ZodObject<{
4987
4987
  sipServerUrl: z.ZodString;
4988
4988
  sipUserName: z.ZodString;
4989
4989
  webphoneLoginUser: z.ZodString;
4990
- extensionId: z.ZodNumber;
4990
+ extensionId: z.ZodNullable<z.ZodString>;
4991
4991
  extensionName: z.ZodString;
4992
4992
  telephonySignature: z.ZodNullable<z.ZodString>;
4993
4993
  }, "strip", z.ZodTypeAny, {
@@ -4999,7 +4999,7 @@ export declare const MessageSchema: z.ZodObject<{
4999
4999
  sipServerUrl: string;
5000
5000
  sipUserName: string;
5001
5001
  webphoneLoginUser: string;
5002
- extensionId: number;
5002
+ extensionId: string | null;
5003
5003
  extensionName: string;
5004
5004
  telephonySignature: string | null;
5005
5005
  }, {
@@ -5011,7 +5011,7 @@ export declare const MessageSchema: z.ZodObject<{
5011
5011
  sipServerUrl: string;
5012
5012
  sipUserName: string;
5013
5013
  webphoneLoginUser: string;
5014
- extensionId: number;
5014
+ extensionId: string | null;
5015
5015
  extensionName: string;
5016
5016
  telephonySignature: string | null;
5017
5017
  }>;
@@ -5054,7 +5054,7 @@ export declare const MessageSchema: z.ZodObject<{
5054
5054
  sipServerUrl: string;
5055
5055
  sipUserName: string;
5056
5056
  webphoneLoginUser: string;
5057
- extensionId: number;
5057
+ extensionId: string | null;
5058
5058
  extensionName: string;
5059
5059
  telephonySignature: string | null;
5060
5060
  };
@@ -5097,7 +5097,7 @@ export declare const MessageSchema: z.ZodObject<{
5097
5097
  sipServerUrl: string;
5098
5098
  sipUserName: string;
5099
5099
  webphoneLoginUser: string;
5100
- extensionId: number;
5100
+ extensionId: string | null;
5101
5101
  extensionName: string;
5102
5102
  telephonySignature: string | null;
5103
5103
  };
@@ -5220,7 +5220,7 @@ export declare const MessageSchema: z.ZodObject<{
5220
5220
  sipServerUrl: z.ZodString;
5221
5221
  sipUserName: z.ZodString;
5222
5222
  webphoneLoginUser: z.ZodString;
5223
- extensionId: z.ZodNumber;
5223
+ extensionId: z.ZodNullable<z.ZodString>;
5224
5224
  extensionName: z.ZodString;
5225
5225
  telephonySignature: z.ZodNullable<z.ZodString>;
5226
5226
  }, "strip", z.ZodTypeAny, {
@@ -5232,7 +5232,7 @@ export declare const MessageSchema: z.ZodObject<{
5232
5232
  sipServerUrl: string;
5233
5233
  sipUserName: string;
5234
5234
  webphoneLoginUser: string;
5235
- extensionId: number;
5235
+ extensionId: string | null;
5236
5236
  extensionName: string;
5237
5237
  telephonySignature: string | null;
5238
5238
  }, {
@@ -5244,7 +5244,7 @@ export declare const MessageSchema: z.ZodObject<{
5244
5244
  sipServerUrl: string;
5245
5245
  sipUserName: string;
5246
5246
  webphoneLoginUser: string;
5247
- extensionId: number;
5247
+ extensionId: string | null;
5248
5248
  extensionName: string;
5249
5249
  telephonySignature: string | null;
5250
5250
  }>;
@@ -5287,7 +5287,7 @@ export declare const MessageSchema: z.ZodObject<{
5287
5287
  sipServerUrl: string;
5288
5288
  sipUserName: string;
5289
5289
  webphoneLoginUser: string;
5290
- extensionId: number;
5290
+ extensionId: string | null;
5291
5291
  extensionName: string;
5292
5292
  telephonySignature: string | null;
5293
5293
  };
@@ -5330,7 +5330,7 @@ export declare const MessageSchema: z.ZodObject<{
5330
5330
  sipServerUrl: string;
5331
5331
  sipUserName: string;
5332
5332
  webphoneLoginUser: string;
5333
- extensionId: number;
5333
+ extensionId: string | null;
5334
5334
  extensionName: string;
5335
5335
  telephonySignature: string | null;
5336
5336
  };
@@ -5393,7 +5393,7 @@ export declare const MessageSchema: z.ZodObject<{
5393
5393
  sipServerUrl: string;
5394
5394
  sipUserName: string;
5395
5395
  webphoneLoginUser: string;
5396
- extensionId: number;
5396
+ extensionId: string | null;
5397
5397
  extensionName: string;
5398
5398
  telephonySignature: string | null;
5399
5399
  };
@@ -5456,7 +5456,7 @@ export declare const MessageSchema: z.ZodObject<{
5456
5456
  sipServerUrl: string;
5457
5457
  sipUserName: string;
5458
5458
  webphoneLoginUser: string;
5459
- extensionId: number;
5459
+ extensionId: string | null;
5460
5460
  extensionName: string;
5461
5461
  telephonySignature: string | null;
5462
5462
  };
@@ -5654,7 +5654,7 @@ export declare const MessageSchema: z.ZodObject<{
5654
5654
  sipServerUrl: string;
5655
5655
  sipUserName: string;
5656
5656
  webphoneLoginUser: string;
5657
- extensionId: number;
5657
+ extensionId: string | null;
5658
5658
  extensionName: string;
5659
5659
  telephonySignature: string | null;
5660
5660
  };
@@ -5824,7 +5824,7 @@ export declare const MessageSchema: z.ZodObject<{
5824
5824
  sipServerUrl: string;
5825
5825
  sipUserName: string;
5826
5826
  webphoneLoginUser: string;
5827
- extensionId: number;
5827
+ extensionId: string | null;
5828
5828
  extensionName: string;
5829
5829
  telephonySignature: string | null;
5830
5830
  };
@@ -5922,7 +5922,7 @@ export declare const MessageSchema: z.ZodObject<{
5922
5922
  sipServerUrl: string;
5923
5923
  sipUserName: string;
5924
5924
  webphoneLoginUser: string;
5925
- extensionId: number;
5925
+ extensionId: string | null;
5926
5926
  extensionName: string;
5927
5927
  telephonySignature: string | null;
5928
5928
  };
@@ -5973,7 +5973,7 @@ export declare const MessageSchema: z.ZodObject<{
5973
5973
  sipServerUrl: string;
5974
5974
  sipUserName: string;
5975
5975
  webphoneLoginUser: string;
5976
- extensionId: number;
5976
+ extensionId: string | null;
5977
5977
  extensionName: string;
5978
5978
  telephonySignature: string | null;
5979
5979
  };
@@ -6143,7 +6143,7 @@ export declare const MessageSchema: z.ZodObject<{
6143
6143
  sipServerUrl: string;
6144
6144
  sipUserName: string;
6145
6145
  webphoneLoginUser: string;
6146
- extensionId: number;
6146
+ extensionId: string | null;
6147
6147
  extensionName: string;
6148
6148
  telephonySignature: string | null;
6149
6149
  };
@@ -6241,7 +6241,7 @@ export declare const MessageSchema: z.ZodObject<{
6241
6241
  sipServerUrl: string;
6242
6242
  sipUserName: string;
6243
6243
  webphoneLoginUser: string;
6244
- extensionId: number;
6244
+ extensionId: string | null;
6245
6245
  extensionName: string;
6246
6246
  telephonySignature: string | null;
6247
6247
  };
@@ -6371,7 +6371,7 @@ export declare const MessageSchema: z.ZodObject<{
6371
6371
  sipServerUrl: z.ZodString;
6372
6372
  sipUserName: z.ZodString;
6373
6373
  webphoneLoginUser: z.ZodString;
6374
- extensionId: z.ZodNumber;
6374
+ extensionId: z.ZodNullable<z.ZodString>;
6375
6375
  extensionName: z.ZodString;
6376
6376
  telephonySignature: z.ZodNullable<z.ZodString>;
6377
6377
  }, "strip", z.ZodTypeAny, {
@@ -6383,7 +6383,7 @@ export declare const MessageSchema: z.ZodObject<{
6383
6383
  sipServerUrl: string;
6384
6384
  sipUserName: string;
6385
6385
  webphoneLoginUser: string;
6386
- extensionId: number;
6386
+ extensionId: string | null;
6387
6387
  extensionName: string;
6388
6388
  telephonySignature: string | null;
6389
6389
  }, {
@@ -6395,7 +6395,7 @@ export declare const MessageSchema: z.ZodObject<{
6395
6395
  sipServerUrl: string;
6396
6396
  sipUserName: string;
6397
6397
  webphoneLoginUser: string;
6398
- extensionId: number;
6398
+ extensionId: string | null;
6399
6399
  extensionName: string;
6400
6400
  telephonySignature: string | null;
6401
6401
  }>;
@@ -6438,7 +6438,7 @@ export declare const MessageSchema: z.ZodObject<{
6438
6438
  sipServerUrl: string;
6439
6439
  sipUserName: string;
6440
6440
  webphoneLoginUser: string;
6441
- extensionId: number;
6441
+ extensionId: string | null;
6442
6442
  extensionName: string;
6443
6443
  telephonySignature: string | null;
6444
6444
  };
@@ -6481,7 +6481,7 @@ export declare const MessageSchema: z.ZodObject<{
6481
6481
  sipServerUrl: string;
6482
6482
  sipUserName: string;
6483
6483
  webphoneLoginUser: string;
6484
- extensionId: number;
6484
+ extensionId: string | null;
6485
6485
  extensionName: string;
6486
6486
  telephonySignature: string | null;
6487
6487
  };
@@ -6575,7 +6575,7 @@ export declare const MessageSchema: z.ZodObject<{
6575
6575
  sipServerUrl: z.ZodString;
6576
6576
  sipUserName: z.ZodString;
6577
6577
  webphoneLoginUser: z.ZodString;
6578
- extensionId: z.ZodNumber;
6578
+ extensionId: z.ZodNullable<z.ZodString>;
6579
6579
  extensionName: z.ZodString;
6580
6580
  telephonySignature: z.ZodNullable<z.ZodString>;
6581
6581
  }, "strip", z.ZodTypeAny, {
@@ -6587,7 +6587,7 @@ export declare const MessageSchema: z.ZodObject<{
6587
6587
  sipServerUrl: string;
6588
6588
  sipUserName: string;
6589
6589
  webphoneLoginUser: string;
6590
- extensionId: number;
6590
+ extensionId: string | null;
6591
6591
  extensionName: string;
6592
6592
  telephonySignature: string | null;
6593
6593
  }, {
@@ -6599,7 +6599,7 @@ export declare const MessageSchema: z.ZodObject<{
6599
6599
  sipServerUrl: string;
6600
6600
  sipUserName: string;
6601
6601
  webphoneLoginUser: string;
6602
- extensionId: number;
6602
+ extensionId: string | null;
6603
6603
  extensionName: string;
6604
6604
  telephonySignature: string | null;
6605
6605
  }>;
@@ -6642,7 +6642,7 @@ export declare const MessageSchema: z.ZodObject<{
6642
6642
  sipServerUrl: string;
6643
6643
  sipUserName: string;
6644
6644
  webphoneLoginUser: string;
6645
- extensionId: number;
6645
+ extensionId: string | null;
6646
6646
  extensionName: string;
6647
6647
  telephonySignature: string | null;
6648
6648
  };
@@ -6685,7 +6685,7 @@ export declare const MessageSchema: z.ZodObject<{
6685
6685
  sipServerUrl: string;
6686
6686
  sipUserName: string;
6687
6687
  webphoneLoginUser: string;
6688
- extensionId: number;
6688
+ extensionId: string | null;
6689
6689
  extensionName: string;
6690
6690
  telephonySignature: string | null;
6691
6691
  };
@@ -6779,7 +6779,7 @@ export declare const MessageSchema: z.ZodObject<{
6779
6779
  sipServerUrl: z.ZodString;
6780
6780
  sipUserName: z.ZodString;
6781
6781
  webphoneLoginUser: z.ZodString;
6782
- extensionId: z.ZodNumber;
6782
+ extensionId: z.ZodNullable<z.ZodString>;
6783
6783
  extensionName: z.ZodString;
6784
6784
  telephonySignature: z.ZodNullable<z.ZodString>;
6785
6785
  }, "strip", z.ZodTypeAny, {
@@ -6791,7 +6791,7 @@ export declare const MessageSchema: z.ZodObject<{
6791
6791
  sipServerUrl: string;
6792
6792
  sipUserName: string;
6793
6793
  webphoneLoginUser: string;
6794
- extensionId: number;
6794
+ extensionId: string | null;
6795
6795
  extensionName: string;
6796
6796
  telephonySignature: string | null;
6797
6797
  }, {
@@ -6803,7 +6803,7 @@ export declare const MessageSchema: z.ZodObject<{
6803
6803
  sipServerUrl: string;
6804
6804
  sipUserName: string;
6805
6805
  webphoneLoginUser: string;
6806
- extensionId: number;
6806
+ extensionId: string | null;
6807
6807
  extensionName: string;
6808
6808
  telephonySignature: string | null;
6809
6809
  }>;
@@ -6846,7 +6846,7 @@ export declare const MessageSchema: z.ZodObject<{
6846
6846
  sipServerUrl: string;
6847
6847
  sipUserName: string;
6848
6848
  webphoneLoginUser: string;
6849
- extensionId: number;
6849
+ extensionId: string | null;
6850
6850
  extensionName: string;
6851
6851
  telephonySignature: string | null;
6852
6852
  };
@@ -6889,7 +6889,7 @@ export declare const MessageSchema: z.ZodObject<{
6889
6889
  sipServerUrl: string;
6890
6890
  sipUserName: string;
6891
6891
  webphoneLoginUser: string;
6892
- extensionId: number;
6892
+ extensionId: string | null;
6893
6893
  extensionName: string;
6894
6894
  telephonySignature: string | null;
6895
6895
  };
@@ -6943,7 +6943,7 @@ export declare const MessageSchema: z.ZodObject<{
6943
6943
  sipServerUrl: string;
6944
6944
  sipUserName: string;
6945
6945
  webphoneLoginUser: string;
6946
- extensionId: number;
6946
+ extensionId: string | null;
6947
6947
  extensionName: string;
6948
6948
  telephonySignature: string | null;
6949
6949
  };
@@ -6999,7 +6999,7 @@ export declare const MessageSchema: z.ZodObject<{
6999
6999
  sipServerUrl: string;
7000
7000
  sipUserName: string;
7001
7001
  webphoneLoginUser: string;
7002
- extensionId: number;
7002
+ extensionId: string | null;
7003
7003
  extensionName: string;
7004
7004
  telephonySignature: string | null;
7005
7005
  };
@@ -7049,7 +7049,7 @@ export declare const MessageSchema: z.ZodObject<{
7049
7049
  sipServerUrl: string;
7050
7050
  sipUserName: string;
7051
7051
  webphoneLoginUser: string;
7052
- extensionId: number;
7052
+ extensionId: string | null;
7053
7053
  extensionName: string;
7054
7054
  telephonySignature: string | null;
7055
7055
  };
@@ -7219,7 +7219,7 @@ export declare const MessageSchema: z.ZodObject<{
7219
7219
  sipServerUrl: string;
7220
7220
  sipUserName: string;
7221
7221
  webphoneLoginUser: string;
7222
- extensionId: number;
7222
+ extensionId: string | null;
7223
7223
  extensionName: string;
7224
7224
  telephonySignature: string | null;
7225
7225
  };
@@ -7317,7 +7317,7 @@ export declare const MessageSchema: z.ZodObject<{
7317
7317
  sipServerUrl: string;
7318
7318
  sipUserName: string;
7319
7319
  webphoneLoginUser: string;
7320
- extensionId: number;
7320
+ extensionId: string | null;
7321
7321
  extensionName: string;
7322
7322
  telephonySignature: string | null;
7323
7323
  };
@@ -7369,7 +7369,7 @@ export declare const MessageSchema: z.ZodObject<{
7369
7369
  sipServerUrl: string;
7370
7370
  sipUserName: string;
7371
7371
  webphoneLoginUser: string;
7372
- extensionId: number;
7372
+ extensionId: string | null;
7373
7373
  extensionName: string;
7374
7374
  telephonySignature: string | null;
7375
7375
  };
@@ -7425,7 +7425,7 @@ export declare const MessageSchema: z.ZodObject<{
7425
7425
  sipServerUrl: string;
7426
7426
  sipUserName: string;
7427
7427
  webphoneLoginUser: string;
7428
- extensionId: number;
7428
+ extensionId: string | null;
7429
7429
  extensionName: string;
7430
7430
  telephonySignature: string | null;
7431
7431
  };
@@ -7481,7 +7481,7 @@ export declare const MessageSchema: z.ZodObject<{
7481
7481
  sipServerUrl: string;
7482
7482
  sipUserName: string;
7483
7483
  webphoneLoginUser: string;
7484
- extensionId: number;
7484
+ extensionId: string | null;
7485
7485
  extensionName: string;
7486
7486
  telephonySignature: string | null;
7487
7487
  };
@@ -7531,7 +7531,7 @@ export declare const MessageSchema: z.ZodObject<{
7531
7531
  sipServerUrl: string;
7532
7532
  sipUserName: string;
7533
7533
  webphoneLoginUser: string;
7534
- extensionId: number;
7534
+ extensionId: string | null;
7535
7535
  extensionName: string;
7536
7536
  telephonySignature: string | null;
7537
7537
  };
@@ -7701,7 +7701,7 @@ export declare const MessageSchema: z.ZodObject<{
7701
7701
  sipServerUrl: string;
7702
7702
  sipUserName: string;
7703
7703
  webphoneLoginUser: string;
7704
- extensionId: number;
7704
+ extensionId: string | null;
7705
7705
  extensionName: string;
7706
7706
  telephonySignature: string | null;
7707
7707
  };
@@ -7799,7 +7799,7 @@ export declare const MessageSchema: z.ZodObject<{
7799
7799
  sipServerUrl: string;
7800
7800
  sipUserName: string;
7801
7801
  webphoneLoginUser: string;
7802
- extensionId: number;
7802
+ extensionId: string | null;
7803
7803
  extensionName: string;
7804
7804
  telephonySignature: string | null;
7805
7805
  };
@@ -7851,7 +7851,7 @@ export declare const MessageSchema: z.ZodObject<{
7851
7851
  sipServerUrl: string;
7852
7852
  sipUserName: string;
7853
7853
  webphoneLoginUser: string;
7854
- extensionId: number;
7854
+ extensionId: string | null;
7855
7855
  extensionName: string;
7856
7856
  telephonySignature: string | null;
7857
7857
  };
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB;;GAEG;AACH,eAAO,MAAM,0BAA0B,+CAIrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,2LAoB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,mCAAiC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAcrB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBxB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAQpB;;GAEG;AACH,eAAO,MAAM,0BAA0B,+CAIrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,2LAoB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,mCAAiC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAMhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkErB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiGxB,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC"}