@kl1/contracts 1.1.27-uat → 1.1.27

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 (60) hide show
  1. package/dist/index.js +1781 -1887
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +1780 -1887
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/business-calendar/index.d.ts +474 -68
  6. package/dist/src/business-calendar/index.d.ts.map +1 -1
  7. package/dist/src/business-calendar/schema.d.ts +122 -41
  8. package/dist/src/business-calendar/schema.d.ts.map +1 -1
  9. package/dist/src/business-calendar/validation.d.ts +62 -112
  10. package/dist/src/business-calendar/validation.d.ts.map +1 -1
  11. package/dist/src/chat/index.d.ts +914 -118
  12. package/dist/src/chat/index.d.ts.map +1 -1
  13. package/dist/src/chat/schema.d.ts +213 -39
  14. package/dist/src/chat/schema.d.ts.map +1 -1
  15. package/dist/src/chat/validation.d.ts +164 -24
  16. package/dist/src/chat/validation.d.ts.map +1 -1
  17. package/dist/src/contract.d.ts +11636 -4802
  18. package/dist/src/contract.d.ts.map +1 -1
  19. package/dist/src/cx-log/index.d.ts +13 -8
  20. package/dist/src/cx-log/index.d.ts.map +1 -1
  21. package/dist/src/cx-log/schema.d.ts +15 -12
  22. package/dist/src/cx-log/schema.d.ts.map +1 -1
  23. package/dist/src/instagram/index.d.ts +152 -12
  24. package/dist/src/instagram/index.d.ts.map +1 -1
  25. package/dist/src/line/index.d.ts +152 -12
  26. package/dist/src/line/index.d.ts.map +1 -1
  27. package/dist/src/mail/mail-contract.d.ts +33 -2243
  28. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  29. package/dist/src/mail/message-contract.d.ts +1 -2045
  30. package/dist/src/mail/message-contract.d.ts.map +1 -1
  31. package/dist/src/mail/room-contract.d.ts +32 -200
  32. package/dist/src/mail/room-contract.d.ts.map +1 -1
  33. package/dist/src/mail/schemas/message-validation.schema.d.ts +0 -3
  34. package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
  35. package/dist/src/mail/schemas/message.schema.d.ts +0 -6
  36. package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
  37. package/dist/src/mail/schemas/room-validation.schema.d.ts +12 -68
  38. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  39. package/dist/src/mail/schemas/room.schema.d.ts +8 -54
  40. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  41. package/dist/src/messenger/index.d.ts +152 -12
  42. package/dist/src/messenger/index.d.ts.map +1 -1
  43. package/dist/src/telephony-cdr/call-report.schema.d.ts +62 -62
  44. package/dist/src/telephony-cdr/call-report.schema.d.ts.map +1 -1
  45. package/dist/src/telephony-cdr/index.d.ts +1 -622
  46. package/dist/src/telephony-cdr/index.d.ts.map +1 -1
  47. package/dist/src/viber/index.d.ts +152 -12
  48. package/dist/src/viber/index.d.ts.map +1 -1
  49. package/dist/src/webchat/index.d.ts +152 -12
  50. package/dist/src/webchat/index.d.ts.map +1 -1
  51. package/dist/src/workflow-rule/index.d.ts +7305 -0
  52. package/dist/src/workflow-rule/index.d.ts.map +1 -0
  53. package/dist/src/workflow-rule/schema.d.ts +27 -0
  54. package/dist/src/workflow-rule/schema.d.ts.map +1 -0
  55. package/dist/src/wrap-up-form/index.d.ts +475 -22
  56. package/dist/src/wrap-up-form/index.d.ts.map +1 -1
  57. package/dist/src/wrap-up-form/schema.d.ts +4 -4
  58. package/dist/src/wrap-up-form/validation.d.ts +6 -0
  59. package/dist/src/wrap-up-form/validation.d.ts.map +1 -1
  60. package/package.json +4 -10
@@ -449,7 +449,9 @@ export declare const PlatformContactSchema: z.ZodObject<{
449
449
  }>, "many">;
450
450
  contactEmails: z.ZodArray<z.ZodObject<{
451
451
  id: z.ZodString;
452
- createdAt: z.ZodDate;
452
+ createdAt: z.ZodDate; /**
453
+ * Message Type Enum
454
+ */
453
455
  updatedAt: z.ZodDate;
454
456
  deletedAt: z.ZodNullable<z.ZodDate>;
455
457
  email: z.ZodString;
@@ -475,6 +477,9 @@ export declare const PlatformContactSchema: z.ZodObject<{
475
477
  updatedAt: z.ZodDate;
476
478
  deletedAt: z.ZodNullable<z.ZodDate>;
477
479
  phone: z.ZodString;
480
+ /**
481
+ * Directions Enum
482
+ */
478
483
  isPrimary: z.ZodBoolean;
479
484
  }, "strip", z.ZodTypeAny, {
480
485
  id: string;
@@ -1401,7 +1406,9 @@ export declare const RoomSchema: z.ZodObject<{
1401
1406
  }>, "many">;
1402
1407
  contactEmails: z.ZodArray<z.ZodObject<{
1403
1408
  id: z.ZodString;
1404
- createdAt: z.ZodDate;
1409
+ createdAt: z.ZodDate; /**
1410
+ * Message Type Enum
1411
+ */
1405
1412
  updatedAt: z.ZodDate;
1406
1413
  deletedAt: z.ZodNullable<z.ZodDate>;
1407
1414
  email: z.ZodString;
@@ -1427,6 +1434,9 @@ export declare const RoomSchema: z.ZodObject<{
1427
1434
  updatedAt: z.ZodDate;
1428
1435
  deletedAt: z.ZodNullable<z.ZodDate>;
1429
1436
  phone: z.ZodString;
1437
+ /**
1438
+ * Directions Enum
1439
+ */
1430
1440
  isPrimary: z.ZodBoolean;
1431
1441
  }, "strip", z.ZodTypeAny, {
1432
1442
  id: string;
@@ -2749,6 +2759,9 @@ export declare const RoomSchema: z.ZodObject<{
2749
2759
  level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
2750
2760
  parentId: z.ZodNullable<z.ZodString>;
2751
2761
  childCategoryList: z.ZodArray<z.ZodObject<{
2762
+ /**
2763
+ * Message Type Enum
2764
+ */
2752
2765
  id: z.ZodString;
2753
2766
  value: z.ZodString;
2754
2767
  level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
@@ -2837,7 +2850,7 @@ export declare const RoomSchema: z.ZodObject<{
2837
2850
  }>, "many">;
2838
2851
  callFrom: z.ZodNullable<z.ZodString>;
2839
2852
  callTo: z.ZodNullable<z.ZodString>;
2840
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
2853
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2841
2854
  id: z.ZodString;
2842
2855
  createdAt: z.ZodDate;
2843
2856
  updatedAt: z.ZodDate;
@@ -2870,7 +2883,7 @@ export declare const RoomSchema: z.ZodObject<{
2870
2883
  booleanValue: boolean | null;
2871
2884
  numberValue: number | null;
2872
2885
  dateValue: Date | null;
2873
- }>, "many">>;
2886
+ }>, "many">>>;
2874
2887
  }, "strip", z.ZodTypeAny, {
2875
2888
  type: string;
2876
2889
  id: string;
@@ -2921,7 +2934,7 @@ export declare const RoomSchema: z.ZodObject<{
2921
2934
  booleanValue: boolean | null;
2922
2935
  numberValue: number | null;
2923
2936
  dateValue: Date | null;
2924
- }[] | undefined;
2937
+ }[] | null | undefined;
2925
2938
  }, {
2926
2939
  type: string;
2927
2940
  id: string;
@@ -2972,7 +2985,7 @@ export declare const RoomSchema: z.ZodObject<{
2972
2985
  booleanValue: boolean | null;
2973
2986
  numberValue: number | null;
2974
2987
  dateValue: Date | null;
2975
- }[] | undefined;
2988
+ }[] | null | undefined;
2976
2989
  }>>;
2977
2990
  }, "strip", z.ZodTypeAny, {
2978
2991
  id: string;
@@ -3040,7 +3053,7 @@ export declare const RoomSchema: z.ZodObject<{
3040
3053
  booleanValue: boolean | null;
3041
3054
  numberValue: number | null;
3042
3055
  dateValue: Date | null;
3043
- }[] | undefined;
3056
+ }[] | null | undefined;
3044
3057
  } | null;
3045
3058
  }, {
3046
3059
  id: string;
@@ -3108,9 +3121,34 @@ export declare const RoomSchema: z.ZodObject<{
3108
3121
  booleanValue: boolean | null;
3109
3122
  numberValue: number | null;
3110
3123
  dateValue: Date | null;
3111
- }[] | undefined;
3124
+ }[] | null | undefined;
3112
3125
  } | null;
3113
3126
  }>;
3127
+ workflowRule: z.ZodObject<{
3128
+ id: z.ZodString;
3129
+ createdAt: z.ZodDate;
3130
+ updatedAt: z.ZodDate;
3131
+ deletedAt: z.ZodNullable<z.ZodDate>;
3132
+ name: z.ZodString;
3133
+ isActive: z.ZodBoolean;
3134
+ type: z.ZodString;
3135
+ }, "strip", z.ZodTypeAny, {
3136
+ type: string;
3137
+ id: string;
3138
+ name: string;
3139
+ createdAt: Date;
3140
+ updatedAt: Date;
3141
+ deletedAt: Date | null;
3142
+ isActive: boolean;
3143
+ }, {
3144
+ type: string;
3145
+ id: string;
3146
+ name: string;
3147
+ createdAt: Date;
3148
+ updatedAt: Date;
3149
+ deletedAt: Date | null;
3150
+ isActive: boolean;
3151
+ }>;
3114
3152
  }, "strip", z.ZodTypeAny, {
3115
3153
  id: string;
3116
3154
  channel: {
@@ -3457,9 +3495,18 @@ export declare const RoomSchema: z.ZodObject<{
3457
3495
  booleanValue: boolean | null;
3458
3496
  numberValue: number | null;
3459
3497
  dateValue: Date | null;
3460
- }[] | undefined;
3498
+ }[] | null | undefined;
3461
3499
  } | null;
3462
3500
  };
3501
+ workflowRule: {
3502
+ type: string;
3503
+ id: string;
3504
+ name: string;
3505
+ createdAt: Date;
3506
+ updatedAt: Date;
3507
+ deletedAt: Date | null;
3508
+ isActive: boolean;
3509
+ };
3463
3510
  }, {
3464
3511
  id: string;
3465
3512
  channel: {
@@ -3806,9 +3853,18 @@ export declare const RoomSchema: z.ZodObject<{
3806
3853
  booleanValue: boolean | null;
3807
3854
  numberValue: number | null;
3808
3855
  dateValue: Date | null;
3809
- }[] | undefined;
3856
+ }[] | null | undefined;
3810
3857
  } | null;
3811
3858
  };
3859
+ workflowRule: {
3860
+ type: string;
3861
+ id: string;
3862
+ name: string;
3863
+ createdAt: Date;
3864
+ updatedAt: Date;
3865
+ deletedAt: Date | null;
3866
+ isActive: boolean;
3867
+ };
3812
3868
  }>;
3813
3869
  /**
3814
3870
  * Message
@@ -4262,7 +4318,9 @@ export declare const MessageSchema: z.ZodObject<{
4262
4318
  }>, "many">;
4263
4319
  contactEmails: z.ZodArray<z.ZodObject<{
4264
4320
  id: z.ZodString;
4265
- createdAt: z.ZodDate;
4321
+ createdAt: z.ZodDate; /**
4322
+ * Message Type Enum
4323
+ */
4266
4324
  updatedAt: z.ZodDate;
4267
4325
  deletedAt: z.ZodNullable<z.ZodDate>;
4268
4326
  email: z.ZodString;
@@ -4288,6 +4346,9 @@ export declare const MessageSchema: z.ZodObject<{
4288
4346
  updatedAt: z.ZodDate;
4289
4347
  deletedAt: z.ZodNullable<z.ZodDate>;
4290
4348
  phone: z.ZodString;
4349
+ /**
4350
+ * Directions Enum
4351
+ */
4291
4352
  isPrimary: z.ZodBoolean;
4292
4353
  }, "strip", z.ZodTypeAny, {
4293
4354
  id: string;
@@ -5610,6 +5671,9 @@ export declare const MessageSchema: z.ZodObject<{
5610
5671
  level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
5611
5672
  parentId: z.ZodNullable<z.ZodString>;
5612
5673
  childCategoryList: z.ZodArray<z.ZodObject<{
5674
+ /**
5675
+ * Message Type Enum
5676
+ */
5613
5677
  id: z.ZodString;
5614
5678
  value: z.ZodString;
5615
5679
  level: z.ZodUnion<[z.ZodLiteral<1>, z.ZodLiteral<2>, z.ZodLiteral<3>]>;
@@ -5698,7 +5762,7 @@ export declare const MessageSchema: z.ZodObject<{
5698
5762
  }>, "many">;
5699
5763
  callFrom: z.ZodNullable<z.ZodString>;
5700
5764
  callTo: z.ZodNullable<z.ZodString>;
5701
- customFields: z.ZodOptional<z.ZodArray<z.ZodObject<{
5765
+ customFields: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
5702
5766
  id: z.ZodString;
5703
5767
  createdAt: z.ZodDate;
5704
5768
  updatedAt: z.ZodDate;
@@ -5731,7 +5795,7 @@ export declare const MessageSchema: z.ZodObject<{
5731
5795
  booleanValue: boolean | null;
5732
5796
  numberValue: number | null;
5733
5797
  dateValue: Date | null;
5734
- }>, "many">>;
5798
+ }>, "many">>>;
5735
5799
  }, "strip", z.ZodTypeAny, {
5736
5800
  type: string;
5737
5801
  id: string;
@@ -5782,7 +5846,7 @@ export declare const MessageSchema: z.ZodObject<{
5782
5846
  booleanValue: boolean | null;
5783
5847
  numberValue: number | null;
5784
5848
  dateValue: Date | null;
5785
- }[] | undefined;
5849
+ }[] | null | undefined;
5786
5850
  }, {
5787
5851
  type: string;
5788
5852
  id: string;
@@ -5833,7 +5897,7 @@ export declare const MessageSchema: z.ZodObject<{
5833
5897
  booleanValue: boolean | null;
5834
5898
  numberValue: number | null;
5835
5899
  dateValue: Date | null;
5836
- }[] | undefined;
5900
+ }[] | null | undefined;
5837
5901
  }>>;
5838
5902
  }, "strip", z.ZodTypeAny, {
5839
5903
  id: string;
@@ -5901,7 +5965,7 @@ export declare const MessageSchema: z.ZodObject<{
5901
5965
  booleanValue: boolean | null;
5902
5966
  numberValue: number | null;
5903
5967
  dateValue: Date | null;
5904
- }[] | undefined;
5968
+ }[] | null | undefined;
5905
5969
  } | null;
5906
5970
  }, {
5907
5971
  id: string;
@@ -5969,9 +6033,34 @@ export declare const MessageSchema: z.ZodObject<{
5969
6033
  booleanValue: boolean | null;
5970
6034
  numberValue: number | null;
5971
6035
  dateValue: Date | null;
5972
- }[] | undefined;
6036
+ }[] | null | undefined;
5973
6037
  } | null;
5974
6038
  }>;
6039
+ workflowRule: z.ZodObject<{
6040
+ id: z.ZodString;
6041
+ createdAt: z.ZodDate;
6042
+ updatedAt: z.ZodDate;
6043
+ deletedAt: z.ZodNullable<z.ZodDate>;
6044
+ name: z.ZodString;
6045
+ isActive: z.ZodBoolean;
6046
+ type: z.ZodString;
6047
+ }, "strip", z.ZodTypeAny, {
6048
+ type: string;
6049
+ id: string;
6050
+ name: string;
6051
+ createdAt: Date;
6052
+ updatedAt: Date;
6053
+ deletedAt: Date | null;
6054
+ isActive: boolean;
6055
+ }, {
6056
+ type: string;
6057
+ id: string;
6058
+ name: string;
6059
+ createdAt: Date;
6060
+ updatedAt: Date;
6061
+ deletedAt: Date | null;
6062
+ isActive: boolean;
6063
+ }>;
5975
6064
  }, "strip", z.ZodTypeAny, {
5976
6065
  id: string;
5977
6066
  channel: {
@@ -6318,9 +6407,18 @@ export declare const MessageSchema: z.ZodObject<{
6318
6407
  booleanValue: boolean | null;
6319
6408
  numberValue: number | null;
6320
6409
  dateValue: Date | null;
6321
- }[] | undefined;
6410
+ }[] | null | undefined;
6322
6411
  } | null;
6323
6412
  };
6413
+ workflowRule: {
6414
+ type: string;
6415
+ id: string;
6416
+ name: string;
6417
+ createdAt: Date;
6418
+ updatedAt: Date;
6419
+ deletedAt: Date | null;
6420
+ isActive: boolean;
6421
+ };
6324
6422
  }, {
6325
6423
  id: string;
6326
6424
  channel: {
@@ -6667,9 +6765,18 @@ export declare const MessageSchema: z.ZodObject<{
6667
6765
  booleanValue: boolean | null;
6668
6766
  numberValue: number | null;
6669
6767
  dateValue: Date | null;
6670
- }[] | undefined;
6768
+ }[] | null | undefined;
6671
6769
  } | null;
6672
6770
  };
6771
+ workflowRule: {
6772
+ type: string;
6773
+ id: string;
6774
+ name: string;
6775
+ createdAt: Date;
6776
+ updatedAt: Date;
6777
+ deletedAt: Date | null;
6778
+ isActive: boolean;
6779
+ };
6673
6780
  }>;
6674
6781
  upload: z.ZodObject<{
6675
6782
  id: z.ZodString;
@@ -6839,6 +6946,9 @@ export declare const MessageSchema: z.ZodObject<{
6839
6946
  }>, "many">;
6840
6947
  extension: z.ZodObject<{
6841
6948
  id: z.ZodString;
6949
+ /**
6950
+ * Message Type Enum
6951
+ */
6842
6952
  createdAt: z.ZodDate;
6843
6953
  updatedAt: z.ZodDate;
6844
6954
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -6847,9 +6957,7 @@ export declare const MessageSchema: z.ZodObject<{
6847
6957
  sipUserName: z.ZodString;
6848
6958
  webphoneLoginUser: z.ZodString;
6849
6959
  extensionId: z.ZodNullable<z.ZodString>;
6850
- extensionName: z.ZodString; /**
6851
- * Message Type Enum
6852
- */
6960
+ extensionName: z.ZodString;
6853
6961
  telephonySignature: z.ZodNullable<z.ZodString>;
6854
6962
  }, "strip", z.ZodTypeAny, {
6855
6963
  id: string;
@@ -7045,6 +7153,9 @@ export declare const MessageSchema: z.ZodObject<{
7045
7153
  }>, "many">;
7046
7154
  extension: z.ZodObject<{
7047
7155
  id: z.ZodString;
7156
+ /**
7157
+ * Message Type Enum
7158
+ */
7048
7159
  createdAt: z.ZodDate;
7049
7160
  updatedAt: z.ZodDate;
7050
7161
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -7053,9 +7164,7 @@ export declare const MessageSchema: z.ZodObject<{
7053
7164
  sipUserName: z.ZodString;
7054
7165
  webphoneLoginUser: z.ZodString;
7055
7166
  extensionId: z.ZodNullable<z.ZodString>;
7056
- extensionName: z.ZodString; /**
7057
- * Message Type Enum
7058
- */
7167
+ extensionName: z.ZodString;
7059
7168
  telephonySignature: z.ZodNullable<z.ZodString>;
7060
7169
  }, "strip", z.ZodTypeAny, {
7061
7170
  id: string;
@@ -7251,6 +7360,9 @@ export declare const MessageSchema: z.ZodObject<{
7251
7360
  }>, "many">;
7252
7361
  extension: z.ZodObject<{
7253
7362
  id: z.ZodString;
7363
+ /**
7364
+ * Message Type Enum
7365
+ */
7254
7366
  createdAt: z.ZodDate;
7255
7367
  updatedAt: z.ZodDate;
7256
7368
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -7259,9 +7371,7 @@ export declare const MessageSchema: z.ZodObject<{
7259
7371
  sipUserName: z.ZodString;
7260
7372
  webphoneLoginUser: z.ZodString;
7261
7373
  extensionId: z.ZodNullable<z.ZodString>;
7262
- extensionName: z.ZodString; /**
7263
- * Message Type Enum
7264
- */
7374
+ extensionName: z.ZodString;
7265
7375
  telephonySignature: z.ZodNullable<z.ZodString>;
7266
7376
  }, "strip", z.ZodTypeAny, {
7267
7377
  id: string;
@@ -8312,6 +8422,31 @@ export declare const MessageSchema: z.ZodObject<{
8312
8422
  telephonySignature: string | null;
8313
8423
  };
8314
8424
  }>;
8425
+ workflowRule: z.ZodObject<{
8426
+ id: z.ZodString;
8427
+ createdAt: z.ZodDate;
8428
+ updatedAt: z.ZodDate;
8429
+ deletedAt: z.ZodNullable<z.ZodDate>;
8430
+ name: z.ZodString;
8431
+ isActive: z.ZodBoolean;
8432
+ type: z.ZodString;
8433
+ }, "strip", z.ZodTypeAny, {
8434
+ type: string;
8435
+ id: string;
8436
+ name: string;
8437
+ createdAt: Date;
8438
+ updatedAt: Date;
8439
+ deletedAt: Date | null;
8440
+ isActive: boolean;
8441
+ }, {
8442
+ type: string;
8443
+ id: string;
8444
+ name: string;
8445
+ createdAt: Date;
8446
+ updatedAt: Date;
8447
+ deletedAt: Date | null;
8448
+ isActive: boolean;
8449
+ }>;
8315
8450
  }, "strip", z.ZodTypeAny, {
8316
8451
  type: "fallback" | "location" | "file" | "closed" | "open" | "audio" | "video" | "image" | "text" | "imagemap" | "sticker" | "assign" | "solve" | "resolved" | "reopen" | "handed_over" | "updated" | "started" | "unsupported";
8317
8452
  message: string;
@@ -8768,9 +8903,27 @@ export declare const MessageSchema: z.ZodObject<{
8768
8903
  booleanValue: boolean | null;
8769
8904
  numberValue: number | null;
8770
8905
  dateValue: Date | null;
8771
- }[] | undefined;
8906
+ }[] | null | undefined;
8772
8907
  } | null;
8773
8908
  };
8909
+ workflowRule: {
8910
+ type: string;
8911
+ id: string;
8912
+ name: string;
8913
+ createdAt: Date;
8914
+ updatedAt: Date;
8915
+ deletedAt: Date | null;
8916
+ isActive: boolean;
8917
+ };
8918
+ };
8919
+ workflowRule: {
8920
+ type: string;
8921
+ id: string;
8922
+ name: string;
8923
+ createdAt: Date;
8924
+ updatedAt: Date;
8925
+ deletedAt: Date | null;
8926
+ isActive: boolean;
8774
8927
  };
8775
8928
  readAt: Date;
8776
8929
  platformMessageId: string;
@@ -9443,9 +9596,27 @@ export declare const MessageSchema: z.ZodObject<{
9443
9596
  booleanValue: boolean | null;
9444
9597
  numberValue: number | null;
9445
9598
  dateValue: Date | null;
9446
- }[] | undefined;
9599
+ }[] | null | undefined;
9447
9600
  } | null;
9448
9601
  };
9602
+ workflowRule: {
9603
+ type: string;
9604
+ id: string;
9605
+ name: string;
9606
+ createdAt: Date;
9607
+ updatedAt: Date;
9608
+ deletedAt: Date | null;
9609
+ isActive: boolean;
9610
+ };
9611
+ };
9612
+ workflowRule: {
9613
+ type: string;
9614
+ id: string;
9615
+ name: string;
9616
+ createdAt: Date;
9617
+ updatedAt: Date;
9618
+ deletedAt: Date | null;
9619
+ isActive: boolean;
9449
9620
  };
9450
9621
  readAt: Date;
9451
9622
  platformMessageId: string;
@@ -9797,6 +9968,9 @@ export declare const RepliedMessageSchema: z.ZodObject<{
9797
9968
  }>, "many">;
9798
9969
  extension: z.ZodObject<{
9799
9970
  id: z.ZodString;
9971
+ /**
9972
+ * Message Type Enum
9973
+ */
9800
9974
  createdAt: z.ZodDate;
9801
9975
  updatedAt: z.ZodDate;
9802
9976
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -9805,9 +9979,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
9805
9979
  sipUserName: z.ZodString;
9806
9980
  webphoneLoginUser: z.ZodString;
9807
9981
  extensionId: z.ZodNullable<z.ZodString>;
9808
- extensionName: z.ZodString; /**
9809
- * Message Type Enum
9810
- */
9982
+ extensionName: z.ZodString;
9811
9983
  telephonySignature: z.ZodNullable<z.ZodString>;
9812
9984
  }, "strip", z.ZodTypeAny, {
9813
9985
  id: string;
@@ -10003,6 +10175,9 @@ export declare const RepliedMessageSchema: z.ZodObject<{
10003
10175
  }>, "many">;
10004
10176
  extension: z.ZodObject<{
10005
10177
  id: z.ZodString;
10178
+ /**
10179
+ * Message Type Enum
10180
+ */
10006
10181
  createdAt: z.ZodDate;
10007
10182
  updatedAt: z.ZodDate;
10008
10183
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -10011,9 +10186,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
10011
10186
  sipUserName: z.ZodString;
10012
10187
  webphoneLoginUser: z.ZodString;
10013
10188
  extensionId: z.ZodNullable<z.ZodString>;
10014
- extensionName: z.ZodString; /**
10015
- * Message Type Enum
10016
- */
10189
+ extensionName: z.ZodString;
10017
10190
  telephonySignature: z.ZodNullable<z.ZodString>;
10018
10191
  }, "strip", z.ZodTypeAny, {
10019
10192
  id: string;
@@ -10209,6 +10382,9 @@ export declare const RepliedMessageSchema: z.ZodObject<{
10209
10382
  }>, "many">;
10210
10383
  extension: z.ZodObject<{
10211
10384
  id: z.ZodString;
10385
+ /**
10386
+ * Message Type Enum
10387
+ */
10212
10388
  createdAt: z.ZodDate;
10213
10389
  updatedAt: z.ZodDate;
10214
10390
  deletedAt: z.ZodNullable<z.ZodDate>;
@@ -10217,9 +10393,7 @@ export declare const RepliedMessageSchema: z.ZodObject<{
10217
10393
  sipUserName: z.ZodString;
10218
10394
  webphoneLoginUser: z.ZodString;
10219
10395
  extensionId: z.ZodNullable<z.ZodString>;
10220
- extensionName: z.ZodString; /**
10221
- * Message Type Enum
10222
- */
10396
+ extensionName: z.ZodString;
10223
10397
  telephonySignature: z.ZodNullable<z.ZodString>;
10224
10398
  }, "strip", z.ZodTypeAny, {
10225
10399
  id: string;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB;;GAEG;AACH,eAAO,MAAM,0BAA0B,+CAIrC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,iBAAiB,sNAwB5B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,uBAAuB,mCAAiC,CAAC;AAEtE;;GAEG;AACH,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;EAKxC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAUhC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAoErB,CAAC;AAEH;;GAEG;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CA3G1B;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAFH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4CAFH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA2MD,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCA/MjC;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wCAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA+ND,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/chat/schema.ts"],"names":[],"mappings":"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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAOH;;2BAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAiID,CAAC;AAEH;;GAEG;AAEH,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;0CAzI1B;;uBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;oBAXH;;uBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4BAOH;;+BAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAFH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAFH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gBAFH;;mBAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA0OD,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YA9OjC;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;YAFH;;eAEG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA8PD,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,4BAA4B;;;;;;;;;EAGvC,CAAC"}