typia 7.6.0 → 7.6.1
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/README.md +2 -1
- package/lib/IReadableURLSearchParams.d.ts +1 -1
- package/lib/TypeGuardError.mjs +26 -0
- package/lib/TypeGuardError.mjs.map +1 -0
- package/lib/factories/MetadataTypeTagFactory.js +1 -1
- package/lib/factories/MetadataTypeTagFactory.js.map +1 -1
- package/lib/factories/ProtobufFactory.js +4 -4
- package/lib/factories/ProtobufFactory.js.map +1 -1
- package/lib/factories/internal/metadata/iterate_metadata_intersection.js +1 -1
- package/lib/factories/internal/metadata/iterate_metadata_intersection.js.map +1 -1
- package/lib/functional.mjs +120 -0
- package/lib/functional.mjs.map +1 -0
- package/lib/http.d.ts +16 -16
- package/lib/http.mjs +165 -0
- package/lib/http.mjs.map +1 -0
- package/lib/index.mjs +27 -1142
- package/lib/index.mjs.map +1 -1
- package/lib/internal/_isUniqueItems.js +1 -1
- package/lib/json.d.ts +5 -5
- package/lib/json.mjs +105 -0
- package/lib/json.mjs.map +1 -0
- package/lib/llm.d.ts +8 -8
- package/lib/llm.mjs +33 -0
- package/lib/llm.mjs.map +1 -0
- package/lib/misc.d.ts +10 -10
- package/lib/misc.mjs +111 -0
- package/lib/misc.mjs.map +1 -0
- package/lib/module.d.ts +5 -5
- package/lib/module.mjs +139 -0
- package/lib/module.mjs.map +1 -0
- package/lib/notations.mjs +153 -0
- package/lib/notations.mjs.map +1 -0
- package/lib/programmers/FeatureProgrammer.d.ts +3 -3
- package/lib/programmers/TypiaProgrammer.js +1 -1
- package/lib/programmers/TypiaProgrammer.js.map +1 -1
- package/lib/programmers/helpers/UnionExplorer.js +1 -1
- package/lib/programmers/helpers/UnionExplorer.js.map +1 -1
- package/lib/programmers/helpers/UnionPredicator.d.ts +1 -1
- package/lib/programmers/helpers/UnionPredicator.js +1 -1
- package/lib/programmers/helpers/UnionPredicator.js.map +1 -1
- package/lib/programmers/json/JsonApplicationProgrammer.js +1 -1
- package/lib/programmers/llm/LlmApplicationProgrammer.js +2 -2
- package/lib/programmers/llm/LlmApplicationProgrammer.js.map +1 -1
- package/lib/programmers/llm/LlmParametersProgrammer.js +1 -1
- package/lib/programmers/llm/LlmParametersProgrammer.js.map +1 -1
- package/lib/programmers/protobuf/ProtobufEncodeProgrammer.js +1 -1
- package/lib/programmers/protobuf/ProtobufEncodeProgrammer.js.map +1 -1
- package/lib/protobuf.d.ts +9 -9
- package/lib/protobuf.mjs +111 -0
- package/lib/protobuf.mjs.map +1 -0
- package/lib/reflect.mjs +18 -0
- package/lib/reflect.mjs.map +1 -0
- package/lib/schemas/llm/ILlmApplicationOfValidate.d.ts +2 -2
- package/lib/schemas/llm/ILlmApplicationOfValidate.mjs +6 -0
- package/lib/schemas/llm/ILlmApplicationOfValidate.mjs.map +1 -0
- package/lib/schemas/llm/ILlmFunctionOfValidate.mjs +6 -0
- package/lib/schemas/llm/ILlmFunctionOfValidate.mjs.map +1 -0
- package/lib/tags/TagBase.d.ts +1 -1
- package/lib/tags/index.mjs +2 -0
- package/lib/tags/index.mjs.map +1 -0
- package/lib/transformers/ImportTransformer.js +3 -3
- package/lib/transformers/ImportTransformer.js.map +1 -1
- package/lib/transformers/features/json/JsonValidateParseTransformer.js +1 -1
- package/lib/transformers/features/json/JsonValidateParseTransformer.js.map +1 -1
- package/lib/transformers/features/json/JsonValidateStringifyTransformer.js +1 -1
- package/lib/transformers/features/json/JsonValidateStringifyTransformer.js.map +1 -1
- package/lib/transformers/features/misc/MiscValidateCloneTransformer.js +1 -1
- package/lib/transformers/features/misc/MiscValidateCloneTransformer.js.map +1 -1
- package/lib/transformers/features/misc/MiscValidatePruneTransformer.js +1 -1
- package/lib/transformers/features/misc/MiscValidatePruneTransformer.js.map +1 -1
- package/lib/transformers/features/reflect/ReflectNameTransformer.js +1 -1
- package/package.json +11 -9
- package/src/IReadableURLSearchParams.ts +1 -1
- package/src/factories/MetadataTypeTagFactory.ts +1 -1
- package/src/factories/ProtobufFactory.ts +4 -4
- package/src/factories/internal/metadata/iterate_metadata_intersection.ts +1 -1
- package/src/http.ts +16 -16
- package/src/internal/_isUniqueItems.ts +1 -1
- package/src/json.ts +6 -6
- package/src/llm.ts +8 -8
- package/src/misc.ts +11 -11
- package/src/module.ts +5 -5
- package/src/programmers/FeatureProgrammer.ts +3 -3
- package/src/programmers/TypiaProgrammer.ts +1 -1
- package/src/programmers/helpers/UnionExplorer.ts +1 -1
- package/src/programmers/helpers/UnionPredicator.ts +3 -3
- package/src/programmers/json/JsonApplicationProgrammer.ts +1 -1
- package/src/programmers/llm/LlmApplicationProgrammer.ts +2 -2
- package/src/programmers/llm/LlmParametersProgrammer.ts +1 -1
- package/src/programmers/protobuf/ProtobufEncodeProgrammer.ts +1 -1
- package/src/protobuf.ts +9 -9
- package/src/schemas/llm/ILlmApplicationOfValidate.ts +2 -2
- package/src/tags/TagBase.ts +1 -1
- package/src/transformers/ImportTransformer.ts +3 -3
- package/src/transformers/features/json/JsonValidateParseTransformer.ts +1 -1
- package/src/transformers/features/json/JsonValidateStringifyTransformer.ts +1 -1
- package/src/transformers/features/misc/MiscValidateCloneTransformer.ts +1 -1
- package/src/transformers/features/misc/MiscValidatePruneTransformer.ts +1 -1
- package/src/transformers/features/reflect/ReflectNameTransformer.ts +1 -1
package/lib/index.mjs
CHANGED
|
@@ -1,1143 +1,28 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
function assertEqualsParameters() {
|
|
29
|
-
halt$8("assertEqualsParameters");
|
|
30
|
-
}
|
|
31
|
-
/**
|
|
32
|
-
* @internal
|
|
33
|
-
*/
|
|
34
|
-
function assertEqualsReturn() {
|
|
35
|
-
halt$8("assertEqualsReturn");
|
|
36
|
-
}
|
|
37
|
-
/**
|
|
38
|
-
* @internal
|
|
39
|
-
*/
|
|
40
|
-
function isFunction() {
|
|
41
|
-
halt$8("isFunction");
|
|
42
|
-
}
|
|
43
|
-
/**
|
|
44
|
-
* @internal
|
|
45
|
-
*/
|
|
46
|
-
function isParameters() {
|
|
47
|
-
halt$8("isParameters");
|
|
48
|
-
}
|
|
49
|
-
/**
|
|
50
|
-
* @internal
|
|
51
|
-
*/
|
|
52
|
-
function isReturn() {
|
|
53
|
-
halt$8("isReturn");
|
|
54
|
-
}
|
|
55
|
-
/**
|
|
56
|
-
* @internal
|
|
57
|
-
*/
|
|
58
|
-
function equalsFunction() {
|
|
59
|
-
halt$8("equalsFunction");
|
|
60
|
-
}
|
|
61
|
-
/**
|
|
62
|
-
* @internal
|
|
63
|
-
*/
|
|
64
|
-
function equalsParameters() {
|
|
65
|
-
halt$8("equalsParameters");
|
|
66
|
-
}
|
|
67
|
-
/**
|
|
68
|
-
* @internal
|
|
69
|
-
*/
|
|
70
|
-
function equalsReturn() {
|
|
71
|
-
halt$8("equalsReturn");
|
|
72
|
-
}
|
|
73
|
-
/**
|
|
74
|
-
* @internal
|
|
75
|
-
*/
|
|
76
|
-
function validateFunction() {
|
|
77
|
-
halt$8("validateFunction");
|
|
78
|
-
}
|
|
79
|
-
/**
|
|
80
|
-
* @internal
|
|
81
|
-
*/
|
|
82
|
-
function validateParameters() {
|
|
83
|
-
halt$8("validateReturn");
|
|
84
|
-
}
|
|
85
|
-
/**
|
|
86
|
-
* @internal
|
|
87
|
-
*/
|
|
88
|
-
function validateReturn() {
|
|
89
|
-
halt$8("validateReturn");
|
|
90
|
-
}
|
|
91
|
-
/**
|
|
92
|
-
* @internal
|
|
93
|
-
*/
|
|
94
|
-
function validateEqualsFunction() {
|
|
95
|
-
halt$8("validateEqualsFunction");
|
|
96
|
-
}
|
|
97
|
-
/**
|
|
98
|
-
* @internal
|
|
99
|
-
*/
|
|
100
|
-
function validateEqualsParameters() {
|
|
101
|
-
halt$8("validateEqualsParameters");
|
|
102
|
-
}
|
|
103
|
-
/**
|
|
104
|
-
* @internal
|
|
105
|
-
*/
|
|
106
|
-
function validateEqualsReturn() {
|
|
107
|
-
halt$8("validateEqualsReturn");
|
|
108
|
-
}
|
|
109
|
-
/* -----------------------------------------------------------
|
|
110
|
-
HALTER
|
|
111
|
-
----------------------------------------------------------- */
|
|
112
|
-
/**
|
|
113
|
-
* @internal
|
|
114
|
-
*/
|
|
115
|
-
function halt$8(name) {
|
|
116
|
-
throw new Error(`Error on typia.functional.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
117
|
-
}
|
|
118
|
-
|
|
119
|
-
var functional = /*#__PURE__*/Object.freeze({
|
|
120
|
-
__proto__: null,
|
|
121
|
-
assertEqualsFunction: assertEqualsFunction,
|
|
122
|
-
assertEqualsParameters: assertEqualsParameters,
|
|
123
|
-
assertEqualsReturn: assertEqualsReturn,
|
|
124
|
-
assertFunction: assertFunction,
|
|
125
|
-
assertParameters: assertParameters,
|
|
126
|
-
assertReturn: assertReturn,
|
|
127
|
-
equalsFunction: equalsFunction,
|
|
128
|
-
equalsParameters: equalsParameters,
|
|
129
|
-
equalsReturn: equalsReturn,
|
|
130
|
-
isFunction: isFunction,
|
|
131
|
-
isParameters: isParameters,
|
|
132
|
-
isReturn: isReturn,
|
|
133
|
-
validateEqualsFunction: validateEqualsFunction,
|
|
134
|
-
validateEqualsParameters: validateEqualsParameters,
|
|
135
|
-
validateEqualsReturn: validateEqualsReturn,
|
|
136
|
-
validateFunction: validateFunction,
|
|
137
|
-
validateParameters: validateParameters,
|
|
138
|
-
validateReturn: validateReturn
|
|
139
|
-
});
|
|
140
|
-
|
|
141
|
-
/**
|
|
142
|
-
* @internal
|
|
143
|
-
*/
|
|
144
|
-
function formData() {
|
|
145
|
-
halt$7("formData");
|
|
146
|
-
}
|
|
147
|
-
/**
|
|
148
|
-
* @internal
|
|
149
|
-
*/
|
|
150
|
-
function assertFormData() {
|
|
151
|
-
halt$7("assertFormData");
|
|
152
|
-
}
|
|
153
|
-
/**
|
|
154
|
-
* @internal
|
|
155
|
-
*/
|
|
156
|
-
function isFormData() {
|
|
157
|
-
halt$7("isFormData");
|
|
158
|
-
}
|
|
159
|
-
/**
|
|
160
|
-
* @internal
|
|
161
|
-
*/
|
|
162
|
-
function validateFormData() {
|
|
163
|
-
halt$7("validateFormData");
|
|
164
|
-
}
|
|
165
|
-
/**
|
|
166
|
-
* @internal
|
|
167
|
-
*/
|
|
168
|
-
function query() {
|
|
169
|
-
halt$7("query");
|
|
170
|
-
}
|
|
171
|
-
/**
|
|
172
|
-
* @internal
|
|
173
|
-
*/
|
|
174
|
-
function assertQuery() {
|
|
175
|
-
halt$7("assertQuery");
|
|
176
|
-
}
|
|
177
|
-
/**
|
|
178
|
-
* @internal
|
|
179
|
-
*/
|
|
180
|
-
function isQuery() {
|
|
181
|
-
halt$7("isQuery");
|
|
182
|
-
}
|
|
183
|
-
/**
|
|
184
|
-
* @internal
|
|
185
|
-
*/
|
|
186
|
-
function validateQuery() {
|
|
187
|
-
halt$7("validateQuery");
|
|
188
|
-
}
|
|
189
|
-
/**
|
|
190
|
-
* @internal
|
|
191
|
-
*/
|
|
192
|
-
function headers() {
|
|
193
|
-
halt$7("headers");
|
|
194
|
-
}
|
|
195
|
-
/**
|
|
196
|
-
* @internal
|
|
197
|
-
*/
|
|
198
|
-
function assertHeaders() {
|
|
199
|
-
halt$7("assertHeaders");
|
|
200
|
-
}
|
|
201
|
-
/**
|
|
202
|
-
* @internal
|
|
203
|
-
*/
|
|
204
|
-
function isHeaders() {
|
|
205
|
-
halt$7("isHeaders");
|
|
206
|
-
}
|
|
207
|
-
/**
|
|
208
|
-
* @internal
|
|
209
|
-
*/
|
|
210
|
-
function validateHeaders() {
|
|
211
|
-
halt$7("validateHeaders");
|
|
212
|
-
}
|
|
213
|
-
/**
|
|
214
|
-
* @internal
|
|
215
|
-
*/
|
|
216
|
-
function parameter() {
|
|
217
|
-
halt$7("parameter");
|
|
218
|
-
}
|
|
219
|
-
/**
|
|
220
|
-
* @internal
|
|
221
|
-
*/
|
|
222
|
-
function createFormData() {
|
|
223
|
-
halt$7("createFormData");
|
|
224
|
-
}
|
|
225
|
-
/**
|
|
226
|
-
* @internal
|
|
227
|
-
*/
|
|
228
|
-
function createAssertFormData() {
|
|
229
|
-
halt$7("createAssertFormData");
|
|
230
|
-
}
|
|
231
|
-
/**
|
|
232
|
-
* @internal
|
|
233
|
-
*/
|
|
234
|
-
function createIsFormData() {
|
|
235
|
-
halt$7("createIsFormData");
|
|
236
|
-
}
|
|
237
|
-
/**
|
|
238
|
-
* @internal
|
|
239
|
-
*/
|
|
240
|
-
function createValidateFormData() {
|
|
241
|
-
halt$7("createValidateFormData");
|
|
242
|
-
}
|
|
243
|
-
/**
|
|
244
|
-
* @internal
|
|
245
|
-
*/
|
|
246
|
-
function createQuery() {
|
|
247
|
-
halt$7("createQuery");
|
|
248
|
-
}
|
|
249
|
-
/**
|
|
250
|
-
* @internal
|
|
251
|
-
*/
|
|
252
|
-
function createAssertQuery() {
|
|
253
|
-
halt$7("createAssertQuery");
|
|
254
|
-
}
|
|
255
|
-
/**
|
|
256
|
-
* @internal
|
|
257
|
-
*/
|
|
258
|
-
function createIsQuery() {
|
|
259
|
-
halt$7("createIsQuery");
|
|
260
|
-
}
|
|
261
|
-
/**
|
|
262
|
-
* @internal
|
|
263
|
-
*/
|
|
264
|
-
function createValidateQuery() {
|
|
265
|
-
halt$7("createValidateQuery");
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* @internal
|
|
269
|
-
*/
|
|
270
|
-
function createHeaders() {
|
|
271
|
-
halt$7("createHeaders");
|
|
272
|
-
}
|
|
273
|
-
/**
|
|
274
|
-
* @internal
|
|
275
|
-
*/
|
|
276
|
-
function createAssertHeaders() {
|
|
277
|
-
halt$7("createAssertHeaders");
|
|
278
|
-
}
|
|
279
|
-
/**
|
|
280
|
-
* @internal
|
|
281
|
-
*/
|
|
282
|
-
function createIsHeaders() {
|
|
283
|
-
halt$7("createIsHeaders");
|
|
284
|
-
}
|
|
285
|
-
/**
|
|
286
|
-
* @internal
|
|
287
|
-
*/
|
|
288
|
-
function createValidateHeaders() {
|
|
289
|
-
halt$7("createValidateHeaders");
|
|
290
|
-
}
|
|
291
|
-
/**
|
|
292
|
-
* @internal
|
|
293
|
-
*/
|
|
294
|
-
function createParameter() {
|
|
295
|
-
halt$7("createParameter");
|
|
296
|
-
}
|
|
297
|
-
/**
|
|
298
|
-
* @internal
|
|
299
|
-
*/
|
|
300
|
-
function halt$7(name) {
|
|
301
|
-
throw new Error(`Error on typia.http.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
302
|
-
}
|
|
303
|
-
|
|
304
|
-
var http = /*#__PURE__*/Object.freeze({
|
|
305
|
-
__proto__: null,
|
|
306
|
-
assertFormData: assertFormData,
|
|
307
|
-
assertHeaders: assertHeaders,
|
|
308
|
-
assertQuery: assertQuery,
|
|
309
|
-
createAssertFormData: createAssertFormData,
|
|
310
|
-
createAssertHeaders: createAssertHeaders,
|
|
311
|
-
createAssertQuery: createAssertQuery,
|
|
312
|
-
createFormData: createFormData,
|
|
313
|
-
createHeaders: createHeaders,
|
|
314
|
-
createIsFormData: createIsFormData,
|
|
315
|
-
createIsHeaders: createIsHeaders,
|
|
316
|
-
createIsQuery: createIsQuery,
|
|
317
|
-
createParameter: createParameter,
|
|
318
|
-
createQuery: createQuery,
|
|
319
|
-
createValidateFormData: createValidateFormData,
|
|
320
|
-
createValidateHeaders: createValidateHeaders,
|
|
321
|
-
createValidateQuery: createValidateQuery,
|
|
322
|
-
formData: formData,
|
|
323
|
-
headers: headers,
|
|
324
|
-
isFormData: isFormData,
|
|
325
|
-
isHeaders: isHeaders,
|
|
326
|
-
isQuery: isQuery,
|
|
327
|
-
parameter: parameter,
|
|
328
|
-
query: query,
|
|
329
|
-
validateFormData: validateFormData,
|
|
330
|
-
validateHeaders: validateHeaders,
|
|
331
|
-
validateQuery: validateQuery
|
|
332
|
-
});
|
|
333
|
-
|
|
334
|
-
/**
|
|
335
|
-
* @internal
|
|
336
|
-
*/
|
|
337
|
-
function applicationOfValidate() {
|
|
338
|
-
halt$6("applicationOfValidate");
|
|
339
|
-
}
|
|
340
|
-
/**
|
|
341
|
-
* @internal
|
|
342
|
-
*/
|
|
343
|
-
function application$1() {
|
|
344
|
-
halt$6("application");
|
|
345
|
-
}
|
|
346
|
-
/**
|
|
347
|
-
* @internal
|
|
348
|
-
*/
|
|
349
|
-
function parameters() {
|
|
350
|
-
halt$6("parameters");
|
|
351
|
-
}
|
|
352
|
-
/**
|
|
353
|
-
* @internal
|
|
354
|
-
*/
|
|
355
|
-
function schema() {
|
|
356
|
-
halt$6("schema");
|
|
357
|
-
}
|
|
358
|
-
/**
|
|
359
|
-
* @internal
|
|
360
|
-
*/
|
|
361
|
-
function halt$6(name) {
|
|
362
|
-
throw new Error(`Error on typia.llm.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
363
|
-
}
|
|
364
|
-
|
|
365
|
-
var llm = /*#__PURE__*/Object.freeze({
|
|
366
|
-
__proto__: null,
|
|
367
|
-
application: application$1,
|
|
368
|
-
applicationOfValidate: applicationOfValidate,
|
|
369
|
-
parameters: parameters,
|
|
370
|
-
schema: schema
|
|
371
|
-
});
|
|
372
|
-
|
|
373
|
-
/**
|
|
374
|
-
* @internal
|
|
375
|
-
*/
|
|
376
|
-
function schemas() {
|
|
377
|
-
halt$5("schemas");
|
|
378
|
-
}
|
|
379
|
-
/**
|
|
380
|
-
* @internal
|
|
381
|
-
*/
|
|
382
|
-
function application() {
|
|
383
|
-
halt$5("application");
|
|
384
|
-
}
|
|
385
|
-
/**
|
|
386
|
-
* @internal
|
|
387
|
-
*/
|
|
388
|
-
function assertParse() {
|
|
389
|
-
halt$5("assertParse");
|
|
390
|
-
}
|
|
391
|
-
/**
|
|
392
|
-
* @internal
|
|
393
|
-
*/
|
|
394
|
-
function isParse() {
|
|
395
|
-
halt$5("isParse");
|
|
396
|
-
}
|
|
397
|
-
/**
|
|
398
|
-
* @internal
|
|
399
|
-
*/
|
|
400
|
-
function validateParse() {
|
|
401
|
-
halt$5("validateParse");
|
|
402
|
-
}
|
|
403
|
-
/**
|
|
404
|
-
* @internal
|
|
405
|
-
*/
|
|
406
|
-
function stringify() {
|
|
407
|
-
halt$5("stringify");
|
|
408
|
-
}
|
|
409
|
-
/**
|
|
410
|
-
* @internal
|
|
411
|
-
*/
|
|
412
|
-
function assertStringify() {
|
|
413
|
-
halt$5("assertStringify");
|
|
414
|
-
}
|
|
415
|
-
/**
|
|
416
|
-
* @internal
|
|
417
|
-
*/
|
|
418
|
-
function isStringify() {
|
|
419
|
-
halt$5("isStringify");
|
|
420
|
-
}
|
|
421
|
-
/**
|
|
422
|
-
* @internal
|
|
423
|
-
*/
|
|
424
|
-
function validateStringify() {
|
|
425
|
-
halt$5("validateStringify");
|
|
426
|
-
}
|
|
427
|
-
/**
|
|
428
|
-
* @internal
|
|
429
|
-
*/
|
|
430
|
-
function createIsParse() {
|
|
431
|
-
halt$5("createIsParse");
|
|
432
|
-
}
|
|
433
|
-
/**
|
|
434
|
-
* @internal
|
|
435
|
-
*/
|
|
436
|
-
function createAssertParse() {
|
|
437
|
-
halt$5("createAssertParse");
|
|
438
|
-
}
|
|
439
|
-
/**
|
|
440
|
-
* @internal
|
|
441
|
-
*/
|
|
442
|
-
function createValidateParse() {
|
|
443
|
-
halt$5("createValidateParse");
|
|
444
|
-
}
|
|
445
|
-
/**
|
|
446
|
-
* @internal
|
|
447
|
-
*/
|
|
448
|
-
function createStringify() {
|
|
449
|
-
halt$5("createStringify");
|
|
450
|
-
}
|
|
451
|
-
/**
|
|
452
|
-
* @internal
|
|
453
|
-
*/
|
|
454
|
-
function createAssertStringify() {
|
|
455
|
-
halt$5("createAssertStringify");
|
|
456
|
-
}
|
|
457
|
-
/**
|
|
458
|
-
* @internal
|
|
459
|
-
*/
|
|
460
|
-
function createIsStringify() {
|
|
461
|
-
halt$5("createIsStringify");
|
|
462
|
-
}
|
|
463
|
-
/**
|
|
464
|
-
* @internal
|
|
465
|
-
*/
|
|
466
|
-
function createValidateStringify() {
|
|
467
|
-
halt$5("createValidateStringify");
|
|
468
|
-
}
|
|
469
|
-
/**
|
|
470
|
-
* @internal
|
|
471
|
-
*/
|
|
472
|
-
function halt$5(name) {
|
|
473
|
-
throw new Error(`Error on typia.json.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
474
|
-
}
|
|
475
|
-
|
|
476
|
-
var json = /*#__PURE__*/Object.freeze({
|
|
477
|
-
__proto__: null,
|
|
478
|
-
application: application,
|
|
479
|
-
assertParse: assertParse,
|
|
480
|
-
assertStringify: assertStringify,
|
|
481
|
-
createAssertParse: createAssertParse,
|
|
482
|
-
createAssertStringify: createAssertStringify,
|
|
483
|
-
createIsParse: createIsParse,
|
|
484
|
-
createIsStringify: createIsStringify,
|
|
485
|
-
createStringify: createStringify,
|
|
486
|
-
createValidateParse: createValidateParse,
|
|
487
|
-
createValidateStringify: createValidateStringify,
|
|
488
|
-
isParse: isParse,
|
|
489
|
-
isStringify: isStringify,
|
|
490
|
-
schemas: schemas,
|
|
491
|
-
stringify: stringify,
|
|
492
|
-
validateParse: validateParse,
|
|
493
|
-
validateStringify: validateStringify
|
|
494
|
-
});
|
|
495
|
-
|
|
496
|
-
/**
|
|
497
|
-
* @internal
|
|
498
|
-
*/
|
|
499
|
-
function literals() {
|
|
500
|
-
halt$4("literals");
|
|
501
|
-
}
|
|
502
|
-
/**
|
|
503
|
-
* @internal
|
|
504
|
-
*/
|
|
505
|
-
function clone() {
|
|
506
|
-
halt$4("clone");
|
|
507
|
-
}
|
|
508
|
-
/**
|
|
509
|
-
* @internal
|
|
510
|
-
*/
|
|
511
|
-
function assertClone() {
|
|
512
|
-
halt$4("assertClone");
|
|
513
|
-
}
|
|
514
|
-
/**
|
|
515
|
-
* @internal
|
|
516
|
-
*/
|
|
517
|
-
function isClone() {
|
|
518
|
-
halt$4("isClone");
|
|
519
|
-
}
|
|
520
|
-
/**
|
|
521
|
-
* @internal
|
|
522
|
-
*/
|
|
523
|
-
function validateClone() {
|
|
524
|
-
halt$4("validateClone");
|
|
525
|
-
}
|
|
526
|
-
/**
|
|
527
|
-
* @internal
|
|
528
|
-
*/
|
|
529
|
-
function prune() {
|
|
530
|
-
halt$4("prune");
|
|
531
|
-
}
|
|
532
|
-
/**
|
|
533
|
-
* @internal
|
|
534
|
-
*/
|
|
535
|
-
function assertPrune() {
|
|
536
|
-
halt$4("assertPrune");
|
|
537
|
-
}
|
|
538
|
-
/**
|
|
539
|
-
* @internal
|
|
540
|
-
*/
|
|
541
|
-
function isPrune() {
|
|
542
|
-
halt$4("isPrune");
|
|
543
|
-
}
|
|
544
|
-
/**
|
|
545
|
-
* @internal
|
|
546
|
-
*/
|
|
547
|
-
function validatePrune() {
|
|
548
|
-
halt$4("validatePrune");
|
|
549
|
-
}
|
|
550
|
-
/**
|
|
551
|
-
* @internal
|
|
552
|
-
*/
|
|
553
|
-
function createClone() {
|
|
554
|
-
halt$4("createClone");
|
|
555
|
-
}
|
|
556
|
-
/**
|
|
557
|
-
* @internal
|
|
558
|
-
*/
|
|
559
|
-
function createAssertClone() {
|
|
560
|
-
halt$4("createAssertClone");
|
|
561
|
-
}
|
|
562
|
-
/**
|
|
563
|
-
* @internal
|
|
564
|
-
*/
|
|
565
|
-
function createIsClone() {
|
|
566
|
-
halt$4("createIsClone");
|
|
567
|
-
}
|
|
568
|
-
/**
|
|
569
|
-
* @internal
|
|
570
|
-
*/
|
|
571
|
-
function createValidateClone() {
|
|
572
|
-
halt$4("createValidateClone");
|
|
573
|
-
}
|
|
574
|
-
/**
|
|
575
|
-
* @internal
|
|
576
|
-
*/
|
|
577
|
-
function createPrune() {
|
|
578
|
-
halt$4("createPrune");
|
|
579
|
-
}
|
|
580
|
-
/**
|
|
581
|
-
* @internal
|
|
582
|
-
*/
|
|
583
|
-
function createAssertPrune() {
|
|
584
|
-
halt$4("createAssertPrune");
|
|
585
|
-
}
|
|
586
|
-
/**
|
|
587
|
-
* @internal
|
|
588
|
-
*/
|
|
589
|
-
function createIsPrune() {
|
|
590
|
-
halt$4("createIsPrune");
|
|
591
|
-
}
|
|
592
|
-
/**
|
|
593
|
-
* @internal
|
|
594
|
-
*/
|
|
595
|
-
function createValidatePrune() {
|
|
596
|
-
halt$4("createValidatePrune");
|
|
597
|
-
}
|
|
598
|
-
/**
|
|
599
|
-
* @internal
|
|
600
|
-
*/
|
|
601
|
-
function halt$4(name) {
|
|
602
|
-
throw new Error(`Error on typia.misc.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
603
|
-
}
|
|
604
|
-
|
|
605
|
-
var misc = /*#__PURE__*/Object.freeze({
|
|
606
|
-
__proto__: null,
|
|
607
|
-
assertClone: assertClone,
|
|
608
|
-
assertPrune: assertPrune,
|
|
609
|
-
clone: clone,
|
|
610
|
-
createAssertClone: createAssertClone,
|
|
611
|
-
createAssertPrune: createAssertPrune,
|
|
612
|
-
createClone: createClone,
|
|
613
|
-
createIsClone: createIsClone,
|
|
614
|
-
createIsPrune: createIsPrune,
|
|
615
|
-
createPrune: createPrune,
|
|
616
|
-
createValidateClone: createValidateClone,
|
|
617
|
-
createValidatePrune: createValidatePrune,
|
|
618
|
-
isClone: isClone,
|
|
619
|
-
isPrune: isPrune,
|
|
620
|
-
literals: literals,
|
|
621
|
-
prune: prune,
|
|
622
|
-
validateClone: validateClone,
|
|
623
|
-
validatePrune: validatePrune
|
|
624
|
-
});
|
|
625
|
-
|
|
626
|
-
/**
|
|
627
|
-
* @internal
|
|
628
|
-
*/
|
|
629
|
-
function camel() {
|
|
630
|
-
return halt$3("camel");
|
|
631
|
-
}
|
|
632
|
-
/**
|
|
633
|
-
* @internal
|
|
634
|
-
*/
|
|
635
|
-
function assertCamel() {
|
|
636
|
-
return halt$3("assertCamel");
|
|
637
|
-
}
|
|
638
|
-
/**
|
|
639
|
-
* @internal
|
|
640
|
-
*/
|
|
641
|
-
function isCamel() {
|
|
642
|
-
return halt$3("isCamel");
|
|
643
|
-
}
|
|
644
|
-
/**
|
|
645
|
-
* @internal
|
|
646
|
-
*/
|
|
647
|
-
function validateCamel() {
|
|
648
|
-
return halt$3("validateCamel");
|
|
649
|
-
}
|
|
650
|
-
/**
|
|
651
|
-
* @internal
|
|
652
|
-
*/
|
|
653
|
-
function pascal() {
|
|
654
|
-
return halt$3("pascal");
|
|
655
|
-
}
|
|
656
|
-
/**
|
|
657
|
-
* @internal
|
|
658
|
-
*/
|
|
659
|
-
function assertPascal() {
|
|
660
|
-
return halt$3("assertPascal");
|
|
661
|
-
}
|
|
662
|
-
/**
|
|
663
|
-
* @internal
|
|
664
|
-
*/
|
|
665
|
-
function isPascal() {
|
|
666
|
-
return halt$3("isPascal");
|
|
667
|
-
}
|
|
668
|
-
/**
|
|
669
|
-
* @internal
|
|
670
|
-
*/
|
|
671
|
-
function validatePascal() {
|
|
672
|
-
return halt$3("validatePascal");
|
|
673
|
-
}
|
|
674
|
-
/**
|
|
675
|
-
* @internal
|
|
676
|
-
*/
|
|
677
|
-
function snake() {
|
|
678
|
-
return halt$3("snake");
|
|
679
|
-
}
|
|
680
|
-
/**
|
|
681
|
-
* @internal
|
|
682
|
-
*/
|
|
683
|
-
function assertSnake() {
|
|
684
|
-
return halt$3("assertSnake");
|
|
685
|
-
}
|
|
686
|
-
/**
|
|
687
|
-
* @internal
|
|
688
|
-
*/
|
|
689
|
-
function isSnake() {
|
|
690
|
-
return halt$3("isSnake");
|
|
691
|
-
}
|
|
692
|
-
/**
|
|
693
|
-
* @internal
|
|
694
|
-
*/
|
|
695
|
-
function validateSnake() {
|
|
696
|
-
return halt$3("validateSnake");
|
|
697
|
-
}
|
|
698
|
-
/**
|
|
699
|
-
* @internal
|
|
700
|
-
*/
|
|
701
|
-
function createCamel() {
|
|
702
|
-
halt$3("createCamel");
|
|
703
|
-
}
|
|
704
|
-
/**
|
|
705
|
-
* @internal
|
|
706
|
-
*/
|
|
707
|
-
function createAssertCamel() {
|
|
708
|
-
halt$3("createAssertCamel");
|
|
709
|
-
}
|
|
710
|
-
/**
|
|
711
|
-
* @internal
|
|
712
|
-
*/
|
|
713
|
-
function createIsCamel() {
|
|
714
|
-
halt$3("createIsCamel");
|
|
715
|
-
}
|
|
716
|
-
/**
|
|
717
|
-
* @internal
|
|
718
|
-
*/
|
|
719
|
-
function createValidateCamel() {
|
|
720
|
-
halt$3("createValidateCamel");
|
|
721
|
-
}
|
|
722
|
-
/**
|
|
723
|
-
* @internal
|
|
724
|
-
*/
|
|
725
|
-
function createPascal() {
|
|
726
|
-
halt$3("createPascal");
|
|
727
|
-
}
|
|
728
|
-
/**
|
|
729
|
-
* @internal
|
|
730
|
-
*/
|
|
731
|
-
function createAssertPascal() {
|
|
732
|
-
halt$3("createAssertPascal");
|
|
733
|
-
}
|
|
734
|
-
/**
|
|
735
|
-
* @internal
|
|
736
|
-
*/
|
|
737
|
-
function createIsPascal() {
|
|
738
|
-
halt$3("createIsPascal");
|
|
739
|
-
}
|
|
740
|
-
/**
|
|
741
|
-
* @internal
|
|
742
|
-
*/
|
|
743
|
-
function createValidatePascal() {
|
|
744
|
-
halt$3("createValidatePascal");
|
|
745
|
-
}
|
|
746
|
-
/**
|
|
747
|
-
* @internal
|
|
748
|
-
*/
|
|
749
|
-
function createSnake() {
|
|
750
|
-
halt$3("createSnake");
|
|
751
|
-
}
|
|
752
|
-
/**
|
|
753
|
-
* @internal
|
|
754
|
-
*/
|
|
755
|
-
function createAssertSnake() {
|
|
756
|
-
halt$3("createAssertSnake");
|
|
757
|
-
}
|
|
758
|
-
/**
|
|
759
|
-
* @internal
|
|
760
|
-
*/
|
|
761
|
-
function createIsSnake() {
|
|
762
|
-
halt$3("createIsSnake");
|
|
763
|
-
}
|
|
764
|
-
/**
|
|
765
|
-
* @internal
|
|
766
|
-
*/
|
|
767
|
-
function createValidateSnake() {
|
|
768
|
-
halt$3("createValidateSnake");
|
|
769
|
-
}
|
|
770
|
-
/**
|
|
771
|
-
* @internal
|
|
772
|
-
*/
|
|
773
|
-
function halt$3(name) {
|
|
774
|
-
throw new Error(`Error on typia.notations.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
775
|
-
}
|
|
776
|
-
|
|
777
|
-
var notations = /*#__PURE__*/Object.freeze({
|
|
778
|
-
__proto__: null,
|
|
779
|
-
assertCamel: assertCamel,
|
|
780
|
-
assertPascal: assertPascal,
|
|
781
|
-
assertSnake: assertSnake,
|
|
782
|
-
camel: camel,
|
|
783
|
-
createAssertCamel: createAssertCamel,
|
|
784
|
-
createAssertPascal: createAssertPascal,
|
|
785
|
-
createAssertSnake: createAssertSnake,
|
|
786
|
-
createCamel: createCamel,
|
|
787
|
-
createIsCamel: createIsCamel,
|
|
788
|
-
createIsPascal: createIsPascal,
|
|
789
|
-
createIsSnake: createIsSnake,
|
|
790
|
-
createPascal: createPascal,
|
|
791
|
-
createSnake: createSnake,
|
|
792
|
-
createValidateCamel: createValidateCamel,
|
|
793
|
-
createValidatePascal: createValidatePascal,
|
|
794
|
-
createValidateSnake: createValidateSnake,
|
|
795
|
-
isCamel: isCamel,
|
|
796
|
-
isPascal: isPascal,
|
|
797
|
-
isSnake: isSnake,
|
|
798
|
-
pascal: pascal,
|
|
799
|
-
snake: snake,
|
|
800
|
-
validateCamel: validateCamel,
|
|
801
|
-
validatePascal: validatePascal,
|
|
802
|
-
validateSnake: validateSnake
|
|
803
|
-
});
|
|
804
|
-
|
|
805
|
-
/**
|
|
806
|
-
* @internal
|
|
807
|
-
*/
|
|
808
|
-
function message() {
|
|
809
|
-
halt$2("message");
|
|
810
|
-
}
|
|
811
|
-
/**
|
|
812
|
-
* @internal
|
|
813
|
-
*/
|
|
814
|
-
function decode() {
|
|
815
|
-
halt$2("decode");
|
|
816
|
-
}
|
|
817
|
-
/**
|
|
818
|
-
* @internal
|
|
819
|
-
*/
|
|
820
|
-
function assertDecode() {
|
|
821
|
-
halt$2("assertDecode");
|
|
822
|
-
}
|
|
823
|
-
/**
|
|
824
|
-
* @internal
|
|
825
|
-
*/
|
|
826
|
-
function isDecode() {
|
|
827
|
-
halt$2("isDecode");
|
|
828
|
-
}
|
|
829
|
-
/**
|
|
830
|
-
* @internal
|
|
831
|
-
*/
|
|
832
|
-
function validateDecode() {
|
|
833
|
-
halt$2("validateDecode");
|
|
834
|
-
}
|
|
835
|
-
/**
|
|
836
|
-
* @internal
|
|
837
|
-
*/
|
|
838
|
-
function encode() {
|
|
839
|
-
halt$2("encode");
|
|
840
|
-
}
|
|
841
|
-
/**
|
|
842
|
-
* @internal
|
|
843
|
-
*/
|
|
844
|
-
function assertEncode() {
|
|
845
|
-
halt$2("assertEncode");
|
|
846
|
-
}
|
|
847
|
-
/**
|
|
848
|
-
* @internal
|
|
849
|
-
*/
|
|
850
|
-
function isEncode() {
|
|
851
|
-
halt$2("isEncode");
|
|
852
|
-
}
|
|
853
|
-
/**
|
|
854
|
-
* @internal
|
|
855
|
-
*/
|
|
856
|
-
function validateEncode() {
|
|
857
|
-
halt$2("validateEncode");
|
|
858
|
-
}
|
|
859
|
-
/**
|
|
860
|
-
* @internal
|
|
861
|
-
*/
|
|
862
|
-
function createDecode() {
|
|
863
|
-
halt$2("createDecode");
|
|
864
|
-
}
|
|
865
|
-
/**
|
|
866
|
-
* @internal
|
|
867
|
-
*/
|
|
868
|
-
function createIsDecode() {
|
|
869
|
-
halt$2("createIsDecode");
|
|
870
|
-
}
|
|
871
|
-
/**
|
|
872
|
-
* @internal
|
|
873
|
-
*/
|
|
874
|
-
function createAssertDecode() {
|
|
875
|
-
halt$2("createAssertDecode");
|
|
876
|
-
}
|
|
877
|
-
/**
|
|
878
|
-
* @internal
|
|
879
|
-
*/
|
|
880
|
-
function createValidateDecode() {
|
|
881
|
-
halt$2("createValidateDecode");
|
|
882
|
-
}
|
|
883
|
-
/**
|
|
884
|
-
* @internal
|
|
885
|
-
*/
|
|
886
|
-
function createEncode() {
|
|
887
|
-
halt$2("createEncode");
|
|
888
|
-
}
|
|
889
|
-
/**
|
|
890
|
-
* @internal
|
|
891
|
-
*/
|
|
892
|
-
function createIsEncode() {
|
|
893
|
-
halt$2("createIsEncode");
|
|
894
|
-
}
|
|
895
|
-
/**
|
|
896
|
-
* @internal
|
|
897
|
-
*/
|
|
898
|
-
function createAssertEncode() {
|
|
899
|
-
halt$2("createAssertEncode");
|
|
900
|
-
}
|
|
901
|
-
/**
|
|
902
|
-
* @internal
|
|
903
|
-
*/
|
|
904
|
-
function createValidateEncode() {
|
|
905
|
-
halt$2("createValidateEncode");
|
|
906
|
-
}
|
|
907
|
-
/**
|
|
908
|
-
* @internal
|
|
909
|
-
*/
|
|
910
|
-
function halt$2(name) {
|
|
911
|
-
throw new Error(`Error on typia.protobuf.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
912
|
-
}
|
|
913
|
-
|
|
914
|
-
var protobuf = /*#__PURE__*/Object.freeze({
|
|
915
|
-
__proto__: null,
|
|
916
|
-
assertDecode: assertDecode,
|
|
917
|
-
assertEncode: assertEncode,
|
|
918
|
-
createAssertDecode: createAssertDecode,
|
|
919
|
-
createAssertEncode: createAssertEncode,
|
|
920
|
-
createDecode: createDecode,
|
|
921
|
-
createEncode: createEncode,
|
|
922
|
-
createIsDecode: createIsDecode,
|
|
923
|
-
createIsEncode: createIsEncode,
|
|
924
|
-
createValidateDecode: createValidateDecode,
|
|
925
|
-
createValidateEncode: createValidateEncode,
|
|
926
|
-
decode: decode,
|
|
927
|
-
encode: encode,
|
|
928
|
-
isDecode: isDecode,
|
|
929
|
-
isEncode: isEncode,
|
|
930
|
-
message: message,
|
|
931
|
-
validateDecode: validateDecode,
|
|
932
|
-
validateEncode: validateEncode
|
|
933
|
-
});
|
|
934
|
-
|
|
935
|
-
/**
|
|
936
|
-
* @internal
|
|
937
|
-
*/
|
|
938
|
-
function metadata() {
|
|
939
|
-
halt$1("metadata");
|
|
940
|
-
}
|
|
941
|
-
function name() {
|
|
942
|
-
halt$1("name");
|
|
943
|
-
}
|
|
944
|
-
/**
|
|
945
|
-
* @internal
|
|
946
|
-
*/
|
|
947
|
-
function halt$1(name) {
|
|
948
|
-
throw new Error(`Error on typia.reflect.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
949
|
-
}
|
|
950
|
-
|
|
951
|
-
var reflect = /*#__PURE__*/Object.freeze({
|
|
952
|
-
__proto__: null,
|
|
953
|
-
metadata: metadata,
|
|
954
|
-
name: name
|
|
955
|
-
});
|
|
956
|
-
|
|
957
|
-
var index = /*#__PURE__*/Object.freeze({
|
|
958
|
-
__proto__: null
|
|
959
|
-
});
|
|
960
|
-
|
|
961
|
-
var ILlmApplicationOfValidate;
|
|
962
|
-
(function (ILlmApplicationOfValidate) {
|
|
963
|
-
})(ILlmApplicationOfValidate || (ILlmApplicationOfValidate = {}));
|
|
964
|
-
|
|
965
|
-
var ILlmFunctionOfValidate;
|
|
966
|
-
(function (ILlmFunctionOfValidate) {
|
|
967
|
-
})(ILlmFunctionOfValidate || (ILlmFunctionOfValidate = {}));
|
|
968
|
-
|
|
969
|
-
class TypeGuardError extends Error {
|
|
970
|
-
method;
|
|
971
|
-
path;
|
|
972
|
-
expected;
|
|
973
|
-
value;
|
|
974
|
-
fake_expected_typed_value_;
|
|
975
|
-
constructor(props) {
|
|
976
|
-
// MESSAGE CONSTRUCTION
|
|
977
|
-
super(props.message ||
|
|
978
|
-
`Error on ${props.method}(): invalid type${props.path ? ` on ${props.path}` : ""}, expect to be ${props.expected}`);
|
|
979
|
-
// INHERITANCE POLYFILL
|
|
980
|
-
const proto = new.target.prototype;
|
|
981
|
-
if (Object.setPrototypeOf)
|
|
982
|
-
Object.setPrototypeOf(this, proto);
|
|
983
|
-
else
|
|
984
|
-
this.__proto__ = proto;
|
|
985
|
-
// ASSIGN MEMBERS
|
|
986
|
-
this.method = props.method;
|
|
987
|
-
this.path = props.path;
|
|
988
|
-
this.expected = props.expected;
|
|
989
|
-
this.value = props.value;
|
|
990
|
-
}
|
|
991
|
-
}
|
|
992
|
-
|
|
993
|
-
/**
|
|
994
|
-
* @internal
|
|
995
|
-
*/
|
|
996
|
-
function assert() {
|
|
997
|
-
halt("assert");
|
|
998
|
-
}
|
|
999
|
-
/**
|
|
1000
|
-
* @internal
|
|
1001
|
-
*/
|
|
1002
|
-
function assertGuard() {
|
|
1003
|
-
halt("assertGuard");
|
|
1004
|
-
}
|
|
1005
|
-
/**
|
|
1006
|
-
* @internal
|
|
1007
|
-
*/
|
|
1008
|
-
function is() {
|
|
1009
|
-
halt("is");
|
|
1010
|
-
}
|
|
1011
|
-
/**
|
|
1012
|
-
* @internal
|
|
1013
|
-
*/
|
|
1014
|
-
function validate() {
|
|
1015
|
-
halt("validate");
|
|
1016
|
-
}
|
|
1017
|
-
/**
|
|
1018
|
-
* @internal
|
|
1019
|
-
*/
|
|
1020
|
-
function assertEquals() {
|
|
1021
|
-
halt("assertEquals");
|
|
1022
|
-
}
|
|
1023
|
-
/**
|
|
1024
|
-
* @internal
|
|
1025
|
-
*/
|
|
1026
|
-
function assertGuardEquals() {
|
|
1027
|
-
halt("assertGuardEquals");
|
|
1028
|
-
}
|
|
1029
|
-
/**
|
|
1030
|
-
* @internal
|
|
1031
|
-
*/
|
|
1032
|
-
function equals() {
|
|
1033
|
-
halt("equals");
|
|
1034
|
-
}
|
|
1035
|
-
/**
|
|
1036
|
-
* @internal
|
|
1037
|
-
*/
|
|
1038
|
-
function validateEquals() {
|
|
1039
|
-
halt("validateEquals");
|
|
1040
|
-
}
|
|
1041
|
-
/**
|
|
1042
|
-
* @internal
|
|
1043
|
-
*/
|
|
1044
|
-
function random() {
|
|
1045
|
-
halt("random");
|
|
1046
|
-
}
|
|
1047
|
-
/**
|
|
1048
|
-
* @internal
|
|
1049
|
-
*/
|
|
1050
|
-
function createAssert() {
|
|
1051
|
-
halt("createAssert");
|
|
1052
|
-
}
|
|
1053
|
-
/**
|
|
1054
|
-
* @internal
|
|
1055
|
-
*/
|
|
1056
|
-
function createAssertGuard() {
|
|
1057
|
-
halt("createAssertGuard");
|
|
1058
|
-
}
|
|
1059
|
-
/**
|
|
1060
|
-
* @internal
|
|
1061
|
-
*/
|
|
1062
|
-
function createIs() {
|
|
1063
|
-
halt("createIs");
|
|
1064
|
-
}
|
|
1065
|
-
/**
|
|
1066
|
-
* @internal
|
|
1067
|
-
*/
|
|
1068
|
-
function createValidate() {
|
|
1069
|
-
halt("createValidate");
|
|
1070
|
-
}
|
|
1071
|
-
/**
|
|
1072
|
-
* @internal
|
|
1073
|
-
*/
|
|
1074
|
-
function createAssertEquals() {
|
|
1075
|
-
halt("createAssertEquals");
|
|
1076
|
-
}
|
|
1077
|
-
/**
|
|
1078
|
-
* @internal
|
|
1079
|
-
*/
|
|
1080
|
-
function createAssertGuardEquals() {
|
|
1081
|
-
halt("createAssertGuardEquals");
|
|
1082
|
-
}
|
|
1083
|
-
/**
|
|
1084
|
-
* @internal
|
|
1085
|
-
*/
|
|
1086
|
-
function createEquals() {
|
|
1087
|
-
halt("createEquals");
|
|
1088
|
-
}
|
|
1089
|
-
/**
|
|
1090
|
-
* @internal
|
|
1091
|
-
*/
|
|
1092
|
-
function createValidateEquals() {
|
|
1093
|
-
halt("createValidateEquals");
|
|
1094
|
-
}
|
|
1095
|
-
/**
|
|
1096
|
-
* @internal
|
|
1097
|
-
*/
|
|
1098
|
-
function createRandom() {
|
|
1099
|
-
halt("createRandom");
|
|
1100
|
-
}
|
|
1101
|
-
/**
|
|
1102
|
-
* @internal
|
|
1103
|
-
*/
|
|
1104
|
-
function halt(name) {
|
|
1105
|
-
throw new Error(`Error on typia.${name}(): no transform has been configured. Read and follow https://typia.io/docs/setup please.`);
|
|
1106
|
-
}
|
|
1107
|
-
|
|
1108
|
-
var typia = /*#__PURE__*/Object.freeze({
|
|
1109
|
-
__proto__: null,
|
|
1110
|
-
get ILlmApplicationOfValidate () { return ILlmApplicationOfValidate; },
|
|
1111
|
-
get ILlmFunctionOfValidate () { return ILlmFunctionOfValidate; },
|
|
1112
|
-
TypeGuardError: TypeGuardError,
|
|
1113
|
-
assert: assert,
|
|
1114
|
-
assertEquals: assertEquals,
|
|
1115
|
-
assertGuard: assertGuard,
|
|
1116
|
-
assertGuardEquals: assertGuardEquals,
|
|
1117
|
-
createAssert: createAssert,
|
|
1118
|
-
createAssertEquals: createAssertEquals,
|
|
1119
|
-
createAssertGuard: createAssertGuard,
|
|
1120
|
-
createAssertGuardEquals: createAssertGuardEquals,
|
|
1121
|
-
createEquals: createEquals,
|
|
1122
|
-
createIs: createIs,
|
|
1123
|
-
createRandom: createRandom,
|
|
1124
|
-
createValidate: createValidate,
|
|
1125
|
-
createValidateEquals: createValidateEquals,
|
|
1126
|
-
equals: equals,
|
|
1127
|
-
functional: functional,
|
|
1128
|
-
http: http,
|
|
1129
|
-
is: is,
|
|
1130
|
-
json: json,
|
|
1131
|
-
llm: llm,
|
|
1132
|
-
misc: misc,
|
|
1133
|
-
notations: notations,
|
|
1134
|
-
protobuf: protobuf,
|
|
1135
|
-
random: random,
|
|
1136
|
-
reflect: reflect,
|
|
1137
|
-
tags: index,
|
|
1138
|
-
validate: validate,
|
|
1139
|
-
validateEquals: validateEquals
|
|
1140
|
-
});
|
|
1141
|
-
|
|
1142
|
-
export { ILlmApplicationOfValidate, ILlmFunctionOfValidate, TypeGuardError, assert, assertEquals, assertGuard, assertGuardEquals, createAssert, createAssertEquals, createAssertGuard, createAssertGuardEquals, createEquals, createIs, createRandom, createValidate, createValidateEquals, typia as default, equals, functional, http, is, json, llm, misc, notations, protobuf, random, reflect, index as tags, validate, validateEquals };
|
|
1
|
+
import * as module from './module.mjs';
|
|
2
|
+
export { assert, assertEquals, assertGuard, assertGuardEquals, createAssert, createAssertEquals, createAssertGuard, createAssertGuardEquals, createEquals, createIs, createRandom, createValidate, createValidateEquals, equals, is, random, validate, validateEquals } from './module.mjs';
|
|
3
|
+
import * as functional from './functional.mjs';
|
|
4
|
+
export { functional };
|
|
5
|
+
import * as http from './http.mjs';
|
|
6
|
+
export { http };
|
|
7
|
+
import * as llm from './llm.mjs';
|
|
8
|
+
export { llm };
|
|
9
|
+
import * as json from './json.mjs';
|
|
10
|
+
export { json };
|
|
11
|
+
import * as misc from './misc.mjs';
|
|
12
|
+
export { misc };
|
|
13
|
+
import * as notations from './notations.mjs';
|
|
14
|
+
export { notations };
|
|
15
|
+
import * as protobuf from './protobuf.mjs';
|
|
16
|
+
export { protobuf };
|
|
17
|
+
import * as reflect from './reflect.mjs';
|
|
18
|
+
export { reflect };
|
|
19
|
+
import * as index from './tags/index.mjs';
|
|
20
|
+
export { index as tags };
|
|
21
|
+
export { ILlmApplicationOfValidate } from './schemas/llm/ILlmApplicationOfValidate.mjs';
|
|
22
|
+
export { ILlmFunctionOfValidate } from './schemas/llm/ILlmFunctionOfValidate.mjs';
|
|
23
|
+
export { TypeGuardError } from './TypeGuardError.mjs';
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export { module as default };
|
|
1143
28
|
//# sourceMappingURL=index.mjs.map
|