@kl1/contracts 1.0.19 → 1.0.20
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.
- package/dist/index.js +1721 -1041
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1721 -1041
- package/dist/index.mjs.map +1 -1
- package/dist/src/call-log/schema.d.ts +8 -8
- package/dist/src/call-log/validation.d.ts +4 -4
- package/dist/src/chat/index.d.ts +4033 -242
- package/dist/src/chat/index.d.ts.map +1 -1
- package/dist/src/chat/schema.d.ts +309 -17
- package/dist/src/chat/schema.d.ts.map +1 -1
- package/dist/src/chat/validation.d.ts +5282 -10
- package/dist/src/chat/validation.d.ts.map +1 -1
- package/dist/src/company/index.d.ts +1803 -0
- package/dist/src/company/index.d.ts.map +1 -0
- package/dist/src/company/schema.d.ts +5 -5
- package/dist/src/company/validation.d.ts +852 -0
- package/dist/src/company/validation.d.ts.map +1 -0
- package/dist/src/contact/index.d.ts +21 -21
- package/dist/src/contact/schema.d.ts +3 -3
- package/dist/src/contact/validation.d.ts +21 -21
- package/dist/src/contract.d.ts +12761 -5021
- package/dist/src/contract.d.ts.map +1 -1
- package/dist/src/cx-log/index.d.ts +129 -0
- package/dist/src/cx-log/index.d.ts.map +1 -1
- package/dist/src/cx-log/schema.d.ts +95 -0
- package/dist/src/cx-log/schema.d.ts.map +1 -1
- package/dist/src/dashboard/index.d.ts +1852 -0
- package/dist/src/dashboard/index.d.ts.map +1 -0
- package/dist/src/dashboard/schema.d.ts +885 -0
- package/dist/src/dashboard/schema.d.ts.map +1 -0
- package/dist/src/dashboard/validation.d.ts +19 -0
- package/dist/src/dashboard/validation.d.ts.map +1 -0
- package/dist/src/mail/mail-contract.d.ts +12 -12
- package/dist/src/mail/room-contract.d.ts +12 -12
- package/dist/src/mail/schemas/room-validation.schema.d.ts +4 -4
- package/dist/src/mail/schemas/room.schema.d.ts +2 -2
- package/dist/src/messenger/index.d.ts +207 -10
- package/dist/src/messenger/index.d.ts.map +1 -1
- package/dist/src/telephony-cdr/schema.d.ts +4 -4
- package/dist/src/telephony-live-queue-call/schema.d.ts +2 -2
- package/dist/src/telephony-queue-call-count/schema.d.ts +2 -2
- package/dist/src/ticket/index.d.ts +59 -62
- package/dist/src/ticket/index.d.ts.map +1 -1
- package/dist/src/ticket/validation.d.ts +59 -62
- package/dist/src/ticket/validation.d.ts.map +1 -1
- package/dist/src/user/index.d.ts.map +1 -1
- package/package.json +4 -10
@@ -88,16 +88,16 @@ export declare const ticketContract: {
|
|
88
88
|
}>;
|
89
89
|
assignee: z.ZodObject<{
|
90
90
|
isRequired: z.ZodBoolean;
|
91
|
-
attributeId: z.ZodString
|
92
|
-
value: z.ZodString
|
91
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
92
|
+
value: z.ZodOptional<z.ZodString>;
|
93
93
|
}, "strip", z.ZodTypeAny, {
|
94
|
-
value: string;
|
95
94
|
isRequired: boolean;
|
96
|
-
attributeId
|
95
|
+
attributeId?: string | undefined;
|
96
|
+
value?: string | undefined;
|
97
97
|
}, {
|
98
|
-
value: string;
|
99
98
|
isRequired: boolean;
|
100
|
-
attributeId
|
99
|
+
attributeId?: string | undefined;
|
100
|
+
value?: string | undefined;
|
101
101
|
}>;
|
102
102
|
channel: z.ZodObject<{
|
103
103
|
isRequired: z.ZodBoolean;
|
@@ -157,13 +157,13 @@ export declare const ticketContract: {
|
|
157
157
|
attributeId: string;
|
158
158
|
isDefaultAttribute: boolean;
|
159
159
|
}>, "many">;
|
160
|
-
reasonToAssign: z.ZodObject<{
|
160
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
161
161
|
value: z.ZodString;
|
162
162
|
}, "strip", z.ZodTypeAny, {
|
163
163
|
value: string;
|
164
164
|
}, {
|
165
165
|
value: string;
|
166
|
-
}
|
166
|
+
}>>;
|
167
167
|
}, "strip", z.ZodTypeAny, {
|
168
168
|
type: {
|
169
169
|
value: string;
|
@@ -218,13 +218,13 @@ export declare const ticketContract: {
|
|
218
218
|
attributeId: string;
|
219
219
|
};
|
220
220
|
assignee: {
|
221
|
-
value: string;
|
222
221
|
isRequired: boolean;
|
223
|
-
attributeId
|
222
|
+
attributeId?: string | undefined;
|
223
|
+
value?: string | undefined;
|
224
224
|
};
|
225
|
-
reasonToAssign
|
225
|
+
reasonToAssign?: {
|
226
226
|
value: string;
|
227
|
-
};
|
227
|
+
} | undefined;
|
228
228
|
}, {
|
229
229
|
type: {
|
230
230
|
value: string;
|
@@ -279,13 +279,13 @@ export declare const ticketContract: {
|
|
279
279
|
attributeId: string;
|
280
280
|
};
|
281
281
|
assignee: {
|
282
|
-
value: string;
|
283
282
|
isRequired: boolean;
|
284
|
-
attributeId
|
283
|
+
attributeId?: string | undefined;
|
284
|
+
value?: string | undefined;
|
285
285
|
};
|
286
|
-
reasonToAssign
|
286
|
+
reasonToAssign?: {
|
287
287
|
value: string;
|
288
|
-
};
|
288
|
+
} | undefined;
|
289
289
|
}>;
|
290
290
|
summary: "Create a new ticket";
|
291
291
|
method: "POST";
|
@@ -1639,7 +1639,7 @@ export declare const ticketContract: {
|
|
1639
1639
|
}, {
|
1640
1640
|
id: string;
|
1641
1641
|
}>;
|
1642
|
-
query: z.
|
1642
|
+
query: z.ZodObject<{
|
1643
1643
|
page: z.ZodDefault<z.ZodNumber>;
|
1644
1644
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
1645
1645
|
}, "strip", z.ZodTypeAny, {
|
@@ -1648,7 +1648,7 @@ export declare const ticketContract: {
|
|
1648
1648
|
}, {
|
1649
1649
|
page?: number | undefined;
|
1650
1650
|
pageSize?: number | undefined;
|
1651
|
-
}
|
1651
|
+
}>;
|
1652
1652
|
responses: {
|
1653
1653
|
200: z.ZodObject<{
|
1654
1654
|
total: z.ZodNumber;
|
@@ -1939,7 +1939,7 @@ export declare const ticketContract: {
|
|
1939
1939
|
};
|
1940
1940
|
updateTicket: {
|
1941
1941
|
body: z.ZodObject<{
|
1942
|
-
|
1942
|
+
title: z.ZodObject<{
|
1943
1943
|
isRequired: z.ZodBoolean;
|
1944
1944
|
attributeId: z.ZodString;
|
1945
1945
|
value: z.ZodString;
|
@@ -1952,7 +1952,7 @@ export declare const ticketContract: {
|
|
1952
1952
|
isRequired: boolean;
|
1953
1953
|
attributeId: string;
|
1954
1954
|
}>;
|
1955
|
-
|
1955
|
+
description: z.ZodObject<{
|
1956
1956
|
isRequired: z.ZodBoolean;
|
1957
1957
|
attributeId: z.ZodString;
|
1958
1958
|
value: z.ZodString;
|
@@ -1965,7 +1965,7 @@ export declare const ticketContract: {
|
|
1965
1965
|
isRequired: boolean;
|
1966
1966
|
attributeId: string;
|
1967
1967
|
}>;
|
1968
|
-
|
1968
|
+
status: z.ZodObject<{
|
1969
1969
|
isRequired: z.ZodBoolean;
|
1970
1970
|
attributeId: z.ZodString;
|
1971
1971
|
value: z.ZodString;
|
@@ -1978,7 +1978,7 @@ export declare const ticketContract: {
|
|
1978
1978
|
isRequired: boolean;
|
1979
1979
|
attributeId: string;
|
1980
1980
|
}>;
|
1981
|
-
|
1981
|
+
type: z.ZodObject<{
|
1982
1982
|
isRequired: z.ZodBoolean;
|
1983
1983
|
attributeId: z.ZodString;
|
1984
1984
|
value: z.ZodString;
|
@@ -1991,7 +1991,7 @@ export declare const ticketContract: {
|
|
1991
1991
|
isRequired: boolean;
|
1992
1992
|
attributeId: string;
|
1993
1993
|
}>;
|
1994
|
-
|
1994
|
+
priority: z.ZodObject<{
|
1995
1995
|
isRequired: z.ZodBoolean;
|
1996
1996
|
attributeId: z.ZodString;
|
1997
1997
|
value: z.ZodString;
|
@@ -2004,7 +2004,7 @@ export declare const ticketContract: {
|
|
2004
2004
|
isRequired: boolean;
|
2005
2005
|
attributeId: string;
|
2006
2006
|
}>;
|
2007
|
-
|
2007
|
+
contact: z.ZodObject<{
|
2008
2008
|
isRequired: z.ZodBoolean;
|
2009
2009
|
attributeId: z.ZodString;
|
2010
2010
|
value: z.ZodString;
|
@@ -2017,20 +2017,20 @@ export declare const ticketContract: {
|
|
2017
2017
|
isRequired: boolean;
|
2018
2018
|
attributeId: string;
|
2019
2019
|
}>;
|
2020
|
-
|
2020
|
+
assignee: z.ZodObject<{
|
2021
2021
|
isRequired: z.ZodBoolean;
|
2022
|
-
attributeId: z.ZodString
|
2023
|
-
value: z.
|
2022
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
2023
|
+
value: z.ZodOptional<z.ZodString>;
|
2024
2024
|
}, "strip", z.ZodTypeAny, {
|
2025
|
-
value: string[];
|
2026
2025
|
isRequired: boolean;
|
2027
|
-
attributeId
|
2026
|
+
attributeId?: string | undefined;
|
2027
|
+
value?: string | undefined;
|
2028
2028
|
}, {
|
2029
|
-
value: string[];
|
2030
2029
|
isRequired: boolean;
|
2031
|
-
attributeId
|
2030
|
+
attributeId?: string | undefined;
|
2031
|
+
value?: string | undefined;
|
2032
2032
|
}>;
|
2033
|
-
|
2033
|
+
channel: z.ZodObject<{
|
2034
2034
|
isRequired: z.ZodBoolean;
|
2035
2035
|
attributeId: z.ZodString;
|
2036
2036
|
value: z.ZodString;
|
@@ -2043,26 +2043,20 @@ export declare const ticketContract: {
|
|
2043
2043
|
isRequired: boolean;
|
2044
2044
|
attributeId: string;
|
2045
2045
|
}>;
|
2046
|
-
|
2046
|
+
tags: z.ZodObject<{
|
2047
2047
|
isRequired: z.ZodBoolean;
|
2048
2048
|
attributeId: z.ZodString;
|
2049
|
-
value: z.
|
2050
|
-
type: z.ZodString;
|
2051
|
-
isDefaultAttribute: z.ZodBoolean;
|
2049
|
+
value: z.ZodArray<z.ZodString, "many">;
|
2052
2050
|
}, "strip", z.ZodTypeAny, {
|
2053
|
-
|
2054
|
-
value: (string | string[]) & (string | string[] | undefined);
|
2051
|
+
value: string[];
|
2055
2052
|
isRequired: boolean;
|
2056
2053
|
attributeId: string;
|
2057
|
-
isDefaultAttribute: boolean;
|
2058
2054
|
}, {
|
2059
|
-
|
2060
|
-
value: (string | string[]) & (string | string[] | undefined);
|
2055
|
+
value: string[];
|
2061
2056
|
isRequired: boolean;
|
2062
2057
|
attributeId: string;
|
2063
|
-
|
2064
|
-
|
2065
|
-
tags: z.ZodObject<{
|
2058
|
+
}>;
|
2059
|
+
categories: z.ZodObject<{
|
2066
2060
|
isRequired: z.ZodBoolean;
|
2067
2061
|
attributeId: z.ZodString;
|
2068
2062
|
value: z.ZodArray<z.ZodString, "many">;
|
@@ -2075,34 +2069,38 @@ export declare const ticketContract: {
|
|
2075
2069
|
isRequired: boolean;
|
2076
2070
|
attributeId: string;
|
2077
2071
|
}>;
|
2078
|
-
|
2072
|
+
customFields: z.ZodArray<z.ZodObject<{
|
2079
2073
|
isRequired: z.ZodBoolean;
|
2080
2074
|
attributeId: z.ZodString;
|
2081
|
-
value: z.ZodString
|
2075
|
+
value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
2076
|
+
type: z.ZodString;
|
2077
|
+
isDefaultAttribute: z.ZodBoolean;
|
2082
2078
|
}, "strip", z.ZodTypeAny, {
|
2083
|
-
|
2079
|
+
type: string;
|
2080
|
+
value: (string | string[]) & (string | string[] | undefined);
|
2084
2081
|
isRequired: boolean;
|
2085
2082
|
attributeId: string;
|
2083
|
+
isDefaultAttribute: boolean;
|
2086
2084
|
}, {
|
2087
|
-
|
2085
|
+
type: string;
|
2086
|
+
value: (string | string[]) & (string | string[] | undefined);
|
2088
2087
|
isRequired: boolean;
|
2089
2088
|
attributeId: string;
|
2090
|
-
|
2091
|
-
|
2089
|
+
isDefaultAttribute: boolean;
|
2090
|
+
}>, "many">;
|
2091
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
2092
2092
|
value: z.ZodString;
|
2093
2093
|
}, "strip", z.ZodTypeAny, {
|
2094
2094
|
value: string;
|
2095
2095
|
}, {
|
2096
2096
|
value: string;
|
2097
|
-
}
|
2098
|
-
id: z.ZodString;
|
2097
|
+
}>>;
|
2099
2098
|
}, "strip", z.ZodTypeAny, {
|
2100
2099
|
type: {
|
2101
2100
|
value: string;
|
2102
2101
|
isRequired: boolean;
|
2103
2102
|
attributeId: string;
|
2104
2103
|
};
|
2105
|
-
id: string;
|
2106
2104
|
channel: {
|
2107
2105
|
value: string;
|
2108
2106
|
isRequired: boolean;
|
@@ -2151,20 +2149,19 @@ export declare const ticketContract: {
|
|
2151
2149
|
attributeId: string;
|
2152
2150
|
};
|
2153
2151
|
assignee: {
|
2154
|
-
value: string;
|
2155
2152
|
isRequired: boolean;
|
2156
|
-
attributeId
|
2153
|
+
attributeId?: string | undefined;
|
2154
|
+
value?: string | undefined;
|
2157
2155
|
};
|
2158
|
-
reasonToAssign
|
2156
|
+
reasonToAssign?: {
|
2159
2157
|
value: string;
|
2160
|
-
};
|
2158
|
+
} | undefined;
|
2161
2159
|
}, {
|
2162
2160
|
type: {
|
2163
2161
|
value: string;
|
2164
2162
|
isRequired: boolean;
|
2165
2163
|
attributeId: string;
|
2166
2164
|
};
|
2167
|
-
id: string;
|
2168
2165
|
channel: {
|
2169
2166
|
value: string;
|
2170
2167
|
isRequired: boolean;
|
@@ -2213,13 +2210,13 @@ export declare const ticketContract: {
|
|
2213
2210
|
attributeId: string;
|
2214
2211
|
};
|
2215
2212
|
assignee: {
|
2216
|
-
value: string;
|
2217
2213
|
isRequired: boolean;
|
2218
|
-
attributeId
|
2214
|
+
attributeId?: string | undefined;
|
2215
|
+
value?: string | undefined;
|
2219
2216
|
};
|
2220
|
-
reasonToAssign
|
2217
|
+
reasonToAssign?: {
|
2221
2218
|
value: string;
|
2222
|
-
};
|
2219
|
+
} | undefined;
|
2223
2220
|
}>;
|
2224
2221
|
summary: "Update a contact";
|
2225
2222
|
method: "PATCH";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ticket/index.ts"],"names":[],"mappings":"AASA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EACL,mCAAmC,EACnC,4BAA4B,EAC5B,4BAA4B,EAC5B,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAExE,eAAO,MAAM,cAAc
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/ticket/index.ts"],"names":[],"mappings":"AASA,OAAO,CAAC,MAAM,KAAK,CAAC;AAMpB,OAAO,EACL,mCAAmC,EACnC,4BAA4B,EAC5B,4BAA4B,EAC5B,uBAAuB,EACvB,kBAAkB,EACnB,MAAM,cAAc,CAAC;AAGtB,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,mBAAmB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,4BAA4B,CAAC,CAAC;AAC/E,MAAM,MAAM,oCAAoC,GAAG,CAAC,CAAC,KAAK,CACxD,OAAO,mCAAmC,CAC3C,CAAC;AAEF,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,uBAAuB,CAAC,CAAC;AAC/E,MAAM,MAAM,sBAAsB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,kBAAkB,CAAC,CAAC;AAExE,eAAO,MAAM,cAAc;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CA0X1B,CAAC"}
|
@@ -90,16 +90,16 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
90
90
|
}>;
|
91
91
|
assignee: z.ZodObject<{
|
92
92
|
isRequired: z.ZodBoolean;
|
93
|
-
attributeId: z.ZodString
|
94
|
-
value: z.ZodString
|
93
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
94
|
+
value: z.ZodOptional<z.ZodString>;
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
96
|
-
value: string;
|
97
96
|
isRequired: boolean;
|
98
|
-
attributeId
|
97
|
+
attributeId?: string | undefined;
|
98
|
+
value?: string | undefined;
|
99
99
|
}, {
|
100
|
-
value: string;
|
101
100
|
isRequired: boolean;
|
102
|
-
attributeId
|
101
|
+
attributeId?: string | undefined;
|
102
|
+
value?: string | undefined;
|
103
103
|
}>;
|
104
104
|
channel: z.ZodObject<{
|
105
105
|
isRequired: z.ZodBoolean;
|
@@ -159,13 +159,13 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
159
159
|
attributeId: string;
|
160
160
|
isDefaultAttribute: boolean;
|
161
161
|
}>, "many">;
|
162
|
-
reasonToAssign: z.ZodObject<{
|
162
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
163
163
|
value: z.ZodString;
|
164
164
|
}, "strip", z.ZodTypeAny, {
|
165
165
|
value: string;
|
166
166
|
}, {
|
167
167
|
value: string;
|
168
|
-
}
|
168
|
+
}>>;
|
169
169
|
}, "strip", z.ZodTypeAny, {
|
170
170
|
type: {
|
171
171
|
value: string;
|
@@ -220,13 +220,13 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
220
220
|
attributeId: string;
|
221
221
|
};
|
222
222
|
assignee: {
|
223
|
-
value: string;
|
224
223
|
isRequired: boolean;
|
225
|
-
attributeId
|
224
|
+
attributeId?: string | undefined;
|
225
|
+
value?: string | undefined;
|
226
226
|
};
|
227
|
-
reasonToAssign
|
227
|
+
reasonToAssign?: {
|
228
228
|
value: string;
|
229
|
-
};
|
229
|
+
} | undefined;
|
230
230
|
}, {
|
231
231
|
type: {
|
232
232
|
value: string;
|
@@ -281,16 +281,16 @@ export declare const CreateTicketValidationSchema: z.ZodObject<{
|
|
281
281
|
attributeId: string;
|
282
282
|
};
|
283
283
|
assignee: {
|
284
|
-
value: string;
|
285
284
|
isRequired: boolean;
|
286
|
-
attributeId
|
285
|
+
attributeId?: string | undefined;
|
286
|
+
value?: string | undefined;
|
287
287
|
};
|
288
|
-
reasonToAssign
|
288
|
+
reasonToAssign?: {
|
289
289
|
value: string;
|
290
|
-
};
|
290
|
+
} | undefined;
|
291
291
|
}>;
|
292
292
|
export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
293
|
-
|
293
|
+
title: z.ZodObject<{
|
294
294
|
isRequired: z.ZodBoolean;
|
295
295
|
attributeId: z.ZodString;
|
296
296
|
value: z.ZodString;
|
@@ -303,7 +303,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
303
303
|
isRequired: boolean;
|
304
304
|
attributeId: string;
|
305
305
|
}>;
|
306
|
-
|
306
|
+
description: z.ZodObject<{
|
307
307
|
isRequired: z.ZodBoolean;
|
308
308
|
attributeId: z.ZodString;
|
309
309
|
value: z.ZodString;
|
@@ -316,7 +316,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
316
316
|
isRequired: boolean;
|
317
317
|
attributeId: string;
|
318
318
|
}>;
|
319
|
-
|
319
|
+
status: z.ZodObject<{
|
320
320
|
isRequired: z.ZodBoolean;
|
321
321
|
attributeId: z.ZodString;
|
322
322
|
value: z.ZodString;
|
@@ -329,7 +329,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
329
329
|
isRequired: boolean;
|
330
330
|
attributeId: string;
|
331
331
|
}>;
|
332
|
-
|
332
|
+
type: z.ZodObject<{
|
333
333
|
isRequired: z.ZodBoolean;
|
334
334
|
attributeId: z.ZodString;
|
335
335
|
value: z.ZodString;
|
@@ -342,7 +342,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
342
342
|
isRequired: boolean;
|
343
343
|
attributeId: string;
|
344
344
|
}>;
|
345
|
-
|
345
|
+
priority: z.ZodObject<{
|
346
346
|
isRequired: z.ZodBoolean;
|
347
347
|
attributeId: z.ZodString;
|
348
348
|
value: z.ZodString;
|
@@ -355,7 +355,7 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
355
355
|
isRequired: boolean;
|
356
356
|
attributeId: string;
|
357
357
|
}>;
|
358
|
-
|
358
|
+
contact: z.ZodObject<{
|
359
359
|
isRequired: z.ZodBoolean;
|
360
360
|
attributeId: z.ZodString;
|
361
361
|
value: z.ZodString;
|
@@ -368,20 +368,20 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
368
368
|
isRequired: boolean;
|
369
369
|
attributeId: string;
|
370
370
|
}>;
|
371
|
-
|
371
|
+
assignee: z.ZodObject<{
|
372
372
|
isRequired: z.ZodBoolean;
|
373
|
-
attributeId: z.ZodString
|
374
|
-
value: z.
|
373
|
+
attributeId: z.ZodOptional<z.ZodString>;
|
374
|
+
value: z.ZodOptional<z.ZodString>;
|
375
375
|
}, "strip", z.ZodTypeAny, {
|
376
|
-
value: string[];
|
377
376
|
isRequired: boolean;
|
378
|
-
attributeId
|
377
|
+
attributeId?: string | undefined;
|
378
|
+
value?: string | undefined;
|
379
379
|
}, {
|
380
|
-
value: string[];
|
381
380
|
isRequired: boolean;
|
382
|
-
attributeId
|
381
|
+
attributeId?: string | undefined;
|
382
|
+
value?: string | undefined;
|
383
383
|
}>;
|
384
|
-
|
384
|
+
channel: z.ZodObject<{
|
385
385
|
isRequired: z.ZodBoolean;
|
386
386
|
attributeId: z.ZodString;
|
387
387
|
value: z.ZodString;
|
@@ -394,26 +394,20 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
394
394
|
isRequired: boolean;
|
395
395
|
attributeId: string;
|
396
396
|
}>;
|
397
|
-
|
397
|
+
tags: z.ZodObject<{
|
398
398
|
isRequired: z.ZodBoolean;
|
399
399
|
attributeId: z.ZodString;
|
400
|
-
value: z.
|
401
|
-
type: z.ZodString;
|
402
|
-
isDefaultAttribute: z.ZodBoolean;
|
400
|
+
value: z.ZodArray<z.ZodString, "many">;
|
403
401
|
}, "strip", z.ZodTypeAny, {
|
404
|
-
|
405
|
-
value: (string | string[]) & (string | string[] | undefined);
|
402
|
+
value: string[];
|
406
403
|
isRequired: boolean;
|
407
404
|
attributeId: string;
|
408
|
-
isDefaultAttribute: boolean;
|
409
405
|
}, {
|
410
|
-
|
411
|
-
value: (string | string[]) & (string | string[] | undefined);
|
406
|
+
value: string[];
|
412
407
|
isRequired: boolean;
|
413
408
|
attributeId: string;
|
414
|
-
|
415
|
-
|
416
|
-
tags: z.ZodObject<{
|
409
|
+
}>;
|
410
|
+
categories: z.ZodObject<{
|
417
411
|
isRequired: z.ZodBoolean;
|
418
412
|
attributeId: z.ZodString;
|
419
413
|
value: z.ZodArray<z.ZodString, "many">;
|
@@ -426,34 +420,38 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
426
420
|
isRequired: boolean;
|
427
421
|
attributeId: string;
|
428
422
|
}>;
|
429
|
-
|
423
|
+
customFields: z.ZodArray<z.ZodObject<{
|
430
424
|
isRequired: z.ZodBoolean;
|
431
425
|
attributeId: z.ZodString;
|
432
|
-
value: z.ZodString
|
426
|
+
value: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
427
|
+
type: z.ZodString;
|
428
|
+
isDefaultAttribute: z.ZodBoolean;
|
433
429
|
}, "strip", z.ZodTypeAny, {
|
434
|
-
|
430
|
+
type: string;
|
431
|
+
value: (string | string[]) & (string | string[] | undefined);
|
435
432
|
isRequired: boolean;
|
436
433
|
attributeId: string;
|
434
|
+
isDefaultAttribute: boolean;
|
437
435
|
}, {
|
438
|
-
|
436
|
+
type: string;
|
437
|
+
value: (string | string[]) & (string | string[] | undefined);
|
439
438
|
isRequired: boolean;
|
440
439
|
attributeId: string;
|
441
|
-
|
442
|
-
|
440
|
+
isDefaultAttribute: boolean;
|
441
|
+
}>, "many">;
|
442
|
+
reasonToAssign: z.ZodOptional<z.ZodObject<{
|
443
443
|
value: z.ZodString;
|
444
444
|
}, "strip", z.ZodTypeAny, {
|
445
445
|
value: string;
|
446
446
|
}, {
|
447
447
|
value: string;
|
448
|
-
}
|
449
|
-
id: z.ZodString;
|
448
|
+
}>>;
|
450
449
|
}, "strip", z.ZodTypeAny, {
|
451
450
|
type: {
|
452
451
|
value: string;
|
453
452
|
isRequired: boolean;
|
454
453
|
attributeId: string;
|
455
454
|
};
|
456
|
-
id: string;
|
457
455
|
channel: {
|
458
456
|
value: string;
|
459
457
|
isRequired: boolean;
|
@@ -502,20 +500,19 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
502
500
|
attributeId: string;
|
503
501
|
};
|
504
502
|
assignee: {
|
505
|
-
value: string;
|
506
503
|
isRequired: boolean;
|
507
|
-
attributeId
|
504
|
+
attributeId?: string | undefined;
|
505
|
+
value?: string | undefined;
|
508
506
|
};
|
509
|
-
reasonToAssign
|
507
|
+
reasonToAssign?: {
|
510
508
|
value: string;
|
511
|
-
};
|
509
|
+
} | undefined;
|
512
510
|
}, {
|
513
511
|
type: {
|
514
512
|
value: string;
|
515
513
|
isRequired: boolean;
|
516
514
|
attributeId: string;
|
517
515
|
};
|
518
|
-
id: string;
|
519
516
|
channel: {
|
520
517
|
value: string;
|
521
518
|
isRequired: boolean;
|
@@ -564,13 +561,13 @@ export declare const UpdateTicketValidationSchema: z.ZodObject<{
|
|
564
561
|
attributeId: string;
|
565
562
|
};
|
566
563
|
assignee: {
|
567
|
-
value: string;
|
568
564
|
isRequired: boolean;
|
569
|
-
attributeId
|
565
|
+
attributeId?: string | undefined;
|
566
|
+
value?: string | undefined;
|
570
567
|
};
|
571
|
-
reasonToAssign
|
568
|
+
reasonToAssign?: {
|
572
569
|
value: string;
|
573
|
-
};
|
570
|
+
} | undefined;
|
574
571
|
}>;
|
575
572
|
export declare const TicketAttachmentRecordSchema: z.ZodObject<{
|
576
573
|
bucketName: z.ZodString;
|
@@ -634,7 +631,7 @@ export declare const CreateTicketAttachmentRecordsSchema: z.ZodObject<{
|
|
634
631
|
fileSize: number;
|
635
632
|
}[];
|
636
633
|
}>;
|
637
|
-
export declare const TicketParamsSchema: z.
|
634
|
+
export declare const TicketParamsSchema: z.ZodObject<{
|
638
635
|
page: z.ZodDefault<z.ZodNumber>;
|
639
636
|
pageSize: z.ZodDefault<z.ZodNumber>;
|
640
637
|
}, "strip", z.ZodTypeAny, {
|
@@ -643,7 +640,7 @@ export declare const TicketParamsSchema: z.ZodOptional<z.ZodObject<{
|
|
643
640
|
}, {
|
644
641
|
page?: number | undefined;
|
645
642
|
pageSize?: number | undefined;
|
646
|
-
}
|
643
|
+
}>;
|
647
644
|
export declare const CustomFieldQuery: z.ZodObject<{
|
648
645
|
attributeId: z.ZodString;
|
649
646
|
type: z.ZodString;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/ticket/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
1
|
+
{"version":3,"file":"validation.d.ts","sourceRoot":"","sources":["../../../src/ticket/validation.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,eAAO,MAAM,UAAU;;;;;;;;;EAGrB,CAAC;AAMH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAwBvC,CAAC;AAEH,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAA+B,CAAC;AAEzE,eAAO,MAAM,4BAA4B;;;;;;;;;;;;;;;;;;EAMvC,CAAC;AAEH,eAAO,MAAM,mCAAmC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAI9C,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;EAG7B,CAAC;AAEH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EAI3B,CAAC;AAEH,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAyBlC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/user/index.ts"],"names":[],"mappings":"AACA,OAAO,CAAC,MAAM,KAAK,CAAC;AASpB,OAAO,EAAE,gBAAgB,EAAE,gBAAgB,EAAE,MAAM,cAAc,CAAC;AAGlE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,MAAM,MAAM,iBAAiB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,gBAAgB,CAAC,CAAC;AACjE,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyFxB,CAAC"}
|
package/package.json
CHANGED
@@ -1,13 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@kl1/contracts",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.20",
|
4
4
|
"description": "",
|
5
5
|
"main": "dist/index.js",
|
6
6
|
"types": "dist/src/index.d.ts",
|
7
7
|
"module": "dist/index.mjs",
|
8
|
-
"files": [
|
9
|
-
"dist"
|
10
|
-
],
|
8
|
+
"files": ["dist"],
|
11
9
|
"keywords": [],
|
12
10
|
"author": "",
|
13
11
|
"license": "ISC",
|
@@ -21,16 +19,12 @@
|
|
21
19
|
},
|
22
20
|
"watch": {
|
23
21
|
"build": {
|
24
|
-
"patterns": [
|
25
|
-
"src"
|
26
|
-
],
|
22
|
+
"patterns": ["src"],
|
27
23
|
"extensions": "ts",
|
28
24
|
"quite": true
|
29
25
|
},
|
30
26
|
"types": {
|
31
|
-
"patterns": [
|
32
|
-
"src"
|
33
|
-
],
|
27
|
+
"patterns": ["src"],
|
34
28
|
"extensions": "ts",
|
35
29
|
"quite": true
|
36
30
|
}
|