@kl1/contracts 1.1.22 → 1.1.24-uat

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 +605 -207
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +604 -207
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/channel/index.d.ts +725 -611
  6. package/dist/src/channel/index.d.ts.map +1 -1
  7. package/dist/src/channel/schema.d.ts +12 -12
  8. package/dist/src/channel/schema.d.ts.map +1 -1
  9. package/dist/src/channel/validation.d.ts +71 -8
  10. package/dist/src/channel/validation.d.ts.map +1 -1
  11. package/dist/src/chat/index.d.ts +277 -277
  12. package/dist/src/chat/schema.d.ts +43 -43
  13. package/dist/src/chat/validation.d.ts +114 -109
  14. package/dist/src/chat/validation.d.ts.map +1 -1
  15. package/dist/src/contract.d.ts +19857 -6726
  16. package/dist/src/contract.d.ts.map +1 -1
  17. package/dist/src/cx-log/index.d.ts +29 -29
  18. package/dist/src/cx-log/schema.d.ts +23 -23
  19. package/dist/src/index.d.ts +1 -0
  20. package/dist/src/index.d.ts.map +1 -1
  21. package/dist/src/instagram/index.d.ts +141 -136
  22. package/dist/src/instagram/index.d.ts.map +1 -1
  23. package/dist/src/line/index.d.ts +136 -131
  24. package/dist/src/line/index.d.ts.map +1 -1
  25. package/dist/src/line/schema.d.ts.map +1 -1
  26. package/dist/src/line/validation.d.ts +23 -23
  27. package/dist/src/line/validation.d.ts.map +1 -1
  28. package/dist/src/mail/account-contract.d.ts +230 -4
  29. package/dist/src/mail/account-contract.d.ts.map +1 -1
  30. package/dist/src/mail/mail-contract.d.ts +7816 -4009
  31. package/dist/src/mail/mail-contract.d.ts.map +1 -1
  32. package/dist/src/mail/message-contract.d.ts +2103 -2
  33. package/dist/src/mail/message-contract.d.ts.map +1 -1
  34. package/dist/src/mail/room-contract.d.ts +1937 -455
  35. package/dist/src/mail/room-contract.d.ts.map +1 -1
  36. package/dist/src/mail/schemas/message-validation.schema.d.ts +3 -0
  37. package/dist/src/mail/schemas/message-validation.schema.d.ts.map +1 -1
  38. package/dist/src/mail/schemas/message.schema.d.ts +6 -0
  39. package/dist/src/mail/schemas/message.schema.d.ts.map +1 -1
  40. package/dist/src/mail/schemas/room-validation.schema.d.ts +374 -8
  41. package/dist/src/mail/schemas/room-validation.schema.d.ts.map +1 -1
  42. package/dist/src/mail/schemas/room.schema.d.ts +258 -0
  43. package/dist/src/mail/schemas/room.schema.d.ts.map +1 -1
  44. package/dist/src/messenger/index.d.ts +141 -136
  45. package/dist/src/messenger/index.d.ts.map +1 -1
  46. package/dist/src/messenger/validation.d.ts +13 -13
  47. package/dist/src/snippet/index.d.ts +545 -97
  48. package/dist/src/snippet/index.d.ts.map +1 -1
  49. package/dist/src/snippet/schema.d.ts +220 -19
  50. package/dist/src/snippet/schema.d.ts.map +1 -1
  51. package/dist/src/snippet/validation.d.ts +5 -5
  52. package/dist/src/viber/index.d.ts +105 -100
  53. package/dist/src/viber/index.d.ts.map +1 -1
  54. package/dist/src/webchat/index.d.ts +8021 -0
  55. package/dist/src/webchat/index.d.ts.map +1 -0
  56. package/dist/src/webchat/schema.d.ts +95 -0
  57. package/dist/src/webchat/schema.d.ts.map +1 -0
  58. package/dist/src/webchat/validation.d.ts +36 -0
  59. package/dist/src/webchat/validation.d.ts.map +1 -0
  60. package/package.json +1 -1
@@ -4,20 +4,50 @@ export declare const RoomContractsValidationSchema: {
4
4
  input: z.ZodObject<{
5
5
  page: z.ZodDefault<z.ZodNumber>;
6
6
  pageSize: z.ZodDefault<z.ZodNumber>;
7
- keyword: z.ZodOptional<z.ZodString>;
7
+ keyword: z.ZodOptional<z.ZodObject<{
8
+ value: z.ZodString;
9
+ category: z.ZodUnion<[z.ZodLiteral<"contact">, z.ZodLiteral<"message">]>;
10
+ }, "strip", z.ZodTypeAny, {
11
+ value: string;
12
+ category: "message" | "contact";
13
+ }, {
14
+ value: string;
15
+ category: "message" | "contact";
16
+ }>>;
17
+ contactLabels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
18
+ channels: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
19
+ date: z.ZodOptional<z.ZodString>;
20
+ contacts: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
21
+ assignees: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
8
22
  level1: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"open">, z.ZodLiteral<"close">, z.ZodLiteral<"inbox">, z.ZodLiteral<"sent">, z.ZodLiteral<"scheduled">, z.ZodLiteral<"starred">]>>;
9
23
  level2: z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"all">, z.ZodLiteral<"unassign">, z.ZodLiteral<"mine">, z.ZodLiteral<"other">]>>;
10
24
  }, "strip", z.ZodTypeAny, {
11
25
  page: number;
12
26
  pageSize: number;
13
- keyword?: string | undefined;
14
- level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
27
+ keyword?: {
28
+ value: string;
29
+ category: "message" | "contact";
30
+ } | undefined;
31
+ contactLabels?: string[] | undefined;
32
+ channels?: string[] | undefined;
33
+ date?: string | undefined;
34
+ contacts?: string[] | undefined;
35
+ assignees?: string[] | undefined;
36
+ level1?: "open" | "close" | "starred" | "inbox" | "sent" | "scheduled" | undefined;
15
37
  level2?: "all" | "other" | "unassign" | "mine" | undefined;
16
38
  }, {
17
39
  page?: number | undefined;
18
40
  pageSize?: number | undefined;
19
- keyword?: string | undefined;
20
- level1?: "open" | "close" | "inbox" | "sent" | "scheduled" | "starred" | undefined;
41
+ keyword?: {
42
+ value: string;
43
+ category: "message" | "contact";
44
+ } | undefined;
45
+ contactLabels?: string[] | undefined;
46
+ channels?: string[] | undefined;
47
+ date?: string | undefined;
48
+ contacts?: string[] | undefined;
49
+ assignees?: string[] | undefined;
50
+ level1?: "open" | "close" | "starred" | "inbox" | "sent" | "scheduled" | undefined;
21
51
  level2?: "all" | "other" | "unassign" | "mine" | undefined;
22
52
  }>;
23
53
  output: z.ZodObject<{
@@ -139,6 +169,8 @@ export declare const RoomContractsValidationSchema: {
139
169
  date: z.ZodDate;
140
170
  action: z.ZodString;
141
171
  unseen: z.ZodBoolean;
172
+ sendAt: z.ZodDate;
173
+ starred: z.ZodBoolean;
142
174
  seemsLikeNew: z.ZodBoolean;
143
175
  from: z.ZodArray<z.ZodObject<{
144
176
  id: z.ZodString;
@@ -337,6 +369,8 @@ export declare const RoomContractsValidationSchema: {
337
369
  emailEngineMessageId: string;
338
370
  emailEngineReplyTo: string | null;
339
371
  unseen: boolean;
372
+ sendAt: Date;
373
+ starred: boolean;
340
374
  seemsLikeNew: boolean;
341
375
  from: {
342
376
  id: string;
@@ -411,6 +445,8 @@ export declare const RoomContractsValidationSchema: {
411
445
  emailEngineMessageId: string;
412
446
  emailEngineReplyTo: string | null;
413
447
  unseen: boolean;
448
+ sendAt: Date;
449
+ starred: boolean;
414
450
  seemsLikeNew: boolean;
415
451
  from: {
416
452
  id: string;
@@ -486,6 +522,8 @@ export declare const RoomContractsValidationSchema: {
486
522
  date: z.ZodDate;
487
523
  action: z.ZodString;
488
524
  unseen: z.ZodBoolean;
525
+ sendAt: z.ZodDate;
526
+ starred: z.ZodBoolean;
489
527
  seemsLikeNew: z.ZodBoolean;
490
528
  from: z.ZodArray<z.ZodObject<{
491
529
  id: z.ZodString;
@@ -684,6 +722,8 @@ export declare const RoomContractsValidationSchema: {
684
722
  emailEngineMessageId: string;
685
723
  emailEngineReplyTo: string | null;
686
724
  unseen: boolean;
725
+ sendAt: Date;
726
+ starred: boolean;
687
727
  seemsLikeNew: boolean;
688
728
  from: {
689
729
  id: string;
@@ -758,6 +798,8 @@ export declare const RoomContractsValidationSchema: {
758
798
  emailEngineMessageId: string;
759
799
  emailEngineReplyTo: string | null;
760
800
  unseen: boolean;
801
+ sendAt: Date;
802
+ starred: boolean;
761
803
  seemsLikeNew: boolean;
762
804
  from: {
763
805
  id: string;
@@ -886,6 +928,8 @@ export declare const RoomContractsValidationSchema: {
886
928
  date: z.ZodDate;
887
929
  action: z.ZodString;
888
930
  unseen: z.ZodBoolean;
931
+ sendAt: z.ZodDate;
932
+ starred: z.ZodBoolean;
889
933
  seemsLikeNew: z.ZodBoolean;
890
934
  from: z.ZodArray<z.ZodObject<{
891
935
  id: z.ZodString;
@@ -1084,6 +1128,8 @@ export declare const RoomContractsValidationSchema: {
1084
1128
  emailEngineMessageId: string;
1085
1129
  emailEngineReplyTo: string | null;
1086
1130
  unseen: boolean;
1131
+ sendAt: Date;
1132
+ starred: boolean;
1087
1133
  seemsLikeNew: boolean;
1088
1134
  from: {
1089
1135
  id: string;
@@ -1158,6 +1204,8 @@ export declare const RoomContractsValidationSchema: {
1158
1204
  emailEngineMessageId: string;
1159
1205
  emailEngineReplyTo: string | null;
1160
1206
  unseen: boolean;
1207
+ sendAt: Date;
1208
+ starred: boolean;
1161
1209
  seemsLikeNew: boolean;
1162
1210
  from: {
1163
1211
  id: string;
@@ -1233,6 +1281,8 @@ export declare const RoomContractsValidationSchema: {
1233
1281
  date: z.ZodDate;
1234
1282
  action: z.ZodString;
1235
1283
  unseen: z.ZodBoolean;
1284
+ sendAt: z.ZodDate;
1285
+ starred: z.ZodBoolean;
1236
1286
  seemsLikeNew: z.ZodBoolean;
1237
1287
  from: z.ZodArray<z.ZodObject<{
1238
1288
  id: z.ZodString;
@@ -1431,6 +1481,8 @@ export declare const RoomContractsValidationSchema: {
1431
1481
  emailEngineMessageId: string;
1432
1482
  emailEngineReplyTo: string | null;
1433
1483
  unseen: boolean;
1484
+ sendAt: Date;
1485
+ starred: boolean;
1434
1486
  seemsLikeNew: boolean;
1435
1487
  from: {
1436
1488
  id: string;
@@ -1505,6 +1557,8 @@ export declare const RoomContractsValidationSchema: {
1505
1557
  emailEngineMessageId: string;
1506
1558
  emailEngineReplyTo: string | null;
1507
1559
  unseen: boolean;
1560
+ sendAt: Date;
1561
+ starred: boolean;
1508
1562
  seemsLikeNew: boolean;
1509
1563
  from: {
1510
1564
  id: string;
@@ -1745,6 +1799,150 @@ export declare const RoomContractsValidationSchema: {
1745
1799
  };
1746
1800
  }>;
1747
1801
  unReadMessageCount: z.ZodNumber;
1802
+ cxlog: z.ZodObject<{
1803
+ id: z.ZodString;
1804
+ createdAt: z.ZodDate;
1805
+ updatedAt: z.ZodDate;
1806
+ deletedAt: z.ZodNullable<z.ZodDate>;
1807
+ caseId: z.ZodNumber;
1808
+ entityId: z.ZodString;
1809
+ entityName: z.ZodString;
1810
+ contactId: z.ZodNullable<z.ZodString>;
1811
+ channel: z.ZodNullable<z.ZodString>;
1812
+ queueId: z.ZodNullable<z.ZodString>;
1813
+ agentId: z.ZodNullable<z.ZodString>;
1814
+ direction: z.ZodNullable<z.ZodString>;
1815
+ startedDate: z.ZodNullable<z.ZodDate>;
1816
+ handledTime: z.ZodNullable<z.ZodNumber>;
1817
+ firstResponseTime: z.ZodNullable<z.ZodNumber>;
1818
+ wrapUpForm: z.ZodNullable<z.ZodObject<{
1819
+ id: z.ZodString;
1820
+ createdAt: z.ZodDate;
1821
+ updatedAt: z.ZodDate;
1822
+ deletedAt: z.ZodNullable<z.ZodDate>;
1823
+ note: z.ZodNullable<z.ZodString>;
1824
+ disposition: z.ZodNullable<z.ZodString>;
1825
+ callFrom: z.ZodNullable<z.ZodString>;
1826
+ callTo: z.ZodNullable<z.ZodString>;
1827
+ tags: z.ZodArray<z.ZodObject<{
1828
+ id: z.ZodString;
1829
+ createdAt: z.ZodDate;
1830
+ updatedAt: z.ZodDate;
1831
+ deletedAt: z.ZodNullable<z.ZodDate>;
1832
+ name: z.ZodString;
1833
+ }, "strip", z.ZodTypeAny, {
1834
+ id: string;
1835
+ name: string;
1836
+ createdAt: Date;
1837
+ updatedAt: Date;
1838
+ deletedAt: Date | null;
1839
+ }, {
1840
+ id: string;
1841
+ name: string;
1842
+ createdAt: Date;
1843
+ updatedAt: Date;
1844
+ deletedAt: Date | null;
1845
+ }>, "many">;
1846
+ }, "strip", z.ZodTypeAny, {
1847
+ id: string;
1848
+ disposition: string | null;
1849
+ createdAt: Date;
1850
+ updatedAt: Date;
1851
+ deletedAt: Date | null;
1852
+ tags: {
1853
+ id: string;
1854
+ name: string;
1855
+ createdAt: Date;
1856
+ updatedAt: Date;
1857
+ deletedAt: Date | null;
1858
+ }[];
1859
+ callFrom: string | null;
1860
+ callTo: string | null;
1861
+ note: string | null;
1862
+ }, {
1863
+ id: string;
1864
+ disposition: string | null;
1865
+ createdAt: Date;
1866
+ updatedAt: Date;
1867
+ deletedAt: Date | null;
1868
+ tags: {
1869
+ id: string;
1870
+ name: string;
1871
+ createdAt: Date;
1872
+ updatedAt: Date;
1873
+ deletedAt: Date | null;
1874
+ }[];
1875
+ callFrom: string | null;
1876
+ callTo: string | null;
1877
+ note: string | null;
1878
+ }>>;
1879
+ }, "strip", z.ZodTypeAny, {
1880
+ id: string;
1881
+ channel: string | null;
1882
+ direction: string | null;
1883
+ createdAt: Date;
1884
+ updatedAt: Date;
1885
+ deletedAt: Date | null;
1886
+ entityId: string;
1887
+ queueId: string | null;
1888
+ contactId: string | null;
1889
+ caseId: number;
1890
+ entityName: string;
1891
+ agentId: string | null;
1892
+ startedDate: Date | null;
1893
+ handledTime: number | null;
1894
+ firstResponseTime: number | null;
1895
+ wrapUpForm: {
1896
+ id: string;
1897
+ disposition: string | null;
1898
+ createdAt: Date;
1899
+ updatedAt: Date;
1900
+ deletedAt: Date | null;
1901
+ tags: {
1902
+ id: string;
1903
+ name: string;
1904
+ createdAt: Date;
1905
+ updatedAt: Date;
1906
+ deletedAt: Date | null;
1907
+ }[];
1908
+ callFrom: string | null;
1909
+ callTo: string | null;
1910
+ note: string | null;
1911
+ } | null;
1912
+ }, {
1913
+ id: string;
1914
+ channel: string | null;
1915
+ direction: string | null;
1916
+ createdAt: Date;
1917
+ updatedAt: Date;
1918
+ deletedAt: Date | null;
1919
+ entityId: string;
1920
+ queueId: string | null;
1921
+ contactId: string | null;
1922
+ caseId: number;
1923
+ entityName: string;
1924
+ agentId: string | null;
1925
+ startedDate: Date | null;
1926
+ handledTime: number | null;
1927
+ firstResponseTime: number | null;
1928
+ wrapUpForm: {
1929
+ id: string;
1930
+ disposition: string | null;
1931
+ createdAt: Date;
1932
+ updatedAt: Date;
1933
+ deletedAt: Date | null;
1934
+ tags: {
1935
+ id: string;
1936
+ name: string;
1937
+ createdAt: Date;
1938
+ updatedAt: Date;
1939
+ deletedAt: Date | null;
1940
+ }[];
1941
+ callFrom: string | null;
1942
+ callTo: string | null;
1943
+ note: string | null;
1944
+ } | null;
1945
+ }>;
1748
1946
  }, "strip", z.ZodTypeAny, {
1749
1947
  id: string;
1750
1948
  direction: string;
@@ -1777,6 +1975,8 @@ export declare const RoomContractsValidationSchema: {
1777
1975
  emailEngineMessageId: string;
1778
1976
  emailEngineReplyTo: string | null;
1779
1977
  unseen: boolean;
1978
+ sendAt: Date;
1979
+ starred: boolean;
1780
1980
  seemsLikeNew: boolean;
1781
1981
  from: {
1782
1982
  id: string;
@@ -1847,6 +2047,40 @@ export declare const RoomContractsValidationSchema: {
1847
2047
  notificationCount: number | null;
1848
2048
  };
1849
2049
  resolved: boolean;
2050
+ cxlog: {
2051
+ id: string;
2052
+ channel: string | null;
2053
+ direction: string | null;
2054
+ createdAt: Date;
2055
+ updatedAt: Date;
2056
+ deletedAt: Date | null;
2057
+ entityId: string;
2058
+ queueId: string | null;
2059
+ contactId: string | null;
2060
+ caseId: number;
2061
+ entityName: string;
2062
+ agentId: string | null;
2063
+ startedDate: Date | null;
2064
+ handledTime: number | null;
2065
+ firstResponseTime: number | null;
2066
+ wrapUpForm: {
2067
+ id: string;
2068
+ disposition: string | null;
2069
+ createdAt: Date;
2070
+ updatedAt: Date;
2071
+ deletedAt: Date | null;
2072
+ tags: {
2073
+ id: string;
2074
+ name: string;
2075
+ createdAt: Date;
2076
+ updatedAt: Date;
2077
+ deletedAt: Date | null;
2078
+ }[];
2079
+ callFrom: string | null;
2080
+ callTo: string | null;
2081
+ note: string | null;
2082
+ } | null;
2083
+ };
1850
2084
  assigneeId: string | null;
1851
2085
  subject: string;
1852
2086
  from: {
@@ -1901,6 +2135,8 @@ export declare const RoomContractsValidationSchema: {
1901
2135
  emailEngineMessageId: string;
1902
2136
  emailEngineReplyTo: string | null;
1903
2137
  unseen: boolean;
2138
+ sendAt: Date;
2139
+ starred: boolean;
1904
2140
  seemsLikeNew: boolean;
1905
2141
  from: {
1906
2142
  id: string;
@@ -1976,6 +2212,8 @@ export declare const RoomContractsValidationSchema: {
1976
2212
  emailEngineMessageId: string;
1977
2213
  emailEngineReplyTo: string | null;
1978
2214
  unseen: boolean;
2215
+ sendAt: Date;
2216
+ starred: boolean;
1979
2217
  seemsLikeNew: boolean;
1980
2218
  from: {
1981
2219
  id: string;
@@ -2051,6 +2289,8 @@ export declare const RoomContractsValidationSchema: {
2051
2289
  emailEngineMessageId: string;
2052
2290
  emailEngineReplyTo: string | null;
2053
2291
  unseen: boolean;
2292
+ sendAt: Date;
2293
+ starred: boolean;
2054
2294
  seemsLikeNew: boolean;
2055
2295
  from: {
2056
2296
  id: string;
@@ -2187,6 +2427,8 @@ export declare const RoomContractsValidationSchema: {
2187
2427
  emailEngineMessageId: string;
2188
2428
  emailEngineReplyTo: string | null;
2189
2429
  unseen: boolean;
2430
+ sendAt: Date;
2431
+ starred: boolean;
2190
2432
  seemsLikeNew: boolean;
2191
2433
  from: {
2192
2434
  id: string;
@@ -2257,6 +2499,40 @@ export declare const RoomContractsValidationSchema: {
2257
2499
  notificationCount: number | null;
2258
2500
  };
2259
2501
  resolved: boolean;
2502
+ cxlog: {
2503
+ id: string;
2504
+ channel: string | null;
2505
+ direction: string | null;
2506
+ createdAt: Date;
2507
+ updatedAt: Date;
2508
+ deletedAt: Date | null;
2509
+ entityId: string;
2510
+ queueId: string | null;
2511
+ contactId: string | null;
2512
+ caseId: number;
2513
+ entityName: string;
2514
+ agentId: string | null;
2515
+ startedDate: Date | null;
2516
+ handledTime: number | null;
2517
+ firstResponseTime: number | null;
2518
+ wrapUpForm: {
2519
+ id: string;
2520
+ disposition: string | null;
2521
+ createdAt: Date;
2522
+ updatedAt: Date;
2523
+ deletedAt: Date | null;
2524
+ tags: {
2525
+ id: string;
2526
+ name: string;
2527
+ createdAt: Date;
2528
+ updatedAt: Date;
2529
+ deletedAt: Date | null;
2530
+ }[];
2531
+ callFrom: string | null;
2532
+ callTo: string | null;
2533
+ note: string | null;
2534
+ } | null;
2535
+ };
2260
2536
  assigneeId: string | null;
2261
2537
  subject: string;
2262
2538
  from: {
@@ -2311,6 +2587,8 @@ export declare const RoomContractsValidationSchema: {
2311
2587
  emailEngineMessageId: string;
2312
2588
  emailEngineReplyTo: string | null;
2313
2589
  unseen: boolean;
2590
+ sendAt: Date;
2591
+ starred: boolean;
2314
2592
  seemsLikeNew: boolean;
2315
2593
  from: {
2316
2594
  id: string;
@@ -2386,6 +2664,8 @@ export declare const RoomContractsValidationSchema: {
2386
2664
  emailEngineMessageId: string;
2387
2665
  emailEngineReplyTo: string | null;
2388
2666
  unseen: boolean;
2667
+ sendAt: Date;
2668
+ starred: boolean;
2389
2669
  seemsLikeNew: boolean;
2390
2670
  from: {
2391
2671
  id: string;
@@ -2461,6 +2741,8 @@ export declare const RoomContractsValidationSchema: {
2461
2741
  emailEngineMessageId: string;
2462
2742
  emailEngineReplyTo: string | null;
2463
2743
  unseen: boolean;
2744
+ sendAt: Date;
2745
+ starred: boolean;
2464
2746
  seemsLikeNew: boolean;
2465
2747
  from: {
2466
2748
  id: string;
@@ -2602,6 +2884,8 @@ export declare const RoomContractsValidationSchema: {
2602
2884
  emailEngineMessageId: string;
2603
2885
  emailEngineReplyTo: string | null;
2604
2886
  unseen: boolean;
2887
+ sendAt: Date;
2888
+ starred: boolean;
2605
2889
  seemsLikeNew: boolean;
2606
2890
  from: {
2607
2891
  id: string;
@@ -2672,6 +2956,40 @@ export declare const RoomContractsValidationSchema: {
2672
2956
  notificationCount: number | null;
2673
2957
  };
2674
2958
  resolved: boolean;
2959
+ cxlog: {
2960
+ id: string;
2961
+ channel: string | null;
2962
+ direction: string | null;
2963
+ createdAt: Date;
2964
+ updatedAt: Date;
2965
+ deletedAt: Date | null;
2966
+ entityId: string;
2967
+ queueId: string | null;
2968
+ contactId: string | null;
2969
+ caseId: number;
2970
+ entityName: string;
2971
+ agentId: string | null;
2972
+ startedDate: Date | null;
2973
+ handledTime: number | null;
2974
+ firstResponseTime: number | null;
2975
+ wrapUpForm: {
2976
+ id: string;
2977
+ disposition: string | null;
2978
+ createdAt: Date;
2979
+ updatedAt: Date;
2980
+ deletedAt: Date | null;
2981
+ tags: {
2982
+ id: string;
2983
+ name: string;
2984
+ createdAt: Date;
2985
+ updatedAt: Date;
2986
+ deletedAt: Date | null;
2987
+ }[];
2988
+ callFrom: string | null;
2989
+ callTo: string | null;
2990
+ note: string | null;
2991
+ } | null;
2992
+ };
2675
2993
  assigneeId: string | null;
2676
2994
  subject: string;
2677
2995
  from: {
@@ -2726,6 +3044,8 @@ export declare const RoomContractsValidationSchema: {
2726
3044
  emailEngineMessageId: string;
2727
3045
  emailEngineReplyTo: string | null;
2728
3046
  unseen: boolean;
3047
+ sendAt: Date;
3048
+ starred: boolean;
2729
3049
  seemsLikeNew: boolean;
2730
3050
  from: {
2731
3051
  id: string;
@@ -2801,6 +3121,8 @@ export declare const RoomContractsValidationSchema: {
2801
3121
  emailEngineMessageId: string;
2802
3122
  emailEngineReplyTo: string | null;
2803
3123
  unseen: boolean;
3124
+ sendAt: Date;
3125
+ starred: boolean;
2804
3126
  seemsLikeNew: boolean;
2805
3127
  from: {
2806
3128
  id: string;
@@ -2876,6 +3198,8 @@ export declare const RoomContractsValidationSchema: {
2876
3198
  emailEngineMessageId: string;
2877
3199
  emailEngineReplyTo: string | null;
2878
3200
  unseen: boolean;
3201
+ sendAt: Date;
3202
+ starred: boolean;
2879
3203
  seemsLikeNew: boolean;
2880
3204
  from: {
2881
3205
  id: string;
@@ -3017,6 +3341,8 @@ export declare const RoomContractsValidationSchema: {
3017
3341
  emailEngineMessageId: string;
3018
3342
  emailEngineReplyTo: string | null;
3019
3343
  unseen: boolean;
3344
+ sendAt: Date;
3345
+ starred: boolean;
3020
3346
  seemsLikeNew: boolean;
3021
3347
  from: {
3022
3348
  id: string;
@@ -3087,6 +3413,40 @@ export declare const RoomContractsValidationSchema: {
3087
3413
  notificationCount: number | null;
3088
3414
  };
3089
3415
  resolved: boolean;
3416
+ cxlog: {
3417
+ id: string;
3418
+ channel: string | null;
3419
+ direction: string | null;
3420
+ createdAt: Date;
3421
+ updatedAt: Date;
3422
+ deletedAt: Date | null;
3423
+ entityId: string;
3424
+ queueId: string | null;
3425
+ contactId: string | null;
3426
+ caseId: number;
3427
+ entityName: string;
3428
+ agentId: string | null;
3429
+ startedDate: Date | null;
3430
+ handledTime: number | null;
3431
+ firstResponseTime: number | null;
3432
+ wrapUpForm: {
3433
+ id: string;
3434
+ disposition: string | null;
3435
+ createdAt: Date;
3436
+ updatedAt: Date;
3437
+ deletedAt: Date | null;
3438
+ tags: {
3439
+ id: string;
3440
+ name: string;
3441
+ createdAt: Date;
3442
+ updatedAt: Date;
3443
+ deletedAt: Date | null;
3444
+ }[];
3445
+ callFrom: string | null;
3446
+ callTo: string | null;
3447
+ note: string | null;
3448
+ } | null;
3449
+ };
3090
3450
  assigneeId: string | null;
3091
3451
  subject: string;
3092
3452
  from: {
@@ -3141,6 +3501,8 @@ export declare const RoomContractsValidationSchema: {
3141
3501
  emailEngineMessageId: string;
3142
3502
  emailEngineReplyTo: string | null;
3143
3503
  unseen: boolean;
3504
+ sendAt: Date;
3505
+ starred: boolean;
3144
3506
  seemsLikeNew: boolean;
3145
3507
  from: {
3146
3508
  id: string;
@@ -3216,6 +3578,8 @@ export declare const RoomContractsValidationSchema: {
3216
3578
  emailEngineMessageId: string;
3217
3579
  emailEngineReplyTo: string | null;
3218
3580
  unseen: boolean;
3581
+ sendAt: Date;
3582
+ starred: boolean;
3219
3583
  seemsLikeNew: boolean;
3220
3584
  from: {
3221
3585
  id: string;
@@ -3291,6 +3655,8 @@ export declare const RoomContractsValidationSchema: {
3291
3655
  emailEngineMessageId: string;
3292
3656
  emailEngineReplyTo: string | null;
3293
3657
  unseen: boolean;
3658
+ sendAt: Date;
3659
+ starred: boolean;
3294
3660
  seemsLikeNew: boolean;
3295
3661
  from: {
3296
3662
  id: string;
@@ -3403,21 +3769,21 @@ export declare const RoomContractsValidationSchema: {
3403
3769
  };
3404
3770
  update: {
3405
3771
  input: z.ZodObject<{
3406
- resolved: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
3772
+ disposition: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodLiteral<"resolved">, z.ZodLiteral<"follow up">, z.ZodLiteral<"escalated">, z.ZodLiteral<"dropped">, z.ZodLiteral<"prank">, z.ZodLiteral<"blank">]>>>;
3407
3773
  assigneeId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
3408
3774
  note: z.ZodOptional<z.ZodString>;
3409
3775
  tags: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
3410
3776
  handover: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
3411
3777
  selfAssign: z.ZodNullable<z.ZodOptional<z.ZodUnion<[z.ZodBoolean, z.ZodEffects<z.ZodUnion<[z.ZodLiteral<"true">, z.ZodLiteral<"false">]>, boolean, "false" | "true">]>>>;
3412
3778
  }, "strip", z.ZodTypeAny, {
3413
- resolved?: boolean | null | undefined;
3779
+ disposition?: "resolved" | "follow up" | "escalated" | "dropped" | "prank" | "blank" | null | undefined;
3414
3780
  assigneeId?: string | null | undefined;
3415
3781
  note?: string | undefined;
3416
3782
  tags?: string[] | undefined;
3417
3783
  handover?: boolean | null | undefined;
3418
3784
  selfAssign?: boolean | null | undefined;
3419
3785
  }, {
3420
- resolved?: boolean | "false" | "true" | null | undefined;
3786
+ disposition?: "resolved" | "follow up" | "escalated" | "dropped" | "prank" | "blank" | null | undefined;
3421
3787
  assigneeId?: string | null | undefined;
3422
3788
  note?: string | undefined;
3423
3789
  tags?: string[] | undefined;
@@ -1 +1 @@
1
- {"version":3,"file":"room-validation.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room-validation.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAkEzC,CAAC"}
1
+ {"version":3,"file":"room-validation.schema.d.ts","sourceRoot":"","sources":["../../../../src/mail/schemas/room-validation.schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAGpB,eAAO,MAAM,6BAA6B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA8EzC,CAAC"}