@open-norantec/utilities 1.0.0-alpha.16 → 1.0.0-alpha.18

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.d.ts CHANGED
@@ -5,3 +5,4 @@ export * from './json-util.class';
5
5
  export * from './string-util.class';
6
6
  export * from './user-agent-util.class';
7
7
  export * from './enum-util.class';
8
+ export * from './schema-util.class';
package/dist/index.js CHANGED
@@ -21,3 +21,4 @@ __exportStar(require("./json-util.class"), exports);
21
21
  __exportStar(require("./string-util.class"), exports);
22
22
  __exportStar(require("./user-agent-util.class"), exports);
23
23
  __exportStar(require("./enum-util.class"), exports);
24
+ __exportStar(require("./schema-util.class"), exports);
@@ -0,0 +1,222 @@
1
+ import { z } from 'zod';
2
+ export declare class SchemaUtil {
3
+ static readonly ID: z.ZodString;
4
+ static readonly ID_OBJECT: z.ZodObject<{
5
+ id: z.ZodString;
6
+ }, "strip", z.ZodTypeAny, {
7
+ id?: string;
8
+ }, {
9
+ id?: string;
10
+ }>;
11
+ static readonly JSON_STRING: z.ZodEffects<z.ZodString, string, string>;
12
+ static readonly TIME_RECORD: z.ZodObject<{
13
+ createdAt: z.ZodOptional<z.ZodDate>;
14
+ updatedAt: z.ZodOptional<z.ZodDate>;
15
+ }, "strip", z.ZodTypeAny, {
16
+ createdAt?: Date;
17
+ updatedAt?: Date;
18
+ }, {
19
+ createdAt?: Date;
20
+ updatedAt?: Date;
21
+ }>;
22
+ static readonly ORDER_ORIENTATION: z.ZodEnum<["ASC", "DESC"]>;
23
+ static readonly WHERE_CLAUSE_OP: z.ZodEnum<["adjacent", "any", "between", "col", "contained", "contains", "endsWith", "eq", "gt", "gte", "iLike", "in", "iRegexp", "is", "like", "lt", "lte", "match", "ne", "noExtendLeft", "noExtendRight", "not", "notBetween", "notILike", "notIn", "notIRegexp", "notLike", "notRegexp", "overlap", "placeholder", "regexp", "startsWith", "strictLeft", "strictRight", "substring", "values"]>;
24
+ static readonly COMMON_RESULT: z.ZodObject<{
25
+ succeeded: z.ZodBoolean;
26
+ content: z.ZodOptional<z.ZodString>;
27
+ } & {
28
+ id: z.ZodOptional<z.ZodString>;
29
+ } & {
30
+ createdAt: z.ZodOptional<z.ZodDate>;
31
+ updatedAt: z.ZodOptional<z.ZodDate>;
32
+ }, "strip", z.ZodTypeAny, {
33
+ id?: string;
34
+ createdAt?: Date;
35
+ updatedAt?: Date;
36
+ succeeded?: boolean;
37
+ content?: string;
38
+ }, {
39
+ id?: string;
40
+ createdAt?: Date;
41
+ updatedAt?: Date;
42
+ succeeded?: boolean;
43
+ content?: string;
44
+ }>;
45
+ static readonly WHERE_CLAUSE: z.ZodObject<{
46
+ field: z.ZodString;
47
+ op: z.ZodEnum<["adjacent", "any", "between", "col", "contained", "contains", "endsWith", "eq", "gt", "gte", "iLike", "in", "iRegexp", "is", "like", "lt", "lte", "match", "ne", "noExtendLeft", "noExtendRight", "not", "notBetween", "notILike", "notIn", "notIRegexp", "notLike", "notRegexp", "overlap", "placeholder", "regexp", "startsWith", "strictLeft", "strictRight", "substring", "values"]>;
48
+ value: z.ZodEffects<z.ZodString, string, string>;
49
+ }, "strip", z.ZodTypeAny, {
50
+ value?: string;
51
+ field?: string;
52
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
53
+ }, {
54
+ value?: string;
55
+ field?: string;
56
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
57
+ }>;
58
+ static readonly ORDER_ITEM: z.ZodObject<{
59
+ field: z.ZodString;
60
+ orientation: z.ZodEnum<["ASC", "DESC"]>;
61
+ }, "strip", z.ZodTypeAny, {
62
+ field?: string;
63
+ orientation?: "ASC" | "DESC";
64
+ }, {
65
+ field?: string;
66
+ orientation?: "ASC" | "DESC";
67
+ }>;
68
+ static readonly PAGINATION_OPTIONS: z.ZodObject<{
69
+ createdAtField: z.ZodUnion<[z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodUndefined]>;
70
+ cursorField: z.ZodUnion<[z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodUndefined]>;
71
+ lastCursor: z.ZodOptional<z.ZodString>;
72
+ limit: z.ZodOptional<z.ZodNumber>;
73
+ order: z.ZodOptional<z.ZodArray<z.ZodObject<{
74
+ field: z.ZodString;
75
+ orientation: z.ZodEnum<["ASC", "DESC"]>;
76
+ }, "strip", z.ZodTypeAny, {
77
+ field?: string;
78
+ orientation?: "ASC" | "DESC";
79
+ }, {
80
+ field?: string;
81
+ orientation?: "ASC" | "DESC";
82
+ }>, "many">>;
83
+ where: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
84
+ field: z.ZodString;
85
+ op: z.ZodEnum<["adjacent", "any", "between", "col", "contained", "contains", "endsWith", "eq", "gt", "gte", "iLike", "in", "iRegexp", "is", "like", "lt", "lte", "match", "ne", "noExtendLeft", "noExtendRight", "not", "notBetween", "notILike", "notIn", "notIRegexp", "notLike", "notRegexp", "overlap", "placeholder", "regexp", "startsWith", "strictLeft", "strictRight", "substring", "values"]>;
86
+ value: z.ZodEffects<z.ZodString, string, string>;
87
+ }, "strip", z.ZodTypeAny, {
88
+ value?: string;
89
+ field?: string;
90
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
91
+ }, {
92
+ value?: string;
93
+ field?: string;
94
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
95
+ }>, "many">, "many">>;
96
+ }, "strip", z.ZodTypeAny, {
97
+ createdAtField?: string;
98
+ cursorField?: string;
99
+ lastCursor?: string;
100
+ limit?: number;
101
+ order?: {
102
+ field?: string;
103
+ orientation?: "ASC" | "DESC";
104
+ }[];
105
+ where?: {
106
+ value?: string;
107
+ field?: string;
108
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
109
+ }[][];
110
+ }, {
111
+ createdAtField?: string;
112
+ cursorField?: string;
113
+ lastCursor?: string;
114
+ limit?: number;
115
+ order?: {
116
+ field?: string;
117
+ orientation?: "ASC" | "DESC";
118
+ }[];
119
+ where?: {
120
+ value?: string;
121
+ field?: string;
122
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
123
+ }[][];
124
+ }>;
125
+ static readonly FIND_ONE_OPTIONS: z.ZodObject<Omit<{
126
+ createdAtField: z.ZodUnion<[z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodUndefined]>;
127
+ cursorField: z.ZodUnion<[z.ZodDefault<z.ZodOptional<z.ZodString>>, z.ZodUndefined]>;
128
+ lastCursor: z.ZodOptional<z.ZodString>;
129
+ limit: z.ZodOptional<z.ZodNumber>;
130
+ order: z.ZodOptional<z.ZodArray<z.ZodObject<{
131
+ field: z.ZodString;
132
+ orientation: z.ZodEnum<["ASC", "DESC"]>;
133
+ }, "strip", z.ZodTypeAny, {
134
+ field?: string;
135
+ orientation?: "ASC" | "DESC";
136
+ }, {
137
+ field?: string;
138
+ orientation?: "ASC" | "DESC";
139
+ }>, "many">>;
140
+ where: z.ZodOptional<z.ZodArray<z.ZodArray<z.ZodObject<{
141
+ field: z.ZodString;
142
+ op: z.ZodEnum<["adjacent", "any", "between", "col", "contained", "contains", "endsWith", "eq", "gt", "gte", "iLike", "in", "iRegexp", "is", "like", "lt", "lte", "match", "ne", "noExtendLeft", "noExtendRight", "not", "notBetween", "notILike", "notIn", "notIRegexp", "notLike", "notRegexp", "overlap", "placeholder", "regexp", "startsWith", "strictLeft", "strictRight", "substring", "values"]>;
143
+ value: z.ZodEffects<z.ZodString, string, string>;
144
+ }, "strip", z.ZodTypeAny, {
145
+ value?: string;
146
+ field?: string;
147
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
148
+ }, {
149
+ value?: string;
150
+ field?: string;
151
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
152
+ }>, "many">, "many">>;
153
+ }, "lastCursor" | "limit" | "order">, "strip", z.ZodTypeAny, {
154
+ createdAtField?: string;
155
+ cursorField?: string;
156
+ where?: {
157
+ value?: string;
158
+ field?: string;
159
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
160
+ }[][];
161
+ }, {
162
+ createdAtField?: string;
163
+ cursorField?: string;
164
+ where?: {
165
+ value?: string;
166
+ field?: string;
167
+ op?: "values" | "adjacent" | "any" | "between" | "col" | "contained" | "contains" | "endsWith" | "eq" | "gt" | "gte" | "iLike" | "in" | "iRegexp" | "is" | "like" | "lt" | "lte" | "match" | "ne" | "noExtendLeft" | "noExtendRight" | "not" | "notBetween" | "notILike" | "notIn" | "notIRegexp" | "notLike" | "notRegexp" | "overlap" | "placeholder" | "regexp" | "startsWith" | "strictLeft" | "strictRight" | "substring";
168
+ }[][];
169
+ }>;
170
+ static readonly PAGINATION_RESULT: z.ZodObject<{
171
+ hasNext: z.ZodBoolean;
172
+ nextCursor: z.ZodUnion<[z.ZodString, z.ZodNull]>;
173
+ previousCursor: z.ZodUnion<[z.ZodString, z.ZodNull]>;
174
+ }, "strip", z.ZodTypeAny, {
175
+ hasNext?: boolean;
176
+ nextCursor?: string;
177
+ previousCursor?: string;
178
+ }, {
179
+ hasNext?: boolean;
180
+ nextCursor?: string;
181
+ previousCursor?: string;
182
+ }>;
183
+ static readonly FILE: z.ZodObject<{
184
+ mimeType: z.ZodString;
185
+ name: z.ZodString;
186
+ progres: z.ZodNumber;
187
+ size: z.ZodNumber;
188
+ url: z.ZodString;
189
+ } & {
190
+ createdAt: z.ZodOptional<z.ZodDate>;
191
+ updatedAt: z.ZodOptional<z.ZodDate>;
192
+ }, "strip", z.ZodTypeAny, {
193
+ createdAt?: Date;
194
+ updatedAt?: Date;
195
+ mimeType?: string;
196
+ name?: string;
197
+ progres?: number;
198
+ size?: number;
199
+ url?: string;
200
+ }, {
201
+ createdAt?: Date;
202
+ updatedAt?: Date;
203
+ mimeType?: string;
204
+ name?: string;
205
+ progres?: number;
206
+ size?: number;
207
+ url?: string;
208
+ }>;
209
+ }
210
+ export declare namespace Schema {
211
+ type CommonResult = z.infer<typeof SchemaUtil.COMMON_RESULT>;
212
+ type IDObject = z.infer<typeof SchemaUtil.ID_OBJECT>;
213
+ type File = z.infer<typeof SchemaUtil.FILE>;
214
+ type FindOneOptions = z.infer<typeof SchemaUtil.FIND_ONE_OPTIONS>;
215
+ type OrderItem = z.infer<typeof SchemaUtil.ORDER_ITEM>;
216
+ type OrderOrientation = z.infer<typeof SchemaUtil.ORDER_ORIENTATION>;
217
+ type PaginationOptions = z.infer<typeof SchemaUtil.PAGINATION_OPTIONS>;
218
+ type PaginationResult = z.infer<typeof SchemaUtil.PAGINATION_RESULT>;
219
+ type TimeRecord = z.infer<typeof SchemaUtil.TIME_RECORD>;
220
+ type WhereClause = z.infer<typeof SchemaUtil.WHERE_CLAUSE>;
221
+ type WhereClauseOp = z.infer<typeof SchemaUtil.WHERE_CLAUSE_OP>;
222
+ }
@@ -0,0 +1,106 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.SchemaUtil = void 0;
4
+ const zod_1 = require("zod");
5
+ class SchemaUtil {
6
+ }
7
+ exports.SchemaUtil = SchemaUtil;
8
+ SchemaUtil.ID = zod_1.z.string().uuid();
9
+ SchemaUtil.ID_OBJECT = zod_1.z.object({
10
+ id: SchemaUtil.ID,
11
+ });
12
+ SchemaUtil.JSON_STRING = zod_1.z.string().refine((value) => {
13
+ try {
14
+ JSON.parse(value);
15
+ return true;
16
+ }
17
+ catch (_a) {
18
+ return false;
19
+ }
20
+ });
21
+ SchemaUtil.TIME_RECORD = zod_1.z.object({
22
+ createdAt: zod_1.z.date().optional(),
23
+ updatedAt: zod_1.z.date().optional(),
24
+ });
25
+ SchemaUtil.ORDER_ORIENTATION = zod_1.z.enum(['ASC', 'DESC']);
26
+ SchemaUtil.WHERE_CLAUSE_OP = zod_1.z.enum([
27
+ 'adjacent',
28
+ 'any',
29
+ 'between',
30
+ 'col',
31
+ 'contained',
32
+ 'contains',
33
+ 'endsWith',
34
+ 'eq',
35
+ 'gt',
36
+ 'gte',
37
+ 'iLike',
38
+ 'in',
39
+ 'iRegexp',
40
+ 'is',
41
+ 'like',
42
+ 'lt',
43
+ 'lte',
44
+ 'match',
45
+ 'ne',
46
+ 'noExtendLeft',
47
+ 'noExtendRight',
48
+ 'not',
49
+ 'notBetween',
50
+ 'notILike',
51
+ 'notIn',
52
+ 'notIRegexp',
53
+ 'notLike',
54
+ 'notRegexp',
55
+ 'overlap',
56
+ 'placeholder',
57
+ 'regexp',
58
+ 'startsWith',
59
+ 'strictLeft',
60
+ 'strictRight',
61
+ 'substring',
62
+ 'values',
63
+ ]);
64
+ SchemaUtil.COMMON_RESULT = zod_1.z
65
+ .object({
66
+ succeeded: zod_1.z.boolean(),
67
+ content: zod_1.z.string().optional(),
68
+ })
69
+ .merge(SchemaUtil.ID_OBJECT.partial())
70
+ .merge(SchemaUtil.TIME_RECORD);
71
+ SchemaUtil.WHERE_CLAUSE = zod_1.z.object({
72
+ field: zod_1.z.string(),
73
+ op: SchemaUtil.WHERE_CLAUSE_OP,
74
+ value: SchemaUtil.JSON_STRING,
75
+ });
76
+ SchemaUtil.ORDER_ITEM = zod_1.z.object({
77
+ field: zod_1.z.string(),
78
+ orientation: SchemaUtil.ORDER_ORIENTATION,
79
+ });
80
+ SchemaUtil.PAGINATION_OPTIONS = zod_1.z.object({
81
+ createdAtField: zod_1.z.union([zod_1.z.string().optional().default('createdAt'), zod_1.z.undefined()]),
82
+ cursorField: zod_1.z.union([zod_1.z.string().optional().default('id'), zod_1.z.undefined()]),
83
+ lastCursor: zod_1.z.string().optional(),
84
+ limit: zod_1.z.number().positive().optional(),
85
+ order: zod_1.z.array(SchemaUtil.ORDER_ITEM).optional(),
86
+ where: zod_1.z.array(zod_1.z.array(SchemaUtil.WHERE_CLAUSE).min(1)).optional(),
87
+ });
88
+ SchemaUtil.FIND_ONE_OPTIONS = SchemaUtil.PAGINATION_OPTIONS.omit({
89
+ limit: true,
90
+ lastCursor: true,
91
+ order: true,
92
+ });
93
+ SchemaUtil.PAGINATION_RESULT = zod_1.z.object({
94
+ hasNext: zod_1.z.boolean(),
95
+ nextCursor: zod_1.z.union([zod_1.z.string(), zod_1.z.null()]),
96
+ previousCursor: zod_1.z.union([zod_1.z.string(), zod_1.z.null()]),
97
+ });
98
+ SchemaUtil.FILE = zod_1.z
99
+ .object({
100
+ mimeType: zod_1.z.string(),
101
+ name: zod_1.z.string(),
102
+ progres: zod_1.z.number().min(0).max(1),
103
+ size: zod_1.z.number().positive(),
104
+ url: zod_1.z.string(),
105
+ })
106
+ .merge(SchemaUtil.TIME_RECORD);
@@ -1 +1 @@
1
- {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../src/array-util.class.ts","../src/attempt-util.class.ts","../src/enum-util.class.ts","../src/uuid-util.class.ts","../src/string-util.class.ts","../src/header-util.class.ts","../src/json-util.class.ts","../src/user-agent-util.class.ts","../src/index.ts","../node_modules/yup/node_modules/type-fest/source/primitive.d.ts","../node_modules/yup/node_modules/type-fest/source/typed-array.d.ts","../node_modules/yup/node_modules/type-fest/source/basic.d.ts","../node_modules/yup/node_modules/type-fest/source/observable-like.d.ts","../node_modules/yup/node_modules/type-fest/source/internal.d.ts","../node_modules/yup/node_modules/type-fest/source/except.d.ts","../node_modules/yup/node_modules/type-fest/source/simplify.d.ts","../node_modules/yup/node_modules/type-fest/source/writable.d.ts","../node_modules/yup/node_modules/type-fest/source/mutable.d.ts","../node_modules/yup/node_modules/type-fest/source/merge.d.ts","../node_modules/yup/node_modules/type-fest/source/merge-exclusive.d.ts","../node_modules/yup/node_modules/type-fest/source/require-at-least-one.d.ts","../node_modules/yup/node_modules/type-fest/source/require-exactly-one.d.ts","../node_modules/yup/node_modules/type-fest/source/require-all-or-none.d.ts","../node_modules/yup/node_modules/type-fest/source/remove-index-signature.d.ts","../node_modules/yup/node_modules/type-fest/source/partial-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/partial-on-undefined-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/readonly-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/literal-union.d.ts","../node_modules/yup/node_modules/type-fest/source/promisable.d.ts","../node_modules/yup/node_modules/type-fest/source/opaque.d.ts","../node_modules/yup/node_modules/type-fest/source/invariant-of.d.ts","../node_modules/yup/node_modules/type-fest/source/set-optional.d.ts","../node_modules/yup/node_modules/type-fest/source/set-required.d.ts","../node_modules/yup/node_modules/type-fest/source/set-non-nullable.d.ts","../node_modules/yup/node_modules/type-fest/source/value-of.d.ts","../node_modules/yup/node_modules/type-fest/source/promise-value.d.ts","../node_modules/yup/node_modules/type-fest/source/async-return-type.d.ts","../node_modules/yup/node_modules/type-fest/source/conditional-keys.d.ts","../node_modules/yup/node_modules/type-fest/source/conditional-except.d.ts","../node_modules/yup/node_modules/type-fest/source/conditional-pick.d.ts","../node_modules/yup/node_modules/type-fest/source/union-to-intersection.d.ts","../node_modules/yup/node_modules/type-fest/source/stringified.d.ts","../node_modules/yup/node_modules/type-fest/source/fixed-length-array.d.ts","../node_modules/yup/node_modules/type-fest/source/multidimensional-array.d.ts","../node_modules/yup/node_modules/type-fest/source/multidimensional-readonly-array.d.ts","../node_modules/yup/node_modules/type-fest/source/iterable-element.d.ts","../node_modules/yup/node_modules/type-fest/source/entry.d.ts","../node_modules/yup/node_modules/type-fest/source/entries.d.ts","../node_modules/yup/node_modules/type-fest/source/set-return-type.d.ts","../node_modules/yup/node_modules/type-fest/source/asyncify.d.ts","../node_modules/yup/node_modules/type-fest/source/numeric.d.ts","../node_modules/yup/node_modules/type-fest/source/jsonify.d.ts","../node_modules/yup/node_modules/type-fest/source/schema.d.ts","../node_modules/yup/node_modules/type-fest/source/literal-to-primitive.d.ts","../node_modules/yup/node_modules/type-fest/source/string-key-of.d.ts","../node_modules/yup/node_modules/type-fest/source/exact.d.ts","../node_modules/yup/node_modules/type-fest/source/readonly-tuple.d.ts","../node_modules/yup/node_modules/type-fest/source/optional-keys-of.d.ts","../node_modules/yup/node_modules/type-fest/source/has-optional-keys.d.ts","../node_modules/yup/node_modules/type-fest/source/required-keys-of.d.ts","../node_modules/yup/node_modules/type-fest/source/has-required-keys.d.ts","../node_modules/yup/node_modules/type-fest/source/spread.d.ts","../node_modules/yup/node_modules/type-fest/source/split.d.ts","../node_modules/yup/node_modules/type-fest/source/camel-case.d.ts","../node_modules/yup/node_modules/type-fest/source/camel-cased-properties.d.ts","../node_modules/yup/node_modules/type-fest/source/camel-cased-properties-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/delimiter-case.d.ts","../node_modules/yup/node_modules/type-fest/source/kebab-case.d.ts","../node_modules/yup/node_modules/type-fest/source/delimiter-cased-properties.d.ts","../node_modules/yup/node_modules/type-fest/source/kebab-cased-properties.d.ts","../node_modules/yup/node_modules/type-fest/source/delimiter-cased-properties-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/kebab-cased-properties-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/pascal-case.d.ts","../node_modules/yup/node_modules/type-fest/source/pascal-cased-properties.d.ts","../node_modules/yup/node_modules/type-fest/source/pascal-cased-properties-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/snake-case.d.ts","../node_modules/yup/node_modules/type-fest/source/snake-cased-properties.d.ts","../node_modules/yup/node_modules/type-fest/source/snake-cased-properties-deep.d.ts","../node_modules/yup/node_modules/type-fest/source/includes.d.ts","../node_modules/yup/node_modules/type-fest/source/screaming-snake-case.d.ts","../node_modules/yup/node_modules/type-fest/source/join.d.ts","../node_modules/yup/node_modules/type-fest/source/trim.d.ts","../node_modules/yup/node_modules/type-fest/source/replace.d.ts","../node_modules/yup/node_modules/type-fest/source/get.d.ts","../node_modules/yup/node_modules/type-fest/source/last-array-element.d.ts","../node_modules/yup/node_modules/type-fest/source/package-json.d.ts","../node_modules/yup/node_modules/type-fest/source/tsconfig-json.d.ts","../node_modules/yup/node_modules/type-fest/index.d.ts","../node_modules/yup/index.d.ts","../src/validate-util.class.ts","../src/vm-util.class.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"2e05c9d89fb72dbac3ddc8906135b27b00f27ab19a6398023416131032e1ffa7","signature":"d35f55376249d4c6135fd299b13e8fa27a21c19b80cee2c150d690f0e4b90457"},{"version":"d8048ec018719de526652fbb59ec1f8d35d6ef57d49ee46cf4a855c363bd8e64","signature":"68719b4c699acb840c70c0876c666ff21694b991a097f61491b24dff52505b38"},{"version":"414c7d0e9de91576d34ea92960b8c9891846590ec5efcc5514bf169c8ca67603","signature":"06d92d21c6258bd99ccba0ebd1dcb612b4ebc688beaa0e293bbbe97836550d38"},{"version":"c7ab28a88605d141d5b2e5d5bc3e65d13279945e4271e36b49ebe0121f018c1c","signature":"520561ea7df70ae5ec5699252dccbabc2c84219bf9581b4dbb7ddc1c92a35fe4"},{"version":"6d63edd6617c9ddf33f4aca2fde31cae6dfe70930178964bbf28d7207e21bc54","signature":"d813e8c87be51caa7afddd94642ae4edbced2b2e0b351c5e5116e270e33e869b"},{"version":"9bced8e3b426d2629cac0bcf11acb1bfee7790db64ac55084d6fbcbed983528d","signature":"d10b0cee405f198c5125d813dbfe49a5a265c6ede03f38ee3d1781a99dfdf2cb"},{"version":"2aa8f2e2306dcc4db2a8baa54be5960b22412113145413376660f287d6caaa8e","signature":"aad90a5a003c8756d6f2e56e15e5a6ead5f601ba1f0d50958f0960a91ab21613"},{"version":"51de8250c727f1446d2c49ecbae28a5c4b0bc09cbc26cbb488825ff854c52447","signature":"d6afe47645522dd88c7ae70694bc0317add95de9053baf10df9f5091f303d652"},"a9253b3b603561424de9e4e992784d4da6c3555b36ec8510e9265ce26ab9ff9f","cd51ceafea7762ad639afb3ca5b68e1e4ffeaacaa402d7ef2cae17016e29e098","1b8357b3fef5be61b5de6d6a4805a534d68fe3e040c11f1944e27d4aec85936a","4a15fc59b27b65b9894952048be2afc561865ec37606cd0f5e929ee4a102233b",{"version":"744e7c636288493667d553c8f8ebd666ccbc0e715df445a4a7c4a48812f20544","affectsGlobalScope":true},"c05dcfbd5bd0abcefa3ad7d2931424d4d8090bc55bbe4f5c8acb8d2ca5886b2e","326da4aebf555d54b995854ff8f3432f63ba067be354fa16c6e1f50daa0667de","90748076a143bbeb455f8d5e8ad1cc451424c4856d41410e491268a496165256","76e3f3a30c533bf20840d4185ce2d143dc18ca955b64400ac09670a89d388198","144dfcee38ebc38aae93a85bc47211c9268d529b099127b74d61242ec5c17f35","2cf38989b23031694f04308b6797877534a49818b2f5257f4a5d824e7ea82a5a","f981ffdbd651f67db134479a5352dac96648ca195f981284e79dc0a1dbc53fd5","e4ace1cf5316aa7720e58c8dd511ba86bab1c981336996fb694fa64b8231d5f0","a1c85a61ff2b66291676ab84ae03c1b1ff7139ffde1942173f6aee8dc4ee357b","f35a727758da36dd885a70dd13a74d9167691aaff662d50eaaf66ed591957702","116205156fb819f2afe33f9c6378ea11b6123fa3090f858211c23f667fff75da","8fe68442c15f8952b8816fa4e7e6bd8d5c45542832206bd7bcf3ebdc77d1c3f3","3add9402f56a60e9b379593f69729831ac0fc9eae604b6fafde5fa86d2f8a4b9","cc28c8b188905e790de427f3cd00b96734c9c662fb849d68ff9d5f0327165c0d","da2aa652d2bf03cc042e2ff31e4194f4f18f042b8344dcb2568f761daaf7869f","03ed68319c97cd4ce8f1c4ded110d9b40b8a283c3242b9fe934ccfa834e45572","de2b56099545de410af72a7e430ead88894e43e4f959de29663d4d0ba464944d","eec9e706eef30b4f1c6ff674738d3fca572829b7fa1715f37742863dabb3d2f2","cec67731fce8577b0a90aa67ef0522ddb9f1fd681bece50cdcb80a833b4ed06f","a14679c24962a81ef24b6f4e95bbc31601551f150d91af2dc0bce51f7961f223","3f4d43bb3f61d173a4646c19557e090a06e9a2ec9415313a6d84af388df64923","18b86125c67d99150f54225df07349ddd07acde086b55f3eeac1c34c81e424d8","d5a5025f04e7a3264ecfa3030ca9a3cb0353450f1915a26d5b84f596240a11cd","03f4449c691dd9c51e42efd51155b63c8b89a5f56b5cf3015062e2f818be8959","23b213ec3af677b3d33ec17d9526a88d5f226506e1b50e28ce4090fb7e4050a8","f0abf96437a6e57b9751a792ba2ebb765729a40d0d573f7f6800b305691b1afb","7d30aee3d35e64b4f49c235d17a09e7a7ce2961bebb3996ee1db5aa192f3feba","eb1625bab70cfed00931a1e09ecb7834b61a666b0011913b0ec24a8e219023ef","1a923815c127b27f7f375c143bb0d9313ccf3c66478d5d2965375eeb7da72a4c","4f92df9d64e5413d4b34020ae6b382edda84347daec97099e7c008a9d5c0910b","fcc438e50c00c9e865d9c1777627d3fdc1e13a4078c996fb4b04e67e462648c8","d0f07efa072420758194c452edb3f04f8eabc01cd4b3884a23e7274d4e2a7b69","7086cca41a87b3bf52c6abfc37cda0a0ec86bb7e8e5ef166b07976abec73fa5e","4571a6886b4414403eacdd1b4cdbd854453626900ece196a173e15fb2b795155","c122227064c2ebf6a5bd2800383181395b56bb71fd6683d5e92add550302e45f","60f476f1c4de44a08d6a566c6f1e1b7de6cbe53d9153c9cc2284ca0022e21fba","84315d5153613eeb4b34990fb3bc3a1261879a06812ee7ae481141e30876d8dc","4f0781ec008bb24dc1923285d25d648ea48fb5a3c36d0786e2ee82eb00eff426","8fefaef4be2d484cdfc35a1b514ee7e7bb51680ef998fb9f651f532c0b169e6b","8be5c5be3dbf0003a628f99ad870e31bebc2364c28ea3b96231089a94e09f7a6","6626bbc69c25a92f6d32e6d2f25038f156b4c2380cbf29a420f7084fb1d2f7d7","f351eaa598ba2046e3078e5480a7533be7051e4db9212bb40f4eeb84279aa24d","5126032fe6e999f333827ee8e67f7ca1d5f3d6418025878aa5ebf13b499c2024","4ce53edb8fb1d2f8b2f6814084b773cdf5846f49bf5a426fbe4029327bda95bf","1edc9192dfc277c60b92525cdfa1980e1bfd161ae77286c96777d10db36be73c","1573cae51ae8a5b889ec55ecb58e88978fe251fd3962efa5c4fdb69ce00b23ba","75a7db3b7ddf0ca49651629bb665e0294fda8d19ba04fddc8a14d32bb35eb248","f2d1ac34b05bb6ce326ea1702befb0216363f1d5eccdd1b4b0b2f5a7e953ed8a","789665f0cd78bc675a31140d8f133ec6a482d753a514012fe1bb7f86d0a21040","bb30fb0534dceb2e41a884c1e4e2bb7a0c668dadd148092bba9ff15aafb94790","6ef829366514e4a8f75ce55fa390ebe080810b347e6f4a87bbeecb41e612c079","8f313aa8055158f08bd75e3a57161fa473a50884c20142f3318f89f19bfc0373","e789eb929b46299187312a01ff71905222f67907e546e491952c384b6f956a63","a0147b607f8c88a5433a5313cdc10443c6a45ed430e1b0a335a413dc2b099fd5","a86492d82baf906c071536e8de073e601eaa5deed138c2d9c42d471d72395d7e","6b1071c06abcbe1c9f60638d570fdbfe944b6768f95d9f28ebc06c7eec9b4087","92eb8a98444729aa61be5e6e489602363d763da27d1bcfdf89356c1d360484da","1285ddb279c6d0bc5fe46162a893855078ae5b708d804cd93bfc4a23d1e903d9","d729b8b400507b9b51ff40d11e012379dbf0acd6e2f66bf596a3bc59444d9bf1","fc3ee92b81a6188a545cba5c15dc7c5d38ee0aaca3d8adc29af419d9bdb1fdb9","a14371dc39f95c27264f8eb02ce2f80fd84ac693a2750983ac422877f0ae586d","755bcc456b4dd032244b51a8b4fe68ee3b2d2e463cf795f3fde970bb3f269fb1","c00b402135ef36fb09d59519e34d03445fd6541c09e68b189abb64151f211b12","e08e58ac493a27b29ceee80da90bb31ec64341b520907d480df6244cdbec01f8","c0fe2b1135ca803efa203408c953e1e12645b8065e1a4c1336ad8bb11ea1101b","f3dedc92d06e0fdc43e76c2e1acca21759dd63d2572c9ec78a5188249965d944","25b1108faedaf2043a97a76218240b1b537459bbca5ae9e2207c236c40dcfdef","a1d1e49ccd2ac07ed8a49a3f98dfd2f7357cf03649b9e348b58b97bb75116f18","7ad042f7d744ccfbcf6398216203c7712f01359d6fd4348c8bd8df8164e98096","0e0b8353d6d7f7cc3344adbabf3866e64f2f2813b23477254ba51f69e8fdf0eb","8e7653c13989dca094412bc4de20d5c449457fc92735546331d5e9cdd79ac16e","189dedb255e41c8556d0d61d7f1c18506501896354d0925cbd47060bcddccab1","48f0819c2e14214770232f1ab0058125bafdde1d04c4be84339d5533098bf60a","2641aff32336e35a5b702aa2d870a0891da29dc1c19ae48602678e2050614041","e133066d15e9e860ca96220a548dee28640039a8ac33a9130d0f83c814a78605","a1587d27822910185d25af5d5f1e611cb2d7ca643626e2eb494c95b558ccd679",{"version":"dfef16c6d39cbeecb9df6687691407c5e4ec3f89e68fc2b73c2a9d7ec1de408a","signature":"bb2f3ab4dc9be865b5f46e3c174e1eddd896b9ad6c21e9b7acdd199389b2c4ce"},{"version":"67281148e1c0a0c4c33b4507f5e9f6069305d5956637121f51ae7720d33115d1","signature":"0e5f78fea076d8eadb39e0bc00614888b0212c4292a816cfd949d87d9c303da8"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236"],"root":[[49,57],138,139],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[140,186],[143,186],[144,149,177,186],[145,156,157,164,174,185,186],[145,146,156,164,186],[147,186],[148,149,157,165,186],[149,174,182,186],[150,152,156,164,186],[151,186],[152,153,186],[156,186],[154,156,186],[156,157,158,174,185,186],[156,157,158,171,174,177,186],[186,190],[186],[152,159,164,174,185,186],[156,157,159,160,164,174,182,185,186],[159,161,174,182,185,186],[140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[156,162,186],[163,185,186],[152,156,164,174,186],[165,186],[166,186],[143,167,186],[168,184,186,190],[169,186],[170,186],[156,171,172,186],[171,173,186,188],[144,156,174,175,176,177,186],[144,174,176,186],[174,175,186],[177,186],[178,186],[156,180,181,186],[180,181,186],[149,164,174,182,186],[183,186],[164,184,186],[144,159,170,185,186],[149,186],[174,186,187],[186,188],[186,189],[144,149,156,158,167,174,185,186,188,190],[174,186,191],[136,186],[58,59,60,61,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,186],[84,186],[84,97,186],[62,111,186],[112,186],[63,86,186],[86,186],[62,186],[115,186],[95,186],[62,103,111,186],[106,186],[108,186],[58,186],[78,186],[59,60,99,186],[119,186],[117,186],[63,64,186],[65,186],[76,186],[62,67,186],[121,186],[63,186],[115,124,127,186],[63,64,108,186],[53,186],[49,50,51,53,54,55,56,186],[52,186],[53,137,186],[137]],"referencedMap":[[140,1],[141,1],[143,2],[144,3],[145,4],[146,5],[147,6],[148,7],[149,8],[150,9],[151,10],[152,11],[153,11],[155,12],[154,13],[156,12],[157,14],[158,15],[142,16],[192,17],[159,18],[160,19],[161,20],[193,21],[162,22],[163,23],[164,24],[165,25],[166,26],[167,27],[168,28],[169,29],[170,30],[171,31],[172,31],[173,32],[174,33],[176,34],[175,35],[177,36],[178,37],[179,17],[180,38],[181,39],[182,40],[183,41],[184,42],[185,43],[186,44],[187,45],[188,46],[189,47],[190,48],[191,49],[46,17],[47,17],[8,17],[9,17],[13,17],[12,17],[2,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[21,17],[3,17],[4,17],[48,17],[25,17],[22,17],[23,17],[24,17],[26,17],[27,17],[28,17],[5,17],[29,17],[30,17],[31,17],[32,17],[6,17],[36,17],[33,17],[34,17],[35,17],[37,17],[7,17],[38,17],[43,17],[44,17],[39,17],[40,17],[41,17],[42,17],[1,17],[45,17],[11,17],[10,17],[137,50],[136,51],[85,52],[98,53],[60,17],[112,54],[114,55],[113,55],[87,56],[86,17],[88,57],[115,58],[119,59],[117,59],[96,60],[95,17],[104,58],[63,58],[91,17],[132,61],[107,62],[109,63],[127,58],[62,64],[79,65],[94,17],[129,17],[100,66],[116,59],[120,67],[118,68],[133,17],[102,17],[76,64],[68,17],[67,69],[92,58],[93,58],[66,70],[99,17],[61,17],[78,17],[106,17],[134,71],[73,58],[74,72],[121,55],[123,73],[122,73],[58,17],[77,17],[84,17],[75,58],[105,17],[72,17],[131,17],[71,17],[69,74],[70,17],[108,17],[101,17],[128,75],[82,69],[80,69],[81,69],[97,17],[64,17],[124,59],[126,67],[125,68],[111,17],[110,76],[103,17],[90,17],[130,17],[135,17],[59,17],[89,17],[83,17],[65,69],[49,17],[50,17],[51,17],[54,77],[57,78],[55,17],[53,79],[56,17],[52,17],[138,80],[139,46]],"exportedModulesMap":[[140,1],[141,1],[143,2],[144,3],[145,4],[146,5],[147,6],[148,7],[149,8],[150,9],[151,10],[152,11],[153,11],[155,12],[154,13],[156,12],[157,14],[158,15],[142,16],[192,17],[159,18],[160,19],[161,20],[193,21],[162,22],[163,23],[164,24],[165,25],[166,26],[167,27],[168,28],[169,29],[170,30],[171,31],[172,31],[173,32],[174,33],[176,34],[175,35],[177,36],[178,37],[179,17],[180,38],[181,39],[182,40],[183,41],[184,42],[185,43],[186,44],[187,45],[188,46],[189,47],[190,48],[191,49],[46,17],[47,17],[8,17],[9,17],[13,17],[12,17],[2,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[21,17],[3,17],[4,17],[48,17],[25,17],[22,17],[23,17],[24,17],[26,17],[27,17],[28,17],[5,17],[29,17],[30,17],[31,17],[32,17],[6,17],[36,17],[33,17],[34,17],[35,17],[37,17],[7,17],[38,17],[43,17],[44,17],[39,17],[40,17],[41,17],[42,17],[1,17],[45,17],[11,17],[10,17],[137,50],[136,51],[85,52],[98,53],[60,17],[112,54],[114,55],[113,55],[87,56],[86,17],[88,57],[115,58],[119,59],[117,59],[96,60],[95,17],[104,58],[63,58],[91,17],[132,61],[107,62],[109,63],[127,58],[62,64],[79,65],[94,17],[129,17],[100,66],[116,59],[120,67],[118,68],[133,17],[102,17],[76,64],[68,17],[67,69],[92,58],[93,58],[66,70],[99,17],[61,17],[78,17],[106,17],[134,71],[73,58],[74,72],[121,55],[123,73],[122,73],[58,17],[77,17],[84,17],[75,58],[105,17],[72,17],[131,17],[71,17],[69,74],[70,17],[108,17],[101,17],[128,75],[82,69],[80,69],[81,69],[97,17],[64,17],[124,59],[126,67],[125,68],[111,17],[110,76],[103,17],[90,17],[130,17],[135,17],[59,17],[89,17],[83,17],[65,69],[57,78],[138,81]],"semanticDiagnosticsPerFile":[140,141,143,144,145,146,147,148,149,150,151,152,153,155,154,156,157,158,142,192,159,160,161,193,162,163,164,165,166,167,168,169,170,171,172,173,174,176,175,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,48,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,137,136,85,98,60,112,114,113,87,86,88,115,119,117,96,95,104,63,91,132,107,109,127,62,79,94,129,100,116,120,118,133,102,76,68,67,92,93,66,99,61,78,106,134,73,74,121,123,122,58,77,84,75,105,72,131,71,69,70,108,101,128,82,80,81,97,64,124,126,125,111,110,103,90,130,135,59,89,83,65,49,50,51,54,57,55,53,56,52,138,139]},"version":"5.1.6"}
1
+ {"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2017.full.d.ts","../src/array-util.class.ts","../src/attempt-util.class.ts","../src/enum-util.class.ts","../src/uuid-util.class.ts","../src/string-util.class.ts","../src/header-util.class.ts","../src/json-util.class.ts","../src/user-agent-util.class.ts","../node_modules/zod/dist/types/v3/helpers/typeAliases.d.ts","../node_modules/zod/dist/types/v3/helpers/util.d.ts","../node_modules/zod/dist/types/v3/ZodError.d.ts","../node_modules/zod/dist/types/v3/locales/en.d.ts","../node_modules/zod/dist/types/v3/errors.d.ts","../node_modules/zod/dist/types/v3/helpers/parseUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/enumUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/errorUtil.d.ts","../node_modules/zod/dist/types/v3/helpers/partialUtil.d.ts","../node_modules/zod/dist/types/v3/standard-schema.d.ts","../node_modules/zod/dist/types/v3/types.d.ts","../node_modules/zod/dist/types/v3/external.d.ts","../node_modules/zod/dist/types/v3/index.d.ts","../node_modules/zod/dist/types/index.d.ts","../src/schema-util.class.ts","../src/index.ts","../src/vm-util.class.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts"],"fileInfos":[{"version":"f59215c5f1d886b05395ee7aca73e0ac69ddfad2843aa88530e797879d511bad","affectsGlobalScope":true},"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","dc48272d7c333ccf58034c0026162576b7d50ea0e69c3b9292f803fc20720fd5","27147504487dc1159369da4f4da8a26406364624fa9bc3db632f7d94a5bae2c3","5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4",{"version":"3dda5344576193a4ae48b8d03f105c86f20b2f2aff0a1d1fd7935f5d68649654","affectsGlobalScope":true},{"version":"35299ae4a62086698444a5aaee27fc7aa377c68cbb90b441c9ace246ffd05c97","affectsGlobalScope":true},{"version":"c5c5565225fce2ede835725a92a28ece149f83542aa4866cfb10290bff7b8996","affectsGlobalScope":true},{"version":"7d2dbc2a0250400af0809b0ad5f84686e84c73526de931f84560e483eb16b03c","affectsGlobalScope":true},{"version":"9d9885c728913c1d16e0d2831b40341d6ad9a0ceecaabc55209b306ad9c736a5","affectsGlobalScope":true},{"version":"17bea081b9c0541f39dd1ae9bc8c78bdd561879a682e60e2f25f688c0ecab248","affectsGlobalScope":true},{"version":"4443e68b35f3332f753eacc66a04ac1d2053b8b035a0e0ac1d455392b5e243b3","affectsGlobalScope":true},{"version":"ab22100fdd0d24cfc2cc59d0a00fc8cf449830d9c4030dc54390a46bd562e929","affectsGlobalScope":true},{"version":"f7bd636ae3a4623c503359ada74510c4005df5b36de7f23e1db8a5c543fd176b","affectsGlobalScope":true},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true},{"version":"0c20f4d2358eb679e4ae8a4432bdd96c857a2960fd6800b21ec4008ec59d60ea","affectsGlobalScope":true},{"version":"36ae84ccc0633f7c0787bc6108386c8b773e95d3b052d9464a99cd9b8795fbec","affectsGlobalScope":true},{"version":"82d0d8e269b9eeac02c3bd1c9e884e85d483fcb2cd168bccd6bc54df663da031","affectsGlobalScope":true},{"version":"b8deab98702588840be73d67f02412a2d45a417a3c097b2e96f7f3a42ac483d1","affectsGlobalScope":true},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true},{"version":"376d554d042fb409cb55b5cbaf0b2b4b7e669619493c5d18d5fa8bd67273f82a","affectsGlobalScope":true},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true},{"version":"61c37c1de663cf4171e1192466e52c7a382afa58da01b1dc75058f032ddf0839","affectsGlobalScope":true},{"version":"c4138a3dd7cd6cf1f363ca0f905554e8d81b45844feea17786cdf1626cb8ea06","affectsGlobalScope":true},{"version":"6ff3e2452b055d8f0ec026511c6582b55d935675af67cdb67dd1dc671e8065df","affectsGlobalScope":true},{"version":"03de17b810f426a2f47396b0b99b53a82c1b60e9cba7a7edda47f9bb077882f4","affectsGlobalScope":true},{"version":"8184c6ddf48f0c98429326b428478ecc6143c27f79b79e85740f17e6feb090f1","affectsGlobalScope":true},{"version":"261c4d2cf86ac5a89ad3fb3fafed74cbb6f2f7c1d139b0540933df567d64a6ca","affectsGlobalScope":true},{"version":"6af1425e9973f4924fca986636ac19a0cf9909a7e0d9d3009c349e6244e957b6","affectsGlobalScope":true},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true},{"version":"15a630d6817718a2ddd7088c4f83e4673fde19fa992d2eae2cf51132a302a5d3","affectsGlobalScope":true},{"version":"f06948deb2a51aae25184561c9640fb66afeddb34531a9212d011792b1d19e0a","affectsGlobalScope":true},{"version":"01e0ee7e1f661acedb08b51f8a9b7d7f959e9cdb6441360f06522cc3aea1bf2e","affectsGlobalScope":true},{"version":"ac17a97f816d53d9dd79b0d235e1c0ed54a8cc6a0677e9a3d61efb480b2a3e4e","affectsGlobalScope":true},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true},{"version":"ec0104fee478075cb5171e5f4e3f23add8e02d845ae0165bfa3f1099241fa2aa","affectsGlobalScope":true},{"version":"2b72d528b2e2fe3c57889ca7baef5e13a56c957b946906d03767c642f386bbc3","affectsGlobalScope":true},{"version":"9cc66b0513ad41cb5f5372cca86ef83a0d37d1c1017580b7dace3ea5661836df","affectsGlobalScope":true},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true},{"version":"307c8b7ebbd7f23a92b73a4c6c0a697beca05b06b036c23a34553e5fe65e4fdc","affectsGlobalScope":true},{"version":"189c0703923150aa30673fa3de411346d727cc44a11c75d05d7cf9ef095daa22","affectsGlobalScope":true},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true},"994c234848afc14a2586b6565777f4c0b05dc479ede0a041bfd5becf6dceb586",{"version":"2e05c9d89fb72dbac3ddc8906135b27b00f27ab19a6398023416131032e1ffa7","signature":"d35f55376249d4c6135fd299b13e8fa27a21c19b80cee2c150d690f0e4b90457"},{"version":"d8048ec018719de526652fbb59ec1f8d35d6ef57d49ee46cf4a855c363bd8e64","signature":"68719b4c699acb840c70c0876c666ff21694b991a097f61491b24dff52505b38"},{"version":"414c7d0e9de91576d34ea92960b8c9891846590ec5efcc5514bf169c8ca67603","signature":"06d92d21c6258bd99ccba0ebd1dcb612b4ebc688beaa0e293bbbe97836550d38"},{"version":"c7ab28a88605d141d5b2e5d5bc3e65d13279945e4271e36b49ebe0121f018c1c","signature":"520561ea7df70ae5ec5699252dccbabc2c84219bf9581b4dbb7ddc1c92a35fe4"},{"version":"6d63edd6617c9ddf33f4aca2fde31cae6dfe70930178964bbf28d7207e21bc54","signature":"d813e8c87be51caa7afddd94642ae4edbced2b2e0b351c5e5116e270e33e869b"},{"version":"9bced8e3b426d2629cac0bcf11acb1bfee7790db64ac55084d6fbcbed983528d","signature":"d10b0cee405f198c5125d813dbfe49a5a265c6ede03f38ee3d1781a99dfdf2cb"},{"version":"2aa8f2e2306dcc4db2a8baa54be5960b22412113145413376660f287d6caaa8e","signature":"aad90a5a003c8756d6f2e56e15e5a6ead5f601ba1f0d50958f0960a91ab21613"},{"version":"51de8250c727f1446d2c49ecbae28a5c4b0bc09cbc26cbb488825ff854c52447","signature":"d6afe47645522dd88c7ae70694bc0317add95de9053baf10df9f5091f303d652"},"d3cfde44f8089768ebb08098c96d01ca260b88bccf238d55eee93f1c620ff5a5","293eadad9dead44c6fd1db6de552663c33f215c55a1bfa2802a1bceed88ff0ec","54f6ec6ea75acea6eb23635617252d249145edbc7bcd9d53f2d70280d2aef953","c25ce98cca43a3bfa885862044be0d59557be4ecd06989b2001a83dcf69620fd","8e71e53b02c152a38af6aec45e288cc65bede077b92b9b43b3cb54a37978bb33","754a9396b14ca3a4241591afb4edc644b293ccc8a3397f49be4dfd520c08acb3","f672c876c1a04a223cf2023b3d91e8a52bb1544c576b81bf64a8fec82be9969c","e4b03ddcf8563b1c0aee782a185286ed85a255ce8a30df8453aade2188bbc904","de2316e90fc6d379d83002f04ad9698bc1e5285b4d52779778f454dd12ce9f44","25b3f581e12ede11e5739f57a86e8668fbc0124f6649506def306cad2c59d262","2da997a01a6aa5c5c09de5d28f0f4407b597c5e1aecfd32f1815809c532650a2","5d26d2e47e2352def36f89a3e8bf8581da22b7f857e07ef3114cd52cf4813445","3db2efd285e7328d8014b54a7fce3f4861ebcdc655df40517092ed0050983617","d5d39a24c759df40480a4bfc0daffd364489702fdbcbdfc1711cde34f8739995",{"version":"756ac75af0ea6109810bc5d0f8ac8964fe0e4081087d68ee09be3f06aa9ab018","signature":"abf9c875b5216654f996895faaf743b0dcfbd8d87120f04a431713c6e26b7a65"},"95012327a58c2c440ac2ecb912e251847631950d2e41f65a2740a80677de0a56",{"version":"67281148e1c0a0c4c33b4507f5e9f6069305d5956637121f51ae7720d33115d1","signature":"0e5f78fea076d8eadb39e0bc00614888b0212c4292a816cfd949d87d9c303da8"},"7e771891adaa85b690266bc37bd6eb43bc57eecc4b54693ead36467e7369952a","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"ca72190df0eb9b09d4b600821c8c7b6c9747b75a1c700c4d57dc0bb72abc074c","affectsGlobalScope":true},"21a167fec8f933752fb8157f06d28fab6817af3ad9b0bdb1908a10762391eab9",{"version":"bb65c6267c5d6676be61acbf6604cf0a4555ac4b505df58ac15c831fcbff4e3e","affectsGlobalScope":true},"374ca798f244e464346f14301dc2a8b4b111af1a83b49fffef5906c338a1f922","5a94487653355b56018122d92392beb2e5f4a6c63ba5cef83bbe1c99775ef713",{"version":"d5135ad93b33adcce80b18f8065087934cdc1730d63db58562edcf017e1aad9b","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","dab86d9604fe40854ef3c0a6f9e8948873dc3509213418e5e457f410fd11200f","bb9c4ffa5e6290c6980b63c815cdd1625876dadb2efaf77edbe82984be93e55e","489532ff54b714f0e0939947a1c560e516d3ae93d51d639ab02e907a0e950114","f30bb836526d930a74593f7b0f5c1c46d10856415a8f69e5e2fc3db80371e362","14b5aa23c5d0ae1907bc696ac7b6915d88f7d85799cc0dc2dcf98fbce2c5a67c","5c439dafdc09abe4d6c260a96b822fa0ba5be7203c71a63ab1f1423cd9e838ea",{"version":"6b526a5ec4a401ca7c26cfe6a48e641d8f30af76673bad3b06a1b4504594a960","affectsGlobalScope":true},{"version":"816ad2e607a96de5bcac7d437f843f5afd8957f1fa5eefa6bba8e4ed7ca8fd84","affectsGlobalScope":true},"cec36af22f514322f870e81d30675c78df82ae8bf4863f5fd4e4424c040c678d","d903fafe96674bc0b2ac38a5be4a8fc07b14c2548d1cdb165a80ea24c44c0c54","5eec82ac21f84d83586c59a16b9b8502d34505d1393393556682fe7e7fde9ef2","04eb6578a588d6a46f50299b55f30e3a04ef27d0c5a46c57d8fcc211cd530faa","8d3c583a07e0c37e876908c2d5da575019f689df8d9fa4c081d99119d53dba22","2c828a5405191d006115ab34e191b8474bc6c86ffdc401d1a9864b1b6e088a58",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"d076fede3cb042e7b13fc29442aaa03a57806bc51e2b26a67a01fbc66a7c0c12","7c013aa892414a7fdcfd861ae524a668eaa3ede8c7c0acafaf611948122c8d93","b0973c3cbcdc59b37bf477731d468696ecaf442593ec51bab497a613a580fe30",{"version":"4989e92ba5b69b182d2caaea6295af52b7dc73a4f7a2e336a676722884e7139d","affectsGlobalScope":true},{"version":"b3624aed92dab6da8484280d3cb3e2f4130ec3f4ef3f8201c95144ae9e898bb6","affectsGlobalScope":true},"5153a2fd150e46ce57bb3f8db1318d33f6ad3261ed70ceeff92281c0608c74a3","210d54cd652ec0fec8c8916e4af59bb341065576ecda039842f9ffb2e908507c","36b03690b628eab08703d63f04eaa89c5df202e5f1edf3989f13ad389cd2c091","0effadd232a20498b11308058e334d3339cc5bf8c4c858393e38d9d4c0013dcf","25846d43937c672bab7e8195f3d881f93495df712ee901860effc109918938cc","fd93cee2621ff42dabe57b7be402783fd1aa69ece755bcba1e0290547ae60513","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff","69ee23dd0d215b09907ad30d23f88b7790c93329d1faf31d7835552a10cf7cbf","44b8b584a338b190a59f4f6929d072431950c7bd92ec2694821c11bce180c8a5","23b89798789dffbd437c0c423f5d02d11f9736aea73d6abf16db4f812ff36eda","223c37f62ce09a3d99e77498acdee7b2705a4ae14552fbdb4093600cd9164f3f",{"version":"970a90f76d4d219ad60819d61f5994514087ba94c985647a3474a5a3d12714ed","affectsGlobalScope":true},"e10177274a35a9d07c825615340b2fcde2f610f53f3fb40269fd196b4288dda6","4c8525f256873c7ba3135338c647eaf0ca7115a1a2805ae2d0056629461186ce","3c13ef48634e7b5012fcf7e8fce7496352c2d779a7201389ca96a2a81ee4314d","5d0a25ec910fa36595f85a67ac992d7a53dd4064a1ba6aea1c9f14ab73a023f2",{"version":"f0900cd5d00fe1263ff41201fb8073dbeb984397e4af3b8002a5c207a30bdc33","affectsGlobalScope":true},{"version":"4c50342e1b65d3bee2ed4ab18f84842d5724ad11083bd666d8705dc7a6079d80","affectsGlobalScope":true},"06d7c42d256f0ce6afe1b2b6cfbc97ab391f29dadb00dd0ae8e8f23f5bc916c3","ec4bd1b200670fb567920db572d6701ed42a9641d09c4ff6869768c8f81b404c","e59a892d87e72733e2a9ca21611b9beb52977be2696c7ba4b216cbbb9a48f5aa",{"version":"da26af7362f53d122283bc69fed862b9a9fe27e01bc6a69d1d682e0e5a4df3e6","affectsGlobalScope":true},"8a300fa9b698845a1f9c41ecbe2c5966634582a8e2020d51abcace9b55aa959e",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"8dbe725f8d237e70310977afcfa011629804d101ebaa0266cafda6b61ad72236"],"root":[[49,56],[71,73]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":false,"strictBindCallApply":false,"strictNullChecks":false,"target":4},"fileIdsList":[[74,120],[77,120],[78,83,111,120],[79,90,91,98,108,119,120],[79,80,90,98,120],[81,120],[82,83,91,99,120],[83,108,116,120],[84,86,90,98,120],[85,120],[86,87,120],[90,120],[88,90,120],[90,91,92,108,119,120],[90,91,92,105,108,111,120],[120,124],[120],[86,93,98,108,119,120],[90,91,93,94,98,108,116,119,120],[93,95,108,116,119,120],[74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126],[90,96,120],[97,119,120],[86,90,98,108,120],[99,120],[100,120],[77,101,120],[102,118,120,124],[103,120],[104,120],[90,105,106,120],[105,107,120,122],[78,90,108,109,110,111,120],[78,108,110,120],[108,109,120],[111,120],[112,120],[90,114,115,120],[114,115,120],[83,98,108,116,120],[117,120],[98,118,120],[78,93,104,119,120],[83,120],[108,120,121],[120,122],[120,123],[78,83,90,92,101,108,119,120,122,124],[108,120,125],[69,120],[57,58,69,120],[59,60,120],[57,58,59,61,62,67,120],[58,59,120],[67,120],[68,120],[59,120],[57,58,59,62,63,64,65,66,120],[53,120],[49,50,51,53,54,55,56,71,120],[70,120],[52,120],[70]],"referencedMap":[[74,1],[75,1],[77,2],[78,3],[79,4],[80,5],[81,6],[82,7],[83,8],[84,9],[85,10],[86,11],[87,11],[89,12],[88,13],[90,12],[91,14],[92,15],[76,16],[126,17],[93,18],[94,19],[95,20],[127,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,28],[103,29],[104,30],[105,31],[106,31],[107,32],[108,33],[110,34],[109,35],[111,36],[112,37],[113,17],[114,38],[115,39],[116,40],[117,41],[118,42],[119,43],[120,44],[121,45],[122,46],[123,47],[124,48],[125,49],[46,17],[47,17],[8,17],[9,17],[13,17],[12,17],[2,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[21,17],[3,17],[4,17],[48,17],[25,17],[22,17],[23,17],[24,17],[26,17],[27,17],[28,17],[5,17],[29,17],[30,17],[31,17],[32,17],[6,17],[36,17],[33,17],[34,17],[35,17],[37,17],[7,17],[38,17],[43,17],[44,17],[39,17],[40,17],[41,17],[42,17],[1,17],[45,17],[11,17],[10,17],[70,50],[59,51],[61,52],[68,53],[63,17],[64,17],[62,54],[65,55],[57,17],[58,17],[69,56],[60,57],[66,17],[67,58],[49,17],[50,17],[51,17],[54,59],[72,60],[55,17],[71,61],[53,62],[56,17],[52,17],[73,46]],"exportedModulesMap":[[74,1],[75,1],[77,2],[78,3],[79,4],[80,5],[81,6],[82,7],[83,8],[84,9],[85,10],[86,11],[87,11],[89,12],[88,13],[90,12],[91,14],[92,15],[76,16],[126,17],[93,18],[94,19],[95,20],[127,21],[96,22],[97,23],[98,24],[99,25],[100,26],[101,27],[102,28],[103,29],[104,30],[105,31],[106,31],[107,32],[108,33],[110,34],[109,35],[111,36],[112,37],[113,17],[114,38],[115,39],[116,40],[117,41],[118,42],[119,43],[120,44],[121,45],[122,46],[123,47],[124,48],[125,49],[46,17],[47,17],[8,17],[9,17],[13,17],[12,17],[2,17],[14,17],[15,17],[16,17],[17,17],[18,17],[19,17],[20,17],[21,17],[3,17],[4,17],[48,17],[25,17],[22,17],[23,17],[24,17],[26,17],[27,17],[28,17],[5,17],[29,17],[30,17],[31,17],[32,17],[6,17],[36,17],[33,17],[34,17],[35,17],[37,17],[7,17],[38,17],[43,17],[44,17],[39,17],[40,17],[41,17],[42,17],[1,17],[45,17],[11,17],[10,17],[70,50],[59,51],[61,52],[68,53],[63,17],[64,17],[62,54],[65,55],[57,17],[58,17],[69,56],[60,57],[66,17],[67,58],[72,60],[71,63]],"semanticDiagnosticsPerFile":[74,75,77,78,79,80,81,82,83,84,85,86,87,89,88,90,91,92,76,126,93,94,95,127,96,97,98,99,100,101,102,103,104,105,106,107,108,110,109,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,46,47,8,9,13,12,2,14,15,16,17,18,19,20,21,3,4,48,25,22,23,24,26,27,28,5,29,30,31,32,6,36,33,34,35,37,7,38,43,44,39,40,41,42,1,45,11,10,70,59,61,68,63,64,62,65,57,58,69,60,66,67,49,50,51,54,72,55,71,53,56,52,73]},"version":"5.1.6"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-norantec/utilities",
3
- "version": "1.0.0-alpha.16",
3
+ "version": "1.0.0-alpha.18",
4
4
  "description": "NoranTec Utilities",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -45,6 +45,6 @@
45
45
  "typescript": "~5.1.3"
46
46
  },
47
47
  "dependencies": {
48
- "yup": "^1.6.1"
48
+ "zod": "^3.25.67"
49
49
  }
50
50
  }
@@ -1,5 +0,0 @@
1
- import { InferType, Schema } from 'yup';
2
- export declare class ValidateUtil {
3
- static isValidIPv4Address(address: string): boolean;
4
- static cast<T extends Schema<any, any, any, any>>(schema: T, input: unknown): InferType<T>;
5
- }
@@ -1,18 +0,0 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ValidateUtil = void 0;
4
- const string_util_class_1 = require("./string-util.class");
5
- class ValidateUtil {
6
- static isValidIPv4Address(address) {
7
- if (string_util_class_1.StringUtil.isFalsyString(address))
8
- return false;
9
- return (/^(\d{1,3}\.){3}\d{1,3}$/.test(address || '') &&
10
- address.split('.').every((segment) => Number(segment) >= 0 && Number(segment) <= 255));
11
- }
12
- static cast(schema, input) {
13
- const casted = schema.cast(input);
14
- schema.validateSync(casted);
15
- return casted;
16
- }
17
- }
18
- exports.ValidateUtil = ValidateUtil;