@kl1/contracts 1.0.53 → 1.0.55

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 (36) hide show
  1. package/dist/index.js +104 -14
  2. package/dist/index.js.map +1 -1
  3. package/dist/index.mjs +103 -14
  4. package/dist/index.mjs.map +1 -1
  5. package/dist/src/chat/index.d.ts +1033 -1033
  6. package/dist/src/chat/schema.d.ts +180 -180
  7. package/dist/src/chat/validation.d.ts +192 -192
  8. package/dist/src/chat/validation.d.ts.map +1 -1
  9. package/dist/src/comment/index.d.ts +3026 -1010
  10. package/dist/src/comment/index.d.ts.map +1 -1
  11. package/dist/src/comment/schema.d.ts +780 -188
  12. package/dist/src/comment/schema.d.ts.map +1 -1
  13. package/dist/src/contact/index.d.ts +296 -296
  14. package/dist/src/contact/schema.d.ts +20 -20
  15. package/dist/src/contact/validation.d.ts +150 -150
  16. package/dist/src/contract.d.ts +8513 -3217
  17. package/dist/src/contract.d.ts.map +1 -1
  18. package/dist/src/cx-log/index.d.ts +240 -240
  19. package/dist/src/cx-log/schema.d.ts +180 -180
  20. package/dist/src/index.d.ts +1 -0
  21. package/dist/src/index.d.ts.map +1 -1
  22. package/dist/src/instagram/index.d.ts +100 -100
  23. package/dist/src/messenger/index.d.ts +100 -100
  24. package/dist/src/telephony-cdr/index.d.ts +180 -180
  25. package/dist/src/telephony-cdr/schema.d.ts +40 -40
  26. package/dist/src/ticket/index.d.ts +3980 -892
  27. package/dist/src/ticket/index.d.ts.map +1 -1
  28. package/dist/src/ticket/schema.d.ts +512 -40
  29. package/dist/src/ticket/schema.d.ts.map +1 -1
  30. package/dist/src/upload/index.d.ts +197 -0
  31. package/dist/src/upload/index.d.ts.map +1 -0
  32. package/dist/src/upload/schema.d.ts +14 -0
  33. package/dist/src/upload/schema.d.ts.map +1 -1
  34. package/dist/src/upload/validation.d.ts +2 -0
  35. package/dist/src/upload/validation.d.ts.map +1 -0
  36. package/package.json +1 -1
@@ -1616,16 +1616,6 @@ export declare const TicketSchema: z.ZodObject<{
1616
1616
  };
1617
1617
  }[];
1618
1618
  }[];
1619
- notes: string | null;
1620
- contactProfile: string | null;
1621
- socialProfileUrl: string | null;
1622
- tags: {
1623
- id: string;
1624
- name: string;
1625
- createdAt: Date;
1626
- updatedAt: Date;
1627
- deletedAt: Date | null;
1628
- }[];
1629
1619
  company: {
1630
1620
  id: string;
1631
1621
  createdAt: Date;
@@ -1636,6 +1626,16 @@ export declare const TicketSchema: z.ZodObject<{
1636
1626
  phone?: string | null | undefined;
1637
1627
  industry?: string | null | undefined;
1638
1628
  } | null;
1629
+ notes: string | null;
1630
+ contactProfile: string | null;
1631
+ socialProfileUrl: string | null;
1632
+ tags: {
1633
+ id: string;
1634
+ name: string;
1635
+ createdAt: Date;
1636
+ updatedAt: Date;
1637
+ deletedAt: Date | null;
1638
+ }[];
1639
1639
  contactEmails: {
1640
1640
  id: string;
1641
1641
  isPrimary: boolean;
@@ -1719,16 +1719,6 @@ export declare const TicketSchema: z.ZodObject<{
1719
1719
  };
1720
1720
  }[];
1721
1721
  }[];
1722
- notes: string | null;
1723
- contactProfile: string | null;
1724
- socialProfileUrl: string | null;
1725
- tags: {
1726
- id: string;
1727
- name: string;
1728
- createdAt: Date;
1729
- updatedAt: Date;
1730
- deletedAt: Date | null;
1731
- }[];
1732
1722
  company: {
1733
1723
  id: string;
1734
1724
  createdAt: Date;
@@ -1739,6 +1729,16 @@ export declare const TicketSchema: z.ZodObject<{
1739
1729
  phone?: string | null | undefined;
1740
1730
  industry?: string | null | undefined;
1741
1731
  } | null;
1732
+ notes: string | null;
1733
+ contactProfile: string | null;
1734
+ socialProfileUrl: string | null;
1735
+ tags: {
1736
+ id: string;
1737
+ name: string;
1738
+ createdAt: Date;
1739
+ updatedAt: Date;
1740
+ deletedAt: Date | null;
1741
+ }[];
1742
1742
  contactEmails: {
1743
1743
  id: string;
1744
1744
  isPrimary: boolean;
@@ -1772,6 +1772,358 @@ export declare const TicketSchema: z.ZodObject<{
1772
1772
  };
1773
1773
  }[] | undefined;
1774
1774
  }>;
1775
+ activityLogs: z.ZodArray<z.ZodObject<{
1776
+ id: z.ZodString;
1777
+ createdAt: z.ZodDate;
1778
+ updatedAt: z.ZodDate;
1779
+ deletedAt: z.ZodNullable<z.ZodDate>;
1780
+ actor: z.ZodObject<{
1781
+ id: z.ZodString;
1782
+ createdAt: z.ZodDate;
1783
+ updatedAt: z.ZodDate;
1784
+ deletedAt: z.ZodNullable<z.ZodDate>;
1785
+ name: z.ZodString;
1786
+ email: z.ZodString;
1787
+ emailVerifiedAt: z.ZodNullable<z.ZodDate>;
1788
+ password: z.ZodString;
1789
+ address: z.ZodNullable<z.ZodString>;
1790
+ phone: z.ZodNullable<z.ZodString>;
1791
+ notificationCount: z.ZodNullable<z.ZodNumber>;
1792
+ roles: z.ZodArray<z.ZodObject<{
1793
+ id: z.ZodString;
1794
+ createdAt: z.ZodDate;
1795
+ updatedAt: z.ZodDate;
1796
+ deletedAt: z.ZodNullable<z.ZodDate>;
1797
+ systemName: z.ZodString;
1798
+ displayName: z.ZodString;
1799
+ description: z.ZodNullable<z.ZodString>;
1800
+ permissions: z.ZodArray<z.ZodObject<{
1801
+ id: z.ZodString;
1802
+ createdAt: z.ZodDate;
1803
+ updatedAt: z.ZodDate;
1804
+ deletedAt: z.ZodNullable<z.ZodDate>;
1805
+ systemName: z.ZodString;
1806
+ displayName: z.ZodString;
1807
+ description: z.ZodNullable<z.ZodString>;
1808
+ }, "strip", z.ZodTypeAny, {
1809
+ id: string;
1810
+ description: string | null;
1811
+ createdAt: Date;
1812
+ updatedAt: Date;
1813
+ deletedAt: Date | null;
1814
+ systemName: string;
1815
+ displayName: string;
1816
+ }, {
1817
+ id: string;
1818
+ description: string | null;
1819
+ createdAt: Date;
1820
+ updatedAt: Date;
1821
+ deletedAt: Date | null;
1822
+ systemName: string;
1823
+ displayName: string;
1824
+ }>, "many">;
1825
+ }, "strip", z.ZodTypeAny, {
1826
+ id: string;
1827
+ description: string | null;
1828
+ createdAt: Date;
1829
+ updatedAt: Date;
1830
+ deletedAt: Date | null;
1831
+ systemName: string;
1832
+ displayName: string;
1833
+ permissions: {
1834
+ id: string;
1835
+ description: string | null;
1836
+ createdAt: Date;
1837
+ updatedAt: Date;
1838
+ deletedAt: Date | null;
1839
+ systemName: string;
1840
+ displayName: string;
1841
+ }[];
1842
+ }, {
1843
+ id: string;
1844
+ description: string | null;
1845
+ createdAt: Date;
1846
+ updatedAt: Date;
1847
+ deletedAt: Date | null;
1848
+ systemName: string;
1849
+ displayName: string;
1850
+ permissions: {
1851
+ id: string;
1852
+ description: string | null;
1853
+ createdAt: Date;
1854
+ updatedAt: Date;
1855
+ deletedAt: Date | null;
1856
+ systemName: string;
1857
+ displayName: string;
1858
+ }[];
1859
+ }>, "many">;
1860
+ extension: z.ZodObject<{
1861
+ id: z.ZodString;
1862
+ createdAt: z.ZodDate;
1863
+ updatedAt: z.ZodDate;
1864
+ deletedAt: z.ZodNullable<z.ZodDate>;
1865
+ userId: z.ZodNullable<z.ZodString>;
1866
+ sipServerUrl: z.ZodString;
1867
+ sipUserName: z.ZodString;
1868
+ webphoneLoginUser: z.ZodString;
1869
+ extensionId: z.ZodNullable<z.ZodString>;
1870
+ extensionName: z.ZodString;
1871
+ telephonySignature: z.ZodNullable<z.ZodString>;
1872
+ }, "strip", z.ZodTypeAny, {
1873
+ id: string;
1874
+ createdAt: Date;
1875
+ updatedAt: Date;
1876
+ deletedAt: Date | null;
1877
+ userId: string | null;
1878
+ sipServerUrl: string;
1879
+ sipUserName: string;
1880
+ webphoneLoginUser: string;
1881
+ extensionId: string | null;
1882
+ extensionName: string;
1883
+ telephonySignature: string | null;
1884
+ }, {
1885
+ id: string;
1886
+ createdAt: Date;
1887
+ updatedAt: Date;
1888
+ deletedAt: Date | null;
1889
+ userId: string | null;
1890
+ sipServerUrl: string;
1891
+ sipUserName: string;
1892
+ webphoneLoginUser: string;
1893
+ extensionId: string | null;
1894
+ extensionName: string;
1895
+ telephonySignature: string | null;
1896
+ }>;
1897
+ }, "strip", z.ZodTypeAny, {
1898
+ id: string;
1899
+ address: string | null;
1900
+ name: string;
1901
+ email: string;
1902
+ createdAt: Date;
1903
+ updatedAt: Date;
1904
+ deletedAt: Date | null;
1905
+ emailVerifiedAt: Date | null;
1906
+ password: string;
1907
+ phone: string | null;
1908
+ notificationCount: number | null;
1909
+ roles: {
1910
+ id: string;
1911
+ description: string | null;
1912
+ createdAt: Date;
1913
+ updatedAt: Date;
1914
+ deletedAt: Date | null;
1915
+ systemName: string;
1916
+ displayName: string;
1917
+ permissions: {
1918
+ id: string;
1919
+ description: string | null;
1920
+ createdAt: Date;
1921
+ updatedAt: Date;
1922
+ deletedAt: Date | null;
1923
+ systemName: string;
1924
+ displayName: string;
1925
+ }[];
1926
+ }[];
1927
+ extension: {
1928
+ id: string;
1929
+ createdAt: Date;
1930
+ updatedAt: Date;
1931
+ deletedAt: Date | null;
1932
+ userId: string | null;
1933
+ sipServerUrl: string;
1934
+ sipUserName: string;
1935
+ webphoneLoginUser: string;
1936
+ extensionId: string | null;
1937
+ extensionName: string;
1938
+ telephonySignature: string | null;
1939
+ };
1940
+ }, {
1941
+ id: string;
1942
+ address: string | null;
1943
+ name: string;
1944
+ email: string;
1945
+ createdAt: Date;
1946
+ updatedAt: Date;
1947
+ deletedAt: Date | null;
1948
+ emailVerifiedAt: Date | null;
1949
+ password: string;
1950
+ phone: string | null;
1951
+ notificationCount: number | null;
1952
+ roles: {
1953
+ id: string;
1954
+ description: string | null;
1955
+ createdAt: Date;
1956
+ updatedAt: Date;
1957
+ deletedAt: Date | null;
1958
+ systemName: string;
1959
+ displayName: string;
1960
+ permissions: {
1961
+ id: string;
1962
+ description: string | null;
1963
+ createdAt: Date;
1964
+ updatedAt: Date;
1965
+ deletedAt: Date | null;
1966
+ systemName: string;
1967
+ displayName: string;
1968
+ }[];
1969
+ }[];
1970
+ extension: {
1971
+ id: string;
1972
+ createdAt: Date;
1973
+ updatedAt: Date;
1974
+ deletedAt: Date | null;
1975
+ userId: string | null;
1976
+ sipServerUrl: string;
1977
+ sipUserName: string;
1978
+ webphoneLoginUser: string;
1979
+ extensionId: string | null;
1980
+ extensionName: string;
1981
+ telephonySignature: string | null;
1982
+ };
1983
+ }>;
1984
+ entityId: z.ZodString;
1985
+ description: z.ZodString;
1986
+ entityType: z.ZodObject<{
1987
+ id: z.ZodString;
1988
+ createdAt: z.ZodDate;
1989
+ updatedAt: z.ZodDate;
1990
+ deletedAt: z.ZodNullable<z.ZodDate>;
1991
+ entity: z.ZodString;
1992
+ description: z.ZodString;
1993
+ }, "strip", z.ZodTypeAny, {
1994
+ id: string;
1995
+ description: string;
1996
+ createdAt: Date;
1997
+ updatedAt: Date;
1998
+ deletedAt: Date | null;
1999
+ entity: string;
2000
+ }, {
2001
+ id: string;
2002
+ description: string;
2003
+ createdAt: Date;
2004
+ updatedAt: Date;
2005
+ deletedAt: Date | null;
2006
+ entity: string;
2007
+ }>;
2008
+ }, "strip", z.ZodTypeAny, {
2009
+ id: string;
2010
+ description: string;
2011
+ createdAt: Date;
2012
+ updatedAt: Date;
2013
+ deletedAt: Date | null;
2014
+ actor: {
2015
+ id: string;
2016
+ address: string | null;
2017
+ name: string;
2018
+ email: string;
2019
+ createdAt: Date;
2020
+ updatedAt: Date;
2021
+ deletedAt: Date | null;
2022
+ emailVerifiedAt: Date | null;
2023
+ password: string;
2024
+ phone: string | null;
2025
+ notificationCount: number | null;
2026
+ roles: {
2027
+ id: string;
2028
+ description: string | null;
2029
+ createdAt: Date;
2030
+ updatedAt: Date;
2031
+ deletedAt: Date | null;
2032
+ systemName: string;
2033
+ displayName: string;
2034
+ permissions: {
2035
+ id: string;
2036
+ description: string | null;
2037
+ createdAt: Date;
2038
+ updatedAt: Date;
2039
+ deletedAt: Date | null;
2040
+ systemName: string;
2041
+ displayName: string;
2042
+ }[];
2043
+ }[];
2044
+ extension: {
2045
+ id: string;
2046
+ createdAt: Date;
2047
+ updatedAt: Date;
2048
+ deletedAt: Date | null;
2049
+ userId: string | null;
2050
+ sipServerUrl: string;
2051
+ sipUserName: string;
2052
+ webphoneLoginUser: string;
2053
+ extensionId: string | null;
2054
+ extensionName: string;
2055
+ telephonySignature: string | null;
2056
+ };
2057
+ };
2058
+ entityId: string;
2059
+ entityType: {
2060
+ id: string;
2061
+ description: string;
2062
+ createdAt: Date;
2063
+ updatedAt: Date;
2064
+ deletedAt: Date | null;
2065
+ entity: string;
2066
+ };
2067
+ }, {
2068
+ id: string;
2069
+ description: string;
2070
+ createdAt: Date;
2071
+ updatedAt: Date;
2072
+ deletedAt: Date | null;
2073
+ actor: {
2074
+ id: string;
2075
+ address: string | null;
2076
+ name: string;
2077
+ email: string;
2078
+ createdAt: Date;
2079
+ updatedAt: Date;
2080
+ deletedAt: Date | null;
2081
+ emailVerifiedAt: Date | null;
2082
+ password: string;
2083
+ phone: string | null;
2084
+ notificationCount: number | null;
2085
+ roles: {
2086
+ id: string;
2087
+ description: string | null;
2088
+ createdAt: Date;
2089
+ updatedAt: Date;
2090
+ deletedAt: Date | null;
2091
+ systemName: string;
2092
+ displayName: string;
2093
+ permissions: {
2094
+ id: string;
2095
+ description: string | null;
2096
+ createdAt: Date;
2097
+ updatedAt: Date;
2098
+ deletedAt: Date | null;
2099
+ systemName: string;
2100
+ displayName: string;
2101
+ }[];
2102
+ }[];
2103
+ extension: {
2104
+ id: string;
2105
+ createdAt: Date;
2106
+ updatedAt: Date;
2107
+ deletedAt: Date | null;
2108
+ userId: string | null;
2109
+ sipServerUrl: string;
2110
+ sipUserName: string;
2111
+ webphoneLoginUser: string;
2112
+ extensionId: string | null;
2113
+ extensionName: string;
2114
+ telephonySignature: string | null;
2115
+ };
2116
+ };
2117
+ entityId: string;
2118
+ entityType: {
2119
+ id: string;
2120
+ description: string;
2121
+ createdAt: Date;
2122
+ updatedAt: Date;
2123
+ deletedAt: Date | null;
2124
+ entity: string;
2125
+ };
2126
+ }>, "many">;
1775
2127
  }, "strip", z.ZodTypeAny, {
1776
2128
  type: string;
1777
2129
  id: string;
@@ -1856,16 +2208,6 @@ export declare const TicketSchema: z.ZodObject<{
1856
2208
  };
1857
2209
  }[];
1858
2210
  }[];
1859
- notes: string | null;
1860
- contactProfile: string | null;
1861
- socialProfileUrl: string | null;
1862
- tags: {
1863
- id: string;
1864
- name: string;
1865
- createdAt: Date;
1866
- updatedAt: Date;
1867
- deletedAt: Date | null;
1868
- }[];
1869
2211
  company: {
1870
2212
  id: string;
1871
2213
  createdAt: Date;
@@ -1876,6 +2218,16 @@ export declare const TicketSchema: z.ZodObject<{
1876
2218
  phone?: string | null | undefined;
1877
2219
  industry?: string | null | undefined;
1878
2220
  } | null;
2221
+ notes: string | null;
2222
+ contactProfile: string | null;
2223
+ socialProfileUrl: string | null;
2224
+ tags: {
2225
+ id: string;
2226
+ name: string;
2227
+ createdAt: Date;
2228
+ updatedAt: Date;
2229
+ deletedAt: Date | null;
2230
+ }[];
1879
2231
  contactEmails: {
1880
2232
  id: string;
1881
2233
  isPrimary: boolean;
@@ -1952,6 +2304,66 @@ export declare const TicketSchema: z.ZodObject<{
1952
2304
  updatedAt: Date;
1953
2305
  deletedAt: Date | null;
1954
2306
  }[];
2307
+ activityLogs: {
2308
+ id: string;
2309
+ description: string;
2310
+ createdAt: Date;
2311
+ updatedAt: Date;
2312
+ deletedAt: Date | null;
2313
+ actor: {
2314
+ id: string;
2315
+ address: string | null;
2316
+ name: string;
2317
+ email: string;
2318
+ createdAt: Date;
2319
+ updatedAt: Date;
2320
+ deletedAt: Date | null;
2321
+ emailVerifiedAt: Date | null;
2322
+ password: string;
2323
+ phone: string | null;
2324
+ notificationCount: number | null;
2325
+ roles: {
2326
+ id: string;
2327
+ description: string | null;
2328
+ createdAt: Date;
2329
+ updatedAt: Date;
2330
+ deletedAt: Date | null;
2331
+ systemName: string;
2332
+ displayName: string;
2333
+ permissions: {
2334
+ id: string;
2335
+ description: string | null;
2336
+ createdAt: Date;
2337
+ updatedAt: Date;
2338
+ deletedAt: Date | null;
2339
+ systemName: string;
2340
+ displayName: string;
2341
+ }[];
2342
+ }[];
2343
+ extension: {
2344
+ id: string;
2345
+ createdAt: Date;
2346
+ updatedAt: Date;
2347
+ deletedAt: Date | null;
2348
+ userId: string | null;
2349
+ sipServerUrl: string;
2350
+ sipUserName: string;
2351
+ webphoneLoginUser: string;
2352
+ extensionId: string | null;
2353
+ extensionName: string;
2354
+ telephonySignature: string | null;
2355
+ };
2356
+ };
2357
+ entityId: string;
2358
+ entityType: {
2359
+ id: string;
2360
+ description: string;
2361
+ createdAt: Date;
2362
+ updatedAt: Date;
2363
+ deletedAt: Date | null;
2364
+ entity: string;
2365
+ };
2366
+ }[];
1955
2367
  contactId: string;
1956
2368
  assigneeId: string;
1957
2369
  creatorId: string;
@@ -2129,16 +2541,6 @@ export declare const TicketSchema: z.ZodObject<{
2129
2541
  };
2130
2542
  }[];
2131
2543
  }[];
2132
- notes: string | null;
2133
- contactProfile: string | null;
2134
- socialProfileUrl: string | null;
2135
- tags: {
2136
- id: string;
2137
- name: string;
2138
- createdAt: Date;
2139
- updatedAt: Date;
2140
- deletedAt: Date | null;
2141
- }[];
2142
2544
  company: {
2143
2545
  id: string;
2144
2546
  createdAt: Date;
@@ -2149,6 +2551,16 @@ export declare const TicketSchema: z.ZodObject<{
2149
2551
  phone?: string | null | undefined;
2150
2552
  industry?: string | null | undefined;
2151
2553
  } | null;
2554
+ notes: string | null;
2555
+ contactProfile: string | null;
2556
+ socialProfileUrl: string | null;
2557
+ tags: {
2558
+ id: string;
2559
+ name: string;
2560
+ createdAt: Date;
2561
+ updatedAt: Date;
2562
+ deletedAt: Date | null;
2563
+ }[];
2152
2564
  contactEmails: {
2153
2565
  id: string;
2154
2566
  isPrimary: boolean;
@@ -2225,6 +2637,66 @@ export declare const TicketSchema: z.ZodObject<{
2225
2637
  updatedAt: Date;
2226
2638
  deletedAt: Date | null;
2227
2639
  }[];
2640
+ activityLogs: {
2641
+ id: string;
2642
+ description: string;
2643
+ createdAt: Date;
2644
+ updatedAt: Date;
2645
+ deletedAt: Date | null;
2646
+ actor: {
2647
+ id: string;
2648
+ address: string | null;
2649
+ name: string;
2650
+ email: string;
2651
+ createdAt: Date;
2652
+ updatedAt: Date;
2653
+ deletedAt: Date | null;
2654
+ emailVerifiedAt: Date | null;
2655
+ password: string;
2656
+ phone: string | null;
2657
+ notificationCount: number | null;
2658
+ roles: {
2659
+ id: string;
2660
+ description: string | null;
2661
+ createdAt: Date;
2662
+ updatedAt: Date;
2663
+ deletedAt: Date | null;
2664
+ systemName: string;
2665
+ displayName: string;
2666
+ permissions: {
2667
+ id: string;
2668
+ description: string | null;
2669
+ createdAt: Date;
2670
+ updatedAt: Date;
2671
+ deletedAt: Date | null;
2672
+ systemName: string;
2673
+ displayName: string;
2674
+ }[];
2675
+ }[];
2676
+ extension: {
2677
+ id: string;
2678
+ createdAt: Date;
2679
+ updatedAt: Date;
2680
+ deletedAt: Date | null;
2681
+ userId: string | null;
2682
+ sipServerUrl: string;
2683
+ sipUserName: string;
2684
+ webphoneLoginUser: string;
2685
+ extensionId: string | null;
2686
+ extensionName: string;
2687
+ telephonySignature: string | null;
2688
+ };
2689
+ };
2690
+ entityId: string;
2691
+ entityType: {
2692
+ id: string;
2693
+ description: string;
2694
+ createdAt: Date;
2695
+ updatedAt: Date;
2696
+ deletedAt: Date | null;
2697
+ entity: string;
2698
+ };
2699
+ }[];
2228
2700
  contactId: string;
2229
2701
  assigneeId: string;
2230
2702
  creatorId: string;
@@ -1 +1 @@
1
- {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/ticket/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ/B,CAAC;AAIH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAkBvB,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;EAMrC,CAAC"}
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/ticket/schema.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAUpB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;EAOlC,CAAC;AAEH,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAQ/B,CAAC;AAIH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAmBvB,CAAC;AAEH,eAAO,MAAM,0BAA0B;;;;;;;;;;;;;;;;;;EAMrC,CAAC"}