diff --git a/benchmark/package.json b/benchmark/package.json index 22c45fcab3..4e45e5e7e9 100644 --- a/benchmark/package.json +++ b/benchmark/package.json @@ -72,6 +72,6 @@ "suppress-warnings": "^1.0.2", "tstl": "^3.0.0", "uuid": "^9.0.1", - "typia": "../typia-7.0.0-dev.20241110.tgz" + "typia": "../typia-7.0.0-dev.20241111.tgz" } } \ No newline at end of file diff --git a/errors/package.json b/errors/package.json index feb808634a..6b4e294aef 100644 --- a/errors/package.json +++ b/errors/package.json @@ -32,6 +32,6 @@ "typescript": "^5.3.2" }, "dependencies": { - "typia": "../typia-7.0.0-dev.20241110.tgz" + "typia": "../typia-7.0.0-dev.20241111.tgz" } } \ No newline at end of file diff --git a/package.json b/package.json index 250a210846..d47e8f66d9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "typia", - "version": "7.0.0-dev.20241110", + "version": "7.0.0-dev.20241111", "description": "Superfast runtime validators with only one line", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -68,7 +68,7 @@ }, "homepage": "https://typia.io", "dependencies": { - "@samchon/openapi": "^2.0.0-dev.20241110-2", + "@samchon/openapi": "2.0.0-dev.20241111", "commander": "^10.0.0", "comment-json": "^4.2.3", "inquirer": "^8.2.5", diff --git a/packages/typescript-json/package.json b/packages/typescript-json/package.json index 7bf1ef8501..329aba5c17 100644 --- a/packages/typescript-json/package.json +++ b/packages/typescript-json/package.json @@ -1,6 +1,6 @@ { "name": "typescript-json", - "version": "7.0.0-dev.20241110", + "version": "7.0.0-dev.20241111", "description": "Superfast runtime validators with only one line", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -64,7 +64,7 @@ }, "homepage": "https://typia.io", "dependencies": { - "typia": "7.0.0-dev.20241110" + "typia": "7.0.0-dev.20241111" }, "peerDependencies": { "typescript": ">=4.8.0 <5.7.0" diff --git a/src/factories/MetadataCollection.ts b/src/factories/MetadataCollection.ts index 6479d3f082..7fce55b70a 100644 --- a/src/factories/MetadataCollection.ts +++ b/src/factories/MetadataCollection.ts @@ -123,9 +123,9 @@ export class MetadataCollection { const oldbie = this.objects_.get(type); if (oldbie !== undefined) return [oldbie, false]; - const $id: string = this.getName(checker, type); + const id: string = this.getName(checker, type); const obj: MetadataObjectType = MetadataObjectType.create({ - name: $id, + name: id, properties: [], description: (type.aliasSymbol && CommentFactory.description(type.aliasSymbol)) ?? @@ -150,9 +150,9 @@ export class MetadataCollection { const oldbie = this.aliases_.get(type); if (oldbie !== undefined) return [oldbie, false, () => {}]; - const $id: string = this.getName(checker, type); + const id: string = this.getName(checker, type); const alias: MetadataAliasType = MetadataAliasType.create({ - name: $id, + name: id, value: null!, description: CommentFactory.description(symbol) ?? null, recursive: null!, @@ -170,9 +170,9 @@ export class MetadataCollection { const oldbie = this.arrays_.get(type); if (oldbie !== undefined) return [oldbie, false, () => {}]; - const $id = this.getName(checker, type); + const id = this.getName(checker, type); const array: MetadataArrayType = MetadataArrayType.create({ - name: $id, + name: id, value: null!, index: null, recursive: null!, @@ -189,9 +189,9 @@ export class MetadataCollection { const oldbie = this.tuples_.get(type); if (oldbie !== undefined) return [oldbie, false, () => {}]; - const $id = this.getName(checker, type); + const id = this.getName(checker, type); const tuple: MetadataTupleType = MetadataTupleType.create({ - name: $id, + name: id, elements: null!, index: null, recursive: null!, diff --git a/src/programmers/internal/json_schema_array.ts b/src/programmers/internal/json_schema_array.ts index b1ae893485..2bdcc6acb0 100644 --- a/src/programmers/internal/json_schema_array.ts +++ b/src/programmers/internal/json_schema_array.ts @@ -23,16 +23,20 @@ export const json_schema_array = (props: { tags: props.array.tags, }); if (props.array.type.recursive === true) { - const out = () => [{ $ref }]; - const $ref: string = `#/components/schemas/${props.array.type.name}`; - if (props.components.schemas?.[$ref] !== undefined) return out(); + const out = () => [ + { + $ref: `#/components/schemas/${props.array.type.name}`, + }, + ]; + if (props.components.schemas?.[props.array.type.name] !== undefined) + return out(); props.components.schemas ??= {}; - props.components.schemas[$ref] ??= {}; + props.components.schemas[props.array.type.name] ??= {}; const oneOf: OpenApi.IJsonSchema.IArray[] = factory(); Object.assign( - props.components.schemas[$ref]!, + props.components.schemas[props.array.type.name]!, oneOf.length === 1 ? oneOf[0] : { oneOf }, ); return out(); diff --git a/src/programmers/llm/LlmApplicationProgrammer.ts b/src/programmers/llm/LlmApplicationProgrammer.ts index 99171e6c4d..4a88fb9148 100644 --- a/src/programmers/llm/LlmApplicationProgrammer.ts +++ b/src/programmers/llm/LlmApplicationProgrammer.ts @@ -11,7 +11,7 @@ import { MetadataObjectType } from "../../schemas/metadata/MetadataObjectType"; import { LlmSchemaProgrammer } from "./LlmSchemaProgrammer"; export namespace LlmApplicationProgrammer { - export const validate = () => { + export const validate = (model: ILlmApplication.Model) => { let top: Metadata | undefined; return ( metadata: Metadata, @@ -28,7 +28,7 @@ export namespace LlmApplicationProgrammer { metadata.functions.length === 1 ) return validateFunction(metadata.functions[0]!); - else return LlmSchemaProgrammer.validate(metadata); + else return LlmSchemaProgrammer.validate(model)(metadata); const output: string[] = []; const valid: boolean = @@ -88,7 +88,7 @@ export namespace LlmApplicationProgrammer { model: Model; metadata: Metadata; }): ILlmApplication => { - const errors: string[] = validate()(props.metadata, { + const errors: string[] = validate(props.model)(props.metadata, { top: true, object: null, property: null, diff --git a/src/programmers/llm/LlmSchemaProgrammer.ts b/src/programmers/llm/LlmSchemaProgrammer.ts index a791c418a1..21ec562cc9 100644 --- a/src/programmers/llm/LlmSchemaProgrammer.ts +++ b/src/programmers/llm/LlmSchemaProgrammer.ts @@ -1,5 +1,6 @@ import { ILlmApplication } from "@samchon/openapi"; import { HttpLlmConverter } from "@samchon/openapi/lib/converters/HttpLlmConverter"; +import { OpenApiV3Converter } from "@samchon/openapi/lib/converters/OpenApiV3Converter"; import { IJsonSchemaCollection } from "../../schemas/json/IJsonSchemaCollection"; import { Metadata } from "../../schemas/metadata/Metadata"; @@ -8,41 +9,55 @@ import { AtomicPredicator } from "../helpers/AtomicPredicator"; import { JsonSchemasProgrammer } from "../json/JsonSchemasProgrammer"; export namespace LlmSchemaProgrammer { - export const validate = (metadata: Metadata): string[] => { - const output: string[] = []; - if ( - metadata.atomics.some((a) => a.type === "bigint") || - metadata.constants.some((c) => c.type === "bigint") - ) - output.push("LLM schema does not support bigint type."); - if ( - metadata.tuples.some((t) => - t.type.elements.some((e) => e.isRequired() === false), - ) || - metadata.arrays.some((a) => a.type.value.isRequired() === false) - ) - output.push("LLM schema does not support undefined type in array."); - if (metadata.maps.length) - output.push("LLM schema does not support Map type."); - if (metadata.sets.length) - output.push("LLM schema does not support Set type."); - for (const native of metadata.natives) + export const validate = + (model: ILlmApplication.Model) => + (metadata: Metadata): string[] => { + const output: string[] = []; if ( - AtomicPredicator.native(native.name) === false && - native.name !== "Date" && - native.name !== "Blob" && - native.name !== "File" + metadata.atomics.some((a) => a.type === "bigint") || + metadata.constants.some((c) => c.type === "bigint") ) - output.push(`LLM schema does not support ${native.name} type.`); - // if ( - // metadata.aliases.some((a) => a.type.recursive) || - // metadata.arrays.some((a) => a.type.recursive) || - // metadata.objects.some((o) => o.type.recursive) || - // metadata.tuples.some((t) => t.type.recursive) - // ) - // output.push("LLM schema does not support recursive type."); - return output; - }; + output.push("LLM schema does not support bigint type."); + if ( + metadata.tuples.some((t) => + t.type.elements.some((e) => e.isRequired() === false), + ) || + metadata.arrays.some((a) => a.type.value.isRequired() === false) + ) + output.push("LLM schema does not support undefined type in array."); + if (metadata.maps.length) + output.push("LLM schema does not support Map type."); + if (metadata.sets.length) + output.push("LLM schema does not support Set type."); + for (const native of metadata.natives) + if ( + AtomicPredicator.native(native.name) === false && + native.name !== "Date" && + native.name !== "Blob" && + native.name !== "File" + ) + output.push(`LLM schema does not support ${native.name} type.`); + if (model === "gemini") { + try { + const { + schemas: [schema], + } = JsonSchemasProgrammer.write({ + version: "3.0", + metadatas: [metadata], + }); + if (OpenApiV3Converter.TypeChecker.isOneOf(schema!)) + output.push("Gemini model does not support the union type."); + } catch {} + } + // if ( + // metadata.aliases.some((a) => a.type.recursive) || + // metadata.arrays.some((a) => a.type.recursive) || + // metadata.objects.some((o) => o.type.recursive) || + // metadata.tuples.some((t) => t.type.recursive) + // ) + // output.push("LLM schema does not support recursive type."); + return output; + }; export const write = (props: { model: Model; diff --git a/src/transformers/features/llm/LlmApplicationTransformer.ts b/src/transformers/features/llm/LlmApplicationTransformer.ts index 17bb7f33cd..098ef129d2 100644 --- a/src/transformers/features/llm/LlmApplicationTransformer.ts +++ b/src/transformers/features/llm/LlmApplicationTransformer.ts @@ -28,6 +28,19 @@ export namespace LlmApplicationTransformer { const top: ts.Node = props.expression.typeArguments[0]!; if (ts.isTypeNode(top) === false) return props.expression; + // GET MODEL + const model: ILlmApplication.Model = get_parameter({ + checker: props.context.checker, + name: "Model", + is: (value) => + value === "3.1" || + value === "3.0" || + value === "chatgpt" || + value === "gemini", + cast: (value) => value as ILlmApplication.Model, + default: () => "3.1", + })(props.expression.typeArguments[1]); + // GET TYPE const type: ts.Type = props.context.checker.getTypeFromTypeNode(top); const collection: MetadataCollection = new MetadataCollection({ @@ -42,7 +55,7 @@ export namespace LlmApplicationTransformer { constant: true, absorb: false, functional: true, - validate: LlmApplicationProgrammer.validate(), + validate: LlmApplicationProgrammer.validate(model), }, collection, type, @@ -54,17 +67,6 @@ export namespace LlmApplicationTransformer { }); // GENERATE LLM APPLICATION - const model: ILlmApplication.Model = get_parameter({ - checker: props.context.checker, - name: "Model", - is: (value) => - value === "3.1" || - value === "3.0" || - value === "chatgpt" || - value === "gemini", - cast: (value) => value as ILlmApplication.Model, - default: () => "3.1", - })(props.expression.typeArguments[1]); const schema: ILlmApplication = LlmApplicationProgrammer.write({ model, diff --git a/src/transformers/features/llm/LlmSchemaTransformer.ts b/src/transformers/features/llm/LlmSchemaTransformer.ts index 0c03863cb5..3a5bbc64ea 100644 --- a/src/transformers/features/llm/LlmSchemaTransformer.ts +++ b/src/transformers/features/llm/LlmSchemaTransformer.ts @@ -28,6 +28,19 @@ export namespace LlmSchemaTransformer { const top: ts.Node = props.expression.typeArguments[0]!; if (ts.isTypeNode(top) === false) return props.expression; + // GET MODEL + const model: ILlmApplication.Model = get_parameter({ + checker: props.context.checker, + name: "Model", + is: (value) => + value === "3.1" || + value === "3.0" || + value === "chatgpt" || + value === "gemini", + cast: (value) => value as ILlmApplication.Model, + default: () => "3.1", + })(props.expression.typeArguments[1]); + // GET TYPE const type: ts.Type = props.context.checker.getTypeFromTypeNode(top); const collection: MetadataCollection = new MetadataCollection({ @@ -41,7 +54,7 @@ export namespace LlmSchemaTransformer { escape: true, constant: true, absorb: false, - validate: LlmSchemaProgrammer.validate, + validate: LlmSchemaProgrammer.validate(model), }, collection, type, @@ -53,17 +66,6 @@ export namespace LlmSchemaTransformer { }); // GENERATE LLM SCHEMA - const model: ILlmApplication.Model = get_parameter({ - checker: props.context.checker, - name: "Model", - is: (value) => - value === "3.1" || - value === "3.0" || - value === "chatgpt" || - value === "gemini", - cast: (value) => value as ILlmApplication.Model, - default: () => "3.1", - })(props.expression.typeArguments[1]); const schema: ILlmApplication.ModelSchema[ILlmApplication.Model] = LlmSchemaProgrammer.write({ model, diff --git a/test-esm/package.json b/test-esm/package.json index 77b19aed7b..95021cfa7a 100644 --- a/test-esm/package.json +++ b/test-esm/package.json @@ -36,6 +36,6 @@ "typescript": "^5.4.5" }, "dependencies": { - "typia": "../typia-7.0.0-dev.20241110.tgz" + "typia": "../typia-7.0.0-dev.20241111.tgz" } } \ No newline at end of file diff --git a/test/build/internal/TestLlmSchemaGenerator.ts b/test/build/internal/TestLlmSchemaGenerator.ts index 6a5d09ebeb..ab19db15a7 100644 --- a/test/build/internal/TestLlmSchemaGenerator.ts +++ b/test/build/internal/TestLlmSchemaGenerator.ts @@ -22,8 +22,14 @@ export namespace TestLlmSchemaGenerator { ): Promise { for (const s of structures) { if (s.JSONABLE === false) continue; - else if (s.RECURSIVE === true) continue; - + else if (model !== "chatgpt" && s.RECURSIVE === true) continue; + else if (model === "gemini") { + const json: string = await fs.promises.readFile( + `${__dirname}/../../schemas/json/v3_0/${s.name}.json`, + "utf8", + ); + if (json.includes(`"oneOf":`) === true) continue; + } const content: string[] = [ `import typia from "typia";`, `import { ${s.name} } from "../../../structures/${s.name}";`, @@ -69,7 +75,6 @@ export namespace TestLlmSchemaGenerator { `test_llm_schema_${model.replace(".", "_")}_`.length, file.length - 3, ); - console.log(name); const location: string = __dirname + `/../../bin/features/llm.schema/${model}/${file.slice(0, -3)}.js`; @@ -90,4 +95,4 @@ export namespace TestLlmSchemaGenerator { } } -const MODELS = ["3.0", "3.1", "chatgpt"]; +const MODELS = ["3.0", "3.1", "chatgpt", "gemini"]; diff --git a/test/build/template.ts b/test/build/template.ts index 182a04e177..28ee339b56 100644 --- a/test/build/template.ts +++ b/test/build/template.ts @@ -165,15 +165,17 @@ async function main(): Promise { await TestJsonSchemaGenerator.generate(structures); await TestProtobufMessageGenerator.generate(structures); await TestReflectMetadataGenerator.generate(structures); - await TestLlmSchemaGenerator.generate(structures); // FILL SCHEMA CONTENTS - await new Promise((resolve) => setTimeout(resolve, 1000)); cp.execSync("npm run build", { stdio: "inherit" }); await TestJsonSchemaGenerator.schemas(); await TestProtobufMessageGenerator.schemas(); await TestReflectMetadataGenerator.schemas(); + + // LLM SCHEMAS AGAIN + await TestLlmSchemaGenerator.generate(structures); + cp.execSync("npm run build", { stdio: "inherit" }); await TestLlmSchemaGenerator.schemas(); cp.execSync("npm run prettier", { stdio: "inherit" }); diff --git a/test/package.json b/test/package.json index 49c7628000..99ac437f5d 100644 --- a/test/package.json +++ b/test/package.json @@ -53,6 +53,6 @@ "suppress-warnings": "^1.0.2", "tstl": "^3.0.0", "uuid": "^9.0.1", - "typia": "../typia-7.0.0-dev.20241110.tgz" + "typia": "../typia-7.0.0-dev.20241111.tgz" } } \ No newline at end of file diff --git a/test/schemas/json/v3_0/ArrayRepeatedNullable.json b/test/schemas/json/v3_0/ArrayRepeatedNullable.json index ede12f2abc..bba36f7401 100644 --- a/test/schemas/json/v3_0/ArrayRepeatedNullable.json +++ b/test/schemas/json/v3_0/ArrayRepeatedNullable.json @@ -2,6 +2,13 @@ "version": "3.0", "components": { "schemas": { + "ArrayArrayRepeatedNullable.Nullable": { + "type": "array", + "items": { + "$ref": "#/components/schemas/ArrayRepeatedNullable" + }, + "nullable": true + }, "ArrayRepeatedNullable": { "oneOf": [ { @@ -13,11 +20,11 @@ "nullable": true }, { - "$ref": "#/components/schemas/ArrayArrayRepeatedNullable" + "$ref": "#/components/schemas/ArrayArrayRepeatedNullable.Nullable" } ] }, - "#/components/schemas/ArrayArrayRepeatedNullable": { + "ArrayArrayRepeatedNullable": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedNullable" diff --git a/test/schemas/json/v3_0/ArrayRepeatedRequired.json b/test/schemas/json/v3_0/ArrayRepeatedRequired.json index a77819bd3c..6c2c13e7d2 100644 --- a/test/schemas/json/v3_0/ArrayRepeatedRequired.json +++ b/test/schemas/json/v3_0/ArrayRepeatedRequired.json @@ -15,7 +15,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedRequired": { + "ArrayArrayRepeatedRequired": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedRequired" diff --git a/test/schemas/json/v3_0/ArrayRepeatedUnion.json b/test/schemas/json/v3_0/ArrayRepeatedUnion.json index 3c157093e2..6c2e6077f3 100644 --- a/test/schemas/json/v3_0/ArrayRepeatedUnion.json +++ b/test/schemas/json/v3_0/ArrayRepeatedUnion.json @@ -27,7 +27,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedUnion": { + "ArrayArrayRepeatedUnion": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedUnion" diff --git a/test/schemas/json/v3_0/ArrayRepeatedUnionWithTuple.json b/test/schemas/json/v3_0/ArrayRepeatedUnionWithTuple.json index 5bf31ebc36..ac5634c1c4 100644 --- a/test/schemas/json/v3_0/ArrayRepeatedUnionWithTuple.json +++ b/test/schemas/json/v3_0/ArrayRepeatedUnionWithTuple.json @@ -60,7 +60,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedUnionWithTuple": { + "ArrayArrayRepeatedUnionWithTuple": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedUnionWithTuple" diff --git a/test/schemas/json/v3_0/UltimateUnion.json b/test/schemas/json/v3_0/UltimateUnion.json index 47004e7766..65417e1444 100644 --- a/test/schemas/json/v3_0/UltimateUnion.json +++ b/test/schemas/json/v3_0/UltimateUnion.json @@ -64,19 +64,19 @@ "OpenApi.IJsonSchema": { "oneOf": [ { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -103,43 +103,72 @@ "title": "Type schema info", "description": "Type schema info.\n\n`OpenApi.IJsonSchema` is a type schema info of the OpenAPI.\n\n`OpenApi.IJsonSchema` basically follows the JSON schema definition of\nOpenAPI v3.1, but a little bit shrinked to remove ambiguous and duplicated\nexpressions of OpenAPI v3.1 for the convenience and clarity.\n\n- Decompose mixed type: {@link OpenApiV3_1.IJsonSchema.IMixed}\n- Resolve nullable property: {@link OpenApiV3_1.IJsonSchema.__ISignificant.nullable}\n- Array type utilizes only single {@link OpenAPI.IJsonSchema.IArray.items}\n- Tuple type utilizes only {@link OpenApi.IJsonSchema.ITuple.prefixItems}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAnyOf} to {@link OpenApi.IJsonSchema.IOneOf}\n- Merge {@link OpenApiV3_1.IJsonSchema.IRecursiveReference} to {@link OpenApi.IJsonSchema.IReference}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAllOf} to {@link OpenApi.IJsonSchema.IObject}" }, - "OpenApi.IJsonSchema.IString": { + "OpenApi.IJsonSchema.IConstant": { "type": "object", "properties": { - "default": { - "type": "string", - "title": "Default value", - "description": "Default value." + "const": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ], + "title": "The constant value", + "description": "The constant value." }, - "format": { + "title": { "type": "string", - "title": "Format restriction", - "description": "Format restriction." + "title": "Title of the schema", + "description": "Title of the schema." }, - "pattern": { + "description": { "type": "string", - "title": "Pattern restriction", - "description": "Pattern restriction." + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." }, - "contentMediaType": { - "type": "string", - "title": "Content media type restriction", - "description": "Content media type restriction." + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." }, - "minLength": { - "type": "integer", - "title": "Minimum length restriction", - "description": "Minimum length restriction." + "example": { + "title": "Example value", + "description": "Example value." }, - "maxLength": { - "type": "integer", - "title": "Maximum length restriction", - "description": "Maximum length restriction." + "examples": { + "$ref": "#/components/schemas/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "const" + ], + "description": "Constant value type." + }, + "Recordstringany": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": {} + }, + "OpenApi.IJsonSchema.IBoolean": { + "type": "object", + "properties": { + "default": { + "type": "boolean", + "title": "The default value", + "description": "The default value." }, "type": { "type": "string", "enum": [ - "string" + "boolean" ], "title": "Discriminator value of the type", "description": "Discriminator value of the type." @@ -172,44 +201,38 @@ "required": [ "type" ], - "description": "String type info." - }, - "Recordstringany": { - "type": "object", - "properties": {}, - "description": "Construct a type with a set of properties K of type T", - "additionalProperties": {} + "description": "Boolean type info." }, - "OpenApi.IJsonSchema.INumber": { + "OpenApi.IJsonSchema.IInteger": { "type": "object", "properties": { "default": { - "type": "number", + "type": "integer", "title": "Default value", "description": "Default value." }, "minimum": { - "type": "number", + "type": "integer", "title": "Minimum value restriction", "description": "Minimum value restriction." }, "maximum": { - "type": "number", + "type": "integer", "title": "Maximum value restriction", "description": "Maximum value restriction." }, "exclusiveMinimum": { "type": "boolean", "title": "Exclusive minimum value restriction", - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." }, "exclusiveMaximum": { "type": "boolean", "title": "Exclusive maximum value restriction", - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." }, "multipleOf": { - "type": "number", + "type": "integer", "exclusiveMinimum": true, "minimum": 0, "title": "Multiple of value restriction", @@ -218,7 +241,7 @@ "type": { "type": "string", "enum": [ - "number" + "integer" ], "title": "Discriminator value of the type", "description": "Discriminator value of the type." @@ -251,68 +274,47 @@ "required": [ "type" ], - "description": "Number (double) type info." + "description": "Integer type info." }, - "OpenApi.IJsonSchema.IConstant": { + "OpenApi.IJsonSchema.INumber": { "type": "object", "properties": { - "const": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "number" - }, - { - "type": "boolean" - } - ], - "title": "The constant value", - "description": "The constant value." + "default": { + "type": "number", + "title": "Default value", + "description": "Default value." }, - "title": { - "type": "string", - "title": "Title of the schema", - "description": "Title of the schema." + "minimum": { + "type": "number", + "title": "Minimum value restriction", + "description": "Minimum value restriction." }, - "description": { - "type": "string", - "title": "Detailed description of the schema", - "description": "Detailed description of the schema." + "maximum": { + "type": "number", + "title": "Maximum value restriction", + "description": "Maximum value restriction." }, - "deprecated": { + "exclusiveMinimum": { "type": "boolean", - "title": "Whether the type is deprecated or not", - "description": "Whether the type is deprecated or not." - }, - "example": { - "title": "Example value", - "description": "Example value." + "title": "Exclusive minimum value restriction", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." }, - "examples": { - "$ref": "#/components/schemas/Recordstringany", - "title": "List of example values as key-value pairs", - "description": "List of example values as key-value pairs." - } - }, - "required": [ - "const" - ], - "description": "Constant value type." - }, - "OpenApi.IJsonSchema.IBoolean": { - "type": "object", - "properties": { - "default": { + "exclusiveMaximum": { "type": "boolean", - "title": "The default value", - "description": "The default value." + "title": "Exclusive maximum value restriction", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + }, + "multipleOf": { + "type": "number", + "exclusiveMinimum": true, + "minimum": 0, + "title": "Multiple of value restriction", + "description": "Multiple of value restriction." }, "type": { "type": "string", "enum": [ - "boolean" + "number" ], "title": "Discriminator value of the type", "description": "Discriminator value of the type." @@ -345,47 +347,45 @@ "required": [ "type" ], - "description": "Boolean type info." + "description": "Number (double) type info." }, - "OpenApi.IJsonSchema.IInteger": { + "OpenApi.IJsonSchema.IString": { "type": "object", "properties": { "default": { - "type": "integer", + "type": "string", "title": "Default value", "description": "Default value." }, - "minimum": { - "type": "integer", - "title": "Minimum value restriction", - "description": "Minimum value restriction." + "format": { + "type": "string", + "title": "Format restriction", + "description": "Format restriction." }, - "maximum": { - "type": "integer", - "title": "Maximum value restriction", - "description": "Maximum value restriction." + "pattern": { + "type": "string", + "title": "Pattern restriction", + "description": "Pattern restriction." }, - "exclusiveMinimum": { - "type": "boolean", - "title": "Exclusive minimum value restriction", - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + "contentMediaType": { + "type": "string", + "title": "Content media type restriction", + "description": "Content media type restriction." }, - "exclusiveMaximum": { - "type": "boolean", - "title": "Exclusive maximum value restriction", - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + "minLength": { + "type": "integer", + "title": "Minimum length restriction", + "description": "Minimum length restriction." }, - "multipleOf": { + "maxLength": { "type": "integer", - "exclusiveMinimum": true, - "minimum": 0, - "title": "Multiple of value restriction", - "description": "Multiple of value restriction." + "title": "Maximum length restriction", + "description": "Maximum length restriction." }, "type": { "type": "string", "enum": [ - "integer" + "string" ], "title": "Discriminator value of the type", "description": "Discriminator value of the type." @@ -418,7 +418,7 @@ "required": [ "type" ], - "description": "Integer type info." + "description": "String type info." }, "OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema": { "type": "object", @@ -499,19 +499,19 @@ "type": "boolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -606,19 +606,19 @@ "type": "boolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -737,19 +737,19 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" diff --git a/test/schemas/json/v3_1/ArrayRepeatedNullable.json b/test/schemas/json/v3_1/ArrayRepeatedNullable.json index 1306db6379..ad9b85c6e6 100644 --- a/test/schemas/json/v3_1/ArrayRepeatedNullable.json +++ b/test/schemas/json/v3_1/ArrayRepeatedNullable.json @@ -18,7 +18,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedNullable": { + "ArrayArrayRepeatedNullable": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedNullable" diff --git a/test/schemas/json/v3_1/ArrayRepeatedRequired.json b/test/schemas/json/v3_1/ArrayRepeatedRequired.json index f64295cc7b..f6107cdd56 100644 --- a/test/schemas/json/v3_1/ArrayRepeatedRequired.json +++ b/test/schemas/json/v3_1/ArrayRepeatedRequired.json @@ -15,7 +15,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedRequired": { + "ArrayArrayRepeatedRequired": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedRequired" diff --git a/test/schemas/json/v3_1/ArrayRepeatedUnion.json b/test/schemas/json/v3_1/ArrayRepeatedUnion.json index d80b6bdc28..d4d77411a6 100644 --- a/test/schemas/json/v3_1/ArrayRepeatedUnion.json +++ b/test/schemas/json/v3_1/ArrayRepeatedUnion.json @@ -27,7 +27,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedUnion": { + "ArrayArrayRepeatedUnion": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedUnion" diff --git a/test/schemas/json/v3_1/ArrayRepeatedUnionWithTuple.json b/test/schemas/json/v3_1/ArrayRepeatedUnionWithTuple.json index fcf22cdf4d..2e329f7ad6 100644 --- a/test/schemas/json/v3_1/ArrayRepeatedUnionWithTuple.json +++ b/test/schemas/json/v3_1/ArrayRepeatedUnionWithTuple.json @@ -54,7 +54,7 @@ } ] }, - "#/components/schemas/ArrayArrayRepeatedUnionWithTuple": { + "ArrayArrayRepeatedUnionWithTuple": { "type": "array", "items": { "$ref": "#/components/schemas/ArrayRepeatedUnionWithTuple" diff --git a/test/schemas/json/v3_1/UltimateUnion.json b/test/schemas/json/v3_1/UltimateUnion.json index 78ad64a579..78d92b56f7 100644 --- a/test/schemas/json/v3_1/UltimateUnion.json +++ b/test/schemas/json/v3_1/UltimateUnion.json @@ -61,19 +61,19 @@ "OpenApi.IJsonSchema": { "oneOf": [ { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -100,41 +100,70 @@ "title": "Type schema info", "description": "Type schema info.\n\n`OpenApi.IJsonSchema` is a type schema info of the OpenAPI.\n\n`OpenApi.IJsonSchema` basically follows the JSON schema definition of\nOpenAPI v3.1, but a little bit shrinked to remove ambiguous and duplicated\nexpressions of OpenAPI v3.1 for the convenience and clarity.\n\n- Decompose mixed type: {@link OpenApiV3_1.IJsonSchema.IMixed}\n- Resolve nullable property: {@link OpenApiV3_1.IJsonSchema.__ISignificant.nullable}\n- Array type utilizes only single {@link OpenAPI.IJsonSchema.IArray.items}\n- Tuple type utilizes only {@link OpenApi.IJsonSchema.ITuple.prefixItems}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAnyOf} to {@link OpenApi.IJsonSchema.IOneOf}\n- Merge {@link OpenApiV3_1.IJsonSchema.IRecursiveReference} to {@link OpenApi.IJsonSchema.IReference}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAllOf} to {@link OpenApi.IJsonSchema.IObject}" }, - "OpenApi.IJsonSchema.IString": { + "OpenApi.IJsonSchema.IConstant": { "type": "object", "properties": { - "default": { - "type": "string", - "title": "Default value", - "description": "Default value." + "const": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ], + "title": "The constant value", + "description": "The constant value." }, - "format": { + "title": { "type": "string", - "title": "Format restriction", - "description": "Format restriction." + "title": "Title of the schema", + "description": "Title of the schema." }, - "pattern": { + "description": { "type": "string", - "title": "Pattern restriction", - "description": "Pattern restriction." + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." }, - "contentMediaType": { - "type": "string", - "title": "Content media type restriction", - "description": "Content media type restriction." + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." }, - "minLength": { - "type": "integer", - "title": "Minimum length restriction", - "description": "Minimum length restriction." + "example": { + "title": "Example value", + "description": "Example value." }, - "maxLength": { - "type": "integer", - "title": "Maximum length restriction", - "description": "Maximum length restriction." + "examples": { + "$ref": "#/components/schemas/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "const" + ], + "description": "Constant value type." + }, + "Recordstringany": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": {} + }, + "OpenApi.IJsonSchema.IBoolean": { + "type": "object", + "properties": { + "default": { + "type": "boolean", + "title": "The default value", + "description": "The default value." }, "type": { - "const": "string", + "const": "boolean", "title": "Discriminator value of the type", "description": "Discriminator value of the type." }, @@ -166,51 +195,45 @@ "required": [ "type" ], - "description": "String type info." - }, - "Recordstringany": { - "type": "object", - "properties": {}, - "description": "Construct a type with a set of properties K of type T", - "additionalProperties": {} + "description": "Boolean type info." }, - "OpenApi.IJsonSchema.INumber": { + "OpenApi.IJsonSchema.IInteger": { "type": "object", "properties": { "default": { - "type": "number", + "type": "integer", "title": "Default value", "description": "Default value." }, "minimum": { - "type": "number", + "type": "integer", "title": "Minimum value restriction", "description": "Minimum value restriction." }, "maximum": { - "type": "number", + "type": "integer", "title": "Maximum value restriction", "description": "Maximum value restriction." }, "exclusiveMinimum": { "type": "boolean", "title": "Exclusive minimum value restriction", - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." }, "exclusiveMaximum": { "type": "boolean", "title": "Exclusive maximum value restriction", - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." }, "multipleOf": { - "type": "number", + "type": "integer", "exclusiveMinimum": true, "minimum": 0, "title": "Multiple of value restriction", "description": "Multiple of value restriction." }, "type": { - "const": "number", + "const": "integer", "title": "Discriminator value of the type", "description": "Discriminator value of the type." }, @@ -242,66 +265,45 @@ "required": [ "type" ], - "description": "Number (double) type info." + "description": "Integer type info." }, - "OpenApi.IJsonSchema.IConstant": { + "OpenApi.IJsonSchema.INumber": { "type": "object", "properties": { - "const": { - "oneOf": [ - { - "type": "string" - }, - { - "type": "number" - }, - { - "type": "boolean" - } - ], - "title": "The constant value", - "description": "The constant value." + "default": { + "type": "number", + "title": "Default value", + "description": "Default value." }, - "title": { - "type": "string", - "title": "Title of the schema", - "description": "Title of the schema." + "minimum": { + "type": "number", + "title": "Minimum value restriction", + "description": "Minimum value restriction." }, - "description": { - "type": "string", - "title": "Detailed description of the schema", - "description": "Detailed description of the schema." + "maximum": { + "type": "number", + "title": "Maximum value restriction", + "description": "Maximum value restriction." }, - "deprecated": { + "exclusiveMinimum": { "type": "boolean", - "title": "Whether the type is deprecated or not", - "description": "Whether the type is deprecated or not." - }, - "example": { - "title": "Example value", - "description": "Example value." + "title": "Exclusive minimum value restriction", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." }, - "examples": { - "$ref": "#/components/schemas/Recordstringany", - "title": "List of example values as key-value pairs", - "description": "List of example values as key-value pairs." - } - }, - "required": [ - "const" - ], - "description": "Constant value type." - }, - "OpenApi.IJsonSchema.IBoolean": { - "type": "object", - "properties": { - "default": { + "exclusiveMaximum": { "type": "boolean", - "title": "The default value", - "description": "The default value." + "title": "Exclusive maximum value restriction", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + }, + "multipleOf": { + "type": "number", + "exclusiveMinimum": true, + "minimum": 0, + "title": "Multiple of value restriction", + "description": "Multiple of value restriction." }, "type": { - "const": "boolean", + "const": "number", "title": "Discriminator value of the type", "description": "Discriminator value of the type." }, @@ -333,45 +335,43 @@ "required": [ "type" ], - "description": "Boolean type info." + "description": "Number (double) type info." }, - "OpenApi.IJsonSchema.IInteger": { + "OpenApi.IJsonSchema.IString": { "type": "object", "properties": { "default": { - "type": "integer", + "type": "string", "title": "Default value", "description": "Default value." }, - "minimum": { - "type": "integer", - "title": "Minimum value restriction", - "description": "Minimum value restriction." + "format": { + "type": "string", + "title": "Format restriction", + "description": "Format restriction." }, - "maximum": { - "type": "integer", - "title": "Maximum value restriction", - "description": "Maximum value restriction." + "pattern": { + "type": "string", + "title": "Pattern restriction", + "description": "Pattern restriction." }, - "exclusiveMinimum": { - "type": "boolean", - "title": "Exclusive minimum value restriction", - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + "contentMediaType": { + "type": "string", + "title": "Content media type restriction", + "description": "Content media type restriction." }, - "exclusiveMaximum": { - "type": "boolean", - "title": "Exclusive maximum value restriction", - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + "minLength": { + "type": "integer", + "title": "Minimum length restriction", + "description": "Minimum length restriction." }, - "multipleOf": { + "maxLength": { "type": "integer", - "exclusiveMinimum": true, - "minimum": 0, - "title": "Multiple of value restriction", - "description": "Multiple of value restriction." + "title": "Maximum length restriction", + "description": "Maximum length restriction." }, "type": { - "const": "integer", + "const": "string", "title": "Discriminator value of the type", "description": "Discriminator value of the type." }, @@ -403,7 +403,7 @@ "required": [ "type" ], - "description": "Integer type info." + "description": "String type info." }, "OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema": { "type": "object", @@ -481,19 +481,19 @@ "type": "boolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -585,19 +585,19 @@ "type": "boolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" @@ -713,19 +713,19 @@ "items": { "oneOf": [ { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IConstant" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.INumber" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IBoolean" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" }, { - "$ref": "#/components/schemas/OpenApi.IJsonSchema.IInteger" + "$ref": "#/components/schemas/OpenApi.IJsonSchema.IString" }, { "$ref": "#/components/schemas/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" diff --git a/test/schemas/llm/chatgpt/ArrayRecursive.json b/test/schemas/llm/chatgpt/ArrayRecursive.json new file mode 100644 index 0000000000..1a4a94735b --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRecursive.json @@ -0,0 +1,52 @@ +{ + "$ref": "#/$defs/ArrayRecursive.ICategory", + "$defs": { + "ArrayRecursive.ICategory": { + "type": "object", + "properties": { + "children": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursive.ICategory" + } + }, + "id": { + "type": "number" + }, + "code": { + "type": "string" + }, + "sequence": { + "type": "number" + }, + "created_at": { + "$ref": "#/$defs/ArrayRecursive.ITimestamp" + } + }, + "required": [ + "children", + "id", + "code", + "sequence", + "created_at" + ], + "additionalProperties": false + }, + "ArrayRecursive.ITimestamp": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicit.json b/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicit.json new file mode 100644 index 0000000000..d0ecf72657 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicit.json @@ -0,0 +1,209 @@ +{ + "$ref": "#/$defs/ArrayRecursiveUnionExplicit", + "$defs": { + "ArrayRecursiveUnionExplicit": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IBucket" + } + }, + "ArrayRecursiveUnionExplicit.IBucket": { + "oneOf": [ + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IDirectory" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IImageFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.ITextFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IZipFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IShortcut" + } + ] + }, + "ArrayRecursiveUnionExplicit.IDirectory": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IBucket" + } + }, + "type": { + "const": "directory" + } + }, + "required": [ + "id", + "name", + "path", + "children", + "type" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicit.IImageFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "width": { + "type": "number" + }, + "height": { + "type": "number" + }, + "url": { + "type": "string" + }, + "size": { + "type": "number" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "jpg" + } + }, + "required": [ + "id", + "name", + "path", + "width", + "height", + "url", + "size", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicit.ITextFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "content": { + "type": "string" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "txt" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "content", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicit.IZipFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "count": { + "type": "number" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "zip" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "count", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicit.IShortcut": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "target": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicit.IBucket" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "lnk" + } + }, + "required": [ + "id", + "name", + "path", + "target", + "type", + "extension" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicitPointer.json b/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicitPointer.json new file mode 100644 index 0000000000..9a0107d854 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRecursiveUnionExplicitPointer.json @@ -0,0 +1,227 @@ +{ + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer", + "$defs": { + "ArrayRecursiveUnionExplicitPointer": { + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IBucket" + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.IBucket": { + "type": "object", + "properties": { + "value": { + "oneOf": [ + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IDirectory" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IImageFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.ITextFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IZipFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IShortcut" + } + ] + } + }, + "required": [ + "value" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.IDirectory": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IBucket" + } + }, + "type": { + "const": "directory" + } + }, + "required": [ + "id", + "name", + "path", + "children", + "type" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.IImageFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "width": { + "type": "number" + }, + "height": { + "type": "number" + }, + "url": { + "type": "string" + }, + "size": { + "type": "number" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "jpg" + } + }, + "required": [ + "id", + "name", + "path", + "width", + "height", + "url", + "size", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.ITextFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "content": { + "type": "string" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "txt" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "content", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.IZipFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "count": { + "type": "number" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "zip" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "count", + "type", + "extension" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionExplicitPointer.IShortcut": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "target": { + "$ref": "#/$defs/ArrayRecursiveUnionExplicitPointer.IBucket" + }, + "type": { + "const": "file" + }, + "extension": { + "const": "lnk" + } + }, + "required": [ + "id", + "name", + "path", + "target", + "type", + "extension" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRecursiveUnionImplicit.json b/test/schemas/llm/chatgpt/ArrayRecursiveUnionImplicit.json new file mode 100644 index 0000000000..7440e8bdf0 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRecursiveUnionImplicit.json @@ -0,0 +1,214 @@ +{ + "$ref": "#/$defs/ArrayRecursiveUnionImplicit", + "$defs": { + "ArrayRecursiveUnionImplicit": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IBucket" + } + }, + "ArrayRecursiveUnionImplicit.IBucket": { + "oneOf": [ + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IDirectory" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.ISharedDirectory" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IImageFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.ITextFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IZipFile" + }, + { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IShortcut" + } + ] + }, + "ArrayRecursiveUnionImplicit.IDirectory": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IBucket" + } + } + }, + "required": [ + "id", + "name", + "path", + "children" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionImplicit.ISharedDirectory": { + "type": "object", + "properties": { + "access": { + "oneOf": [ + { + "const": "read" + }, + { + "const": "write" + } + ] + }, + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "children": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IBucket" + } + } + }, + "required": [ + "access", + "id", + "name", + "path", + "children" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionImplicit.IImageFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "width": { + "type": "number" + }, + "height": { + "type": "number" + }, + "url": { + "type": "string" + }, + "size": { + "type": "number" + } + }, + "required": [ + "id", + "name", + "path", + "width", + "height", + "url", + "size" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionImplicit.ITextFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "content": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "content" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionImplicit.IZipFile": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "size": { + "type": "number" + }, + "count": { + "type": "number" + } + }, + "required": [ + "id", + "name", + "path", + "size", + "count" + ], + "additionalProperties": false + }, + "ArrayRecursiveUnionImplicit.IShortcut": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "path": { + "type": "string" + }, + "target": { + "$ref": "#/$defs/ArrayRecursiveUnionImplicit.IBucket" + } + }, + "required": [ + "id", + "name", + "path", + "target" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRepeatedNullable.json b/test/schemas/llm/chatgpt/ArrayRepeatedNullable.json new file mode 100644 index 0000000000..499cbde1c6 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRepeatedNullable.json @@ -0,0 +1,27 @@ +{ + "$ref": "#/$defs/ArrayRepeatedNullable", + "$defs": { + "ArrayRepeatedNullable": { + "oneOf": [ + { + "type": "null" + }, + { + "type": "string" + }, + { + "type": "number" + }, + { + "$ref": "#/$defs/ArrayArrayRepeatedNullable" + } + ] + }, + "ArrayArrayRepeatedNullable": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedNullable" + } + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRepeatedRequired.json b/test/schemas/llm/chatgpt/ArrayRepeatedRequired.json new file mode 100644 index 0000000000..d9291e0de0 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRepeatedRequired.json @@ -0,0 +1,24 @@ +{ + "$ref": "#/$defs/ArrayRepeatedRequired", + "$defs": { + "ArrayRepeatedRequired": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "$ref": "#/$defs/ArrayArrayRepeatedRequired" + } + ] + }, + "ArrayArrayRepeatedRequired": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedRequired" + } + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRepeatedUnion.json b/test/schemas/llm/chatgpt/ArrayRepeatedUnion.json new file mode 100644 index 0000000000..f0e001841c --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRepeatedUnion.json @@ -0,0 +1,80 @@ +{ + "$ref": "#/$defs/ArrayRepeatedUnion", + "$defs": { + "ArrayRepeatedUnion": { + "oneOf": [ + { + "type": "number" + }, + { + "type": "boolean" + }, + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "$ref": "#/$defs/ArrayArrayRepeatedUnion" + }, + { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedUnion.IBox3D" + } + } + ] + }, + "ArrayArrayRepeatedUnion": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedUnion" + } + }, + "ArrayRepeatedUnion.IBox3D": { + "type": "object", + "properties": { + "scale": { + "$ref": "#/$defs/ArrayRepeatedUnion.IPoint3D" + }, + "position": { + "$ref": "#/$defs/ArrayRepeatedUnion.IPoint3D" + }, + "rotate": { + "$ref": "#/$defs/ArrayRepeatedUnion.IPoint3D" + }, + "pivot": { + "$ref": "#/$defs/ArrayRepeatedUnion.IPoint3D" + } + }, + "required": [ + "scale", + "position", + "rotate", + "pivot" + ], + "additionalProperties": false + }, + "ArrayRepeatedUnion.IPoint3D": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ArrayRepeatedUnionWithTuple.json b/test/schemas/llm/chatgpt/ArrayRepeatedUnionWithTuple.json new file mode 100644 index 0000000000..4e9f3ef5c0 --- /dev/null +++ b/test/schemas/llm/chatgpt/ArrayRepeatedUnionWithTuple.json @@ -0,0 +1,107 @@ +{ + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple", + "$defs": { + "ArrayRepeatedUnionWithTuple": { + "oneOf": [ + { + "type": "number" + }, + { + "type": "boolean" + }, + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "$ref": "#/$defs/ArrayArrayRepeatedUnionWithTuple" + }, + { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IBox3D" + } + }, + { + "type": "array", + "prefixItems": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ], + "additionalItems": false + }, + { + "type": "array", + "prefixItems": [ + { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IBox3D" + }, + { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IPoint3D" + } + ], + "additionalItems": false + } + ] + }, + "ArrayArrayRepeatedUnionWithTuple": { + "type": "array", + "items": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple" + } + }, + "ArrayRepeatedUnionWithTuple.IBox3D": { + "type": "object", + "properties": { + "scale": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IPoint3D" + }, + "position": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IPoint3D" + }, + "rotate": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IPoint3D" + }, + "pivot": { + "$ref": "#/$defs/ArrayRepeatedUnionWithTuple.IPoint3D" + } + }, + "required": [ + "scale", + "position", + "rotate", + "pivot" + ], + "additionalProperties": false + }, + "ArrayRepeatedUnionWithTuple.IPoint3D": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/DynamicTree.json b/test/schemas/llm/chatgpt/DynamicTree.json new file mode 100644 index 0000000000..2c08c78136 --- /dev/null +++ b/test/schemas/llm/chatgpt/DynamicTree.json @@ -0,0 +1,33 @@ +{ + "$ref": "#/$defs/DynamicTree", + "$defs": { + "DynamicTree": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "sequence": { + "type": "number" + }, + "children": { + "$ref": "#/$defs/RecordstringDynamicTree" + } + }, + "required": [ + "id", + "sequence", + "children" + ], + "additionalProperties": false + }, + "RecordstringDynamicTree": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": { + "$ref": "#/$defs/DynamicTree" + } + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ObjectPartial.json b/test/schemas/llm/chatgpt/ObjectPartial.json new file mode 100644 index 0000000000..d67360ebd6 --- /dev/null +++ b/test/schemas/llm/chatgpt/ObjectPartial.json @@ -0,0 +1,75 @@ +{ + "$ref": "#/$defs/PartialObjectPartial.IBase", + "$defs": { + "PartialObjectPartial.IBase": { + "type": "object", + "properties": { + "boolean": { + "type": "boolean" + }, + "number": { + "type": "number" + }, + "string": { + "type": "string" + }, + "array": { + "type": "array", + "items": { + "type": "number" + } + }, + "object": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectPartial.IBase" + } + ] + } + }, + "description": "Make all properties in T optional", + "additionalProperties": false + }, + "ObjectPartial.IBase": { + "type": "object", + "properties": { + "boolean": { + "type": "boolean" + }, + "number": { + "type": "number" + }, + "string": { + "type": "string" + }, + "array": { + "type": "array", + "items": { + "type": "number" + } + }, + "object": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectPartial.IBase" + } + ] + } + }, + "required": [ + "boolean", + "number", + "string", + "array", + "object" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ObjectPartialAndRequired.json b/test/schemas/llm/chatgpt/ObjectPartialAndRequired.json new file mode 100644 index 0000000000..cfd81895a1 --- /dev/null +++ b/test/schemas/llm/chatgpt/ObjectPartialAndRequired.json @@ -0,0 +1,40 @@ +{ + "$ref": "#/$defs/ObjectPartialAndRequired", + "$defs": { + "ObjectPartialAndRequired": { + "type": "object", + "properties": { + "string": { + "type": "string" + }, + "number": { + "type": "number" + }, + "boolean": { + "type": "boolean" + }, + "object": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectPartialAndRequired" + } + ] + }, + "array": { + "type": "array", + "items": { + "type": "number" + } + } + }, + "required": [ + "object", + "array" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ObjectRecursive.json b/test/schemas/llm/chatgpt/ObjectRecursive.json new file mode 100644 index 0000000000..0384d40712 --- /dev/null +++ b/test/schemas/llm/chatgpt/ObjectRecursive.json @@ -0,0 +1,60 @@ +{ + "$ref": "#/$defs/ObjectRecursive.IDepartment", + "$defs": { + "ObjectRecursive.IDepartment": { + "type": "object", + "properties": { + "parent": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectRecursive.IDepartment" + } + ] + }, + "id": { + "type": "number" + }, + "code": { + "type": "string" + }, + "name": { + "type": "string" + }, + "sequence": { + "type": "number" + }, + "created_at": { + "$ref": "#/$defs/ObjectRecursive.ITimestamp" + } + }, + "required": [ + "parent", + "id", + "code", + "name", + "sequence", + "created_at" + ], + "additionalProperties": false + }, + "ObjectRecursive.ITimestamp": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/ObjectRequired.json b/test/schemas/llm/chatgpt/ObjectRequired.json new file mode 100644 index 0000000000..3d5eca87d1 --- /dev/null +++ b/test/schemas/llm/chatgpt/ObjectRequired.json @@ -0,0 +1,75 @@ +{ + "$ref": "#/$defs/RequiredObjectRequired.IBase", + "$defs": { + "RequiredObjectRequired.IBase": { + "type": "object", + "properties": { + "boolean": { + "type": "boolean" + }, + "number": { + "type": "number" + }, + "string": { + "type": "string" + }, + "array": { + "type": "array", + "items": { + "type": "number" + } + }, + "object": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectRequired.IBase" + } + ] + } + }, + "required": [ + "boolean", + "number", + "string", + "array", + "object" + ], + "description": "Make all properties in T required", + "additionalProperties": false + }, + "ObjectRequired.IBase": { + "type": "object", + "properties": { + "boolean": { + "type": "boolean" + }, + "number": { + "type": "number" + }, + "string": { + "type": "string" + }, + "array": { + "type": "array", + "items": { + "type": "number" + } + }, + "object": { + "oneOf": [ + { + "type": "null" + }, + { + "$ref": "#/$defs/ObjectRequired.IBase" + } + ] + } + }, + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/chatgpt/UltimateUnion.json b/test/schemas/llm/chatgpt/UltimateUnion.json new file mode 100644 index 0000000000..4f508ed25d --- /dev/null +++ b/test/schemas/llm/chatgpt/UltimateUnion.json @@ -0,0 +1,1114 @@ +{ + "$ref": "#/$defs/UltimateUnion", + "$defs": { + "UltimateUnion": { + "type": "array", + "items": { + "$ref": "#/$defs/IJsonSchemaCollection.IV3_1Arrayunknown" + } + }, + "IJsonSchemaCollection.IV3_1Arrayunknown": { + "type": "object", + "properties": { + "version": { + "const": "3.1" + }, + "components": { + "$ref": "#/$defs/OpenApi.IComponentsOpenApi.IJsonSchema" + }, + "schemas": { + "type": "array", + "items": { + "$ref": "#/$defs/OpenApi.IJsonSchema" + } + }, + "__types": { + "type": "array", + "items": {} + } + }, + "required": [ + "version", + "components", + "schemas" + ], + "additionalProperties": false + }, + "OpenApi.IComponentsOpenApi.IJsonSchema": { + "type": "object", + "properties": { + "schemas": { + "$ref": "#/$defs/RecordstringOpenApi.IJsonSchema", + "title": "An object to hold reusable DTO schemas", + "description": "An object to hold reusable DTO schemas.\n\nIn other words, a collection of named JSON schemas." + }, + "securitySchemes": { + "$ref": "#/$defs/RecordstringOpenApi.ISecurityScheme", + "title": "An object to hold reusable security schemes", + "description": "An object to hold reusable security schemes.\n\nIn other words, a collection of named security schemes." + } + }, + "description": "Reusable components in OpenAPI.\n\nA storage of reusable components in OpenAPI document.\n\nIn other words, it is a storage of named DTO schemas and security schemes.", + "additionalProperties": false + }, + "RecordstringOpenApi.IJsonSchema": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": { + "$ref": "#/$defs/OpenApi.IJsonSchema" + } + }, + "OpenApi.IJsonSchema": { + "oneOf": [ + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IConstant" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IBoolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IInteger" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INumber" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IString" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.ITupleOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IObjectOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IReferencestring" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IOneOfOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INull" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IUnknown" + } + ], + "title": "Type schema info", + "description": "Type schema info.\n\n`OpenApi.IJsonSchema` is a type schema info of the OpenAPI.\n\n`OpenApi.IJsonSchema` basically follows the JSON schema definition of\nOpenAPI v3.1, but a little bit shrinked to remove ambiguous and duplicated\nexpressions of OpenAPI v3.1 for the convenience and clarity.\n\n- Decompose mixed type: {@link OpenApiV3_1.IJsonSchema.IMixed}\n- Resolve nullable property: {@link OpenApiV3_1.IJsonSchema.__ISignificant.nullable}\n- Array type utilizes only single {@link OpenAPI.IJsonSchema.IArray.items}\n- Tuple type utilizes only {@link OpenApi.IJsonSchema.ITuple.prefixItems}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAnyOf} to {@link OpenApi.IJsonSchema.IOneOf}\n- Merge {@link OpenApiV3_1.IJsonSchema.IRecursiveReference} to {@link OpenApi.IJsonSchema.IReference}\n- Merge {@link OpenApiV3_1.IJsonSchema.IAllOf} to {@link OpenApi.IJsonSchema.IObject}" + }, + "OpenApi.IJsonSchema.IConstant": { + "type": "object", + "properties": { + "const": { + "oneOf": [ + { + "type": "string" + }, + { + "type": "number" + }, + { + "type": "boolean" + } + ], + "title": "The constant value", + "description": "The constant value." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "const" + ], + "description": "Constant value type.", + "additionalProperties": false + }, + "Recordstringany": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": {} + }, + "OpenApi.IJsonSchema.IBoolean": { + "type": "object", + "properties": { + "default": { + "type": "boolean", + "title": "The default value", + "description": "The default value." + }, + "type": { + "const": "boolean", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "Boolean type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IInteger": { + "type": "object", + "properties": { + "default": { + "type": "integer", + "title": "Default value", + "description": "Default value." + }, + "minimum": { + "type": "integer", + "title": "Minimum value restriction", + "description": "Minimum value restriction." + }, + "maximum": { + "type": "integer", + "title": "Maximum value restriction", + "description": "Maximum value restriction." + }, + "exclusiveMinimum": { + "type": "boolean", + "title": "Exclusive minimum value restriction", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + }, + "exclusiveMaximum": { + "type": "boolean", + "title": "Exclusive maximum value restriction", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + }, + "multipleOf": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 0, + "title": "Multiple of value restriction", + "description": "Multiple of value restriction." + }, + "type": { + "const": "integer", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "Integer type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.INumber": { + "type": "object", + "properties": { + "default": { + "type": "number", + "title": "Default value", + "description": "Default value." + }, + "minimum": { + "type": "number", + "title": "Minimum value restriction", + "description": "Minimum value restriction." + }, + "maximum": { + "type": "number", + "title": "Maximum value restriction", + "description": "Maximum value restriction." + }, + "exclusiveMinimum": { + "type": "boolean", + "title": "Exclusive minimum value restriction", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property." + }, + "exclusiveMaximum": { + "type": "boolean", + "title": "Exclusive maximum value restriction", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property." + }, + "multipleOf": { + "type": "number", + "exclusiveMinimum": true, + "minimum": 0, + "title": "Multiple of value restriction", + "description": "Multiple of value restriction." + }, + "type": { + "const": "number", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "Number (double) type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IString": { + "type": "object", + "properties": { + "default": { + "type": "string", + "title": "Default value", + "description": "Default value." + }, + "format": { + "type": "string", + "title": "Format restriction", + "description": "Format restriction." + }, + "pattern": { + "type": "string", + "title": "Pattern restriction", + "description": "Pattern restriction." + }, + "contentMediaType": { + "type": "string", + "title": "Content media type restriction", + "description": "Content media type restriction." + }, + "minLength": { + "type": "integer", + "title": "Minimum length restriction", + "description": "Minimum length restriction." + }, + "maxLength": { + "type": "integer", + "title": "Maximum length restriction", + "description": "Maximum length restriction." + }, + "type": { + "const": "string", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "String type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema": { + "type": "object", + "properties": { + "items": { + "$ref": "#/$defs/OpenApi.IJsonSchema", + "title": "Items type info", + "description": "Items type info.\n\nThe `items` means the type of the array elements. In other words, it is\nthe type schema info of the `T` in the TypeScript array type `Array`." + }, + "uniqueItems": { + "type": "boolean", + "title": "Unique items restriction", + "description": "Unique items restriction.\n\nIf this property value is `true`, target array must have unique items." + }, + "minItems": { + "type": "integer", + "title": "Minimum items restriction", + "description": "Minimum items restriction.\n\nRestriction of minumum number of items in the array." + }, + "maxItems": { + "type": "integer", + "title": "Maximum items restriction", + "description": "Maximum items restriction.\n\nRestriction of maximum number of items in the array." + }, + "type": { + "const": "array", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "items", + "type" + ], + "description": "Array type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.ITupleOpenApi.IJsonSchema": { + "type": "object", + "properties": { + "prefixItems": { + "type": "array", + "items": { + "$ref": "#/$defs/OpenApi.IJsonSchema" + }, + "title": "Prefix items", + "description": "Prefix items.\n\nThe `prefixItems` means the type schema info of the prefix items in the\ntuple type. In the TypeScript, it is expressed as `[T1, T2]`.\n\nIf you want to express `[T1, T2, ...TO[]]` type, you can configure the\n`...TO[]` through the {@link additionalItems} property." + }, + "additionalItems": { + "oneOf": [ + { + "type": "boolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IConstant" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IBoolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INumber" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IInteger" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IString" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.ITupleOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IObjectOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IReferencestring" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IOneOfOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INull" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IUnknown" + } + ], + "title": "Additional items", + "description": "Additional items.\n\nThe `additionalItems` means the type schema info of the additional items\nafter the {@link prefixItems}. In the TypeScript, if there's a type\n`[T1, T2, ...TO[]]`, the `...TO[]` is represented by the `additionalItems`.\n\nBy the way, if you configure the `additionalItems` as `true`, it means\nthe additional items are not restricted. They can be any type, so that\nit is equivalent to the TypeScript type `[T1, T2, ...any[]]`.\n\nOtherwise configure the `additionalItems` as the {@link IJsonSchema},\nit means the additional items must follow the type schema info.\nTherefore, it is equivalent to the TypeScript type `[T1, T2, ...TO[]]`." + }, + "uniqueItems": { + "type": "boolean", + "title": "Unique items restriction", + "description": "Unique items restriction.\n\nIf this property value is `true`, target tuple must have unique items." + }, + "minItems": { + "type": "integer", + "title": "Minimum items restriction", + "description": "Minimum items restriction.\n\nRestriction of minumum number of items in the tuple." + }, + "maxItems": { + "type": "integer", + "title": "Maximum items restriction", + "description": "Maximum items restriction.\n\nRestriction of maximum number of items in the tuple." + }, + "type": { + "const": "array", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "prefixItems", + "type" + ], + "description": "Tuple type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IObjectOpenApi.IJsonSchema": { + "type": "object", + "properties": { + "properties": { + "$ref": "#/$defs/RecordstringOpenApi.IJsonSchema", + "title": "Properties of the object", + "description": "Properties of the object.\n\nThe `properties` means a list of key-value pairs of the object's\nregular properties. The key is the name of the regular property,\nand the value is the type schema info.\n\nIf you need additional properties that is represented by dynamic key,\nyou can use the {@link additionalProperties} instead." + }, + "additionalProperties": { + "oneOf": [ + { + "type": "boolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IConstant" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IBoolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INumber" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IInteger" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IString" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.ITupleOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IObjectOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IReferencestring" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IOneOfOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INull" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IUnknown" + } + ], + "title": "Additional properties' info", + "description": "Additional properties' info.\n\nThe `additionalProperties` means the type schema info of the additional\nproperties that are not listed in the {@link properties}.\n\nIf the value is `true`, it means that the additional properties are not\nrestricted. They can be any type. Otherwise, if the value is\n{@link IOpenAiSchema} type, it means that the additional properties must\nfollow the type schema info.\n\n- `true`: `Record`\n- `IOpenAiSchema`: `Record`" + }, + "required": { + "type": "array", + "items": { + "type": "string" + }, + "title": "List of key values of the required properties", + "description": "List of key values of the required properties.\n\nThe `required` means a list of the key values of the required\n{@link properties}. If some property key is not listed in the `required`\nlist, it means that property is optional. Otherwise some property key\nexists in the `required` list, it means that the property must be filled.\n\nBelow is an example of the {@link properties} and `required`.\n\n```typescript\ninterface SomeObject {\n id: string;\n email: string;\n name?: string;\n}\n```\n\nAs you can see, `id` and `email` {@link properties} are {@link required},\nso that they are listed in the `required` list.\n\n```json\n{\n \"type\": \"object\",\n \"properties\": {\n \"id\": { \"type\": \"string\" },\n \"email\": { \"type\": \"string\" },\n \"name\": { \"type\": \"string\" }\n },\n \"required\": [\"id\", \"email\"]\n}\n```" + }, + "type": { + "const": "object", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "Object type info.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IReferencestring": { + "type": "object", + "properties": { + "$ref": { + "type": "string", + "title": "Reference to the named schema", + "description": "Reference to the named schema.\n\nThe `ref` is a reference to the named schema. Format of the `$ref` is\nfollowing the JSON Pointer specification. In the OpenAPI, the `$ref`\nstarts with `#/components/schemas/` which means the type is stored in\nthe {@link OpenApi.IComponents.schemas} object.\n\n- `#/components/schemas/SomeObject`\n- `#/components/schemas/AnotherObject`" + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "$ref" + ], + "description": "Reference type directing named schema.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IOneOfOpenApi.IJsonSchema": { + "type": "object", + "properties": { + "oneOf": { + "type": "array", + "items": { + "oneOf": [ + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IConstant" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IBoolean" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INumber" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IInteger" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IString" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IArrayOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.ITupleOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IObjectOpenApi.IJsonSchema" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IReferencestring" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.INull" + }, + { + "$ref": "#/$defs/OpenApi.IJsonSchema.IUnknown" + } + ] + }, + "title": "List of the union types", + "description": "List of the union types." + }, + "discriminator": { + "$ref": "#/$defs/OpenApi.IJsonSchema.IOneOf.IDiscriminator", + "title": "Discriminator info of the union type", + "description": "Discriminator info of the union type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "oneOf" + ], + "description": "Union type.\n\nIOneOf` represents an union type of the TypeScript (`A | B | C`).\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined `anyOf` instead of the `oneOf`, {@link OpenApi} forcibly\nconverts it to `oneOf` type.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.INull": { + "type": "object", + "properties": { + "default": { + "type": "null", + "title": "Default value", + "description": "Default value." + }, + "type": { + "const": "null", + "title": "Discriminator value of the type", + "description": "Discriminator value of the type." + }, + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "required": [ + "type" + ], + "description": "Null type.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IUnknown": { + "type": "object", + "properties": { + "title": { + "type": "string", + "title": "Title of the schema", + "description": "Title of the schema." + }, + "description": { + "type": "string", + "title": "Detailed description of the schema", + "description": "Detailed description of the schema." + }, + "deprecated": { + "type": "boolean", + "title": "Whether the type is deprecated or not", + "description": "Whether the type is deprecated or not." + }, + "example": { + "title": "Example value", + "description": "Example value." + }, + "examples": { + "$ref": "#/$defs/Recordstringany", + "title": "List of example values as key-value pairs", + "description": "List of example values as key-value pairs." + } + }, + "description": "Unknown, the `any` type.", + "additionalProperties": false + }, + "OpenApi.IJsonSchema.IOneOf.IDiscriminator": { + "type": "object", + "properties": { + "propertyName": { + "type": "string", + "title": "Property name for the discriminator", + "description": "Property name for the discriminator." + }, + "mapping": { + "$ref": "#/$defs/Recordstringstring", + "title": "Mapping of the discriminator value to the schema name", + "description": "Mapping of the discriminator value to the schema name.\n\nThis property is valid only for {@link IReference} typed\n{@link IOneOf.oneof} elements. Therefore, `key` of `mapping` is\nthe discriminator value, and `value` of `mapping` is the\nschema name like `#/components/schemas/SomeObject`." + } + }, + "required": [ + "propertyName" + ], + "description": "Discriminator info of the union type.", + "additionalProperties": false + }, + "Recordstringstring": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": { + "type": "string" + } + }, + "RecordstringOpenApi.ISecurityScheme": { + "type": "object", + "properties": {}, + "description": "Construct a type with a set of properties K of type T", + "additionalProperties": { + "$ref": "#/$defs/OpenApi.ISecurityScheme" + } + }, + "OpenApi.ISecurityScheme": { + "oneOf": [ + { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IApiKey" + }, + { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IHttpBasic" + }, + { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IHttpBearer" + }, + { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IOAuth2" + }, + { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IOpenId" + } + ], + "title": "Security scheme of Swagger Documents", + "description": "Security scheme of Swagger Documents.\n\n`OpenApi.ISecurityScheme` is a data structure representing content of\n`securitySchemes` in `swagger.json` file. It is composed with 5 types of\nsecurity schemes as an union type like below." + }, + "OpenApi.ISecurityScheme.IApiKey": { + "type": "object", + "properties": { + "type": { + "const": "apiKey" + }, + "in": { + "oneOf": [ + { + "const": "cookie" + }, + { + "const": "header" + }, + { + "const": "query" + } + ] + }, + "name": { + "type": "string" + }, + "description": { + "type": "string" + } + }, + "required": [ + "type" + ], + "description": "Normal API key type.", + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IHttpBasic": { + "type": "object", + "properties": { + "type": { + "const": "http" + }, + "scheme": { + "const": "basic" + }, + "description": { + "type": "string" + } + }, + "required": [ + "type", + "scheme" + ], + "description": "HTTP basic authentication type.", + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IHttpBearer": { + "type": "object", + "properties": { + "type": { + "const": "http" + }, + "scheme": { + "const": "bearer" + }, + "bearerFormat": { + "type": "string" + }, + "description": { + "type": "string" + } + }, + "required": [ + "type", + "scheme" + ], + "description": "HTTP bearer authentication type.", + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IOAuth2": { + "type": "object", + "properties": { + "type": { + "const": "oauth2" + }, + "flows": { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IOAuth2.IFlowSet" + }, + "description": { + "type": "string" + } + }, + "required": [ + "type", + "flows" + ], + "description": "OAuth2 authentication type.", + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IOAuth2.IFlowSet": { + "type": "object", + "properties": { + "authorizationCode": { + "$ref": "#/$defs/OpenApi.ISecurityScheme.IOAuth2.IFlow" + }, + "implicit": { + "$ref": "#/$defs/OmitOpenApi.ISecurityScheme.IOAuth2.IFlowtokenUrl" + }, + "password": { + "$ref": "#/$defs/OmitOpenApi.ISecurityScheme.IOAuth2.IFlowauthorizationUrl" + }, + "clientCredentials": { + "$ref": "#/$defs/OmitOpenApi.ISecurityScheme.IOAuth2.IFlowauthorizationUrl" + } + }, + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IOAuth2.IFlow": { + "type": "object", + "properties": { + "authorizationUrl": { + "type": "string" + }, + "tokenUrl": { + "type": "string" + }, + "refreshUrl": { + "type": "string" + }, + "scopes": { + "$ref": "#/$defs/Recordstringstring" + } + }, + "additionalProperties": false + }, + "OmitOpenApi.ISecurityScheme.IOAuth2.IFlowtokenUrl": { + "type": "object", + "properties": { + "authorizationUrl": { + "type": "string" + }, + "refreshUrl": { + "type": "string" + }, + "scopes": { + "$ref": "#/$defs/Recordstringstring" + } + }, + "description": "Construct a type with the properties of T except for those in type K.", + "additionalProperties": false + }, + "OmitOpenApi.ISecurityScheme.IOAuth2.IFlowauthorizationUrl": { + "type": "object", + "properties": { + "tokenUrl": { + "type": "string" + }, + "refreshUrl": { + "type": "string" + }, + "scopes": { + "$ref": "#/$defs/Recordstringstring" + } + }, + "description": "Construct a type with the properties of T except for those in type K.", + "additionalProperties": false + }, + "OpenApi.ISecurityScheme.IOpenId": { + "type": "object", + "properties": { + "type": { + "const": "openIdConnect" + }, + "openIdConnectUrl": { + "type": "string" + }, + "description": { + "type": "string" + } + }, + "required": [ + "type", + "openIdConnectUrl" + ], + "additionalProperties": false + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ArrayAny.json b/test/schemas/llm/gemini/ArrayAny.json new file mode 100644 index 0000000000..b99c6d056f --- /dev/null +++ b/test/schemas/llm/gemini/ArrayAny.json @@ -0,0 +1,53 @@ +{ + "type": "object", + "properties": { + "anys": { + "type": "array", + "items": {} + }, + "undefindable1": { + "type": "array", + "items": {} + }, + "undefindable2": { + "type": "array", + "items": {} + }, + "nullables1": { + "type": "array", + "items": {}, + "nullable": true + }, + "nullables2": { + "type": "array", + "items": {}, + "nullable": true + }, + "both1": { + "type": "array", + "items": {}, + "nullable": true + }, + "both2": { + "type": "array", + "items": {}, + "nullable": true + }, + "both3": { + "type": "array", + "items": {}, + "nullable": true + }, + "union": { + "type": "array", + "items": {} + } + }, + "required": [ + "anys", + "nullables1", + "nullables2", + "union" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ArrayHierarchical.json b/test/schemas/llm/gemini/ArrayHierarchical.json new file mode 100644 index 0000000000..f7fc8f9fb0 --- /dev/null +++ b/test/schemas/llm/gemini/ArrayHierarchical.json @@ -0,0 +1,126 @@ +{ + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "serial": { + "type": "number" + }, + "name": { + "type": "string" + }, + "established_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + }, + "departments": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "code": { + "type": "string" + }, + "sales": { + "type": "number" + }, + "created_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + }, + "employees": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "age": { + "type": "number" + }, + "grade": { + "type": "number" + }, + "employeed_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + } + }, + "required": [ + "id", + "name", + "age", + "grade", + "employeed_at" + ], + "additionalProperties": false + } + } + }, + "required": [ + "id", + "code", + "sales", + "created_at", + "employees" + ], + "additionalProperties": false + } + } + }, + "required": [ + "id", + "serial", + "name", + "established_at", + "departments" + ], + "additionalProperties": false + } +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ArrayHierarchicalPointer.json b/test/schemas/llm/gemini/ArrayHierarchicalPointer.json new file mode 100644 index 0000000000..751bf3fbf3 --- /dev/null +++ b/test/schemas/llm/gemini/ArrayHierarchicalPointer.json @@ -0,0 +1,135 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "serial": { + "type": "number" + }, + "name": { + "type": "string" + }, + "established_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + }, + "departments": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "code": { + "type": "string" + }, + "sales": { + "type": "number" + }, + "created_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + }, + "employees": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "age": { + "type": "number" + }, + "grade": { + "type": "number" + }, + "employeed_at": { + "type": "object", + "properties": { + "time": { + "type": "number" + }, + "zone": { + "type": "number" + } + }, + "required": [ + "time", + "zone" + ], + "additionalProperties": false + } + }, + "required": [ + "id", + "name", + "age", + "grade", + "employeed_at" + ], + "additionalProperties": false + } + } + }, + "required": [ + "id", + "code", + "sales", + "created_at", + "employees" + ], + "additionalProperties": false + } + } + }, + "required": [ + "id", + "serial", + "name", + "established_at", + "departments" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ArrayMatrix.json b/test/schemas/llm/gemini/ArrayMatrix.json new file mode 100644 index 0000000000..b71a8043df --- /dev/null +++ b/test/schemas/llm/gemini/ArrayMatrix.json @@ -0,0 +1,12 @@ +{ + "type": "array", + "items": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number" + } + } + } +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ArraySimple.json b/test/schemas/llm/gemini/ArraySimple.json new file mode 100644 index 0000000000..336f2a1009 --- /dev/null +++ b/test/schemas/llm/gemini/ArraySimple.json @@ -0,0 +1,43 @@ +{ + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "email": { + "type": "string" + }, + "hobbies": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "body": { + "type": "string" + }, + "rank": { + "type": "number" + } + }, + "required": [ + "name", + "body", + "rank" + ], + "additionalProperties": false + } + } + }, + "required": [ + "name", + "email", + "hobbies" + ], + "additionalProperties": false + } +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ClassGetter.json b/test/schemas/llm/gemini/ClassGetter.json new file mode 100644 index 0000000000..b5bee62d8a --- /dev/null +++ b/test/schemas/llm/gemini/ClassGetter.json @@ -0,0 +1,21 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "dead": { + "type": "boolean", + "nullable": true + } + }, + "required": [ + "id", + "name", + "dead" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ClassMethod.json b/test/schemas/llm/gemini/ClassMethod.json new file mode 100644 index 0000000000..a7d695f7f4 --- /dev/null +++ b/test/schemas/llm/gemini/ClassMethod.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "age": { + "type": "number" + } + }, + "required": [ + "name", + "age" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ClassPropertyAssignment.json b/test/schemas/llm/gemini/ClassPropertyAssignment.json new file mode 100644 index 0000000000..79dd00dd80 --- /dev/null +++ b/test/schemas/llm/gemini/ClassPropertyAssignment.json @@ -0,0 +1,34 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "name": { + "type": "string" + }, + "note": { + "type": "string", + "enum": [ + "assignment" + ] + }, + "editable": { + "type": "boolean", + "enum": [ + false + ] + }, + "incremental": { + "type": "boolean" + } + }, + "required": [ + "id", + "name", + "note", + "editable", + "incremental" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagArray.json b/test/schemas/llm/gemini/CommentTagArray.json new file mode 100644 index 0000000000..2cde513d93 --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagArray.json @@ -0,0 +1,63 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 3, + "maxItems": 3 + }, + "minItems": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 3 + }, + "both": { + "type": "array", + "items": { + "type": "string" + }, + "minItems": 3, + "maxItems": 7 + }, + "equal": { + "type": "array", + "items": { + "type": "number" + }, + "minItems": 10, + "maxItems": 10 + }, + "unique": { + "type": "array", + "items": { + "type": "string" + }, + "uniqueItems": true + } + }, + "required": [ + "items", + "minItems", + "both", + "equal", + "unique" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagFormat.json b/test/schemas/llm/gemini/CommentTagFormat.json new file mode 100644 index 0000000000..3822e1a6bd --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagFormat.json @@ -0,0 +1,118 @@ +{ + "type": "object", + "properties": { + "byte": { + "type": "string", + "format": "byte" + }, + "password": { + "type": "string", + "format": "password" + }, + "regex": { + "type": "string", + "format": "regex" + }, + "uuid": { + "type": "string", + "format": "uuid" + }, + "email": { + "type": "string", + "format": "email" + }, + "hostname": { + "type": "string", + "format": "hostname" + }, + "idnEmail": { + "type": "string", + "format": "idn-email" + }, + "idnHostname": { + "type": "string", + "format": "idn-hostname" + }, + "iri": { + "type": "string", + "format": "iri" + }, + "iriReference": { + "type": "string", + "format": "iri-reference" + }, + "ipv4": { + "type": "string", + "format": "ipv4" + }, + "ipv6": { + "type": "string", + "format": "ipv6" + }, + "uri": { + "type": "string", + "format": "uri" + }, + "uriReference": { + "type": "string", + "format": "uri-reference" + }, + "uriTemplate": { + "type": "string", + "format": "uri-template" + }, + "url": { + "type": "string", + "format": "url" + }, + "datetime": { + "type": "string", + "format": "date-time" + }, + "date": { + "type": "string", + "format": "date" + }, + "time": { + "type": "string", + "format": "time" + }, + "duration": { + "type": "string", + "format": "duration" + }, + "jsonPointer": { + "type": "string", + "format": "json-pointer" + }, + "relativeJsonPointer": { + "type": "string", + "format": "relative-json-pointer" + } + }, + "required": [ + "byte", + "password", + "regex", + "uuid", + "email", + "hostname", + "idnEmail", + "idnHostname", + "iri", + "iriReference", + "ipv4", + "ipv6", + "uri", + "uriReference", + "uriTemplate", + "url", + "datetime", + "date", + "time", + "duration", + "jsonPointer", + "relativeJsonPointer" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagLength.json b/test/schemas/llm/gemini/CommentTagLength.json new file mode 100644 index 0000000000..79018d4b80 --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagLength.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "fixed": { + "type": "string", + "minLength": 5, + "maxLength": 5 + }, + "minimum": { + "type": "string", + "minLength": 3 + }, + "maximum": { + "type": "string", + "maxLength": 7 + }, + "minimum_and_maximum": { + "type": "string", + "minLength": 3, + "maxLength": 7 + }, + "equal": { + "type": "string", + "minLength": 10, + "maxLength": 19 + } + }, + "required": [ + "fixed", + "minimum", + "maximum", + "minimum_and_maximum", + "equal" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagPattern.json b/test/schemas/llm/gemini/CommentTagPattern.json new file mode 100644 index 0000000000..fb2e985935 --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagPattern.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "uuid": { + "type": "string", + "pattern": "[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-[4][0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}$" + }, + "email": { + "type": "string", + "pattern": "^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$" + }, + "ipv4": { + "type": "string", + "pattern": "(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$" + }, + "ipv6": { + "type": "string", + "pattern": "(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$" + } + }, + "required": [ + "uuid", + "email", + "ipv4", + "ipv6" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagRange.json b/test/schemas/llm/gemini/CommentTagRange.json new file mode 100644 index 0000000000..f81fad64de --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagRange.json @@ -0,0 +1,76 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "greater": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3 + }, + "greater_equal": { + "type": "integer", + "minimum": 3 + }, + "less": { + "type": "integer", + "exclusiveMaximum": true, + "maximum": 7 + }, + "less_equal": { + "type": "integer", + "maximum": 7 + }, + "greater_less": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3, + "exclusiveMaximum": true, + "maximum": 7 + }, + "greater_equal_less": { + "type": "integer", + "minimum": 3, + "exclusiveMaximum": true, + "maximum": 7 + }, + "greater_less_equal": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3, + "maximum": 7 + }, + "greater_equal_less_equal": { + "type": "integer", + "minimum": 3, + "maximum": 7 + }, + "equal": { + "type": "integer", + "minimum": 10, + "maximum": 10 + } + }, + "required": [ + "greater", + "greater_equal", + "less", + "less_equal", + "greater_less", + "greater_equal_less", + "greater_less_equal", + "greater_equal_less_equal", + "equal" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/CommentTagType.json b/test/schemas/llm/gemini/CommentTagType.json new file mode 100644 index 0000000000..bcf8e19203 --- /dev/null +++ b/test/schemas/llm/gemini/CommentTagType.json @@ -0,0 +1,52 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "int": { + "type": "integer", + "title": "Integer value", + "description": "Integer value." + }, + "uint": { + "type": "integer", + "title": "Unsigned integer value", + "description": "Unsigned integer value." + }, + "int32": { + "type": "integer" + }, + "uint32": { + "type": "integer" + }, + "int64": { + "type": "integer" + }, + "uint64": { + "type": "integer" + }, + "float": { + "type": "number" + } + }, + "required": [ + "int", + "uint", + "int32", + "uint32", + "int64", + "uint64", + "float" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ConstantAtomicAbsorbed.json b/test/schemas/llm/gemini/ConstantAtomicAbsorbed.json new file mode 100644 index 0000000000..f68ef2131d --- /dev/null +++ b/test/schemas/llm/gemini/ConstantAtomicAbsorbed.json @@ -0,0 +1,18 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string", + "default": "something" + }, + "age": { + "type": "number", + "default": 20 + } + }, + "required": [ + "id", + "age" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicArray.json b/test/schemas/llm/gemini/DynamicArray.json new file mode 100644 index 0000000000..812b3a514c --- /dev/null +++ b/test/schemas/llm/gemini/DynamicArray.json @@ -0,0 +1,19 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "object", + "properties": {}, + "additionalProperties": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicConstant.json b/test/schemas/llm/gemini/DynamicConstant.json new file mode 100644 index 0000000000..dce929abac --- /dev/null +++ b/test/schemas/llm/gemini/DynamicConstant.json @@ -0,0 +1,33 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "object", + "properties": { + "a": { + "type": "number" + }, + "b": { + "type": "number" + }, + "c": { + "type": "number" + }, + "d": { + "type": "number" + } + }, + "required": [ + "a", + "b", + "c", + "d" + ], + "additionalProperties": false + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicEnumeration.json b/test/schemas/llm/gemini/DynamicEnumeration.json new file mode 100644 index 0000000000..c2922e86e2 --- /dev/null +++ b/test/schemas/llm/gemini/DynamicEnumeration.json @@ -0,0 +1,45 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "object", + "properties": { + "ar": { + "type": "string" + }, + "zh-Hans": { + "type": "string" + }, + "zh-Hant": { + "type": "string" + }, + "en": { + "type": "string" + }, + "fr": { + "type": "string" + }, + "de": { + "type": "string" + }, + "ja": { + "type": "string" + }, + "ko": { + "type": "string" + }, + "pt": { + "type": "string" + }, + "ru": { + "type": "string" + } + }, + "additionalProperties": false + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicNever.json b/test/schemas/llm/gemini/DynamicNever.json new file mode 100644 index 0000000000..489a1b629f --- /dev/null +++ b/test/schemas/llm/gemini/DynamicNever.json @@ -0,0 +1,5 @@ +{ + "type": "object", + "properties": {}, + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicSimple.json b/test/schemas/llm/gemini/DynamicSimple.json new file mode 100644 index 0000000000..85df503c55 --- /dev/null +++ b/test/schemas/llm/gemini/DynamicSimple.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "object", + "properties": {}, + "additionalProperties": { + "type": "number" + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/DynamicUndefined.json b/test/schemas/llm/gemini/DynamicUndefined.json new file mode 100644 index 0000000000..489a1b629f --- /dev/null +++ b/test/schemas/llm/gemini/DynamicUndefined.json @@ -0,0 +1,5 @@ +{ + "type": "object", + "properties": {}, + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectDate.json b/test/schemas/llm/gemini/ObjectDate.json new file mode 100644 index 0000000000..fb19e12abf --- /dev/null +++ b/test/schemas/llm/gemini/ObjectDate.json @@ -0,0 +1,37 @@ +{ + "type": "object", + "properties": { + "classDate": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "date": { + "type": "string", + "format": "date", + "nullable": true + }, + "datetime": { + "type": "string", + "format": "date-time", + "nullable": true + }, + "time": { + "type": "string", + "format": "time", + "nullable": true + }, + "duration": { + "type": "string", + "format": "duration", + "nullable": true + } + }, + "required": [ + "date", + "datetime", + "time", + "duration" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectDescription.json b/test/schemas/llm/gemini/ObjectDescription.json new file mode 100644 index 0000000000..8b23dbd652 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectDescription.json @@ -0,0 +1,43 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid", + "title": "Primary Key", + "description": "Primary Key." + }, + "deprecated": { + "type": "boolean", + "title": "Deprecated property", + "description": "Deprecated property.\n\nIf `@deprecated` comment tag being utilized, the property will be marked\nas deprecated in the JSON scheam." + }, + "title": { + "type": "string", + "title": "This is the title", + "description": "Title tag can replace the first line of the comment." + }, + "descriptions": { + "type": "array", + "items": { + "type": "string" + }, + "title": "Description property", + "description": "Description property.\n\nIf you write first line and the first line ends with \".\" character,\nit would be considered as the title. By the way, description does\nnot exclusive the title, so that full content be written." + }, + "newLine": { + "type": "number", + "description": "New line before dot character\n\nIf dot character (\".\") being used before the first new line, it would not\nbe considered as title in the JSON schema." + } + }, + "required": [ + "id", + "deprecated", + "title", + "descriptions", + "newLine" + ], + "title": "This is the title of object type", + "description": "An interface designed to test JSON schema's object description.", + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectGenericAlias.json b/test/schemas/llm/gemini/ObjectGenericAlias.json new file mode 100644 index 0000000000..2d8299f1ed --- /dev/null +++ b/test/schemas/llm/gemini/ObjectGenericAlias.json @@ -0,0 +1,12 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "string" + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectGenericArray.json b/test/schemas/llm/gemini/ObjectGenericArray.json new file mode 100644 index 0000000000..6697631b9d --- /dev/null +++ b/test/schemas/llm/gemini/ObjectGenericArray.json @@ -0,0 +1,53 @@ +{ + "type": "object", + "properties": { + "pagination": { + "type": "object", + "properties": { + "page": { + "type": "number" + }, + "limit": { + "type": "number" + }, + "total_count": { + "type": "number" + }, + "total_pages": { + "type": "number" + } + }, + "required": [ + "page", + "limit", + "total_count", + "total_pages" + ], + "additionalProperties": false + }, + "data": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "age": { + "type": "number" + } + }, + "required": [ + "name", + "age" + ], + "additionalProperties": false + } + } + }, + "required": [ + "pagination", + "data" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectInternal.json b/test/schemas/llm/gemini/ObjectInternal.json new file mode 100644 index 0000000000..309fcac1ef --- /dev/null +++ b/test/schemas/llm/gemini/ObjectInternal.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + } + }, + "required": [ + "id", + "name" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectIntersection.json b/test/schemas/llm/gemini/ObjectIntersection.json new file mode 100644 index 0000000000..b45b8ea364 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectIntersection.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "email": { + "type": "string" + }, + "name": { + "type": "string" + }, + "vulnerable": { + "type": "boolean" + } + }, + "required": [ + "email", + "name", + "vulnerable" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectJsonTag.json b/test/schemas/llm/gemini/ObjectJsonTag.json new file mode 100644 index 0000000000..2bcdd45888 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectJsonTag.json @@ -0,0 +1,31 @@ +{ + "type": "object", + "properties": { + "vulnerable": { + "type": "string", + "deprecated": true + }, + "description": { + "type": "string", + "title": "Descripted property", + "description": "Descripted property." + }, + "title": { + "type": "string", + "title": "something", + "description": "Titled property." + }, + "complicate_title": { + "type": "string", + "title": "something weirdo with {@link something } tag", + "description": "Complicate title." + } + }, + "required": [ + "vulnerable", + "description", + "title", + "complicate_title" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectLiteralProperty.json b/test/schemas/llm/gemini/ObjectLiteralProperty.json new file mode 100644 index 0000000000..7fbbd90150 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectLiteralProperty.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "something-interesting-do-you-want?": { + "type": "string" + }, + "or-something-crazy-do-you-want?": { + "type": "string" + } + }, + "required": [ + "something-interesting-do-you-want?", + "or-something-crazy-do-you-want?" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectLiteralType.json b/test/schemas/llm/gemini/ObjectLiteralType.json new file mode 100644 index 0000000000..4cc6ebbfde --- /dev/null +++ b/test/schemas/llm/gemini/ObjectLiteralType.json @@ -0,0 +1,20 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "age": { + "type": "number" + } + }, + "required": [ + "id", + "name", + "age" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectOptional.json b/test/schemas/llm/gemini/ObjectOptional.json new file mode 100644 index 0000000000..c6312f9350 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectOptional.json @@ -0,0 +1,18 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "email": { + "type": "string" + }, + "sequence": { + "type": "number" + } + }, + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectPrimitive.json b/test/schemas/llm/gemini/ObjectPrimitive.json new file mode 100644 index 0000000000..3e8ddfed05 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectPrimitive.json @@ -0,0 +1,69 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "extension": { + "type": "string", + "enum": [ + "txt", + "md", + "html" + ] + }, + "title": { + "type": "string" + }, + "body": { + "type": "string" + }, + "files": { + "type": "array", + "items": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "extension": { + "type": "string" + }, + "url": { + "type": "string" + }, + "created_at": { + "type": "string" + } + }, + "required": [ + "id", + "name", + "extension", + "url", + "created_at" + ], + "additionalProperties": false + } + }, + "secret": { + "type": "boolean" + }, + "created_at": { + "type": "string" + } + }, + "required": [ + "id", + "extension", + "title", + "body", + "files", + "secret", + "created_at" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ObjectSimple.json b/test/schemas/llm/gemini/ObjectSimple.json new file mode 100644 index 0000000000..b179cbf925 --- /dev/null +++ b/test/schemas/llm/gemini/ObjectSimple.json @@ -0,0 +1,92 @@ +{ + "type": "object", + "properties": { + "scale": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + }, + "position": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + }, + "rotate": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + }, + "pivot": { + "type": "object", + "properties": { + "x": { + "type": "number" + }, + "y": { + "type": "number" + }, + "z": { + "type": "number" + } + }, + "required": [ + "x", + "y", + "z" + ], + "additionalProperties": false + } + }, + "required": [ + "scale", + "position", + "rotate", + "pivot" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TemplateAtomic.json b/test/schemas/llm/gemini/TemplateAtomic.json new file mode 100644 index 0000000000..99e3f3ba0f --- /dev/null +++ b/test/schemas/llm/gemini/TemplateAtomic.json @@ -0,0 +1,51 @@ +{ + "type": "object", + "properties": { + "prefix": { + "type": "string", + "pattern": "^(prefix_(.*))" + }, + "postfix": { + "type": "string", + "pattern": "((.*)_postfix)$" + }, + "middle_string": { + "type": "string", + "pattern": "^(the_(.*)_value)$" + }, + "middle_string_empty": { + "type": "string", + "pattern": "^(the_(.*)_value)$" + }, + "middle_numeric": { + "type": "string", + "pattern": "^(the_[+-]?\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?_value)$" + }, + "middle_boolean": { + "type": "string", + "enum": [ + "the_false_value", + "the_true_value" + ] + }, + "ipv4": { + "type": "string", + "pattern": "^([+-]?\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?\\.[+-]?\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?\\.[+-]?\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?\\.[+-]?\\d+(?:\\.\\d+)?(?:[eE][+-]?\\d+)?)$" + }, + "email": { + "type": "string", + "pattern": "((.*)@(.*)\\.(.*))" + } + }, + "required": [ + "prefix", + "postfix", + "middle_string", + "middle_string_empty", + "middle_numeric", + "middle_boolean", + "ipv4", + "email" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TemplateConstant.json b/test/schemas/llm/gemini/TemplateConstant.json new file mode 100644 index 0000000000..ee1d4625eb --- /dev/null +++ b/test/schemas/llm/gemini/TemplateConstant.json @@ -0,0 +1,53 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "prefix": { + "type": "string", + "enum": [ + "prefix_A", + "prefix_B", + "prefix_C" + ] + }, + "postfix": { + "type": "string", + "enum": [ + "1_postfix", + "2_postfix", + "3_postfix" + ] + }, + "combined": { + "type": "string", + "enum": [ + "the_1_value_with_label_A", + "the_1_value_with_label_B", + "the_1_value_with_label_C", + "the_2_value_with_label_A", + "the_2_value_with_label_B", + "the_2_value_with_label_C", + "the_3_value_with_label_A", + "the_3_value_with_label_B", + "the_3_value_with_label_C" + ] + } + }, + "required": [ + "prefix", + "postfix", + "combined" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ToJsonDouble.json b/test/schemas/llm/gemini/ToJsonDouble.json new file mode 100644 index 0000000000..4ab2083b3f --- /dev/null +++ b/test/schemas/llm/gemini/ToJsonDouble.json @@ -0,0 +1,16 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "number" + }, + "flag": { + "type": "boolean" + } + }, + "required": [ + "id", + "flag" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/ToJsonNull.json b/test/schemas/llm/gemini/ToJsonNull.json new file mode 100644 index 0000000000..743b3af495 --- /dev/null +++ b/test/schemas/llm/gemini/ToJsonNull.json @@ -0,0 +1,3 @@ +{ + "type": "null" +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagArray.json b/test/schemas/llm/gemini/TypeTagArray.json new file mode 100644 index 0000000000..fd0d97b857 --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagArray.json @@ -0,0 +1,68 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "items": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "minItems": 3, + "maxItems": 3 + }, + "minItems": { + "type": "array", + "items": { + "type": "number", + "minimum": 3 + }, + "minItems": 3 + }, + "both": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "minItems": 3, + "maxItems": 7 + }, + "equal": { + "type": "array", + "items": { + "type": "number", + "minimum": 10, + "maximum": 10 + }, + "minItems": 10, + "maxItems": 10 + }, + "unique": { + "type": "array", + "items": { + "type": "string" + }, + "uniqueItems": true + } + }, + "required": [ + "items", + "minItems", + "both", + "equal", + "unique" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagCustom.json b/test/schemas/llm/gemini/TypeTagCustom.json new file mode 100644 index 0000000000..9f9c6e6cab --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagCustom.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uuid" + }, + "dollar": { + "type": "string", + "x-typia-monetary": "dollar" + }, + "postfix": { + "type": "string", + "x-typia-postfix": "abcd" + }, + "powerOf": { + "type": "number", + "x-typia-powerOf": 2 + } + }, + "required": [ + "id", + "dollar", + "postfix", + "powerOf" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagFormat.json b/test/schemas/llm/gemini/TypeTagFormat.json new file mode 100644 index 0000000000..3822e1a6bd --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagFormat.json @@ -0,0 +1,118 @@ +{ + "type": "object", + "properties": { + "byte": { + "type": "string", + "format": "byte" + }, + "password": { + "type": "string", + "format": "password" + }, + "regex": { + "type": "string", + "format": "regex" + }, + "uuid": { + "type": "string", + "format": "uuid" + }, + "email": { + "type": "string", + "format": "email" + }, + "hostname": { + "type": "string", + "format": "hostname" + }, + "idnEmail": { + "type": "string", + "format": "idn-email" + }, + "idnHostname": { + "type": "string", + "format": "idn-hostname" + }, + "iri": { + "type": "string", + "format": "iri" + }, + "iriReference": { + "type": "string", + "format": "iri-reference" + }, + "ipv4": { + "type": "string", + "format": "ipv4" + }, + "ipv6": { + "type": "string", + "format": "ipv6" + }, + "uri": { + "type": "string", + "format": "uri" + }, + "uriReference": { + "type": "string", + "format": "uri-reference" + }, + "uriTemplate": { + "type": "string", + "format": "uri-template" + }, + "url": { + "type": "string", + "format": "url" + }, + "datetime": { + "type": "string", + "format": "date-time" + }, + "date": { + "type": "string", + "format": "date" + }, + "time": { + "type": "string", + "format": "time" + }, + "duration": { + "type": "string", + "format": "duration" + }, + "jsonPointer": { + "type": "string", + "format": "json-pointer" + }, + "relativeJsonPointer": { + "type": "string", + "format": "relative-json-pointer" + } + }, + "required": [ + "byte", + "password", + "regex", + "uuid", + "email", + "hostname", + "idnEmail", + "idnHostname", + "iri", + "iriReference", + "ipv4", + "ipv6", + "uri", + "uriReference", + "uriTemplate", + "url", + "datetime", + "date", + "time", + "duration", + "jsonPointer", + "relativeJsonPointer" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagLength.json b/test/schemas/llm/gemini/TypeTagLength.json new file mode 100644 index 0000000000..79018d4b80 --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagLength.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "fixed": { + "type": "string", + "minLength": 5, + "maxLength": 5 + }, + "minimum": { + "type": "string", + "minLength": 3 + }, + "maximum": { + "type": "string", + "maxLength": 7 + }, + "minimum_and_maximum": { + "type": "string", + "minLength": 3, + "maxLength": 7 + }, + "equal": { + "type": "string", + "minLength": 10, + "maxLength": 19 + } + }, + "required": [ + "fixed", + "minimum", + "maximum", + "minimum_and_maximum", + "equal" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagMatrix.json b/test/schemas/llm/gemini/TypeTagMatrix.json new file mode 100644 index 0000000000..716980859a --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagMatrix.json @@ -0,0 +1,23 @@ +{ + "type": "object", + "properties": { + "matrix": { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "string", + "format": "uuid" + }, + "minItems": 4, + "maxItems": 4 + }, + "minItems": 3, + "maxItems": 3 + } + }, + "required": [ + "matrix" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagPattern.json b/test/schemas/llm/gemini/TypeTagPattern.json new file mode 100644 index 0000000000..f1d194ec67 --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagPattern.json @@ -0,0 +1,28 @@ +{ + "type": "object", + "properties": { + "uuid": { + "type": "string", + "pattern": "^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$" + }, + "email": { + "type": "string", + "pattern": "^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$" + }, + "ipv4": { + "type": "string", + "pattern": "^(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$" + }, + "ipv6": { + "type": "string", + "pattern": "^(([0-9a-fA-F]{1,4}:){7,7}[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,7}:|([0-9a-fA-F]{1,4}:){1,6}:[0-9a-fA-F]{1,4}|([0-9a-fA-F]{1,4}:){1,5}(:[0-9a-fA-F]{1,4}){1,2}|([0-9a-fA-F]{1,4}:){1,4}(:[0-9a-fA-F]{1,4}){1,3}|([0-9a-fA-F]{1,4}:){1,3}(:[0-9a-fA-F]{1,4}){1,4}|([0-9a-fA-F]{1,4}:){1,2}(:[0-9a-fA-F]{1,4}){1,5}|[0-9a-fA-F]{1,4}:((:[0-9a-fA-F]{1,4}){1,6})|:((:[0-9a-fA-F]{1,4}){1,7}|:)|fe80:(:[0-9a-fA-F]{0,4}){0,4}%[0-9a-zA-Z]{1,}|::(ffff(:0{1,4}){0,1}:){0,1}((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])|([0-9a-fA-F]{1,4}:){1,4}:((25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9])\\.){3,3}(25[0-5]|(2[0-4]|1{0,1}[0-9]){0,1}[0-9]))$" + } + }, + "required": [ + "uuid", + "email", + "ipv4", + "ipv6" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagRange.json b/test/schemas/llm/gemini/TypeTagRange.json new file mode 100644 index 0000000000..f81fad64de --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagRange.json @@ -0,0 +1,76 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "greater": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3 + }, + "greater_equal": { + "type": "integer", + "minimum": 3 + }, + "less": { + "type": "integer", + "exclusiveMaximum": true, + "maximum": 7 + }, + "less_equal": { + "type": "integer", + "maximum": 7 + }, + "greater_less": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3, + "exclusiveMaximum": true, + "maximum": 7 + }, + "greater_equal_less": { + "type": "integer", + "minimum": 3, + "exclusiveMaximum": true, + "maximum": 7 + }, + "greater_less_equal": { + "type": "integer", + "exclusiveMinimum": true, + "minimum": 3, + "maximum": 7 + }, + "greater_equal_less_equal": { + "type": "integer", + "minimum": 3, + "maximum": 7 + }, + "equal": { + "type": "integer", + "minimum": 10, + "maximum": 10 + } + }, + "required": [ + "greater", + "greater_equal", + "less", + "less_equal", + "greater_less", + "greater_equal_less", + "greater_less_equal", + "greater_equal_less_equal", + "equal" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/llm/gemini/TypeTagType.json b/test/schemas/llm/gemini/TypeTagType.json new file mode 100644 index 0000000000..547cbf9caf --- /dev/null +++ b/test/schemas/llm/gemini/TypeTagType.json @@ -0,0 +1,48 @@ +{ + "type": "object", + "properties": { + "value": { + "type": "array", + "items": { + "type": "object", + "properties": { + "int": { + "type": "integer" + }, + "uint": { + "type": "integer" + }, + "int32": { + "type": "integer" + }, + "uint32": { + "type": "integer" + }, + "int64": { + "type": "integer" + }, + "uint64": { + "type": "integer" + }, + "float": { + "type": "number" + } + }, + "required": [ + "int", + "uint", + "int32", + "uint32", + "int64", + "uint64", + "float" + ], + "additionalProperties": false + } + } + }, + "required": [ + "value" + ], + "additionalProperties": false +} \ No newline at end of file diff --git a/test/schemas/reflect/metadata/InstanceUnion.json b/test/schemas/reflect/metadata/InstanceUnion.json index e85ae5e046..fdd16007d4 100644 --- a/test/schemas/reflect/metadata/InstanceUnion.json +++ b/test/schemas/reflect/metadata/InstanceUnion.json @@ -28,7 +28,7 @@ "components": { "objects": [ { - "name": "ObjectSimple.IBox3D", + "name": "ObjectUnionExplicit.Discriminator<\"point\", ObjectUnionExplicit.IPoint>", "properties": [ { "key": { @@ -43,7 +43,7 @@ "type": "string", "values": [ { - "value": "scale", + "value": "x", "tags": [] } ] @@ -66,19 +66,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [], + "atomics": [ + { + "type": "number", + "tags": [] + } + ], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "ObjectSimple.IPoint3D", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -100,7 +100,7 @@ "type": "string", "values": [ { - "value": "position", + "value": "y", "tags": [] } ] @@ -123,19 +123,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [], + "atomics": [ + { + "type": "number", + "tags": [] + } + ], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "ObjectSimple.IPoint3D", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -157,7 +157,7 @@ "type": "string", "values": [ { - "value": "rotate", + "value": "type", "tags": [] } ] @@ -175,34 +175,6 @@ "maps": [] }, "value": { - "any": false, - "required": true, - "optional": false, - "nullable": false, - "functions": [], - "atomics": [], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [ - { - "name": "ObjectSimple.IPoint3D", - "tags": [] - } - ], - "aliases": [], - "natives": [], - "sets": [], - "maps": [] - }, - "description": null, - "jsDocTags": [] - }, - { - "key": { "any": false, "required": true, "optional": false, @@ -214,7 +186,7 @@ "type": "string", "values": [ { - "value": "pivot", + "value": "point", "tags": [] } ] @@ -231,30 +203,6 @@ "sets": [], "maps": [] }, - "value": { - "any": false, - "required": true, - "optional": false, - "nullable": false, - "functions": [], - "atomics": [], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [ - { - "name": "ObjectSimple.IPoint3D", - "tags": [] - } - ], - "aliases": [], - "natives": [], - "sets": [], - "maps": [] - }, "description": null, "jsDocTags": [] } @@ -267,7 +215,7 @@ ] }, { - "name": "ObjectSimple.IPoint3D", + "name": "ObjectUnionExplicit.Discriminator<\"line\", ObjectUnionExplicit.ILine>", "properties": [ { "key": { @@ -282,7 +230,7 @@ "type": "string", "values": [ { - "value": "x", + "value": "p1", "tags": [] } ] @@ -305,19 +253,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ - { - "type": "number", - "tags": [] - } - ], + "atomics": [], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -339,7 +287,7 @@ "type": "string", "values": [ { - "value": "y", + "value": "p2", "tags": [] } ] @@ -362,19 +310,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ - { - "type": "number", - "tags": [] - } - ], + "atomics": [], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -396,7 +344,7 @@ "type": "string", "values": [ { - "value": "z", + "value": "type", "tags": [] } ] @@ -419,13 +367,18 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ + "atomics": [], + "constants": [ { - "type": "number", - "tags": [] + "type": "string", + "values": [ + { + "value": "line", + "tags": [] + } + ] } ], - "constants": [], "templates": [], "escaped": null, "rest": null, @@ -449,7 +402,7 @@ ] }, { - "name": "ObjectUnionExplicit.Discriminator<\"point\", ObjectUnionExplicit.IPoint>", + "name": "ObjectUnionExplicit.IPoint", "properties": [ { "key": { @@ -564,7 +517,18 @@ }, "description": null, "jsDocTags": [] - }, + } + ], + "jsDocTags": [], + "index": 2, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "ObjectUnionExplicit.Discriminator<\"triangle\", ObjectUnionExplicit.ITriangle>", + "properties": [ { "key": { "any": false, @@ -578,7 +542,7 @@ "type": "string", "values": [ { - "value": "type", + "value": "p1", "tags": [] } ] @@ -602,23 +566,18 @@ "nullable": false, "functions": [], "atomics": [], - "constants": [ - { - "type": "string", - "values": [ - { - "value": "point", - "tags": [] - } - ] - } - ], + "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -626,18 +585,7 @@ }, "description": null, "jsDocTags": [] - } - ], - "jsDocTags": [], - "index": 2, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "ObjectUnionExplicit.Discriminator<\"line\", ObjectUnionExplicit.ILine>", - "properties": [ + }, { "key": { "any": false, @@ -651,7 +599,7 @@ "type": "string", "values": [ { - "value": "p1", + "value": "p2", "tags": [] } ] @@ -708,7 +656,7 @@ "type": "string", "values": [ { - "value": "p2", + "value": "p3", "tags": [] } ] @@ -794,7 +742,7 @@ "type": "string", "values": [ { - "value": "line", + "value": "triangle", "tags": [] } ] @@ -823,7 +771,7 @@ ] }, { - "name": "ObjectUnionExplicit.IPoint", + "name": "ObjectUnionExplicit.Discriminator<\"rectangle\", ObjectUnionExplicit.IRectangle>", "properties": [ { "key": { @@ -838,7 +786,7 @@ "type": "string", "values": [ { - "value": "x", + "value": "p1", "tags": [] } ] @@ -861,19 +809,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ - { - "type": "number", - "tags": [] - } - ], + "atomics": [], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -895,7 +843,7 @@ "type": "string", "values": [ { - "value": "y", + "value": "p2", "tags": [] } ] @@ -918,19 +866,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ - { - "type": "number", - "tags": [] - } - ], + "atomics": [], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -938,18 +886,7 @@ }, "description": null, "jsDocTags": [] - } - ], - "jsDocTags": [], - "index": 4, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "ObjectUnionExplicit.Discriminator<\"triangle\", ObjectUnionExplicit.ITriangle>", - "properties": [ + }, { "key": { "any": false, @@ -963,7 +900,7 @@ "type": "string", "values": [ { - "value": "p1", + "value": "p3", "tags": [] } ] @@ -1020,7 +957,7 @@ "type": "string", "values": [ { - "value": "p2", + "value": "p4", "tags": [] } ] @@ -1077,7 +1014,7 @@ "type": "string", "values": [ { - "value": "p3", + "value": "type", "tags": [] } ] @@ -1101,18 +1038,91 @@ "nullable": false, "functions": [], "atomics": [], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [ + "constants": [ { - "name": "ObjectUnionExplicit.IPoint", + "type": "string", + "values": [ + { + "value": "rectangle", + "tags": [] + } + ] + } + ], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], + "tuples": [], + "objects": [], + "aliases": [], + "natives": [], + "sets": [], + "maps": [] + }, + "description": null, + "jsDocTags": [] + } + ], + "jsDocTags": [], + "index": 4, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "ObjectUnionExplicit.Discriminator<\"polyline\", ObjectUnionExplicit.IPolyline>", + "properties": [ + { + "key": { + "any": false, + "required": true, + "optional": false, + "nullable": false, + "functions": [], + "atomics": [], + "constants": [ + { + "type": "string", + "values": [ + { + "value": "points", + "tags": [] + } + ] + } + ], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], + "tuples": [], + "objects": [], + "aliases": [], + "natives": [], + "sets": [], + "maps": [] + }, + "value": { + "any": false, + "required": true, + "optional": false, + "nullable": false, + "functions": [], + "atomics": [], + "constants": [], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [ + { + "name": "Array", "tags": [] } ], + "tuples": [], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1163,7 +1173,7 @@ "type": "string", "values": [ { - "value": "triangle", + "value": "polyline", "tags": [] } ] @@ -1192,7 +1202,7 @@ ] }, { - "name": "ObjectUnionExplicit.Discriminator<\"rectangle\", ObjectUnionExplicit.IRectangle>", + "name": "ObjectUnionExplicit.Discriminator<\"polygon\", ObjectUnionExplicit.IPolygon>", "properties": [ { "key": { @@ -1207,7 +1217,7 @@ "type": "string", "values": [ { - "value": "p1", + "value": "outer", "tags": [] } ] @@ -1239,7 +1249,7 @@ "tuples": [], "objects": [ { - "name": "ObjectUnionExplicit.IPoint", + "name": "ObjectUnionExplicit.IPolyline", "tags": [] } ], @@ -1264,7 +1274,7 @@ "type": "string", "values": [ { - "value": "p2", + "value": "inner", "tags": [] } ] @@ -1292,14 +1302,14 @@ "templates": [], "escaped": null, "rest": null, - "arrays": [], - "tuples": [], - "objects": [ + "arrays": [ { - "name": "ObjectUnionExplicit.IPoint", + "name": "Array", "tags": [] } ], + "tuples": [], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1321,7 +1331,7 @@ "type": "string", "values": [ { - "value": "p3", + "value": "type", "tags": [] } ] @@ -1345,18 +1355,23 @@ "nullable": false, "functions": [], "atomics": [], - "constants": [], + "constants": [ + { + "type": "string", + "values": [ + { + "value": "polygon", + "tags": [] + } + ] + } + ], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "ObjectUnionExplicit.IPoint", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1364,7 +1379,18 @@ }, "description": null, "jsDocTags": [] - }, + } + ], + "jsDocTags": [], + "index": 6, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "ObjectUnionExplicit.IPolyline", + "properties": [ { "key": { "any": false, @@ -1378,7 +1404,7 @@ "type": "string", "values": [ { - "value": "p4", + "value": "points", "tags": [] } ] @@ -1406,14 +1432,14 @@ "templates": [], "escaped": null, "rest": null, - "arrays": [], - "tuples": [], - "objects": [ + "arrays": [ { - "name": "ObjectUnionExplicit.IPoint", + "name": "Array", "tags": [] } ], + "tuples": [], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1421,7 +1447,18 @@ }, "description": null, "jsDocTags": [] - }, + } + ], + "jsDocTags": [], + "index": 7, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "ObjectUnionExplicit.Discriminator<\"circle\", ObjectUnionExplicit.ICircle>", + "properties": [ { "key": { "any": false, @@ -1435,7 +1472,7 @@ "type": "string", "values": [ { - "value": "type", + "value": "centroid", "tags": [] } ] @@ -1459,23 +1496,18 @@ "nullable": false, "functions": [], "atomics": [], - "constants": [ - { - "type": "string", - "values": [ - { - "value": "rectangle", - "tags": [] - } - ] - } - ], + "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectUnionExplicit.IPoint", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -1483,18 +1515,7 @@ }, "description": null, "jsDocTags": [] - } - ], - "jsDocTags": [], - "index": 6, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "ObjectUnionExplicit.Discriminator<\"polyline\", ObjectUnionExplicit.IPolyline>", - "properties": [ + }, { "key": { "any": false, @@ -1508,7 +1529,7 @@ "type": "string", "values": [ { - "value": "points", + "value": "radius", "tags": [] } ] @@ -1531,17 +1552,17 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [ + "atomics": [ { - "name": "Array", + "type": "number", "tags": [] } ], + "constants": [], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], "tuples": [], "objects": [], "aliases": [], @@ -1594,7 +1615,7 @@ "type": "string", "values": [ { - "value": "polyline", + "value": "circle", "tags": [] } ] @@ -1616,14 +1637,14 @@ } ], "jsDocTags": [], - "index": 7, + "index": 8, "recursive": false, "nullables": [ false ] }, { - "name": "ObjectUnionExplicit.Discriminator<\"polygon\", ObjectUnionExplicit.IPolygon>", + "name": "ObjectSimple.IBox3D", "properties": [ { "key": { @@ -1638,7 +1659,7 @@ "type": "string", "values": [ { - "value": "outer", + "value": "scale", "tags": [] } ] @@ -1670,7 +1691,7 @@ "tuples": [], "objects": [ { - "name": "ObjectUnionExplicit.IPolyline", + "name": "ObjectSimple.IPoint3D", "tags": [] } ], @@ -1695,7 +1716,7 @@ "type": "string", "values": [ { - "value": "inner", + "value": "position", "tags": [] } ] @@ -1723,14 +1744,14 @@ "templates": [], "escaped": null, "rest": null, - "arrays": [ + "arrays": [], + "tuples": [], + "objects": [ { - "name": "Array", + "name": "ObjectSimple.IPoint3D", "tags": [] } ], - "tuples": [], - "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1752,7 +1773,7 @@ "type": "string", "values": [ { - "value": "type", + "value": "rotate", "tags": [] } ] @@ -1776,23 +1797,18 @@ "nullable": false, "functions": [], "atomics": [], - "constants": [ - { - "type": "string", - "values": [ - { - "value": "polygon", - "tags": [] - } - ] - } - ], + "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "ObjectSimple.IPoint3D", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], @@ -1800,18 +1816,7 @@ }, "description": null, "jsDocTags": [] - } - ], - "jsDocTags": [], - "index": 8, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "ObjectUnionExplicit.IPolyline", - "properties": [ + }, { "key": { "any": false, @@ -1825,7 +1830,7 @@ "type": "string", "values": [ { - "value": "points", + "value": "pivot", "tags": [] } ] @@ -1853,14 +1858,14 @@ "templates": [], "escaped": null, "rest": null, - "arrays": [ + "arrays": [], + "tuples": [], + "objects": [ { - "name": "Array", + "name": "ObjectSimple.IPoint3D", "tags": [] } ], - "tuples": [], - "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1878,7 +1883,7 @@ ] }, { - "name": "ObjectUnionExplicit.Discriminator<\"circle\", ObjectUnionExplicit.ICircle>", + "name": "ObjectSimple.IPoint3D", "properties": [ { "key": { @@ -1893,7 +1898,7 @@ "type": "string", "values": [ { - "value": "centroid", + "value": "x", "tags": [] } ] @@ -1916,19 +1921,19 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [], + "atomics": [ + { + "type": "number", + "tags": [] + } + ], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "ObjectUnionExplicit.IPoint", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], @@ -1950,7 +1955,7 @@ "type": "string", "values": [ { - "value": "radius", + "value": "y", "tags": [] } ] @@ -2007,7 +2012,7 @@ "type": "string", "values": [ { - "value": "type", + "value": "z", "tags": [] } ] @@ -2030,18 +2035,13 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [], - "constants": [ + "atomics": [ { - "type": "string", - "values": [ - { - "value": "circle", - "tags": [] - } - ] + "type": "number", + "tags": [] } ], + "constants": [], "templates": [], "escaped": null, "rest": null, @@ -2091,11 +2091,11 @@ "tags": [] }, { - "name": "Array", + "name": "ObjectUnionExplicit", "tags": [] }, { - "name": "ObjectUnionExplicit", + "name": "Array", "tags": [] } ], @@ -2237,38 +2237,6 @@ "recursive": false, "index": null }, - { - "name": "Array", - "value": { - "any": false, - "required": true, - "optional": false, - "nullable": false, - "functions": [], - "atomics": [ - { - "type": "boolean", - "tags": [] - } - ], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [], - "aliases": [], - "natives": [], - "sets": [], - "maps": [] - }, - "nullables": [ - false - ], - "recursive": false, - "index": null - }, { "name": "ObjectUnionExplicit", "value": { @@ -2388,6 +2356,38 @@ ], "recursive": false, "index": null + }, + { + "name": "Array", + "value": { + "any": false, + "required": true, + "optional": false, + "nullable": false, + "functions": [], + "atomics": [ + { + "type": "boolean", + "tags": [] + } + ], + "constants": [], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], + "tuples": [], + "objects": [], + "aliases": [], + "natives": [], + "sets": [], + "maps": [] + }, + "nullables": [ + false + ], + "recursive": false, + "index": null } ], "tuples": [ diff --git a/test/schemas/reflect/metadata/UltimateUnion.json b/test/schemas/reflect/metadata/UltimateUnion.json index ae966c0f90..4c3bf5d3aa 100644 --- a/test/schemas/reflect/metadata/UltimateUnion.json +++ b/test/schemas/reflect/metadata/UltimateUnion.json @@ -440,23 +440,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { @@ -506,7 +506,7 @@ ] }, { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "properties": [ { "key": { @@ -521,7 +521,7 @@ "type": "string", "values": [ { - "value": "default", + "value": "const", "tags": [] } ] @@ -541,13 +541,21 @@ "value": { "any": false, "required": true, - "optional": true, + "optional": false, "nullable": false, "functions": [], "atomics": [ { "type": "string", "tags": [] + }, + { + "type": "number", + "tags": [] + }, + { + "type": "boolean", + "tags": [] } ], "constants": [], @@ -562,7 +570,7 @@ "sets": [], "maps": [] }, - "description": "Default value.", + "description": "The constant value.", "jsDocTags": [] }, { @@ -578,7 +586,7 @@ "type": "string", "values": [ { - "value": "format", + "value": "title", "tags": [] } ] @@ -619,7 +627,7 @@ "sets": [], "maps": [] }, - "description": "Format restriction.", + "description": "Title of the schema.", "jsDocTags": [] }, { @@ -635,7 +643,7 @@ "type": "string", "values": [ { - "value": "pattern", + "value": "description", "tags": [] } ] @@ -676,7 +684,7 @@ "sets": [], "maps": [] }, - "description": "Pattern restriction.", + "description": "Detailed description of the schema.", "jsDocTags": [] }, { @@ -692,7 +700,7 @@ "type": "string", "values": [ { - "value": "contentMediaType", + "value": "deprecated", "tags": [] } ] @@ -717,7 +725,7 @@ "functions": [], "atomics": [ { - "type": "string", + "type": "boolean", "tags": [] } ], @@ -733,7 +741,7 @@ "sets": [], "maps": [] }, - "description": "Content media type restriction.", + "description": "Whether the type is deprecated or not.", "jsDocTags": [] }, { @@ -749,7 +757,7 @@ "type": "string", "values": [ { - "value": "minLength", + "value": "example", "tags": [] } ] @@ -767,31 +775,12 @@ "maps": [] }, "value": { - "any": false, + "any": true, "required": true, "optional": true, "nullable": false, "functions": [], - "atomics": [ - { - "type": "number", - "tags": [ - [ - { - "target": "number", - "name": "Type<\"uint64\">", - "kind": "type", - "value": "uint64", - "validate": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615", - "exclusive": true, - "schema": { - "type": "integer" - } - } - ] - ] - } - ], + "atomics": [], "constants": [], "templates": [], "escaped": null, @@ -804,18 +793,8 @@ "sets": [], "maps": [] }, - "description": "Minimum length restriction.", - "jsDocTags": [ - { - "name": "type", - "text": [ - { - "text": "uint64", - "kind": "text" - } - ] - } - ] + "description": "Example value.", + "jsDocTags": [] }, { "key": { @@ -830,7 +809,7 @@ "type": "string", "values": [ { - "value": "maxLength", + "value": "examples", "tags": [] } ] @@ -853,24 +832,50 @@ "optional": true, "nullable": false, "functions": [], + "atomics": [], + "constants": [], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], + "tuples": [], + "objects": [ + { + "name": "Record", + "tags": [] + } + ], + "aliases": [], + "natives": [], + "sets": [], + "maps": [] + }, + "description": "List of example values as key-value pairs.", + "jsDocTags": [] + } + ], + "description": "Constant value type.", + "jsDocTags": [], + "index": 3, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "Record", + "properties": [ + { + "key": { + "any": false, + "required": true, + "optional": false, + "nullable": false, + "functions": [], "atomics": [ { - "type": "number", - "tags": [ - [ - { - "target": "number", - "name": "Type<\"uint64\">", - "kind": "type", - "value": "uint64", - "validate": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615", - "exclusive": true, - "schema": { - "type": "integer" - } - } - ] - ] + "type": "string", + "tags": [] } ], "constants": [], @@ -885,19 +890,40 @@ "sets": [], "maps": [] }, - "description": "Maximum length restriction.", - "jsDocTags": [ - { - "name": "type", - "text": [ - { - "text": "uint64", - "kind": "text" - } - ] - } - ] - }, + "value": { + "any": true, + "required": true, + "optional": false, + "nullable": false, + "functions": [], + "atomics": [], + "constants": [], + "templates": [], + "escaped": null, + "rest": null, + "arrays": [], + "tuples": [], + "objects": [], + "aliases": [], + "natives": [], + "sets": [], + "maps": [] + }, + "description": null, + "jsDocTags": [] + } + ], + "description": "Construct a type with a set of properties K of type T", + "jsDocTags": [], + "index": 4, + "recursive": false, + "nullables": [ + false + ] + }, + { + "name": "OpenApi.IJsonSchema.IBoolean", + "properties": [ { "key": { "any": false, @@ -911,7 +937,7 @@ "type": "string", "values": [ { - "value": "type", + "value": "default", "tags": [] } ] @@ -931,21 +957,16 @@ "value": { "any": false, "required": true, - "optional": false, + "optional": true, "nullable": false, "functions": [], - "atomics": [], - "constants": [ + "atomics": [ { - "type": "string", - "values": [ - { - "value": "string", - "tags": [] - } - ] + "type": "boolean", + "tags": [] } ], + "constants": [], "templates": [], "escaped": null, "rest": null, @@ -957,7 +978,7 @@ "sets": [], "maps": [] }, - "description": "Discriminator value of the type.", + "description": "The default value.", "jsDocTags": [] }, { @@ -973,7 +994,7 @@ "type": "string", "values": [ { - "value": "title", + "value": "type", "tags": [] } ] @@ -993,16 +1014,21 @@ "value": { "any": false, "required": true, - "optional": true, + "optional": false, "nullable": false, "functions": [], - "atomics": [ + "atomics": [], + "constants": [ { "type": "string", - "tags": [] + "values": [ + { + "value": "boolean", + "tags": [] + } + ] } ], - "constants": [], "templates": [], "escaped": null, "rest": null, @@ -1014,7 +1040,7 @@ "sets": [], "maps": [] }, - "description": "Title of the schema.", + "description": "Discriminator value of the type.", "jsDocTags": [] }, { @@ -1030,7 +1056,7 @@ "type": "string", "values": [ { - "value": "description", + "value": "title", "tags": [] } ] @@ -1071,7 +1097,7 @@ "sets": [], "maps": [] }, - "description": "Detailed description of the schema.", + "description": "Title of the schema.", "jsDocTags": [] }, { @@ -1087,7 +1113,7 @@ "type": "string", "values": [ { - "value": "deprecated", + "value": "description", "tags": [] } ] @@ -1112,7 +1138,7 @@ "functions": [], "atomics": [ { - "type": "boolean", + "type": "string", "tags": [] } ], @@ -1128,7 +1154,7 @@ "sets": [], "maps": [] }, - "description": "Whether the type is deprecated or not.", + "description": "Detailed description of the schema.", "jsDocTags": [] }, { @@ -1144,7 +1170,7 @@ "type": "string", "values": [ { - "value": "example", + "value": "deprecated", "tags": [] } ] @@ -1162,12 +1188,17 @@ "maps": [] }, "value": { - "any": true, + "any": false, "required": true, "optional": true, "nullable": false, "functions": [], - "atomics": [], + "atomics": [ + { + "type": "boolean", + "tags": [] + } + ], "constants": [], "templates": [], "escaped": null, @@ -1180,7 +1211,7 @@ "sets": [], "maps": [] }, - "description": "Example value.", + "description": "Whether the type is deprecated or not.", "jsDocTags": [] }, { @@ -1196,7 +1227,7 @@ "type": "string", "values": [ { - "value": "examples", + "value": "example", "tags": [] } ] @@ -1214,7 +1245,7 @@ "maps": [] }, "value": { - "any": false, + "any": true, "required": true, "optional": true, "nullable": false, @@ -1226,32 +1257,15 @@ "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "Record", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], "maps": [] }, - "description": "List of example values as key-value pairs.", + "description": "Example value.", "jsDocTags": [] - } - ], - "description": "String type info.", - "jsDocTags": [], - "index": 3, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "Record", - "properties": [ + }, { "key": { "any": false, @@ -1259,13 +1273,18 @@ "optional": false, "nullable": false, "functions": [], - "atomics": [ + "atomics": [], + "constants": [ { "type": "string", - "tags": [] + "values": [ + { + "value": "examples", + "tags": [] + } + ] } ], - "constants": [], "templates": [], "escaped": null, "rest": null, @@ -1278,9 +1297,9 @@ "maps": [] }, "value": { - "any": true, + "any": false, "required": true, - "optional": false, + "optional": true, "nullable": false, "functions": [], "atomics": [], @@ -1290,26 +1309,31 @@ "rest": null, "arrays": [], "tuples": [], - "objects": [], + "objects": [ + { + "name": "Record", + "tags": [] + } + ], "aliases": [], "natives": [], "sets": [], "maps": [] }, - "description": null, + "description": "List of example values as key-value pairs.", "jsDocTags": [] } ], - "description": "Construct a type with a set of properties K of type T", + "description": "Boolean type info.", "jsDocTags": [], - "index": 4, + "index": 5, "recursive": false, "nullables": [ false ] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IInteger", "properties": [ { "key": { @@ -1350,7 +1374,21 @@ "atomics": [ { "type": "number", - "tags": [] + "tags": [ + [ + { + "target": "number", + "name": "Type<\"int64\">", + "kind": "type", + "value": "int64", + "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", + "exclusive": true, + "schema": { + "type": "integer" + } + } + ] + ] } ], "constants": [], @@ -1366,7 +1404,17 @@ "maps": [] }, "description": "Default value.", - "jsDocTags": [] + "jsDocTags": [ + { + "name": "type", + "text": [ + { + "text": "int64", + "kind": "text" + } + ] + } + ] }, { "key": { @@ -1407,7 +1455,21 @@ "atomics": [ { "type": "number", - "tags": [] + "tags": [ + [ + { + "target": "number", + "name": "Type<\"int64\">", + "kind": "type", + "value": "int64", + "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", + "exclusive": true, + "schema": { + "type": "integer" + } + } + ] + ] } ], "constants": [], @@ -1423,7 +1485,17 @@ "maps": [] }, "description": "Minimum value restriction.", - "jsDocTags": [] + "jsDocTags": [ + { + "name": "type", + "text": [ + { + "text": "int64", + "kind": "text" + } + ] + } + ] }, { "key": { @@ -1464,7 +1536,21 @@ "atomics": [ { "type": "number", - "tags": [] + "tags": [ + [ + { + "target": "number", + "name": "Type<\"int64\">", + "kind": "type", + "value": "int64", + "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", + "exclusive": true, + "schema": { + "type": "integer" + } + } + ] + ] } ], "constants": [], @@ -1480,7 +1566,17 @@ "maps": [] }, "description": "Maximum value restriction.", - "jsDocTags": [] + "jsDocTags": [ + { + "name": "type", + "text": [ + { + "text": "int64", + "kind": "text" + } + ] + } + ] }, { "key": { @@ -1536,7 +1632,7 @@ "sets": [], "maps": [] }, - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property.", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property.", "jsDocTags": [] }, { @@ -1593,7 +1689,7 @@ "sets": [], "maps": [] }, - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property.", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property.", "jsDocTags": [] }, { @@ -1637,6 +1733,17 @@ "type": "number", "tags": [ [ + { + "target": "number", + "name": "Type<\"uint64\">", + "kind": "type", + "value": "uint64", + "validate": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615", + "exclusive": true, + "schema": { + "type": "integer" + } + }, { "target": "number", "name": "ExclusiveMinimum<0>", @@ -1670,6 +1777,15 @@ }, "description": "Multiple of value restriction.", "jsDocTags": [ + { + "name": "type", + "text": [ + { + "text": "uint64", + "kind": "text" + } + ] + }, { "name": "exclusiveMinimum", "text": [ @@ -1723,7 +1839,7 @@ "type": "string", "values": [ { - "value": "number", + "value": "integer", "tags": [] } ] @@ -2024,16 +2140,16 @@ "jsDocTags": [] } ], - "description": "Number (double) type info.", + "description": "Integer type info.", "jsDocTags": [], - "index": 5, + "index": 6, "recursive": false, "nullables": [ false ] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "properties": [ { "key": { @@ -2048,7 +2164,7 @@ "type": "string", "values": [ { - "value": "const", + "value": "default", "tags": [] } ] @@ -2068,21 +2184,13 @@ "value": { "any": false, "required": true, - "optional": false, + "optional": true, "nullable": false, "functions": [], "atomics": [ - { - "type": "string", - "tags": [] - }, { "type": "number", "tags": [] - }, - { - "type": "boolean", - "tags": [] } ], "constants": [], @@ -2097,7 +2205,7 @@ "sets": [], "maps": [] }, - "description": "The constant value.", + "description": "Default value.", "jsDocTags": [] }, { @@ -2113,7 +2221,7 @@ "type": "string", "values": [ { - "value": "title", + "value": "minimum", "tags": [] } ] @@ -2138,7 +2246,7 @@ "functions": [], "atomics": [ { - "type": "string", + "type": "number", "tags": [] } ], @@ -2154,7 +2262,7 @@ "sets": [], "maps": [] }, - "description": "Title of the schema.", + "description": "Minimum value restriction.", "jsDocTags": [] }, { @@ -2170,7 +2278,7 @@ "type": "string", "values": [ { - "value": "description", + "value": "maximum", "tags": [] } ] @@ -2195,7 +2303,7 @@ "functions": [], "atomics": [ { - "type": "string", + "type": "number", "tags": [] } ], @@ -2211,7 +2319,7 @@ "sets": [], "maps": [] }, - "description": "Detailed description of the schema.", + "description": "Maximum value restriction.", "jsDocTags": [] }, { @@ -2227,7 +2335,7 @@ "type": "string", "values": [ { - "value": "deprecated", + "value": "exclusiveMinimum", "tags": [] } ] @@ -2268,7 +2376,7 @@ "sets": [], "maps": [] }, - "description": "Whether the type is deprecated or not.", + "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property.", "jsDocTags": [] }, { @@ -2284,7 +2392,7 @@ "type": "string", "values": [ { - "value": "example", + "value": "exclusiveMaximum", "tags": [] } ] @@ -2302,96 +2410,32 @@ "maps": [] }, "value": { - "any": true, - "required": true, - "optional": true, - "nullable": false, - "functions": [], - "atomics": [], - "constants": [], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [], - "aliases": [], - "natives": [], - "sets": [], - "maps": [] - }, - "description": "Example value.", - "jsDocTags": [] - }, - { - "key": { "any": false, "required": true, - "optional": false, + "optional": true, "nullable": false, "functions": [], - "atomics": [], - "constants": [ + "atomics": [ { - "type": "string", - "values": [ - { - "value": "examples", - "tags": [] - } - ] + "type": "boolean", + "tags": [] } ], - "templates": [], - "escaped": null, - "rest": null, - "arrays": [], - "tuples": [], - "objects": [], - "aliases": [], - "natives": [], - "sets": [], - "maps": [] - }, - "value": { - "any": false, - "required": true, - "optional": true, - "nullable": false, - "functions": [], - "atomics": [], "constants": [], "templates": [], "escaped": null, "rest": null, "arrays": [], "tuples": [], - "objects": [ - { - "name": "Record", - "tags": [] - } - ], + "objects": [], "aliases": [], "natives": [], "sets": [], "maps": [] }, - "description": "List of example values as key-value pairs.", + "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenAiComposer}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property.", "jsDocTags": [] - } - ], - "description": "Constant value type.", - "jsDocTags": [], - "index": 6, - "recursive": false, - "nullables": [ - false - ] - }, - { - "name": "OpenApi.IJsonSchema.IBoolean", - "properties": [ + }, { "key": { "any": false, @@ -2405,7 +2449,7 @@ "type": "string", "values": [ { - "value": "default", + "value": "multipleOf", "tags": [] } ] @@ -2430,8 +2474,26 @@ "functions": [], "atomics": [ { - "type": "boolean", - "tags": [] + "type": "number", + "tags": [ + [ + { + "target": "number", + "name": "ExclusiveMinimum<0>", + "kind": "exclusiveMinimum", + "value": 0, + "validate": "0 < $input", + "exclusive": [ + "minimum", + "exclusiveMinimum" + ], + "schema": { + "exclusiveMinimum": true, + "minimum": 0 + } + } + ] + ] } ], "constants": [], @@ -2446,8 +2508,18 @@ "sets": [], "maps": [] }, - "description": "The default value.", - "jsDocTags": [] + "description": "Multiple of value restriction.", + "jsDocTags": [ + { + "name": "exclusiveMinimum", + "text": [ + { + "text": "0", + "kind": "text" + } + ] + } + ] }, { "key": { @@ -2491,7 +2563,7 @@ "type": "string", "values": [ { - "value": "boolean", + "value": "number", "tags": [] } ] @@ -2792,7 +2864,7 @@ "jsDocTags": [] } ], - "description": "Boolean type info.", + "description": "Number (double) type info.", "jsDocTags": [], "index": 7, "recursive": false, @@ -2801,7 +2873,7 @@ ] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "properties": [ { "key": { @@ -2841,22 +2913,8 @@ "functions": [], "atomics": [ { - "type": "number", - "tags": [ - [ - { - "target": "number", - "name": "Type<\"int64\">", - "kind": "type", - "value": "int64", - "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", - "exclusive": true, - "schema": { - "type": "integer" - } - } - ] - ] + "type": "string", + "tags": [] } ], "constants": [], @@ -2872,17 +2930,7 @@ "maps": [] }, "description": "Default value.", - "jsDocTags": [ - { - "name": "type", - "text": [ - { - "text": "int64", - "kind": "text" - } - ] - } - ] + "jsDocTags": [] }, { "key": { @@ -2897,7 +2945,7 @@ "type": "string", "values": [ { - "value": "minimum", + "value": "format", "tags": [] } ] @@ -2922,22 +2970,8 @@ "functions": [], "atomics": [ { - "type": "number", - "tags": [ - [ - { - "target": "number", - "name": "Type<\"int64\">", - "kind": "type", - "value": "int64", - "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", - "exclusive": true, - "schema": { - "type": "integer" - } - } - ] - ] + "type": "string", + "tags": [] } ], "constants": [], @@ -2952,18 +2986,8 @@ "sets": [], "maps": [] }, - "description": "Minimum value restriction.", - "jsDocTags": [ - { - "name": "type", - "text": [ - { - "text": "int64", - "kind": "text" - } - ] - } - ] + "description": "Format restriction.", + "jsDocTags": [] }, { "key": { @@ -2978,7 +3002,7 @@ "type": "string", "values": [ { - "value": "maximum", + "value": "pattern", "tags": [] } ] @@ -3003,22 +3027,8 @@ "functions": [], "atomics": [ { - "type": "number", - "tags": [ - [ - { - "target": "number", - "name": "Type<\"int64\">", - "kind": "type", - "value": "int64", - "validate": "Math.floor($input) === $input && -9223372036854775808 <= $input && $input <= 9223372036854775807", - "exclusive": true, - "schema": { - "type": "integer" - } - } - ] - ] + "type": "string", + "tags": [] } ], "constants": [], @@ -3033,18 +3043,8 @@ "sets": [], "maps": [] }, - "description": "Maximum value restriction.", - "jsDocTags": [ - { - "name": "type", - "text": [ - { - "text": "int64", - "kind": "text" - } - ] - } - ] + "description": "Pattern restriction.", + "jsDocTags": [] }, { "key": { @@ -3059,7 +3059,7 @@ "type": "string", "values": [ { - "value": "exclusiveMinimum", + "value": "contentMediaType", "tags": [] } ] @@ -3084,7 +3084,7 @@ "functions": [], "atomics": [ { - "type": "boolean", + "type": "string", "tags": [] } ], @@ -3100,7 +3100,7 @@ "sets": [], "maps": [] }, - "description": "Exclusive minimum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMinimum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link minimum} property.", + "description": "Content media type restriction.", "jsDocTags": [] }, { @@ -3116,7 +3116,7 @@ "type": "string", "values": [ { - "value": "exclusiveMaximum", + "value": "minLength", "tags": [] } ] @@ -3141,8 +3141,22 @@ "functions": [], "atomics": [ { - "type": "boolean", - "tags": [] + "type": "number", + "tags": [ + [ + { + "target": "number", + "name": "Type<\"uint64\">", + "kind": "type", + "value": "uint64", + "validate": "Math.floor($input) === $input && 0 <= $input && $input <= 18446744073709551615", + "exclusive": true, + "schema": { + "type": "integer" + } + } + ] + ] } ], "constants": [], @@ -3157,8 +3171,18 @@ "sets": [], "maps": [] }, - "description": "Exclusive maximum value restriction.\n\nFor reference, even though your Swagger (or OpenAPI) document has\ndefined the `exclusiveMaximum` value as `number`, {@link OpenApi}\nforcibly converts it to `boolean` type, and assign the numeric value to\nthe {@link maximum} property.", - "jsDocTags": [] + "description": "Minimum length restriction.", + "jsDocTags": [ + { + "name": "type", + "text": [ + { + "text": "uint64", + "kind": "text" + } + ] + } + ] }, { "key": { @@ -3173,7 +3197,7 @@ "type": "string", "values": [ { - "value": "multipleOf", + "value": "maxLength", "tags": [] } ] @@ -3211,21 +3235,6 @@ "schema": { "type": "integer" } - }, - { - "target": "number", - "name": "ExclusiveMinimum<0>", - "kind": "exclusiveMinimum", - "value": 0, - "validate": "0 < $input", - "exclusive": [ - "minimum", - "exclusiveMinimum" - ], - "schema": { - "exclusiveMinimum": true, - "minimum": 0 - } } ] ] @@ -3243,7 +3252,7 @@ "sets": [], "maps": [] }, - "description": "Multiple of value restriction.", + "description": "Maximum length restriction.", "jsDocTags": [ { "name": "type", @@ -3253,15 +3262,6 @@ "kind": "text" } ] - }, - { - "name": "exclusiveMinimum", - "text": [ - { - "text": "0", - "kind": "text" - } - ] } ] }, @@ -3307,7 +3307,7 @@ "type": "string", "values": [ { - "value": "integer", + "value": "string", "tags": [] } ] @@ -3608,7 +3608,7 @@ "jsDocTags": [] } ], - "description": "Integer type info.", + "description": "String type info.", "jsDocTags": [], "index": 8, "recursive": false, @@ -3664,23 +3664,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { @@ -4400,23 +4400,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { @@ -5136,23 +5136,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { @@ -5995,7 +5995,7 @@ "rest": null, "arrays": [ { - "name": "Array | ITuple | IObject<...> | IReference<...> | INull | IUnknown>", + "name": "Array | ITuple | IObject<...> | IReference<...> | INull | IUnknown>", "tags": [] } ], @@ -9347,23 +9347,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { @@ -9407,7 +9407,7 @@ "index": null }, { - "name": "Array | ITuple | IObject<...> | IReference<...> | INull | IUnknown>", + "name": "Array | ITuple | IObject<...> | IReference<...> | INull | IUnknown>", "value": { "any": false, "required": true, @@ -9423,23 +9423,23 @@ "tuples": [], "objects": [ { - "name": "OpenApi.IJsonSchema.IString", + "name": "OpenApi.IJsonSchema.IConstant", "tags": [] }, { - "name": "OpenApi.IJsonSchema.INumber", + "name": "OpenApi.IJsonSchema.IBoolean", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IConstant", + "name": "OpenApi.IJsonSchema.INumber", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IBoolean", + "name": "OpenApi.IJsonSchema.IInteger", "tags": [] }, { - "name": "OpenApi.IJsonSchema.IInteger", + "name": "OpenApi.IJsonSchema.IString", "tags": [] }, { diff --git a/test/src/debug/schema.ts b/test/src/debug/schema.ts index 577042e3da..7753f47f51 100644 --- a/test/src/debug/schema.ts +++ b/test/src/debug/schema.ts @@ -1,19 +1,6 @@ -import typia, { tags } from "typia"; +import typia from "typia"; -interface Something { - pure: `${number}/${number}` | `${string}-${string}`; - sole: `${number}/${number}` & tags.JsonSchemaPlugin<{ "x-typia-sole": true }>; - union: - | (`${number}/${number}` & - tags.JsonSchemaPlugin<{ "x-typia-something": true }>) - | (`${string}-${string}` & - tags.JsonSchemaPlugin<{ "x-typia-nothing": false }>); - mixed: - | `${number}/${number}` - | `${string}-${string}` - | (`${string}||${number}` & - tags.JsonSchemaPlugin<{ "x-typia-something": true }>); -} +import { UltimateUnion } from "../structures/UltimateUnion"; -const collection = typia.json.schemas<[Something]>(); -console.log(JSON.stringify(collection, null, 2)); +const schema = typia.llm.schema(); +console.log(JSON.stringify(schema, null, 2)); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAny.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAny.ts index 67c82b6b11..42d7b06451 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAny.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAny.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAny } from "../../../structures/ArrayAny"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAny } from "../../../structures/ArrayAny"; -export const test_json_schemas_v3_0_ArrayAny = - _test_json_schemas({ - version: "3.0", - name: "ArrayAny", - })(typia.json.schemas<[ArrayAny], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayAny = _test_json_schemas({ + version: "3.0", + name: "ArrayAny", +})(typia.json.schemas<[ArrayAny], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicAlias.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicAlias.ts index 314f3322fb..44f8eab168 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicAlias.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; -export const test_json_schemas_v3_0_ArrayAtomicAlias = - _test_json_schemas({ - version: "3.0", - name: "ArrayAtomicAlias", - })(typia.json.schemas<[ArrayAtomicAlias], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayAtomicAlias = _test_json_schemas({ + version: "3.0", + name: "ArrayAtomicAlias", +})(typia.json.schemas<[ArrayAtomicAlias], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicSimple.ts index 6aaef85c47..1308634728 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; -export const test_json_schemas_v3_0_ArrayAtomicSimple = - _test_json_schemas({ - version: "3.0", - name: "ArrayAtomicSimple", - })(typia.json.schemas<[ArrayAtomicSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayAtomicSimple = _test_json_schemas({ + version: "3.0", + name: "ArrayAtomicSimple", +})(typia.json.schemas<[ArrayAtomicSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchical.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchical.ts index bd35fbcd7f..f7a3a5c183 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchical.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; -export const test_json_schemas_v3_0_ArrayHierarchical = - _test_json_schemas({ - version: "3.0", - name: "ArrayHierarchical", - })(typia.json.schemas<[ArrayHierarchical], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayHierarchical = _test_json_schemas({ + version: "3.0", + name: "ArrayHierarchical", +})(typia.json.schemas<[ArrayHierarchical], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchicalPointer.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchicalPointer.ts index 4f28bff48d..16659f2d8a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchicalPointer.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayHierarchicalPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; -export const test_json_schemas_v3_0_ArrayHierarchicalPointer = +export const test_json_schemas_v3_0_ArrayHierarchicalPointer = _test_json_schemas({ version: "3.0", - name: "ArrayHierarchicalPointer", - })(typia.json.schemas<[ArrayHierarchicalPointer], "3.0">()); \ No newline at end of file + name: "ArrayHierarchicalPointer", + })(typia.json.schemas<[ArrayHierarchicalPointer], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayMatrix.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayMatrix.ts index 5d61401a59..edb1293024 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayMatrix.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; -export const test_json_schemas_v3_0_ArrayMatrix = - _test_json_schemas({ - version: "3.0", - name: "ArrayMatrix", - })(typia.json.schemas<[ArrayMatrix], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayMatrix = _test_json_schemas({ + version: "3.0", + name: "ArrayMatrix", +})(typia.json.schemas<[ArrayMatrix], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursive.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursive.ts index 35932ed0d7..d6c56dc118 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursive.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRecursive } from "../../../structures/ArrayRecursive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursive } from "../../../structures/ArrayRecursive"; -export const test_json_schemas_v3_0_ArrayRecursive = - _test_json_schemas({ - version: "3.0", - name: "ArrayRecursive", - })(typia.json.schemas<[ArrayRecursive], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayRecursive = _test_json_schemas({ + version: "3.0", + name: "ArrayRecursive", +})(typia.json.schemas<[ArrayRecursive], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicit.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicit.ts index e5b25fd4ad..6fca470557 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicit.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicit.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicit } from "../../../structures/ArrayRecursiveUnionExplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionExplicit } from "../../../structures/ArrayRecursiveUnionExplicit"; -export const test_json_schemas_v3_0_ArrayRecursiveUnionExplicit = +export const test_json_schemas_v3_0_ArrayRecursiveUnionExplicit = _test_json_schemas({ version: "3.0", - name: "ArrayRecursiveUnionExplicit", - })(typia.json.schemas<[ArrayRecursiveUnionExplicit], "3.0">()); \ No newline at end of file + name: "ArrayRecursiveUnionExplicit", + })(typia.json.schemas<[ArrayRecursiveUnionExplicit], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer.ts index 07b7c170a1..8406010e99 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicitPointer } from "../../../structures/ArrayRecursiveUnionExplicitPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionExplicitPointer } from "../../../structures/ArrayRecursiveUnionExplicitPointer"; -export const test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer = +export const test_json_schemas_v3_0_ArrayRecursiveUnionExplicitPointer = _test_json_schemas({ version: "3.0", - name: "ArrayRecursiveUnionExplicitPointer", - })(typia.json.schemas<[ArrayRecursiveUnionExplicitPointer], "3.0">()); \ No newline at end of file + name: "ArrayRecursiveUnionExplicitPointer", + })(typia.json.schemas<[ArrayRecursiveUnionExplicitPointer], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionImplicit.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionImplicit.ts index 5783f686c3..09d91e5daf 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionImplicit.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRecursiveUnionImplicit.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionImplicit } from "../../../structures/ArrayRecursiveUnionImplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionImplicit } from "../../../structures/ArrayRecursiveUnionImplicit"; -export const test_json_schemas_v3_0_ArrayRecursiveUnionImplicit = +export const test_json_schemas_v3_0_ArrayRecursiveUnionImplicit = _test_json_schemas({ version: "3.0", - name: "ArrayRecursiveUnionImplicit", - })(typia.json.schemas<[ArrayRecursiveUnionImplicit], "3.0">()); \ No newline at end of file + name: "ArrayRecursiveUnionImplicit", + })(typia.json.schemas<[ArrayRecursiveUnionImplicit], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedNullable.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedNullable.ts index 0525278e4f..5e3fc5aa70 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedNullable.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedNullable } from "../../../structures/ArrayRepeatedNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedNullable } from "../../../structures/ArrayRepeatedNullable"; -export const test_json_schemas_v3_0_ArrayRepeatedNullable = - _test_json_schemas({ - version: "3.0", - name: "ArrayRepeatedNullable", - })(typia.json.schemas<[ArrayRepeatedNullable], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayRepeatedNullable = _test_json_schemas({ + version: "3.0", + name: "ArrayRepeatedNullable", +})(typia.json.schemas<[ArrayRepeatedNullable], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedRequired.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedRequired.ts index 8733954e97..47a169a762 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedRequired.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedRequired.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedRequired } from "../../../structures/ArrayRepeatedRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedRequired } from "../../../structures/ArrayRepeatedRequired"; -export const test_json_schemas_v3_0_ArrayRepeatedRequired = - _test_json_schemas({ - version: "3.0", - name: "ArrayRepeatedRequired", - })(typia.json.schemas<[ArrayRepeatedRequired], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayRepeatedRequired = _test_json_schemas({ + version: "3.0", + name: "ArrayRepeatedRequired", +})(typia.json.schemas<[ArrayRepeatedRequired], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnion.ts index aece615ae7..cf263be01b 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedUnion } from "../../../structures/ArrayRepeatedUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedUnion } from "../../../structures/ArrayRepeatedUnion"; -export const test_json_schemas_v3_0_ArrayRepeatedUnion = - _test_json_schemas({ - version: "3.0", - name: "ArrayRepeatedUnion", - })(typia.json.schemas<[ArrayRepeatedUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayRepeatedUnion = _test_json_schemas({ + version: "3.0", + name: "ArrayRepeatedUnion", +})(typia.json.schemas<[ArrayRepeatedUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple.ts index 30431657a9..affb4e9fef 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRepeatedUnionWithTuple } from "../../../structures/ArrayRepeatedUnionWithTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedUnionWithTuple } from "../../../structures/ArrayRepeatedUnionWithTuple"; -export const test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple = +export const test_json_schemas_v3_0_ArrayRepeatedUnionWithTuple = _test_json_schemas({ version: "3.0", - name: "ArrayRepeatedUnionWithTuple", - })(typia.json.schemas<[ArrayRepeatedUnionWithTuple], "3.0">()); \ No newline at end of file + name: "ArrayRepeatedUnionWithTuple", + })(typia.json.schemas<[ArrayRepeatedUnionWithTuple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArraySimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArraySimple.ts index 1f6631e421..37e0fef24f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArraySimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArraySimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArraySimple } from "../../../structures/ArraySimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArraySimple } from "../../../structures/ArraySimple"; -export const test_json_schemas_v3_0_ArraySimple = - _test_json_schemas({ - version: "3.0", - name: "ArraySimple", - })(typia.json.schemas<[ArraySimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArraySimple = _test_json_schemas({ + version: "3.0", + name: "ArraySimple", +})(typia.json.schemas<[ArraySimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayUnion.ts index 8953cbc539..c2fd9e905e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayUnion } from "../../../structures/ArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayUnion } from "../../../structures/ArrayUnion"; -export const test_json_schemas_v3_0_ArrayUnion = - _test_json_schemas({ - version: "3.0", - name: "ArrayUnion", - })(typia.json.schemas<[ArrayUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ArrayUnion = _test_json_schemas({ + version: "3.0", + name: "ArrayUnion", +})(typia.json.schemas<[ArrayUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicAlias.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicAlias.ts index 9e4e9b88f6..4889d49525 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicAlias.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicAlias } from "../../../structures/AtomicAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicAlias } from "../../../structures/AtomicAlias"; -export const test_json_schemas_v3_0_AtomicAlias = - _test_json_schemas({ - version: "3.0", - name: "AtomicAlias", - })(typia.json.schemas<[AtomicAlias], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_AtomicAlias = _test_json_schemas({ + version: "3.0", + name: "AtomicAlias", +})(typia.json.schemas<[AtomicAlias], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicClass.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicClass.ts index ed08dcf94c..5fd8715fbf 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicClass.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicClass.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicClass } from "../../../structures/AtomicClass"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicClass } from "../../../structures/AtomicClass"; -export const test_json_schemas_v3_0_AtomicClass = - _test_json_schemas({ - version: "3.0", - name: "AtomicClass", - })(typia.json.schemas<[AtomicClass], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_AtomicClass = _test_json_schemas({ + version: "3.0", + name: "AtomicClass", +})(typia.json.schemas<[AtomicClass], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicIntersection.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicIntersection.ts index 3769c77b80..95b2eb8ecb 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicIntersection.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicIntersection } from "../../../structures/AtomicIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicIntersection } from "../../../structures/AtomicIntersection"; -export const test_json_schemas_v3_0_AtomicIntersection = - _test_json_schemas({ - version: "3.0", - name: "AtomicIntersection", - })(typia.json.schemas<[AtomicIntersection], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_AtomicIntersection = _test_json_schemas({ + version: "3.0", + name: "AtomicIntersection", +})(typia.json.schemas<[AtomicIntersection], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicSimple.ts index d85801e6bb..36269cd119 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicSimple } from "../../../structures/AtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicSimple } from "../../../structures/AtomicSimple"; -export const test_json_schemas_v3_0_AtomicSimple = - _test_json_schemas({ - version: "3.0", - name: "AtomicSimple", - })(typia.json.schemas<[AtomicSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_AtomicSimple = _test_json_schemas({ + version: "3.0", + name: "AtomicSimple", +})(typia.json.schemas<[AtomicSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicUnion.ts index 9e437edc3f..338b275212 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_AtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicUnion } from "../../../structures/AtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicUnion } from "../../../structures/AtomicUnion"; -export const test_json_schemas_v3_0_AtomicUnion = - _test_json_schemas({ - version: "3.0", - name: "AtomicUnion", - })(typia.json.schemas<[AtomicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_AtomicUnion = _test_json_schemas({ + version: "3.0", + name: "AtomicUnion", +})(typia.json.schemas<[AtomicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassGetter.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassGetter.ts index e0288a35c8..1ea4093fe0 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassGetter.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassGetter.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassGetter } from "../../../structures/ClassGetter"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassGetter } from "../../../structures/ClassGetter"; -export const test_json_schemas_v3_0_ClassGetter = - _test_json_schemas({ - version: "3.0", - name: "ClassGetter", - })(typia.json.schemas<[ClassGetter], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ClassGetter = _test_json_schemas({ + version: "3.0", + name: "ClassGetter", +})(typia.json.schemas<[ClassGetter], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassMethod.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassMethod.ts index 415d341ea3..bdb913b752 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassMethod.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassMethod.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassMethod } from "../../../structures/ClassMethod"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassMethod } from "../../../structures/ClassMethod"; -export const test_json_schemas_v3_0_ClassMethod = - _test_json_schemas({ - version: "3.0", - name: "ClassMethod", - })(typia.json.schemas<[ClassMethod], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ClassMethod = _test_json_schemas({ + version: "3.0", + name: "ClassMethod", +})(typia.json.schemas<[ClassMethod], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassPropertyAssignment.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassPropertyAssignment.ts index f5e33cde3a..5a90a99cda 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassPropertyAssignment.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ClassPropertyAssignment.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; -export const test_json_schemas_v3_0_ClassPropertyAssignment = +export const test_json_schemas_v3_0_ClassPropertyAssignment = _test_json_schemas({ version: "3.0", - name: "ClassPropertyAssignment", - })(typia.json.schemas<[ClassPropertyAssignment], "3.0">()); \ No newline at end of file + name: "ClassPropertyAssignment", + })(typia.json.schemas<[ClassPropertyAssignment], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArray.ts index 9605a20d80..58bc537357 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArray } from "../../../structures/CommentTagArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; -export const test_json_schemas_v3_0_CommentTagArray = - _test_json_schemas({ - version: "3.0", - name: "CommentTagArray", - })(typia.json.schemas<[CommentTagArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagArray = _test_json_schemas({ + version: "3.0", + name: "CommentTagArray", +})(typia.json.schemas<[CommentTagArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArrayUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArrayUnion.ts index 448c5d769a..920e8bb949 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArrayUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; -export const test_json_schemas_v3_0_CommentTagArrayUnion = - _test_json_schemas({ - version: "3.0", - name: "CommentTagArrayUnion", - })(typia.json.schemas<[CommentTagArrayUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagArrayUnion = _test_json_schemas({ + version: "3.0", + name: "CommentTagArrayUnion", +})(typia.json.schemas<[CommentTagArrayUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagAtomicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagAtomicUnion.ts index 7774f0f4c7..14dab1f664 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; -export const test_json_schemas_v3_0_CommentTagAtomicUnion = - _test_json_schemas({ - version: "3.0", - name: "CommentTagAtomicUnion", - })(typia.json.schemas<[CommentTagAtomicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagAtomicUnion = _test_json_schemas({ + version: "3.0", + name: "CommentTagAtomicUnion", +})(typia.json.schemas<[CommentTagAtomicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagDefault.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagDefault.ts index 4a79abd544..e1a67378c8 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagDefault.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagDefault } from "../../../structures/CommentTagDefault"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagDefault } from "../../../structures/CommentTagDefault"; -export const test_json_schemas_v3_0_CommentTagDefault = - _test_json_schemas({ - version: "3.0", - name: "CommentTagDefault", - })(typia.json.schemas<[CommentTagDefault], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagDefault = _test_json_schemas({ + version: "3.0", + name: "CommentTagDefault", +})(typia.json.schemas<[CommentTagDefault], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagFormat.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagFormat.ts index 61a3ffe419..96e196e3a9 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagFormat.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; -export const test_json_schemas_v3_0_CommentTagFormat = - _test_json_schemas({ - version: "3.0", - name: "CommentTagFormat", - })(typia.json.schemas<[CommentTagFormat], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagFormat = _test_json_schemas({ + version: "3.0", + name: "CommentTagFormat", +})(typia.json.schemas<[CommentTagFormat], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagLength.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagLength.ts index 2c7c0694f4..aaa3bbc5dc 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagLength.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagLength } from "../../../structures/CommentTagLength"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; -export const test_json_schemas_v3_0_CommentTagLength = - _test_json_schemas({ - version: "3.0", - name: "CommentTagLength", - })(typia.json.schemas<[CommentTagLength], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagLength = _test_json_schemas({ + version: "3.0", + name: "CommentTagLength", +})(typia.json.schemas<[CommentTagLength], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagObjectUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagObjectUnion.ts index d50cc47ff2..b0f2739878 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagObjectUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; -export const test_json_schemas_v3_0_CommentTagObjectUnion = - _test_json_schemas({ - version: "3.0", - name: "CommentTagObjectUnion", - })(typia.json.schemas<[CommentTagObjectUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagObjectUnion = _test_json_schemas({ + version: "3.0", + name: "CommentTagObjectUnion", +})(typia.json.schemas<[CommentTagObjectUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagPattern.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagPattern.ts index 685987ca77..5b542479b4 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagPattern.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; -export const test_json_schemas_v3_0_CommentTagPattern = - _test_json_schemas({ - version: "3.0", - name: "CommentTagPattern", - })(typia.json.schemas<[CommentTagPattern], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagPattern = _test_json_schemas({ + version: "3.0", + name: "CommentTagPattern", +})(typia.json.schemas<[CommentTagPattern], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagRange.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagRange.ts index 4a9ddbfae5..21d8f8c7fd 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagRange.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagRange } from "../../../structures/CommentTagRange"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; -export const test_json_schemas_v3_0_CommentTagRange = - _test_json_schemas({ - version: "3.0", - name: "CommentTagRange", - })(typia.json.schemas<[CommentTagRange], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagRange = _test_json_schemas({ + version: "3.0", + name: "CommentTagRange", +})(typia.json.schemas<[CommentTagRange], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagType.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagType.ts index a442672428..a8cd118309 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagType.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_CommentTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagType } from "../../../structures/CommentTagType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagType } from "../../../structures/CommentTagType"; -export const test_json_schemas_v3_0_CommentTagType = - _test_json_schemas({ - version: "3.0", - name: "CommentTagType", - })(typia.json.schemas<[CommentTagType], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_CommentTagType = _test_json_schemas({ + version: "3.0", + name: "CommentTagType", +})(typia.json.schemas<[CommentTagType], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicAbsorbed.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicAbsorbed.ts index dd89b40c11..9fd63a50c6 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicAbsorbed.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicAbsorbed.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; -export const test_json_schemas_v3_0_ConstantAtomicAbsorbed = - _test_json_schemas({ +export const test_json_schemas_v3_0_ConstantAtomicAbsorbed = _test_json_schemas( + { version: "3.0", - name: "ConstantAtomicAbsorbed", - })(typia.json.schemas<[ConstantAtomicAbsorbed], "3.0">()); \ No newline at end of file + name: "ConstantAtomicAbsorbed", + }, +)(typia.json.schemas<[ConstantAtomicAbsorbed], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicSimple.ts index abb0bcec54..2a64ab33e0 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; -export const test_json_schemas_v3_0_ConstantAtomicSimple = - _test_json_schemas({ - version: "3.0", - name: "ConstantAtomicSimple", - })(typia.json.schemas<[ConstantAtomicSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantAtomicSimple = _test_json_schemas({ + version: "3.0", + name: "ConstantAtomicSimple", +})(typia.json.schemas<[ConstantAtomicSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicTagged.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicTagged.ts index dda7018d04..d955d9a655 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicTagged.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicTagged.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; -export const test_json_schemas_v3_0_ConstantAtomicTagged = - _test_json_schemas({ - version: "3.0", - name: "ConstantAtomicTagged", - })(typia.json.schemas<[ConstantAtomicTagged], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantAtomicTagged = _test_json_schemas({ + version: "3.0", + name: "ConstantAtomicTagged", +})(typia.json.schemas<[ConstantAtomicTagged], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicUnion.ts index a33d84c7a7..3861fde50f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; -export const test_json_schemas_v3_0_ConstantAtomicUnion = - _test_json_schemas({ - version: "3.0", - name: "ConstantAtomicUnion", - })(typia.json.schemas<[ConstantAtomicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantAtomicUnion = _test_json_schemas({ + version: "3.0", + name: "ConstantAtomicUnion", +})(typia.json.schemas<[ConstantAtomicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicWrapper.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicWrapper.ts index 579c2750ab..ce09b08b73 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicWrapper.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantAtomicWrapper.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; -export const test_json_schemas_v3_0_ConstantAtomicWrapper = - _test_json_schemas({ - version: "3.0", - name: "ConstantAtomicWrapper", - })(typia.json.schemas<[ConstantAtomicWrapper], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantAtomicWrapper = _test_json_schemas({ + version: "3.0", + name: "ConstantAtomicWrapper", +})(typia.json.schemas<[ConstantAtomicWrapper], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantConstEnumeration.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantConstEnumeration.ts index 60fc1a818a..3c305949e4 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantConstEnumeration.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantConstEnumeration.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; -export const test_json_schemas_v3_0_ConstantConstEnumeration = +export const test_json_schemas_v3_0_ConstantConstEnumeration = _test_json_schemas({ version: "3.0", - name: "ConstantConstEnumeration", - })(typia.json.schemas<[ConstantConstEnumeration], "3.0">()); \ No newline at end of file + name: "ConstantConstEnumeration", + })(typia.json.schemas<[ConstantConstEnumeration], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantEnumeration.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantEnumeration.ts index f06ec40cad..de38649f40 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantEnumeration.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; -export const test_json_schemas_v3_0_ConstantEnumeration = - _test_json_schemas({ - version: "3.0", - name: "ConstantEnumeration", - })(typia.json.schemas<[ConstantEnumeration], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantEnumeration = _test_json_schemas({ + version: "3.0", + name: "ConstantEnumeration", +})(typia.json.schemas<[ConstantEnumeration], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantIntersection.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantIntersection.ts index 37d2121a2b..8e79bf2d16 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantIntersection.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ConstantIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../../structures/ConstantIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantIntersection } from "../../../structures/ConstantIntersection"; -export const test_json_schemas_v3_0_ConstantIntersection = - _test_json_schemas({ - version: "3.0", - name: "ConstantIntersection", - })(typia.json.schemas<[ConstantIntersection], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ConstantIntersection = _test_json_schemas({ + version: "3.0", + name: "ConstantIntersection", +})(typia.json.schemas<[ConstantIntersection], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicArray.ts index 617294389b..8289942fdb 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicArray } from "../../../structures/DynamicArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicArray } from "../../../structures/DynamicArray"; -export const test_json_schemas_v3_0_DynamicArray = - _test_json_schemas({ - version: "3.0", - name: "DynamicArray", - })(typia.json.schemas<[DynamicArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicArray = _test_json_schemas({ + version: "3.0", + name: "DynamicArray", +})(typia.json.schemas<[DynamicArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicComposite.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicComposite.ts index ca3fbbc24a..e06fae8c05 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicComposite.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicComposite } from "../../../structures/DynamicComposite"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicComposite } from "../../../structures/DynamicComposite"; -export const test_json_schemas_v3_0_DynamicComposite = - _test_json_schemas({ - version: "3.0", - name: "DynamicComposite", - })(typia.json.schemas<[DynamicComposite], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicComposite = _test_json_schemas({ + version: "3.0", + name: "DynamicComposite", +})(typia.json.schemas<[DynamicComposite], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicConstant.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicConstant.ts index 4c7229825a..92a84587db 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicConstant.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicConstant } from "../../../structures/DynamicConstant"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; -export const test_json_schemas_v3_0_DynamicConstant = - _test_json_schemas({ - version: "3.0", - name: "DynamicConstant", - })(typia.json.schemas<[DynamicConstant], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicConstant = _test_json_schemas({ + version: "3.0", + name: "DynamicConstant", +})(typia.json.schemas<[DynamicConstant], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicEnumeration.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicEnumeration.ts index b6ddf013da..ed680d19bf 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicEnumeration.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; -export const test_json_schemas_v3_0_DynamicEnumeration = - _test_json_schemas({ - version: "3.0", - name: "DynamicEnumeration", - })(typia.json.schemas<[DynamicEnumeration], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicEnumeration = _test_json_schemas({ + version: "3.0", + name: "DynamicEnumeration", +})(typia.json.schemas<[DynamicEnumeration], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicNever.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicNever.ts index 83a5885d75..985c7b3cbd 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicNever.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicNever.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicNever } from "../../../structures/DynamicNever"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicNever } from "../../../structures/DynamicNever"; -export const test_json_schemas_v3_0_DynamicNever = - _test_json_schemas({ - version: "3.0", - name: "DynamicNever", - })(typia.json.schemas<[DynamicNever], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicNever = _test_json_schemas({ + version: "3.0", + name: "DynamicNever", +})(typia.json.schemas<[DynamicNever], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicSimple.ts index 1f9d2b5a54..be09278f1d 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicSimple } from "../../../structures/DynamicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; -export const test_json_schemas_v3_0_DynamicSimple = - _test_json_schemas({ - version: "3.0", - name: "DynamicSimple", - })(typia.json.schemas<[DynamicSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicSimple = _test_json_schemas({ + version: "3.0", + name: "DynamicSimple", +})(typia.json.schemas<[DynamicSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTemplate.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTemplate.ts index 26699943b3..0d21f3c288 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTemplate.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTemplate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTemplate } from "../../../structures/DynamicTemplate"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicTemplate } from "../../../structures/DynamicTemplate"; -export const test_json_schemas_v3_0_DynamicTemplate = - _test_json_schemas({ - version: "3.0", - name: "DynamicTemplate", - })(typia.json.schemas<[DynamicTemplate], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicTemplate = _test_json_schemas({ + version: "3.0", + name: "DynamicTemplate", +})(typia.json.schemas<[DynamicTemplate], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTree.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTree.ts index d4cc82d524..b9788c16c8 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTree.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicTree.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTree } from "../../../structures/DynamicTree"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicTree } from "../../../structures/DynamicTree"; -export const test_json_schemas_v3_0_DynamicTree = - _test_json_schemas({ - version: "3.0", - name: "DynamicTree", - })(typia.json.schemas<[DynamicTree], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicTree = _test_json_schemas({ + version: "3.0", + name: "DynamicTree", +})(typia.json.schemas<[DynamicTree], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUndefined.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUndefined.ts index 1fd1948b82..f7ab2f3cdb 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUndefined.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; -export const test_json_schemas_v3_0_DynamicUndefined = - _test_json_schemas({ - version: "3.0", - name: "DynamicUndefined", - })(typia.json.schemas<[DynamicUndefined], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicUndefined = _test_json_schemas({ + version: "3.0", + name: "DynamicUndefined", +})(typia.json.schemas<[DynamicUndefined], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUnion.ts index 891e09a7dd..5deb882313 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_DynamicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUnion } from "../../../structures/DynamicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicUnion } from "../../../structures/DynamicUnion"; -export const test_json_schemas_v3_0_DynamicUnion = - _test_json_schemas({ - version: "3.0", - name: "DynamicUnion", - })(typia.json.schemas<[DynamicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_DynamicUnion = _test_json_schemas({ + version: "3.0", + name: "DynamicUnion", +})(typia.json.schemas<[DynamicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectAlias.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectAlias.ts index 3e83fd27d9..40108bb888 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectAlias.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectAlias } from "../../../structures/ObjectAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectAlias } from "../../../structures/ObjectAlias"; -export const test_json_schemas_v3_0_ObjectAlias = - _test_json_schemas({ - version: "3.0", - name: "ObjectAlias", - })(typia.json.schemas<[ObjectAlias], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectAlias = _test_json_schemas({ + version: "3.0", + name: "ObjectAlias", +})(typia.json.schemas<[ObjectAlias], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDate.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDate.ts index afba991236..db14ae360c 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDate.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDate } from "../../../structures/ObjectDate"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDate } from "../../../structures/ObjectDate"; -export const test_json_schemas_v3_0_ObjectDate = - _test_json_schemas({ - version: "3.0", - name: "ObjectDate", - })(typia.json.schemas<[ObjectDate], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectDate = _test_json_schemas({ + version: "3.0", + name: "ObjectDate", +})(typia.json.schemas<[ObjectDate], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDescription.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDescription.ts index 32885627ac..42a9b1fd98 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDescription.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDescription.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDescription } from "../../../structures/ObjectDescription"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; -export const test_json_schemas_v3_0_ObjectDescription = - _test_json_schemas({ - version: "3.0", - name: "ObjectDescription", - })(typia.json.schemas<[ObjectDescription], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectDescription = _test_json_schemas({ + version: "3.0", + name: "ObjectDescription", +})(typia.json.schemas<[ObjectDescription], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDynamic.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDynamic.ts index 4afb0ec2d2..5fdae6405a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDynamic.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectDynamic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDynamic } from "../../../structures/ObjectDynamic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDynamic } from "../../../structures/ObjectDynamic"; -export const test_json_schemas_v3_0_ObjectDynamic = - _test_json_schemas({ - version: "3.0", - name: "ObjectDynamic", - })(typia.json.schemas<[ObjectDynamic], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectDynamic = _test_json_schemas({ + version: "3.0", + name: "ObjectDynamic", +})(typia.json.schemas<[ObjectDynamic], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGeneric.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGeneric.ts index b4584fd21f..23ec6b0c46 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGeneric.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGeneric.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGeneric } from "../../../structures/ObjectGeneric"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGeneric } from "../../../structures/ObjectGeneric"; -export const test_json_schemas_v3_0_ObjectGeneric = - _test_json_schemas({ - version: "3.0", - name: "ObjectGeneric", - })(typia.json.schemas<[ObjectGeneric], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectGeneric = _test_json_schemas({ + version: "3.0", + name: "ObjectGeneric", +})(typia.json.schemas<[ObjectGeneric], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericAlias.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericAlias.ts index 45e49d7a04..7a0944e9b1 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericAlias.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; -export const test_json_schemas_v3_0_ObjectGenericAlias = - _test_json_schemas({ - version: "3.0", - name: "ObjectGenericAlias", - })(typia.json.schemas<[ObjectGenericAlias], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectGenericAlias = _test_json_schemas({ + version: "3.0", + name: "ObjectGenericAlias", +})(typia.json.schemas<[ObjectGenericAlias], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericArray.ts index c2cf589f81..e5113c3de8 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; -export const test_json_schemas_v3_0_ObjectGenericArray = - _test_json_schemas({ - version: "3.0", - name: "ObjectGenericArray", - })(typia.json.schemas<[ObjectGenericArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectGenericArray = _test_json_schemas({ + version: "3.0", + name: "ObjectGenericArray", +})(typia.json.schemas<[ObjectGenericArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericUnion.ts index 645aad4a6c..25aad4baf0 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectGenericUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; -export const test_json_schemas_v3_0_ObjectGenericUnion = - _test_json_schemas({ - version: "3.0", - name: "ObjectGenericUnion", - })(typia.json.schemas<[ObjectGenericUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectGenericUnion = _test_json_schemas({ + version: "3.0", + name: "ObjectGenericUnion", +})(typia.json.schemas<[ObjectGenericUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectHierarchical.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectHierarchical.ts index 6b6e1eaacd..672f6b3b8e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectHierarchical.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; -export const test_json_schemas_v3_0_ObjectHierarchical = - _test_json_schemas({ - version: "3.0", - name: "ObjectHierarchical", - })(typia.json.schemas<[ObjectHierarchical], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectHierarchical = _test_json_schemas({ + version: "3.0", + name: "ObjectHierarchical", +})(typia.json.schemas<[ObjectHierarchical], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectInternal.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectInternal.ts index 2aeb21b368..4ee7529c0e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectInternal.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectInternal.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectInternal } from "../../../structures/ObjectInternal"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; -export const test_json_schemas_v3_0_ObjectInternal = - _test_json_schemas({ - version: "3.0", - name: "ObjectInternal", - })(typia.json.schemas<[ObjectInternal], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectInternal = _test_json_schemas({ + version: "3.0", + name: "ObjectInternal", +})(typia.json.schemas<[ObjectInternal], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectIntersection.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectIntersection.ts index ab81a56912..7e86c1b1d4 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectIntersection.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; -export const test_json_schemas_v3_0_ObjectIntersection = - _test_json_schemas({ - version: "3.0", - name: "ObjectIntersection", - })(typia.json.schemas<[ObjectIntersection], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectIntersection = _test_json_schemas({ + version: "3.0", + name: "ObjectIntersection", +})(typia.json.schemas<[ObjectIntersection], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectJsonTag.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectJsonTag.ts index 25ff575792..aa86dbd39f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectJsonTag.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectJsonTag.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; -export const test_json_schemas_v3_0_ObjectJsonTag = - _test_json_schemas({ - version: "3.0", - name: "ObjectJsonTag", - })(typia.json.schemas<[ObjectJsonTag], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectJsonTag = _test_json_schemas({ + version: "3.0", + name: "ObjectJsonTag", +})(typia.json.schemas<[ObjectJsonTag], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralProperty.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralProperty.ts index 68e4f5f2b2..aa35d05d4a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralProperty.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralProperty.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; -export const test_json_schemas_v3_0_ObjectLiteralProperty = - _test_json_schemas({ - version: "3.0", - name: "ObjectLiteralProperty", - })(typia.json.schemas<[ObjectLiteralProperty], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectLiteralProperty = _test_json_schemas({ + version: "3.0", + name: "ObjectLiteralProperty", +})(typia.json.schemas<[ObjectLiteralProperty], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralType.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralType.ts index e9b82153ab..9ea0f49f58 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralType.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectLiteralType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; -export const test_json_schemas_v3_0_ObjectLiteralType = - _test_json_schemas({ - version: "3.0", - name: "ObjectLiteralType", - })(typia.json.schemas<[ObjectLiteralType], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectLiteralType = _test_json_schemas({ + version: "3.0", + name: "ObjectLiteralType", +})(typia.json.schemas<[ObjectLiteralType], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectNullable.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectNullable.ts index 88ae5b7d84..a5c82be47e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectNullable.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectNullable } from "../../../structures/ObjectNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectNullable } from "../../../structures/ObjectNullable"; -export const test_json_schemas_v3_0_ObjectNullable = - _test_json_schemas({ - version: "3.0", - name: "ObjectNullable", - })(typia.json.schemas<[ObjectNullable], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectNullable = _test_json_schemas({ + version: "3.0", + name: "ObjectNullable", +})(typia.json.schemas<[ObjectNullable], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectOptional.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectOptional.ts index 657be26a4b..2abbce2816 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectOptional.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectOptional.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectOptional } from "../../../structures/ObjectOptional"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; -export const test_json_schemas_v3_0_ObjectOptional = - _test_json_schemas({ - version: "3.0", - name: "ObjectOptional", - })(typia.json.schemas<[ObjectOptional], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectOptional = _test_json_schemas({ + version: "3.0", + name: "ObjectOptional", +})(typia.json.schemas<[ObjectOptional], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartial.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartial.ts index c5e7a3edfd..b587399a6d 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartial.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartial.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPartial } from "../../../structures/ObjectPartial"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPartial } from "../../../structures/ObjectPartial"; -export const test_json_schemas_v3_0_ObjectPartial = - _test_json_schemas({ - version: "3.0", - name: "ObjectPartial", - })(typia.json.schemas<[ObjectPartial], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectPartial = _test_json_schemas({ + version: "3.0", + name: "ObjectPartial", +})(typia.json.schemas<[ObjectPartial], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartialAndRequired.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartialAndRequired.ts index a76b9e8256..9e67ddb065 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartialAndRequired.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPartialAndRequired.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectPartialAndRequired } from "../../../structures/ObjectPartialAndRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPartialAndRequired } from "../../../structures/ObjectPartialAndRequired"; -export const test_json_schemas_v3_0_ObjectPartialAndRequired = +export const test_json_schemas_v3_0_ObjectPartialAndRequired = _test_json_schemas({ version: "3.0", - name: "ObjectPartialAndRequired", - })(typia.json.schemas<[ObjectPartialAndRequired], "3.0">()); \ No newline at end of file + name: "ObjectPartialAndRequired", + })(typia.json.schemas<[ObjectPartialAndRequired], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPrimitive.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPrimitive.ts index 093df45ae4..e282b7e783 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPrimitive.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPrimitive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; -export const test_json_schemas_v3_0_ObjectPrimitive = - _test_json_schemas({ - version: "3.0", - name: "ObjectPrimitive", - })(typia.json.schemas<[ObjectPrimitive], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectPrimitive = _test_json_schemas({ + version: "3.0", + name: "ObjectPrimitive", +})(typia.json.schemas<[ObjectPrimitive], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPropertyNullable.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPropertyNullable.ts index e9a5d2ec4c..8c4ca1da7f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPropertyNullable.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectPropertyNullable.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; -export const test_json_schemas_v3_0_ObjectPropertyNullable = - _test_json_schemas({ +export const test_json_schemas_v3_0_ObjectPropertyNullable = _test_json_schemas( + { version: "3.0", - name: "ObjectPropertyNullable", - })(typia.json.schemas<[ObjectPropertyNullable], "3.0">()); \ No newline at end of file + name: "ObjectPropertyNullable", + }, +)(typia.json.schemas<[ObjectPropertyNullable], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRecursive.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRecursive.ts index 54ccba79a6..e0fe37cd18 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRecursive.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRecursive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectRecursive } from "../../../structures/ObjectRecursive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectRecursive } from "../../../structures/ObjectRecursive"; -export const test_json_schemas_v3_0_ObjectRecursive = - _test_json_schemas({ - version: "3.0", - name: "ObjectRecursive", - })(typia.json.schemas<[ObjectRecursive], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectRecursive = _test_json_schemas({ + version: "3.0", + name: "ObjectRecursive", +})(typia.json.schemas<[ObjectRecursive], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRequired.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRequired.ts index 97a4ac0393..80cc95653d 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRequired.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectRequired.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectRequired } from "../../../structures/ObjectRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectRequired } from "../../../structures/ObjectRequired"; -export const test_json_schemas_v3_0_ObjectRequired = - _test_json_schemas({ - version: "3.0", - name: "ObjectRequired", - })(typia.json.schemas<[ObjectRequired], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectRequired = _test_json_schemas({ + version: "3.0", + name: "ObjectRequired", +})(typia.json.schemas<[ObjectRequired], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectSimple.ts index 0d2f5d1e58..b1930581e0 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectSimple } from "../../../structures/ObjectSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; -export const test_json_schemas_v3_0_ObjectSimple = - _test_json_schemas({ - version: "3.0", - name: "ObjectSimple", - })(typia.json.schemas<[ObjectSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectSimple = _test_json_schemas({ + version: "3.0", + name: "ObjectSimple", +})(typia.json.schemas<[ObjectSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectTuple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectTuple.ts index 5cccf18b7e..98793a4d60 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectTuple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectTuple } from "../../../structures/ObjectTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectTuple } from "../../../structures/ObjectTuple"; -export const test_json_schemas_v3_0_ObjectTuple = - _test_json_schemas({ - version: "3.0", - name: "ObjectTuple", - })(typia.json.schemas<[ObjectTuple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectTuple = _test_json_schemas({ + version: "3.0", + name: "ObjectTuple", +})(typia.json.schemas<[ObjectTuple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUndefined.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUndefined.ts index 9502cf43a3..2744e5585d 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUndefined.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUndefined } from "../../../structures/ObjectUndefined"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUndefined } from "../../../structures/ObjectUndefined"; -export const test_json_schemas_v3_0_ObjectUndefined = - _test_json_schemas({ - version: "3.0", - name: "ObjectUndefined", - })(typia.json.schemas<[ObjectUndefined], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectUndefined = _test_json_schemas({ + version: "3.0", + name: "ObjectUndefined", +})(typia.json.schemas<[ObjectUndefined], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionComposite.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionComposite.ts index 3b4cb347e0..2ca7718454 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionComposite.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; -export const test_json_schemas_v3_0_ObjectUnionComposite = - _test_json_schemas({ - version: "3.0", - name: "ObjectUnionComposite", - })(typia.json.schemas<[ObjectUnionComposite], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectUnionComposite = _test_json_schemas({ + version: "3.0", + name: "ObjectUnionComposite", +})(typia.json.schemas<[ObjectUnionComposite], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionCompositePointer.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionCompositePointer.ts index 717fc7f732..2f844c816b 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionCompositePointer.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionCompositePointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; -export const test_json_schemas_v3_0_ObjectUnionCompositePointer = +export const test_json_schemas_v3_0_ObjectUnionCompositePointer = _test_json_schemas({ version: "3.0", - name: "ObjectUnionCompositePointer", - })(typia.json.schemas<[ObjectUnionCompositePointer], "3.0">()); \ No newline at end of file + name: "ObjectUnionCompositePointer", + })(typia.json.schemas<[ObjectUnionCompositePointer], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionDouble.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionDouble.ts index ca46488126..e7cfa59c35 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionDouble.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; -export const test_json_schemas_v3_0_ObjectUnionDouble = - _test_json_schemas({ - version: "3.0", - name: "ObjectUnionDouble", - })(typia.json.schemas<[ObjectUnionDouble], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectUnionDouble = _test_json_schemas({ + version: "3.0", + name: "ObjectUnionDouble", +})(typia.json.schemas<[ObjectUnionDouble], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicit.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicit.ts index c5aec331c4..3de0479335 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicit.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; -export const test_json_schemas_v3_0_ObjectUnionExplicit = - _test_json_schemas({ - version: "3.0", - name: "ObjectUnionExplicit", - })(typia.json.schemas<[ObjectUnionExplicit], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectUnionExplicit = _test_json_schemas({ + version: "3.0", + name: "ObjectUnionExplicit", +})(typia.json.schemas<[ObjectUnionExplicit], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicitPointer.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicitPointer.ts index 7b6e1c5148..f7ce26f04f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicitPointer.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionExplicitPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; -export const test_json_schemas_v3_0_ObjectUnionExplicitPointer = +export const test_json_schemas_v3_0_ObjectUnionExplicitPointer = _test_json_schemas({ version: "3.0", - name: "ObjectUnionExplicitPointer", - })(typia.json.schemas<[ObjectUnionExplicitPointer], "3.0">()); \ No newline at end of file + name: "ObjectUnionExplicitPointer", + })(typia.json.schemas<[ObjectUnionExplicitPointer], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionImplicit.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionImplicit.ts index 5452f8bd81..076ea9f00b 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionImplicit.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionImplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; -export const test_json_schemas_v3_0_ObjectUnionImplicit = - _test_json_schemas({ - version: "3.0", - name: "ObjectUnionImplicit", - })(typia.json.schemas<[ObjectUnionImplicit], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ObjectUnionImplicit = _test_json_schemas({ + version: "3.0", + name: "ObjectUnionImplicit", +})(typia.json.schemas<[ObjectUnionImplicit], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionNonPredictable.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionNonPredictable.ts index 4890e9708a..7229d356cd 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionNonPredictable.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ObjectUnionNonPredictable.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; -export const test_json_schemas_v3_0_ObjectUnionNonPredictable = +export const test_json_schemas_v3_0_ObjectUnionNonPredictable = _test_json_schemas({ version: "3.0", - name: "ObjectUnionNonPredictable", - })(typia.json.schemas<[ObjectUnionNonPredictable], "3.0">()); \ No newline at end of file + name: "ObjectUnionNonPredictable", + })(typia.json.schemas<[ObjectUnionNonPredictable], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateAtomic.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateAtomic.ts index e00b720276..cec597ce46 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateAtomic.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; -export const test_json_schemas_v3_0_TemplateAtomic = - _test_json_schemas({ - version: "3.0", - name: "TemplateAtomic", - })(typia.json.schemas<[TemplateAtomic], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TemplateAtomic = _test_json_schemas({ + version: "3.0", + name: "TemplateAtomic", +})(typia.json.schemas<[TemplateAtomic], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateConstant.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateConstant.ts index 2926ee8083..f7de0bfe8f 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateConstant.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateConstant } from "../../../structures/TemplateConstant"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; -export const test_json_schemas_v3_0_TemplateConstant = - _test_json_schemas({ - version: "3.0", - name: "TemplateConstant", - })(typia.json.schemas<[TemplateConstant], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TemplateConstant = _test_json_schemas({ + version: "3.0", + name: "TemplateConstant", +})(typia.json.schemas<[TemplateConstant], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateUnion.ts index a8662c5f6b..93974b860e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TemplateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateUnion } from "../../../structures/TemplateUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateUnion } from "../../../structures/TemplateUnion"; -export const test_json_schemas_v3_0_TemplateUnion = - _test_json_schemas({ - version: "3.0", - name: "TemplateUnion", - })(typia.json.schemas<[TemplateUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TemplateUnion = _test_json_schemas({ + version: "3.0", + name: "TemplateUnion", +})(typia.json.schemas<[TemplateUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonArray.ts index 6866d9bb50..1d3ee66dc0 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonArray } from "../../../structures/ToJsonArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonArray } from "../../../structures/ToJsonArray"; -export const test_json_schemas_v3_0_ToJsonArray = - _test_json_schemas({ - version: "3.0", - name: "ToJsonArray", - })(typia.json.schemas<[ToJsonArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonArray = _test_json_schemas({ + version: "3.0", + name: "ToJsonArray", +})(typia.json.schemas<[ToJsonArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicSimple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicSimple.ts index afb0449bb1..78a93c06a8 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; -export const test_json_schemas_v3_0_ToJsonAtomicSimple = - _test_json_schemas({ - version: "3.0", - name: "ToJsonAtomicSimple", - })(typia.json.schemas<[ToJsonAtomicSimple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonAtomicSimple = _test_json_schemas({ + version: "3.0", + name: "ToJsonAtomicSimple", +})(typia.json.schemas<[ToJsonAtomicSimple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicUnion.ts index 527c696b81..62198f014c 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; -export const test_json_schemas_v3_0_ToJsonAtomicUnion = - _test_json_schemas({ - version: "3.0", - name: "ToJsonAtomicUnion", - })(typia.json.schemas<[ToJsonAtomicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonAtomicUnion = _test_json_schemas({ + version: "3.0", + name: "ToJsonAtomicUnion", +})(typia.json.schemas<[ToJsonAtomicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonDouble.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonDouble.ts index 7b827d8ccc..aadc96f561 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonDouble.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; -export const test_json_schemas_v3_0_ToJsonDouble = - _test_json_schemas({ - version: "3.0", - name: "ToJsonDouble", - })(typia.json.schemas<[ToJsonDouble], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonDouble = _test_json_schemas({ + version: "3.0", + name: "ToJsonDouble", +})(typia.json.schemas<[ToJsonDouble], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonNull.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonNull.ts index a4f0ec928e..1cb42eaa8c 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonNull.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonNull.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonNull } from "../../../structures/ToJsonNull"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; -export const test_json_schemas_v3_0_ToJsonNull = - _test_json_schemas({ - version: "3.0", - name: "ToJsonNull", - })(typia.json.schemas<[ToJsonNull], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonNull = _test_json_schemas({ + version: "3.0", + name: "ToJsonNull", +})(typia.json.schemas<[ToJsonNull], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonTuple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonTuple.ts index 525658a155..2cc25a2143 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonTuple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonTuple } from "../../../structures/ToJsonTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonTuple } from "../../../structures/ToJsonTuple"; -export const test_json_schemas_v3_0_ToJsonTuple = - _test_json_schemas({ - version: "3.0", - name: "ToJsonTuple", - })(typia.json.schemas<[ToJsonTuple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonTuple = _test_json_schemas({ + version: "3.0", + name: "ToJsonTuple", +})(typia.json.schemas<[ToJsonTuple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonUnion.ts index 3700b5e99a..8cac045253 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_ToJsonUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonUnion } from "../../../structures/ToJsonUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonUnion } from "../../../structures/ToJsonUnion"; -export const test_json_schemas_v3_0_ToJsonUnion = - _test_json_schemas({ - version: "3.0", - name: "ToJsonUnion", - })(typia.json.schemas<[ToJsonUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_ToJsonUnion = _test_json_schemas({ + version: "3.0", + name: "ToJsonUnion", +})(typia.json.schemas<[ToJsonUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleHierarchical.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleHierarchical.ts index 002fdcc364..31dba5cc86 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleHierarchical.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleHierarchical } from "../../../structures/TupleHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleHierarchical } from "../../../structures/TupleHierarchical"; -export const test_json_schemas_v3_0_TupleHierarchical = - _test_json_schemas({ - version: "3.0", - name: "TupleHierarchical", - })(typia.json.schemas<[TupleHierarchical], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TupleHierarchical = _test_json_schemas({ + version: "3.0", + name: "TupleHierarchical", +})(typia.json.schemas<[TupleHierarchical], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestArray.ts index ad89d0623a..07dafed538 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestArray } from "../../../structures/TupleRestArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestArray } from "../../../structures/TupleRestArray"; -export const test_json_schemas_v3_0_TupleRestArray = - _test_json_schemas({ - version: "3.0", - name: "TupleRestArray", - })(typia.json.schemas<[TupleRestArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TupleRestArray = _test_json_schemas({ + version: "3.0", + name: "TupleRestArray", +})(typia.json.schemas<[TupleRestArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestAtomic.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestAtomic.ts index f481ad6762..1615126b3e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestAtomic.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; -export const test_json_schemas_v3_0_TupleRestAtomic = - _test_json_schemas({ - version: "3.0", - name: "TupleRestAtomic", - })(typia.json.schemas<[TupleRestAtomic], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TupleRestAtomic = _test_json_schemas({ + version: "3.0", + name: "TupleRestAtomic", +})(typia.json.schemas<[TupleRestAtomic], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestObject.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestObject.ts index d7e0adec45..0df245cfc5 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestObject.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TupleRestObject.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestObject } from "../../../structures/TupleRestObject"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestObject } from "../../../structures/TupleRestObject"; -export const test_json_schemas_v3_0_TupleRestObject = - _test_json_schemas({ - version: "3.0", - name: "TupleRestObject", - })(typia.json.schemas<[TupleRestObject], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TupleRestObject = _test_json_schemas({ + version: "3.0", + name: "TupleRestObject", +})(typia.json.schemas<[TupleRestObject], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArray.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArray.ts index b6dd28d015..9711e475a2 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArray.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArray } from "../../../structures/TypeTagArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; -export const test_json_schemas_v3_0_TypeTagArray = - _test_json_schemas({ - version: "3.0", - name: "TypeTagArray", - })(typia.json.schemas<[TypeTagArray], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagArray = _test_json_schemas({ + version: "3.0", + name: "TypeTagArray", +})(typia.json.schemas<[TypeTagArray], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArrayUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArrayUnion.ts index 494f011d59..083997e4c7 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArrayUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; -export const test_json_schemas_v3_0_TypeTagArrayUnion = - _test_json_schemas({ - version: "3.0", - name: "TypeTagArrayUnion", - })(typia.json.schemas<[TypeTagArrayUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagArrayUnion = _test_json_schemas({ + version: "3.0", + name: "TypeTagArrayUnion", +})(typia.json.schemas<[TypeTagArrayUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagAtomicUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagAtomicUnion.ts index 892515e052..7666f76c0e 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; -export const test_json_schemas_v3_0_TypeTagAtomicUnion = - _test_json_schemas({ - version: "3.0", - name: "TypeTagAtomicUnion", - })(typia.json.schemas<[TypeTagAtomicUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagAtomicUnion = _test_json_schemas({ + version: "3.0", + name: "TypeTagAtomicUnion", +})(typia.json.schemas<[TypeTagAtomicUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagCustom.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagCustom.ts index f4357540d6..0c3d7984e9 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagCustom.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagCustom.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; -export const test_json_schemas_v3_0_TypeTagCustom = - _test_json_schemas({ - version: "3.0", - name: "TypeTagCustom", - })(typia.json.schemas<[TypeTagCustom], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagCustom = _test_json_schemas({ + version: "3.0", + name: "TypeTagCustom", +})(typia.json.schemas<[TypeTagCustom], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagDefault.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagDefault.ts index 6a138e42e6..bdf759772d 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagDefault.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagDefault } from "../../../structures/TypeTagDefault"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagDefault } from "../../../structures/TypeTagDefault"; -export const test_json_schemas_v3_0_TypeTagDefault = - _test_json_schemas({ - version: "3.0", - name: "TypeTagDefault", - })(typia.json.schemas<[TypeTagDefault], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagDefault = _test_json_schemas({ + version: "3.0", + name: "TypeTagDefault", +})(typia.json.schemas<[TypeTagDefault], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagFormat.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagFormat.ts index 853622c5bc..c70cab3f3a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagFormat.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; -export const test_json_schemas_v3_0_TypeTagFormat = - _test_json_schemas({ - version: "3.0", - name: "TypeTagFormat", - })(typia.json.schemas<[TypeTagFormat], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagFormat = _test_json_schemas({ + version: "3.0", + name: "TypeTagFormat", +})(typia.json.schemas<[TypeTagFormat], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagLength.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagLength.ts index a8096138ec..f9a8ad888a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagLength.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagLength } from "../../../structures/TypeTagLength"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; -export const test_json_schemas_v3_0_TypeTagLength = - _test_json_schemas({ - version: "3.0", - name: "TypeTagLength", - })(typia.json.schemas<[TypeTagLength], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagLength = _test_json_schemas({ + version: "3.0", + name: "TypeTagLength", +})(typia.json.schemas<[TypeTagLength], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagMatrix.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagMatrix.ts index c0a06d6a41..4b718f8187 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagMatrix.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; -export const test_json_schemas_v3_0_TypeTagMatrix = - _test_json_schemas({ - version: "3.0", - name: "TypeTagMatrix", - })(typia.json.schemas<[TypeTagMatrix], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagMatrix = _test_json_schemas({ + version: "3.0", + name: "TypeTagMatrix", +})(typia.json.schemas<[TypeTagMatrix], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagObjectUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagObjectUnion.ts index 09f6b28184..356f6d52cd 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagObjectUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; -export const test_json_schemas_v3_0_TypeTagObjectUnion = - _test_json_schemas({ - version: "3.0", - name: "TypeTagObjectUnion", - })(typia.json.schemas<[TypeTagObjectUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagObjectUnion = _test_json_schemas({ + version: "3.0", + name: "TypeTagObjectUnion", +})(typia.json.schemas<[TypeTagObjectUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagPattern.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagPattern.ts index 12c17ae358..7a6df9ab52 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagPattern.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; -export const test_json_schemas_v3_0_TypeTagPattern = - _test_json_schemas({ - version: "3.0", - name: "TypeTagPattern", - })(typia.json.schemas<[TypeTagPattern], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagPattern = _test_json_schemas({ + version: "3.0", + name: "TypeTagPattern", +})(typia.json.schemas<[TypeTagPattern], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagRange.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagRange.ts index 065222653d..421a900de2 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagRange.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagRange } from "../../../structures/TypeTagRange"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; -export const test_json_schemas_v3_0_TypeTagRange = - _test_json_schemas({ - version: "3.0", - name: "TypeTagRange", - })(typia.json.schemas<[TypeTagRange], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagRange = _test_json_schemas({ + version: "3.0", + name: "TypeTagRange", +})(typia.json.schemas<[TypeTagRange], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagTuple.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagTuple.ts index 93d9384ae1..d86188081a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagTuple.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagTuple } from "../../../structures/TypeTagTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagTuple } from "../../../structures/TypeTagTuple"; -export const test_json_schemas_v3_0_TypeTagTuple = - _test_json_schemas({ - version: "3.0", - name: "TypeTagTuple", - })(typia.json.schemas<[TypeTagTuple], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagTuple = _test_json_schemas({ + version: "3.0", + name: "TypeTagTuple", +})(typia.json.schemas<[TypeTagTuple], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagType.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagType.ts index da1061f390..2663df936a 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagType.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_TypeTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagType } from "../../../structures/TypeTagType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagType } from "../../../structures/TypeTagType"; -export const test_json_schemas_v3_0_TypeTagType = - _test_json_schemas({ - version: "3.0", - name: "TypeTagType", - })(typia.json.schemas<[TypeTagType], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_TypeTagType = _test_json_schemas({ + version: "3.0", + name: "TypeTagType", +})(typia.json.schemas<[TypeTagType], "3.0">()); diff --git a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_UltimateUnion.ts b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_UltimateUnion.ts index b0a0178cf9..1fa49e8ba9 100644 --- a/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_UltimateUnion.ts +++ b/test/src/features/json.schemas/v3_0/test_json_schemas_v3_0_UltimateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { UltimateUnion } from "../../../structures/UltimateUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { UltimateUnion } from "../../../structures/UltimateUnion"; -export const test_json_schemas_v3_0_UltimateUnion = - _test_json_schemas({ - version: "3.0", - name: "UltimateUnion", - })(typia.json.schemas<[UltimateUnion], "3.0">()); \ No newline at end of file +export const test_json_schemas_v3_0_UltimateUnion = _test_json_schemas({ + version: "3.0", + name: "UltimateUnion", +})(typia.json.schemas<[UltimateUnion], "3.0">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAny.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAny.ts index b3eed31e4b..2ca3d9c56f 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAny.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAny.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAny } from "../../../structures/ArrayAny"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAny } from "../../../structures/ArrayAny"; -export const test_json_schemas_v3_1_ArrayAny = - _test_json_schemas({ - version: "3.1", - name: "ArrayAny", - })(typia.json.schemas<[ArrayAny], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayAny = _test_json_schemas({ + version: "3.1", + name: "ArrayAny", +})(typia.json.schemas<[ArrayAny], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicAlias.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicAlias.ts index 7994f9037a..cbb02eb8ee 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicAlias.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; -export const test_json_schemas_v3_1_ArrayAtomicAlias = - _test_json_schemas({ - version: "3.1", - name: "ArrayAtomicAlias", - })(typia.json.schemas<[ArrayAtomicAlias], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayAtomicAlias = _test_json_schemas({ + version: "3.1", + name: "ArrayAtomicAlias", +})(typia.json.schemas<[ArrayAtomicAlias], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicSimple.ts index 2000b093db..aefe978060 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; -export const test_json_schemas_v3_1_ArrayAtomicSimple = - _test_json_schemas({ - version: "3.1", - name: "ArrayAtomicSimple", - })(typia.json.schemas<[ArrayAtomicSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayAtomicSimple = _test_json_schemas({ + version: "3.1", + name: "ArrayAtomicSimple", +})(typia.json.schemas<[ArrayAtomicSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchical.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchical.ts index 3c26192349..0cfb36e8f4 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchical.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; -export const test_json_schemas_v3_1_ArrayHierarchical = - _test_json_schemas({ - version: "3.1", - name: "ArrayHierarchical", - })(typia.json.schemas<[ArrayHierarchical], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayHierarchical = _test_json_schemas({ + version: "3.1", + name: "ArrayHierarchical", +})(typia.json.schemas<[ArrayHierarchical], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchicalPointer.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchicalPointer.ts index 00a7ec9ac5..7027b596a1 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchicalPointer.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayHierarchicalPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; -export const test_json_schemas_v3_1_ArrayHierarchicalPointer = +export const test_json_schemas_v3_1_ArrayHierarchicalPointer = _test_json_schemas({ version: "3.1", - name: "ArrayHierarchicalPointer", - })(typia.json.schemas<[ArrayHierarchicalPointer], "3.1">()); \ No newline at end of file + name: "ArrayHierarchicalPointer", + })(typia.json.schemas<[ArrayHierarchicalPointer], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayMatrix.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayMatrix.ts index cbac2e2789..ea6fcf5298 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayMatrix.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; -export const test_json_schemas_v3_1_ArrayMatrix = - _test_json_schemas({ - version: "3.1", - name: "ArrayMatrix", - })(typia.json.schemas<[ArrayMatrix], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayMatrix = _test_json_schemas({ + version: "3.1", + name: "ArrayMatrix", +})(typia.json.schemas<[ArrayMatrix], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursive.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursive.ts index 3ad46b6420..d12570f6eb 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursive.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRecursive } from "../../../structures/ArrayRecursive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursive } from "../../../structures/ArrayRecursive"; -export const test_json_schemas_v3_1_ArrayRecursive = - _test_json_schemas({ - version: "3.1", - name: "ArrayRecursive", - })(typia.json.schemas<[ArrayRecursive], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayRecursive = _test_json_schemas({ + version: "3.1", + name: "ArrayRecursive", +})(typia.json.schemas<[ArrayRecursive], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicit.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicit.ts index 2fe7b37505..b0f76dff0c 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicit.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicit.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicit } from "../../../structures/ArrayRecursiveUnionExplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionExplicit } from "../../../structures/ArrayRecursiveUnionExplicit"; -export const test_json_schemas_v3_1_ArrayRecursiveUnionExplicit = +export const test_json_schemas_v3_1_ArrayRecursiveUnionExplicit = _test_json_schemas({ version: "3.1", - name: "ArrayRecursiveUnionExplicit", - })(typia.json.schemas<[ArrayRecursiveUnionExplicit], "3.1">()); \ No newline at end of file + name: "ArrayRecursiveUnionExplicit", + })(typia.json.schemas<[ArrayRecursiveUnionExplicit], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer.ts index 2babf7c23c..e975c2fb79 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicitPointer } from "../../../structures/ArrayRecursiveUnionExplicitPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionExplicitPointer } from "../../../structures/ArrayRecursiveUnionExplicitPointer"; -export const test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer = +export const test_json_schemas_v3_1_ArrayRecursiveUnionExplicitPointer = _test_json_schemas({ version: "3.1", - name: "ArrayRecursiveUnionExplicitPointer", - })(typia.json.schemas<[ArrayRecursiveUnionExplicitPointer], "3.1">()); \ No newline at end of file + name: "ArrayRecursiveUnionExplicitPointer", + })(typia.json.schemas<[ArrayRecursiveUnionExplicitPointer], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionImplicit.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionImplicit.ts index a212a54b4c..9190cdecde 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionImplicit.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRecursiveUnionImplicit.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRecursiveUnionImplicit } from "../../../structures/ArrayRecursiveUnionImplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRecursiveUnionImplicit } from "../../../structures/ArrayRecursiveUnionImplicit"; -export const test_json_schemas_v3_1_ArrayRecursiveUnionImplicit = +export const test_json_schemas_v3_1_ArrayRecursiveUnionImplicit = _test_json_schemas({ version: "3.1", - name: "ArrayRecursiveUnionImplicit", - })(typia.json.schemas<[ArrayRecursiveUnionImplicit], "3.1">()); \ No newline at end of file + name: "ArrayRecursiveUnionImplicit", + })(typia.json.schemas<[ArrayRecursiveUnionImplicit], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedNullable.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedNullable.ts index c2196f01db..b190af2f83 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedNullable.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedNullable } from "../../../structures/ArrayRepeatedNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedNullable } from "../../../structures/ArrayRepeatedNullable"; -export const test_json_schemas_v3_1_ArrayRepeatedNullable = - _test_json_schemas({ - version: "3.1", - name: "ArrayRepeatedNullable", - })(typia.json.schemas<[ArrayRepeatedNullable], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayRepeatedNullable = _test_json_schemas({ + version: "3.1", + name: "ArrayRepeatedNullable", +})(typia.json.schemas<[ArrayRepeatedNullable], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedRequired.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedRequired.ts index b6a80f0588..69ec0c6abe 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedRequired.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedRequired.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedRequired } from "../../../structures/ArrayRepeatedRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedRequired } from "../../../structures/ArrayRepeatedRequired"; -export const test_json_schemas_v3_1_ArrayRepeatedRequired = - _test_json_schemas({ - version: "3.1", - name: "ArrayRepeatedRequired", - })(typia.json.schemas<[ArrayRepeatedRequired], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayRepeatedRequired = _test_json_schemas({ + version: "3.1", + name: "ArrayRepeatedRequired", +})(typia.json.schemas<[ArrayRepeatedRequired], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnion.ts index 81965744e5..8abf20c9d4 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedUnion } from "../../../structures/ArrayRepeatedUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedUnion } from "../../../structures/ArrayRepeatedUnion"; -export const test_json_schemas_v3_1_ArrayRepeatedUnion = - _test_json_schemas({ - version: "3.1", - name: "ArrayRepeatedUnion", - })(typia.json.schemas<[ArrayRepeatedUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayRepeatedUnion = _test_json_schemas({ + version: "3.1", + name: "ArrayRepeatedUnion", +})(typia.json.schemas<[ArrayRepeatedUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple.ts index c1da88e52b..0b33a352d3 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayRepeatedUnionWithTuple } from "../../../structures/ArrayRepeatedUnionWithTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayRepeatedUnionWithTuple } from "../../../structures/ArrayRepeatedUnionWithTuple"; -export const test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple = +export const test_json_schemas_v3_1_ArrayRepeatedUnionWithTuple = _test_json_schemas({ version: "3.1", - name: "ArrayRepeatedUnionWithTuple", - })(typia.json.schemas<[ArrayRepeatedUnionWithTuple], "3.1">()); \ No newline at end of file + name: "ArrayRepeatedUnionWithTuple", + })(typia.json.schemas<[ArrayRepeatedUnionWithTuple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArraySimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArraySimple.ts index 65f6cfe9d8..3b03cc6220 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArraySimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArraySimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArraySimple } from "../../../structures/ArraySimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArraySimple } from "../../../structures/ArraySimple"; -export const test_json_schemas_v3_1_ArraySimple = - _test_json_schemas({ - version: "3.1", - name: "ArraySimple", - })(typia.json.schemas<[ArraySimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArraySimple = _test_json_schemas({ + version: "3.1", + name: "ArraySimple", +})(typia.json.schemas<[ArraySimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayUnion.ts index a1f7d6b0d0..dd7fd1886b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayUnion } from "../../../structures/ArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ArrayUnion } from "../../../structures/ArrayUnion"; -export const test_json_schemas_v3_1_ArrayUnion = - _test_json_schemas({ - version: "3.1", - name: "ArrayUnion", - })(typia.json.schemas<[ArrayUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ArrayUnion = _test_json_schemas({ + version: "3.1", + name: "ArrayUnion", +})(typia.json.schemas<[ArrayUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicAlias.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicAlias.ts index ae6160fbb8..e39dbc2d83 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicAlias.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicAlias } from "../../../structures/AtomicAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicAlias } from "../../../structures/AtomicAlias"; -export const test_json_schemas_v3_1_AtomicAlias = - _test_json_schemas({ - version: "3.1", - name: "AtomicAlias", - })(typia.json.schemas<[AtomicAlias], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_AtomicAlias = _test_json_schemas({ + version: "3.1", + name: "AtomicAlias", +})(typia.json.schemas<[AtomicAlias], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicClass.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicClass.ts index 845a1a2ae0..57fdf1a95b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicClass.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicClass.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicClass } from "../../../structures/AtomicClass"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicClass } from "../../../structures/AtomicClass"; -export const test_json_schemas_v3_1_AtomicClass = - _test_json_schemas({ - version: "3.1", - name: "AtomicClass", - })(typia.json.schemas<[AtomicClass], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_AtomicClass = _test_json_schemas({ + version: "3.1", + name: "AtomicClass", +})(typia.json.schemas<[AtomicClass], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicIntersection.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicIntersection.ts index 40496875ca..b6a83dda22 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicIntersection.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicIntersection } from "../../../structures/AtomicIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicIntersection } from "../../../structures/AtomicIntersection"; -export const test_json_schemas_v3_1_AtomicIntersection = - _test_json_schemas({ - version: "3.1", - name: "AtomicIntersection", - })(typia.json.schemas<[AtomicIntersection], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_AtomicIntersection = _test_json_schemas({ + version: "3.1", + name: "AtomicIntersection", +})(typia.json.schemas<[AtomicIntersection], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicSimple.ts index c65ec45e56..df1b62042b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicSimple } from "../../../structures/AtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicSimple } from "../../../structures/AtomicSimple"; -export const test_json_schemas_v3_1_AtomicSimple = - _test_json_schemas({ - version: "3.1", - name: "AtomicSimple", - })(typia.json.schemas<[AtomicSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_AtomicSimple = _test_json_schemas({ + version: "3.1", + name: "AtomicSimple", +})(typia.json.schemas<[AtomicSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicUnion.ts index 9a45939180..47db5a2e47 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_AtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicUnion } from "../../../structures/AtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { AtomicUnion } from "../../../structures/AtomicUnion"; -export const test_json_schemas_v3_1_AtomicUnion = - _test_json_schemas({ - version: "3.1", - name: "AtomicUnion", - })(typia.json.schemas<[AtomicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_AtomicUnion = _test_json_schemas({ + version: "3.1", + name: "AtomicUnion", +})(typia.json.schemas<[AtomicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassGetter.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassGetter.ts index 9d6136da39..aae575e42c 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassGetter.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassGetter.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassGetter } from "../../../structures/ClassGetter"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassGetter } from "../../../structures/ClassGetter"; -export const test_json_schemas_v3_1_ClassGetter = - _test_json_schemas({ - version: "3.1", - name: "ClassGetter", - })(typia.json.schemas<[ClassGetter], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ClassGetter = _test_json_schemas({ + version: "3.1", + name: "ClassGetter", +})(typia.json.schemas<[ClassGetter], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassMethod.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassMethod.ts index af97b8c0ce..ecd356bb91 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassMethod.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassMethod.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassMethod } from "../../../structures/ClassMethod"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassMethod } from "../../../structures/ClassMethod"; -export const test_json_schemas_v3_1_ClassMethod = - _test_json_schemas({ - version: "3.1", - name: "ClassMethod", - })(typia.json.schemas<[ClassMethod], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ClassMethod = _test_json_schemas({ + version: "3.1", + name: "ClassMethod", +})(typia.json.schemas<[ClassMethod], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassPropertyAssignment.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassPropertyAssignment.ts index edd2fb97da..864e1611b9 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassPropertyAssignment.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ClassPropertyAssignment.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; -export const test_json_schemas_v3_1_ClassPropertyAssignment = +export const test_json_schemas_v3_1_ClassPropertyAssignment = _test_json_schemas({ version: "3.1", - name: "ClassPropertyAssignment", - })(typia.json.schemas<[ClassPropertyAssignment], "3.1">()); \ No newline at end of file + name: "ClassPropertyAssignment", + })(typia.json.schemas<[ClassPropertyAssignment], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArray.ts index fe7bf2505a..042e7578bf 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArray } from "../../../structures/CommentTagArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; -export const test_json_schemas_v3_1_CommentTagArray = - _test_json_schemas({ - version: "3.1", - name: "CommentTagArray", - })(typia.json.schemas<[CommentTagArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagArray = _test_json_schemas({ + version: "3.1", + name: "CommentTagArray", +})(typia.json.schemas<[CommentTagArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArrayUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArrayUnion.ts index 4de0478b97..abac9b0466 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArrayUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; -export const test_json_schemas_v3_1_CommentTagArrayUnion = - _test_json_schemas({ - version: "3.1", - name: "CommentTagArrayUnion", - })(typia.json.schemas<[CommentTagArrayUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagArrayUnion = _test_json_schemas({ + version: "3.1", + name: "CommentTagArrayUnion", +})(typia.json.schemas<[CommentTagArrayUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagAtomicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagAtomicUnion.ts index 123eb74fdf..8788d5fd85 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; -export const test_json_schemas_v3_1_CommentTagAtomicUnion = - _test_json_schemas({ - version: "3.1", - name: "CommentTagAtomicUnion", - })(typia.json.schemas<[CommentTagAtomicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagAtomicUnion = _test_json_schemas({ + version: "3.1", + name: "CommentTagAtomicUnion", +})(typia.json.schemas<[CommentTagAtomicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagDefault.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagDefault.ts index bdb1de5c02..5327acea3d 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagDefault.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagDefault } from "../../../structures/CommentTagDefault"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagDefault } from "../../../structures/CommentTagDefault"; -export const test_json_schemas_v3_1_CommentTagDefault = - _test_json_schemas({ - version: "3.1", - name: "CommentTagDefault", - })(typia.json.schemas<[CommentTagDefault], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagDefault = _test_json_schemas({ + version: "3.1", + name: "CommentTagDefault", +})(typia.json.schemas<[CommentTagDefault], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagFormat.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagFormat.ts index e6957cb82c..24ee08067e 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagFormat.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; -export const test_json_schemas_v3_1_CommentTagFormat = - _test_json_schemas({ - version: "3.1", - name: "CommentTagFormat", - })(typia.json.schemas<[CommentTagFormat], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagFormat = _test_json_schemas({ + version: "3.1", + name: "CommentTagFormat", +})(typia.json.schemas<[CommentTagFormat], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagLength.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagLength.ts index 9f8c2f0aca..52c7f79c93 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagLength.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagLength } from "../../../structures/CommentTagLength"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; -export const test_json_schemas_v3_1_CommentTagLength = - _test_json_schemas({ - version: "3.1", - name: "CommentTagLength", - })(typia.json.schemas<[CommentTagLength], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagLength = _test_json_schemas({ + version: "3.1", + name: "CommentTagLength", +})(typia.json.schemas<[CommentTagLength], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagObjectUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagObjectUnion.ts index beccd080ea..d40bf13ab7 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagObjectUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; -export const test_json_schemas_v3_1_CommentTagObjectUnion = - _test_json_schemas({ - version: "3.1", - name: "CommentTagObjectUnion", - })(typia.json.schemas<[CommentTagObjectUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagObjectUnion = _test_json_schemas({ + version: "3.1", + name: "CommentTagObjectUnion", +})(typia.json.schemas<[CommentTagObjectUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagPattern.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagPattern.ts index a2897cc9aa..851975a49d 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagPattern.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; -export const test_json_schemas_v3_1_CommentTagPattern = - _test_json_schemas({ - version: "3.1", - name: "CommentTagPattern", - })(typia.json.schemas<[CommentTagPattern], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagPattern = _test_json_schemas({ + version: "3.1", + name: "CommentTagPattern", +})(typia.json.schemas<[CommentTagPattern], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagRange.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagRange.ts index f9b904abc1..9394f4d68e 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagRange.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagRange } from "../../../structures/CommentTagRange"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; -export const test_json_schemas_v3_1_CommentTagRange = - _test_json_schemas({ - version: "3.1", - name: "CommentTagRange", - })(typia.json.schemas<[CommentTagRange], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagRange = _test_json_schemas({ + version: "3.1", + name: "CommentTagRange", +})(typia.json.schemas<[CommentTagRange], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagType.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagType.ts index 5719d67e5b..bdf29bffeb 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagType.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_CommentTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagType } from "../../../structures/CommentTagType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { CommentTagType } from "../../../structures/CommentTagType"; -export const test_json_schemas_v3_1_CommentTagType = - _test_json_schemas({ - version: "3.1", - name: "CommentTagType", - })(typia.json.schemas<[CommentTagType], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_CommentTagType = _test_json_schemas({ + version: "3.1", + name: "CommentTagType", +})(typia.json.schemas<[CommentTagType], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicAbsorbed.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicAbsorbed.ts index 71f5d463e8..a53f44fe14 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicAbsorbed.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicAbsorbed.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; -export const test_json_schemas_v3_1_ConstantAtomicAbsorbed = - _test_json_schemas({ +export const test_json_schemas_v3_1_ConstantAtomicAbsorbed = _test_json_schemas( + { version: "3.1", - name: "ConstantAtomicAbsorbed", - })(typia.json.schemas<[ConstantAtomicAbsorbed], "3.1">()); \ No newline at end of file + name: "ConstantAtomicAbsorbed", + }, +)(typia.json.schemas<[ConstantAtomicAbsorbed], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicSimple.ts index f409973e23..c5b82e8f9b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; -export const test_json_schemas_v3_1_ConstantAtomicSimple = - _test_json_schemas({ - version: "3.1", - name: "ConstantAtomicSimple", - })(typia.json.schemas<[ConstantAtomicSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantAtomicSimple = _test_json_schemas({ + version: "3.1", + name: "ConstantAtomicSimple", +})(typia.json.schemas<[ConstantAtomicSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicTagged.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicTagged.ts index b0011523be..4cb7f94a31 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicTagged.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicTagged.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; -export const test_json_schemas_v3_1_ConstantAtomicTagged = - _test_json_schemas({ - version: "3.1", - name: "ConstantAtomicTagged", - })(typia.json.schemas<[ConstantAtomicTagged], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantAtomicTagged = _test_json_schemas({ + version: "3.1", + name: "ConstantAtomicTagged", +})(typia.json.schemas<[ConstantAtomicTagged], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicUnion.ts index 988bf35430..b9077b86ef 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; -export const test_json_schemas_v3_1_ConstantAtomicUnion = - _test_json_schemas({ - version: "3.1", - name: "ConstantAtomicUnion", - })(typia.json.schemas<[ConstantAtomicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantAtomicUnion = _test_json_schemas({ + version: "3.1", + name: "ConstantAtomicUnion", +})(typia.json.schemas<[ConstantAtomicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicWrapper.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicWrapper.ts index 2f63924a45..de8580e39a 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicWrapper.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantAtomicWrapper.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; -export const test_json_schemas_v3_1_ConstantAtomicWrapper = - _test_json_schemas({ - version: "3.1", - name: "ConstantAtomicWrapper", - })(typia.json.schemas<[ConstantAtomicWrapper], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantAtomicWrapper = _test_json_schemas({ + version: "3.1", + name: "ConstantAtomicWrapper", +})(typia.json.schemas<[ConstantAtomicWrapper], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantConstEnumeration.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantConstEnumeration.ts index 3ad7bede5c..54c5e138ad 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantConstEnumeration.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantConstEnumeration.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; -export const test_json_schemas_v3_1_ConstantConstEnumeration = +export const test_json_schemas_v3_1_ConstantConstEnumeration = _test_json_schemas({ version: "3.1", - name: "ConstantConstEnumeration", - })(typia.json.schemas<[ConstantConstEnumeration], "3.1">()); \ No newline at end of file + name: "ConstantConstEnumeration", + })(typia.json.schemas<[ConstantConstEnumeration], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantEnumeration.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantEnumeration.ts index ccd15f7058..e350391b01 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantEnumeration.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; -export const test_json_schemas_v3_1_ConstantEnumeration = - _test_json_schemas({ - version: "3.1", - name: "ConstantEnumeration", - })(typia.json.schemas<[ConstantEnumeration], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantEnumeration = _test_json_schemas({ + version: "3.1", + name: "ConstantEnumeration", +})(typia.json.schemas<[ConstantEnumeration], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantIntersection.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantIntersection.ts index 2c4e2edc73..6df4bf2be2 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantIntersection.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ConstantIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../../structures/ConstantIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ConstantIntersection } from "../../../structures/ConstantIntersection"; -export const test_json_schemas_v3_1_ConstantIntersection = - _test_json_schemas({ - version: "3.1", - name: "ConstantIntersection", - })(typia.json.schemas<[ConstantIntersection], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ConstantIntersection = _test_json_schemas({ + version: "3.1", + name: "ConstantIntersection", +})(typia.json.schemas<[ConstantIntersection], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicArray.ts index 4312af1bce..11cad263be 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicArray } from "../../../structures/DynamicArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicArray } from "../../../structures/DynamicArray"; -export const test_json_schemas_v3_1_DynamicArray = - _test_json_schemas({ - version: "3.1", - name: "DynamicArray", - })(typia.json.schemas<[DynamicArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicArray = _test_json_schemas({ + version: "3.1", + name: "DynamicArray", +})(typia.json.schemas<[DynamicArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicComposite.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicComposite.ts index e30fd1e3bd..a9e9ad9610 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicComposite.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicComposite } from "../../../structures/DynamicComposite"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicComposite } from "../../../structures/DynamicComposite"; -export const test_json_schemas_v3_1_DynamicComposite = - _test_json_schemas({ - version: "3.1", - name: "DynamicComposite", - })(typia.json.schemas<[DynamicComposite], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicComposite = _test_json_schemas({ + version: "3.1", + name: "DynamicComposite", +})(typia.json.schemas<[DynamicComposite], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicConstant.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicConstant.ts index e49bff30f7..a4b9a0d4a5 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicConstant.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicConstant } from "../../../structures/DynamicConstant"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; -export const test_json_schemas_v3_1_DynamicConstant = - _test_json_schemas({ - version: "3.1", - name: "DynamicConstant", - })(typia.json.schemas<[DynamicConstant], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicConstant = _test_json_schemas({ + version: "3.1", + name: "DynamicConstant", +})(typia.json.schemas<[DynamicConstant], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicEnumeration.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicEnumeration.ts index cd059a70fd..cac03719d8 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicEnumeration.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; -export const test_json_schemas_v3_1_DynamicEnumeration = - _test_json_schemas({ - version: "3.1", - name: "DynamicEnumeration", - })(typia.json.schemas<[DynamicEnumeration], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicEnumeration = _test_json_schemas({ + version: "3.1", + name: "DynamicEnumeration", +})(typia.json.schemas<[DynamicEnumeration], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicNever.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicNever.ts index faa128ea50..d87e780582 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicNever.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicNever.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicNever } from "../../../structures/DynamicNever"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicNever } from "../../../structures/DynamicNever"; -export const test_json_schemas_v3_1_DynamicNever = - _test_json_schemas({ - version: "3.1", - name: "DynamicNever", - })(typia.json.schemas<[DynamicNever], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicNever = _test_json_schemas({ + version: "3.1", + name: "DynamicNever", +})(typia.json.schemas<[DynamicNever], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicSimple.ts index 6d5f7ad563..6450639869 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicSimple } from "../../../structures/DynamicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; -export const test_json_schemas_v3_1_DynamicSimple = - _test_json_schemas({ - version: "3.1", - name: "DynamicSimple", - })(typia.json.schemas<[DynamicSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicSimple = _test_json_schemas({ + version: "3.1", + name: "DynamicSimple", +})(typia.json.schemas<[DynamicSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTemplate.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTemplate.ts index 4cfadc5dc1..620a51d6b0 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTemplate.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTemplate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTemplate } from "../../../structures/DynamicTemplate"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicTemplate } from "../../../structures/DynamicTemplate"; -export const test_json_schemas_v3_1_DynamicTemplate = - _test_json_schemas({ - version: "3.1", - name: "DynamicTemplate", - })(typia.json.schemas<[DynamicTemplate], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicTemplate = _test_json_schemas({ + version: "3.1", + name: "DynamicTemplate", +})(typia.json.schemas<[DynamicTemplate], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTree.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTree.ts index da09b24b12..5c54335c2e 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTree.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicTree.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTree } from "../../../structures/DynamicTree"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicTree } from "../../../structures/DynamicTree"; -export const test_json_schemas_v3_1_DynamicTree = - _test_json_schemas({ - version: "3.1", - name: "DynamicTree", - })(typia.json.schemas<[DynamicTree], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicTree = _test_json_schemas({ + version: "3.1", + name: "DynamicTree", +})(typia.json.schemas<[DynamicTree], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUndefined.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUndefined.ts index 7a0f9cae23..7ea340aebf 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUndefined.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; -export const test_json_schemas_v3_1_DynamicUndefined = - _test_json_schemas({ - version: "3.1", - name: "DynamicUndefined", - })(typia.json.schemas<[DynamicUndefined], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicUndefined = _test_json_schemas({ + version: "3.1", + name: "DynamicUndefined", +})(typia.json.schemas<[DynamicUndefined], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUnion.ts index d3777dbd27..13a4681fb8 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_DynamicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUnion } from "../../../structures/DynamicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { DynamicUnion } from "../../../structures/DynamicUnion"; -export const test_json_schemas_v3_1_DynamicUnion = - _test_json_schemas({ - version: "3.1", - name: "DynamicUnion", - })(typia.json.schemas<[DynamicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_DynamicUnion = _test_json_schemas({ + version: "3.1", + name: "DynamicUnion", +})(typia.json.schemas<[DynamicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectAlias.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectAlias.ts index 69515ed0a3..d461b9c495 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectAlias.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectAlias } from "../../../structures/ObjectAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectAlias } from "../../../structures/ObjectAlias"; -export const test_json_schemas_v3_1_ObjectAlias = - _test_json_schemas({ - version: "3.1", - name: "ObjectAlias", - })(typia.json.schemas<[ObjectAlias], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectAlias = _test_json_schemas({ + version: "3.1", + name: "ObjectAlias", +})(typia.json.schemas<[ObjectAlias], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDate.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDate.ts index 0eb6dba0f7..1e662dcacb 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDate.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDate } from "../../../structures/ObjectDate"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDate } from "../../../structures/ObjectDate"; -export const test_json_schemas_v3_1_ObjectDate = - _test_json_schemas({ - version: "3.1", - name: "ObjectDate", - })(typia.json.schemas<[ObjectDate], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectDate = _test_json_schemas({ + version: "3.1", + name: "ObjectDate", +})(typia.json.schemas<[ObjectDate], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDescription.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDescription.ts index a11f4b57a8..d9dc12d9ef 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDescription.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDescription.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDescription } from "../../../structures/ObjectDescription"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; -export const test_json_schemas_v3_1_ObjectDescription = - _test_json_schemas({ - version: "3.1", - name: "ObjectDescription", - })(typia.json.schemas<[ObjectDescription], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectDescription = _test_json_schemas({ + version: "3.1", + name: "ObjectDescription", +})(typia.json.schemas<[ObjectDescription], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDynamic.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDynamic.ts index 617a56e117..6cf46cd07d 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDynamic.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectDynamic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDynamic } from "../../../structures/ObjectDynamic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectDynamic } from "../../../structures/ObjectDynamic"; -export const test_json_schemas_v3_1_ObjectDynamic = - _test_json_schemas({ - version: "3.1", - name: "ObjectDynamic", - })(typia.json.schemas<[ObjectDynamic], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectDynamic = _test_json_schemas({ + version: "3.1", + name: "ObjectDynamic", +})(typia.json.schemas<[ObjectDynamic], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGeneric.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGeneric.ts index 3a993cb52a..08391d8fdf 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGeneric.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGeneric.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGeneric } from "../../../structures/ObjectGeneric"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGeneric } from "../../../structures/ObjectGeneric"; -export const test_json_schemas_v3_1_ObjectGeneric = - _test_json_schemas({ - version: "3.1", - name: "ObjectGeneric", - })(typia.json.schemas<[ObjectGeneric], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectGeneric = _test_json_schemas({ + version: "3.1", + name: "ObjectGeneric", +})(typia.json.schemas<[ObjectGeneric], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericAlias.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericAlias.ts index 28d1735564..5fd8f83972 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericAlias.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; -export const test_json_schemas_v3_1_ObjectGenericAlias = - _test_json_schemas({ - version: "3.1", - name: "ObjectGenericAlias", - })(typia.json.schemas<[ObjectGenericAlias], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectGenericAlias = _test_json_schemas({ + version: "3.1", + name: "ObjectGenericAlias", +})(typia.json.schemas<[ObjectGenericAlias], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericArray.ts index 00003d1446..372b18abcb 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; -export const test_json_schemas_v3_1_ObjectGenericArray = - _test_json_schemas({ - version: "3.1", - name: "ObjectGenericArray", - })(typia.json.schemas<[ObjectGenericArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectGenericArray = _test_json_schemas({ + version: "3.1", + name: "ObjectGenericArray", +})(typia.json.schemas<[ObjectGenericArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericUnion.ts index 43b61c6fd0..7061035ad7 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectGenericUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; -export const test_json_schemas_v3_1_ObjectGenericUnion = - _test_json_schemas({ - version: "3.1", - name: "ObjectGenericUnion", - })(typia.json.schemas<[ObjectGenericUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectGenericUnion = _test_json_schemas({ + version: "3.1", + name: "ObjectGenericUnion", +})(typia.json.schemas<[ObjectGenericUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectHierarchical.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectHierarchical.ts index b0e3cac9d9..13726a0d92 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectHierarchical.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; -export const test_json_schemas_v3_1_ObjectHierarchical = - _test_json_schemas({ - version: "3.1", - name: "ObjectHierarchical", - })(typia.json.schemas<[ObjectHierarchical], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectHierarchical = _test_json_schemas({ + version: "3.1", + name: "ObjectHierarchical", +})(typia.json.schemas<[ObjectHierarchical], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectInternal.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectInternal.ts index 6a747e85ff..18038657f4 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectInternal.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectInternal.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectInternal } from "../../../structures/ObjectInternal"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; -export const test_json_schemas_v3_1_ObjectInternal = - _test_json_schemas({ - version: "3.1", - name: "ObjectInternal", - })(typia.json.schemas<[ObjectInternal], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectInternal = _test_json_schemas({ + version: "3.1", + name: "ObjectInternal", +})(typia.json.schemas<[ObjectInternal], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectIntersection.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectIntersection.ts index 4812e7e38c..19d038e3bb 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectIntersection.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; -export const test_json_schemas_v3_1_ObjectIntersection = - _test_json_schemas({ - version: "3.1", - name: "ObjectIntersection", - })(typia.json.schemas<[ObjectIntersection], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectIntersection = _test_json_schemas({ + version: "3.1", + name: "ObjectIntersection", +})(typia.json.schemas<[ObjectIntersection], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectJsonTag.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectJsonTag.ts index 86103c11ea..7a98d6d5ad 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectJsonTag.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectJsonTag.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; -export const test_json_schemas_v3_1_ObjectJsonTag = - _test_json_schemas({ - version: "3.1", - name: "ObjectJsonTag", - })(typia.json.schemas<[ObjectJsonTag], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectJsonTag = _test_json_schemas({ + version: "3.1", + name: "ObjectJsonTag", +})(typia.json.schemas<[ObjectJsonTag], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralProperty.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralProperty.ts index c5ea365d84..2edc77dfe9 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralProperty.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralProperty.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; -export const test_json_schemas_v3_1_ObjectLiteralProperty = - _test_json_schemas({ - version: "3.1", - name: "ObjectLiteralProperty", - })(typia.json.schemas<[ObjectLiteralProperty], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectLiteralProperty = _test_json_schemas({ + version: "3.1", + name: "ObjectLiteralProperty", +})(typia.json.schemas<[ObjectLiteralProperty], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralType.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralType.ts index 45df33d96c..f722211bc2 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralType.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectLiteralType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; -export const test_json_schemas_v3_1_ObjectLiteralType = - _test_json_schemas({ - version: "3.1", - name: "ObjectLiteralType", - })(typia.json.schemas<[ObjectLiteralType], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectLiteralType = _test_json_schemas({ + version: "3.1", + name: "ObjectLiteralType", +})(typia.json.schemas<[ObjectLiteralType], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectNullable.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectNullable.ts index 11c3f39bb9..becef3ce1c 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectNullable.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectNullable } from "../../../structures/ObjectNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectNullable } from "../../../structures/ObjectNullable"; -export const test_json_schemas_v3_1_ObjectNullable = - _test_json_schemas({ - version: "3.1", - name: "ObjectNullable", - })(typia.json.schemas<[ObjectNullable], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectNullable = _test_json_schemas({ + version: "3.1", + name: "ObjectNullable", +})(typia.json.schemas<[ObjectNullable], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectOptional.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectOptional.ts index fb527e1f84..bae49367a2 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectOptional.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectOptional.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectOptional } from "../../../structures/ObjectOptional"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; -export const test_json_schemas_v3_1_ObjectOptional = - _test_json_schemas({ - version: "3.1", - name: "ObjectOptional", - })(typia.json.schemas<[ObjectOptional], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectOptional = _test_json_schemas({ + version: "3.1", + name: "ObjectOptional", +})(typia.json.schemas<[ObjectOptional], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartial.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartial.ts index d564a44bfe..7b06b28717 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartial.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartial.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPartial } from "../../../structures/ObjectPartial"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPartial } from "../../../structures/ObjectPartial"; -export const test_json_schemas_v3_1_ObjectPartial = - _test_json_schemas({ - version: "3.1", - name: "ObjectPartial", - })(typia.json.schemas<[ObjectPartial], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectPartial = _test_json_schemas({ + version: "3.1", + name: "ObjectPartial", +})(typia.json.schemas<[ObjectPartial], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartialAndRequired.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartialAndRequired.ts index abeb3fc4d5..084ba1d113 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartialAndRequired.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPartialAndRequired.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectPartialAndRequired } from "../../../structures/ObjectPartialAndRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPartialAndRequired } from "../../../structures/ObjectPartialAndRequired"; -export const test_json_schemas_v3_1_ObjectPartialAndRequired = +export const test_json_schemas_v3_1_ObjectPartialAndRequired = _test_json_schemas({ version: "3.1", - name: "ObjectPartialAndRequired", - })(typia.json.schemas<[ObjectPartialAndRequired], "3.1">()); \ No newline at end of file + name: "ObjectPartialAndRequired", + })(typia.json.schemas<[ObjectPartialAndRequired], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPrimitive.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPrimitive.ts index 1db78a9e7e..4d3e2b4017 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPrimitive.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPrimitive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; -export const test_json_schemas_v3_1_ObjectPrimitive = - _test_json_schemas({ - version: "3.1", - name: "ObjectPrimitive", - })(typia.json.schemas<[ObjectPrimitive], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectPrimitive = _test_json_schemas({ + version: "3.1", + name: "ObjectPrimitive", +})(typia.json.schemas<[ObjectPrimitive], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPropertyNullable.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPropertyNullable.ts index 893ac0d687..a4c0511759 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPropertyNullable.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectPropertyNullable.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; -export const test_json_schemas_v3_1_ObjectPropertyNullable = - _test_json_schemas({ +export const test_json_schemas_v3_1_ObjectPropertyNullable = _test_json_schemas( + { version: "3.1", - name: "ObjectPropertyNullable", - })(typia.json.schemas<[ObjectPropertyNullable], "3.1">()); \ No newline at end of file + name: "ObjectPropertyNullable", + }, +)(typia.json.schemas<[ObjectPropertyNullable], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRecursive.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRecursive.ts index 99be2a5fb7..10ffe8ae7a 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRecursive.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRecursive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectRecursive } from "../../../structures/ObjectRecursive"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectRecursive } from "../../../structures/ObjectRecursive"; -export const test_json_schemas_v3_1_ObjectRecursive = - _test_json_schemas({ - version: "3.1", - name: "ObjectRecursive", - })(typia.json.schemas<[ObjectRecursive], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectRecursive = _test_json_schemas({ + version: "3.1", + name: "ObjectRecursive", +})(typia.json.schemas<[ObjectRecursive], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRequired.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRequired.ts index 0c3ee73a16..e5883b3199 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRequired.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectRequired.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectRequired } from "../../../structures/ObjectRequired"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectRequired } from "../../../structures/ObjectRequired"; -export const test_json_schemas_v3_1_ObjectRequired = - _test_json_schemas({ - version: "3.1", - name: "ObjectRequired", - })(typia.json.schemas<[ObjectRequired], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectRequired = _test_json_schemas({ + version: "3.1", + name: "ObjectRequired", +})(typia.json.schemas<[ObjectRequired], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectSimple.ts index 32f51f0e04..2947b4f970 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectSimple } from "../../../structures/ObjectSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; -export const test_json_schemas_v3_1_ObjectSimple = - _test_json_schemas({ - version: "3.1", - name: "ObjectSimple", - })(typia.json.schemas<[ObjectSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectSimple = _test_json_schemas({ + version: "3.1", + name: "ObjectSimple", +})(typia.json.schemas<[ObjectSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectTuple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectTuple.ts index 0f961c4815..09c3ee8270 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectTuple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectTuple } from "../../../structures/ObjectTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectTuple } from "../../../structures/ObjectTuple"; -export const test_json_schemas_v3_1_ObjectTuple = - _test_json_schemas({ - version: "3.1", - name: "ObjectTuple", - })(typia.json.schemas<[ObjectTuple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectTuple = _test_json_schemas({ + version: "3.1", + name: "ObjectTuple", +})(typia.json.schemas<[ObjectTuple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUndefined.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUndefined.ts index 4bccb38f10..4880656def 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUndefined.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUndefined } from "../../../structures/ObjectUndefined"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUndefined } from "../../../structures/ObjectUndefined"; -export const test_json_schemas_v3_1_ObjectUndefined = - _test_json_schemas({ - version: "3.1", - name: "ObjectUndefined", - })(typia.json.schemas<[ObjectUndefined], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectUndefined = _test_json_schemas({ + version: "3.1", + name: "ObjectUndefined", +})(typia.json.schemas<[ObjectUndefined], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionComposite.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionComposite.ts index 8ca8efe6d3..5666edb52f 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionComposite.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; -export const test_json_schemas_v3_1_ObjectUnionComposite = - _test_json_schemas({ - version: "3.1", - name: "ObjectUnionComposite", - })(typia.json.schemas<[ObjectUnionComposite], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectUnionComposite = _test_json_schemas({ + version: "3.1", + name: "ObjectUnionComposite", +})(typia.json.schemas<[ObjectUnionComposite], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionCompositePointer.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionCompositePointer.ts index 64709377d6..2a1924b5c5 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionCompositePointer.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionCompositePointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; -export const test_json_schemas_v3_1_ObjectUnionCompositePointer = +export const test_json_schemas_v3_1_ObjectUnionCompositePointer = _test_json_schemas({ version: "3.1", - name: "ObjectUnionCompositePointer", - })(typia.json.schemas<[ObjectUnionCompositePointer], "3.1">()); \ No newline at end of file + name: "ObjectUnionCompositePointer", + })(typia.json.schemas<[ObjectUnionCompositePointer], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionDouble.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionDouble.ts index 8c1a7f6b06..8d115f9c6b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionDouble.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; -export const test_json_schemas_v3_1_ObjectUnionDouble = - _test_json_schemas({ - version: "3.1", - name: "ObjectUnionDouble", - })(typia.json.schemas<[ObjectUnionDouble], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectUnionDouble = _test_json_schemas({ + version: "3.1", + name: "ObjectUnionDouble", +})(typia.json.schemas<[ObjectUnionDouble], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicit.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicit.ts index 1ac051e7dc..e3f5ed93e3 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicit.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; -export const test_json_schemas_v3_1_ObjectUnionExplicit = - _test_json_schemas({ - version: "3.1", - name: "ObjectUnionExplicit", - })(typia.json.schemas<[ObjectUnionExplicit], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectUnionExplicit = _test_json_schemas({ + version: "3.1", + name: "ObjectUnionExplicit", +})(typia.json.schemas<[ObjectUnionExplicit], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicitPointer.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicitPointer.ts index 35d991f551..9a1f3752f7 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicitPointer.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionExplicitPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; -export const test_json_schemas_v3_1_ObjectUnionExplicitPointer = +export const test_json_schemas_v3_1_ObjectUnionExplicitPointer = _test_json_schemas({ version: "3.1", - name: "ObjectUnionExplicitPointer", - })(typia.json.schemas<[ObjectUnionExplicitPointer], "3.1">()); \ No newline at end of file + name: "ObjectUnionExplicitPointer", + })(typia.json.schemas<[ObjectUnionExplicitPointer], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionImplicit.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionImplicit.ts index 8a7a86f5af..e138b92441 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionImplicit.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionImplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; -export const test_json_schemas_v3_1_ObjectUnionImplicit = - _test_json_schemas({ - version: "3.1", - name: "ObjectUnionImplicit", - })(typia.json.schemas<[ObjectUnionImplicit], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ObjectUnionImplicit = _test_json_schemas({ + version: "3.1", + name: "ObjectUnionImplicit", +})(typia.json.schemas<[ObjectUnionImplicit], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionNonPredictable.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionNonPredictable.ts index 7abbcf2025..15755295ca 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionNonPredictable.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ObjectUnionNonPredictable.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; -export const test_json_schemas_v3_1_ObjectUnionNonPredictable = +export const test_json_schemas_v3_1_ObjectUnionNonPredictable = _test_json_schemas({ version: "3.1", - name: "ObjectUnionNonPredictable", - })(typia.json.schemas<[ObjectUnionNonPredictable], "3.1">()); \ No newline at end of file + name: "ObjectUnionNonPredictable", + })(typia.json.schemas<[ObjectUnionNonPredictable], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateAtomic.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateAtomic.ts index 6bb6d1d058..8c3f0034ea 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateAtomic.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; -export const test_json_schemas_v3_1_TemplateAtomic = - _test_json_schemas({ - version: "3.1", - name: "TemplateAtomic", - })(typia.json.schemas<[TemplateAtomic], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TemplateAtomic = _test_json_schemas({ + version: "3.1", + name: "TemplateAtomic", +})(typia.json.schemas<[TemplateAtomic], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateConstant.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateConstant.ts index d3bf71d5dd..68511ad4b3 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateConstant.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateConstant } from "../../../structures/TemplateConstant"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; -export const test_json_schemas_v3_1_TemplateConstant = - _test_json_schemas({ - version: "3.1", - name: "TemplateConstant", - })(typia.json.schemas<[TemplateConstant], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TemplateConstant = _test_json_schemas({ + version: "3.1", + name: "TemplateConstant", +})(typia.json.schemas<[TemplateConstant], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateUnion.ts index d877055aab..95a385838e 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TemplateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateUnion } from "../../../structures/TemplateUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TemplateUnion } from "../../../structures/TemplateUnion"; -export const test_json_schemas_v3_1_TemplateUnion = - _test_json_schemas({ - version: "3.1", - name: "TemplateUnion", - })(typia.json.schemas<[TemplateUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TemplateUnion = _test_json_schemas({ + version: "3.1", + name: "TemplateUnion", +})(typia.json.schemas<[TemplateUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonArray.ts index ac6faf4d32..a9d7ca5df3 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonArray } from "../../../structures/ToJsonArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonArray } from "../../../structures/ToJsonArray"; -export const test_json_schemas_v3_1_ToJsonArray = - _test_json_schemas({ - version: "3.1", - name: "ToJsonArray", - })(typia.json.schemas<[ToJsonArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonArray = _test_json_schemas({ + version: "3.1", + name: "ToJsonArray", +})(typia.json.schemas<[ToJsonArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicSimple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicSimple.ts index 4ed1c0a55a..01964c8318 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicSimple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; -export const test_json_schemas_v3_1_ToJsonAtomicSimple = - _test_json_schemas({ - version: "3.1", - name: "ToJsonAtomicSimple", - })(typia.json.schemas<[ToJsonAtomicSimple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonAtomicSimple = _test_json_schemas({ + version: "3.1", + name: "ToJsonAtomicSimple", +})(typia.json.schemas<[ToJsonAtomicSimple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicUnion.ts index 95eb8005f4..fb6570e9b4 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; -export const test_json_schemas_v3_1_ToJsonAtomicUnion = - _test_json_schemas({ - version: "3.1", - name: "ToJsonAtomicUnion", - })(typia.json.schemas<[ToJsonAtomicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonAtomicUnion = _test_json_schemas({ + version: "3.1", + name: "ToJsonAtomicUnion", +})(typia.json.schemas<[ToJsonAtomicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonDouble.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonDouble.ts index 95cf368585..622a1da78a 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonDouble.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; -export const test_json_schemas_v3_1_ToJsonDouble = - _test_json_schemas({ - version: "3.1", - name: "ToJsonDouble", - })(typia.json.schemas<[ToJsonDouble], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonDouble = _test_json_schemas({ + version: "3.1", + name: "ToJsonDouble", +})(typia.json.schemas<[ToJsonDouble], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonNull.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonNull.ts index 9168bab84d..0bac9c8a75 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonNull.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonNull.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonNull } from "../../../structures/ToJsonNull"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; -export const test_json_schemas_v3_1_ToJsonNull = - _test_json_schemas({ - version: "3.1", - name: "ToJsonNull", - })(typia.json.schemas<[ToJsonNull], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonNull = _test_json_schemas({ + version: "3.1", + name: "ToJsonNull", +})(typia.json.schemas<[ToJsonNull], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonTuple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonTuple.ts index e0d4e465e0..1bef8f407c 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonTuple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonTuple } from "../../../structures/ToJsonTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonTuple } from "../../../structures/ToJsonTuple"; -export const test_json_schemas_v3_1_ToJsonTuple = - _test_json_schemas({ - version: "3.1", - name: "ToJsonTuple", - })(typia.json.schemas<[ToJsonTuple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonTuple = _test_json_schemas({ + version: "3.1", + name: "ToJsonTuple", +})(typia.json.schemas<[ToJsonTuple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonUnion.ts index 265bc10854..77ff56067b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_ToJsonUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonUnion } from "../../../structures/ToJsonUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { ToJsonUnion } from "../../../structures/ToJsonUnion"; -export const test_json_schemas_v3_1_ToJsonUnion = - _test_json_schemas({ - version: "3.1", - name: "ToJsonUnion", - })(typia.json.schemas<[ToJsonUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_ToJsonUnion = _test_json_schemas({ + version: "3.1", + name: "ToJsonUnion", +})(typia.json.schemas<[ToJsonUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleHierarchical.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleHierarchical.ts index a4dcb01900..1b93c9aca8 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleHierarchical.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleHierarchical } from "../../../structures/TupleHierarchical"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleHierarchical } from "../../../structures/TupleHierarchical"; -export const test_json_schemas_v3_1_TupleHierarchical = - _test_json_schemas({ - version: "3.1", - name: "TupleHierarchical", - })(typia.json.schemas<[TupleHierarchical], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TupleHierarchical = _test_json_schemas({ + version: "3.1", + name: "TupleHierarchical", +})(typia.json.schemas<[TupleHierarchical], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestArray.ts index 704805a137..00e396a284 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestArray } from "../../../structures/TupleRestArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestArray } from "../../../structures/TupleRestArray"; -export const test_json_schemas_v3_1_TupleRestArray = - _test_json_schemas({ - version: "3.1", - name: "TupleRestArray", - })(typia.json.schemas<[TupleRestArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TupleRestArray = _test_json_schemas({ + version: "3.1", + name: "TupleRestArray", +})(typia.json.schemas<[TupleRestArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestAtomic.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestAtomic.ts index 734086f87a..f36a4769a2 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestAtomic.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; -export const test_json_schemas_v3_1_TupleRestAtomic = - _test_json_schemas({ - version: "3.1", - name: "TupleRestAtomic", - })(typia.json.schemas<[TupleRestAtomic], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TupleRestAtomic = _test_json_schemas({ + version: "3.1", + name: "TupleRestAtomic", +})(typia.json.schemas<[TupleRestAtomic], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestObject.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestObject.ts index 43aff8d206..5a65dea583 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestObject.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TupleRestObject.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestObject } from "../../../structures/TupleRestObject"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TupleRestObject } from "../../../structures/TupleRestObject"; -export const test_json_schemas_v3_1_TupleRestObject = - _test_json_schemas({ - version: "3.1", - name: "TupleRestObject", - })(typia.json.schemas<[TupleRestObject], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TupleRestObject = _test_json_schemas({ + version: "3.1", + name: "TupleRestObject", +})(typia.json.schemas<[TupleRestObject], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArray.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArray.ts index 15a9005a74..3244f528ec 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArray.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArray } from "../../../structures/TypeTagArray"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; -export const test_json_schemas_v3_1_TypeTagArray = - _test_json_schemas({ - version: "3.1", - name: "TypeTagArray", - })(typia.json.schemas<[TypeTagArray], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagArray = _test_json_schemas({ + version: "3.1", + name: "TypeTagArray", +})(typia.json.schemas<[TypeTagArray], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArrayUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArrayUnion.ts index 0e819af515..8be28edcee 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArrayUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; -export const test_json_schemas_v3_1_TypeTagArrayUnion = - _test_json_schemas({ - version: "3.1", - name: "TypeTagArrayUnion", - })(typia.json.schemas<[TypeTagArrayUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagArrayUnion = _test_json_schemas({ + version: "3.1", + name: "TypeTagArrayUnion", +})(typia.json.schemas<[TypeTagArrayUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagAtomicUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagAtomicUnion.ts index a53f549002..4533ed832b 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagAtomicUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; -export const test_json_schemas_v3_1_TypeTagAtomicUnion = - _test_json_schemas({ - version: "3.1", - name: "TypeTagAtomicUnion", - })(typia.json.schemas<[TypeTagAtomicUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagAtomicUnion = _test_json_schemas({ + version: "3.1", + name: "TypeTagAtomicUnion", +})(typia.json.schemas<[TypeTagAtomicUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagCustom.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagCustom.ts index 80ce658f95..3f3595b398 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagCustom.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagCustom.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; -export const test_json_schemas_v3_1_TypeTagCustom = - _test_json_schemas({ - version: "3.1", - name: "TypeTagCustom", - })(typia.json.schemas<[TypeTagCustom], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagCustom = _test_json_schemas({ + version: "3.1", + name: "TypeTagCustom", +})(typia.json.schemas<[TypeTagCustom], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagDefault.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagDefault.ts index 3826b83c21..6f6b5e4406 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagDefault.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagDefault } from "../../../structures/TypeTagDefault"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagDefault } from "../../../structures/TypeTagDefault"; -export const test_json_schemas_v3_1_TypeTagDefault = - _test_json_schemas({ - version: "3.1", - name: "TypeTagDefault", - })(typia.json.schemas<[TypeTagDefault], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagDefault = _test_json_schemas({ + version: "3.1", + name: "TypeTagDefault", +})(typia.json.schemas<[TypeTagDefault], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagFormat.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagFormat.ts index 8ce1298b5f..b08f908753 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagFormat.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; -export const test_json_schemas_v3_1_TypeTagFormat = - _test_json_schemas({ - version: "3.1", - name: "TypeTagFormat", - })(typia.json.schemas<[TypeTagFormat], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagFormat = _test_json_schemas({ + version: "3.1", + name: "TypeTagFormat", +})(typia.json.schemas<[TypeTagFormat], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagLength.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagLength.ts index 654f04a520..c4e23d22af 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagLength.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagLength } from "../../../structures/TypeTagLength"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; -export const test_json_schemas_v3_1_TypeTagLength = - _test_json_schemas({ - version: "3.1", - name: "TypeTagLength", - })(typia.json.schemas<[TypeTagLength], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagLength = _test_json_schemas({ + version: "3.1", + name: "TypeTagLength", +})(typia.json.schemas<[TypeTagLength], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagMatrix.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagMatrix.ts index adf4cff16f..ff44fe5d77 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagMatrix.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; -export const test_json_schemas_v3_1_TypeTagMatrix = - _test_json_schemas({ - version: "3.1", - name: "TypeTagMatrix", - })(typia.json.schemas<[TypeTagMatrix], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagMatrix = _test_json_schemas({ + version: "3.1", + name: "TypeTagMatrix", +})(typia.json.schemas<[TypeTagMatrix], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagObjectUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagObjectUnion.ts index 6cda9788fa..dab747ad78 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagObjectUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; -export const test_json_schemas_v3_1_TypeTagObjectUnion = - _test_json_schemas({ - version: "3.1", - name: "TypeTagObjectUnion", - })(typia.json.schemas<[TypeTagObjectUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagObjectUnion = _test_json_schemas({ + version: "3.1", + name: "TypeTagObjectUnion", +})(typia.json.schemas<[TypeTagObjectUnion], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagPattern.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagPattern.ts index 2185e9df56..104fb820ce 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagPattern.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; -export const test_json_schemas_v3_1_TypeTagPattern = - _test_json_schemas({ - version: "3.1", - name: "TypeTagPattern", - })(typia.json.schemas<[TypeTagPattern], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagPattern = _test_json_schemas({ + version: "3.1", + name: "TypeTagPattern", +})(typia.json.schemas<[TypeTagPattern], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagRange.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagRange.ts index 0b2b1e081b..30ca0936cd 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagRange.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagRange } from "../../../structures/TypeTagRange"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; -export const test_json_schemas_v3_1_TypeTagRange = - _test_json_schemas({ - version: "3.1", - name: "TypeTagRange", - })(typia.json.schemas<[TypeTagRange], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagRange = _test_json_schemas({ + version: "3.1", + name: "TypeTagRange", +})(typia.json.schemas<[TypeTagRange], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagTuple.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagTuple.ts index 51e30ce2c7..61b4fe071e 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagTuple.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagTuple } from "../../../structures/TypeTagTuple"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagTuple } from "../../../structures/TypeTagTuple"; -export const test_json_schemas_v3_1_TypeTagTuple = - _test_json_schemas({ - version: "3.1", - name: "TypeTagTuple", - })(typia.json.schemas<[TypeTagTuple], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagTuple = _test_json_schemas({ + version: "3.1", + name: "TypeTagTuple", +})(typia.json.schemas<[TypeTagTuple], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagType.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagType.ts index 8254dc2eef..ef802fd1ec 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagType.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_TypeTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagType } from "../../../structures/TypeTagType"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { TypeTagType } from "../../../structures/TypeTagType"; -export const test_json_schemas_v3_1_TypeTagType = - _test_json_schemas({ - version: "3.1", - name: "TypeTagType", - })(typia.json.schemas<[TypeTagType], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_TypeTagType = _test_json_schemas({ + version: "3.1", + name: "TypeTagType", +})(typia.json.schemas<[TypeTagType], "3.1">()); diff --git a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_UltimateUnion.ts b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_UltimateUnion.ts index 3a5228d59c..c9e4c909cc 100644 --- a/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_UltimateUnion.ts +++ b/test/src/features/json.schemas/v3_1/test_json_schemas_v3_1_UltimateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { UltimateUnion } from "../../../structures/UltimateUnion"; + import { _test_json_schemas } from "../../../internal/_test_json_schemas"; +import { UltimateUnion } from "../../../structures/UltimateUnion"; -export const test_json_schemas_v3_1_UltimateUnion = - _test_json_schemas({ - version: "3.1", - name: "UltimateUnion", - })(typia.json.schemas<[UltimateUnion], "3.1">()); \ No newline at end of file +export const test_json_schemas_v3_1_UltimateUnion = _test_json_schemas({ + version: "3.1", + name: "UltimateUnion", +})(typia.json.schemas<[UltimateUnion], "3.1">()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAny.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAny.ts index caa3b2e927..7d9ecf1d58 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAny.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAny.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAny } from "../../../structures/ArrayAny"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAny } from "../../../structures/ArrayAny"; -export const test_llm_schema_3_0_ArrayAny = - _test_llm_schema({ - model: "3.0", - name: "ArrayAny", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayAny = _test_llm_schema({ + model: "3.0", + name: "ArrayAny", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicAlias.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicAlias.ts index 13f7a7f0a8..3fcc57369e 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicAlias.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; -export const test_llm_schema_3_0_ArrayAtomicAlias = - _test_llm_schema({ - model: "3.0", - name: "ArrayAtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayAtomicAlias = _test_llm_schema({ + model: "3.0", + name: "ArrayAtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicSimple.ts index 25cff9c5a1..7c0c49a592 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; -export const test_llm_schema_3_0_ArrayAtomicSimple = - _test_llm_schema({ - model: "3.0", - name: "ArrayAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayAtomicSimple = _test_llm_schema({ + model: "3.0", + name: "ArrayAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchical.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchical.ts index a6483c4a30..fcdc62226b 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchical.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; -export const test_llm_schema_3_0_ArrayHierarchical = - _test_llm_schema({ - model: "3.0", - name: "ArrayHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayHierarchical = _test_llm_schema({ + model: "3.0", + name: "ArrayHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchicalPointer.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchicalPointer.ts index 2d3920df5f..93718f38d9 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchicalPointer.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayHierarchicalPointer.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; -export const test_llm_schema_3_0_ArrayHierarchicalPointer = - _test_llm_schema({ - model: "3.0", - name: "ArrayHierarchicalPointer", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayHierarchicalPointer = _test_llm_schema({ + model: "3.0", + name: "ArrayHierarchicalPointer", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayMatrix.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayMatrix.ts index 9667c38626..a34c7456a2 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayMatrix.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; -export const test_llm_schema_3_0_ArrayMatrix = - _test_llm_schema({ - model: "3.0", - name: "ArrayMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayMatrix = _test_llm_schema({ + model: "3.0", + name: "ArrayMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArraySimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArraySimple.ts index 38889ac621..7f00f46cb9 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArraySimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArraySimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArraySimple } from "../../../structures/ArraySimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArraySimple } from "../../../structures/ArraySimple"; -export const test_llm_schema_3_0_ArraySimple = - _test_llm_schema({ - model: "3.0", - name: "ArraySimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArraySimple = _test_llm_schema({ + model: "3.0", + name: "ArraySimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayUnion.ts index 28555e2273..3ef15dea25 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayUnion } from "../../../structures/ArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayUnion } from "../../../structures/ArrayUnion"; -export const test_llm_schema_3_0_ArrayUnion = - _test_llm_schema({ - model: "3.0", - name: "ArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ArrayUnion = _test_llm_schema({ + model: "3.0", + name: "ArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicAlias.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicAlias.ts index 7618c60338..a807910915 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicAlias.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicAlias } from "../../../structures/AtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicAlias } from "../../../structures/AtomicAlias"; -export const test_llm_schema_3_0_AtomicAlias = - _test_llm_schema({ - model: "3.0", - name: "AtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_AtomicAlias = _test_llm_schema({ + model: "3.0", + name: "AtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicClass.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicClass.ts index d093a000cc..4ef803f8e9 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicClass.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicClass.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicClass } from "../../../structures/AtomicClass"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicClass } from "../../../structures/AtomicClass"; -export const test_llm_schema_3_0_AtomicClass = - _test_llm_schema({ - model: "3.0", - name: "AtomicClass", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_AtomicClass = _test_llm_schema({ + model: "3.0", + name: "AtomicClass", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicIntersection.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicIntersection.ts index cd4b7eabb8..2ab494a0ad 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicIntersection.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicIntersection } from "../../../structures/AtomicIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicIntersection } from "../../../structures/AtomicIntersection"; -export const test_llm_schema_3_0_AtomicIntersection = - _test_llm_schema({ - model: "3.0", - name: "AtomicIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_AtomicIntersection = _test_llm_schema({ + model: "3.0", + name: "AtomicIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicSimple.ts index 859387c8dc..03ae9908f0 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicSimple } from "../../../structures/AtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicSimple } from "../../../structures/AtomicSimple"; -export const test_llm_schema_3_0_AtomicSimple = - _test_llm_schema({ - model: "3.0", - name: "AtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_AtomicSimple = _test_llm_schema({ + model: "3.0", + name: "AtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicUnion.ts index cb5da44fa9..9729988a2a 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_AtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicUnion } from "../../../structures/AtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicUnion } from "../../../structures/AtomicUnion"; -export const test_llm_schema_3_0_AtomicUnion = - _test_llm_schema({ - model: "3.0", - name: "AtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_AtomicUnion = _test_llm_schema({ + model: "3.0", + name: "AtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassGetter.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassGetter.ts index d357d4d31e..edbfc3caba 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassGetter.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassGetter.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassGetter } from "../../../structures/ClassGetter"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassGetter } from "../../../structures/ClassGetter"; -export const test_llm_schema_3_0_ClassGetter = - _test_llm_schema({ - model: "3.0", - name: "ClassGetter", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ClassGetter = _test_llm_schema({ + model: "3.0", + name: "ClassGetter", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassMethod.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassMethod.ts index 41fecba6bc..a0a0329fb7 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassMethod.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassMethod.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassMethod } from "../../../structures/ClassMethod"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassMethod } from "../../../structures/ClassMethod"; -export const test_llm_schema_3_0_ClassMethod = - _test_llm_schema({ - model: "3.0", - name: "ClassMethod", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ClassMethod = _test_llm_schema({ + model: "3.0", + name: "ClassMethod", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassPropertyAssignment.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassPropertyAssignment.ts index 750feeaf16..7cfe9b1349 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassPropertyAssignment.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ClassPropertyAssignment.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; -export const test_llm_schema_3_0_ClassPropertyAssignment = - _test_llm_schema({ - model: "3.0", - name: "ClassPropertyAssignment", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ClassPropertyAssignment = _test_llm_schema({ + model: "3.0", + name: "ClassPropertyAssignment", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArray.ts index 1acc5eb066..a62d0d304c 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArray } from "../../../structures/CommentTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; -export const test_llm_schema_3_0_CommentTagArray = - _test_llm_schema({ - model: "3.0", - name: "CommentTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagArray = _test_llm_schema({ + model: "3.0", + name: "CommentTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArrayUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArrayUnion.ts index cb9f081e88..55ab942ebd 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArrayUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; -export const test_llm_schema_3_0_CommentTagArrayUnion = - _test_llm_schema({ - model: "3.0", - name: "CommentTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagArrayUnion = _test_llm_schema({ + model: "3.0", + name: "CommentTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagAtomicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagAtomicUnion.ts index c31a1bc55d..85dce55b5f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagAtomicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; -export const test_llm_schema_3_0_CommentTagAtomicUnion = - _test_llm_schema({ - model: "3.0", - name: "CommentTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagAtomicUnion = _test_llm_schema({ + model: "3.0", + name: "CommentTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagDefault.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagDefault.ts index d9838cbf2c..5986b58a9a 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagDefault.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagDefault } from "../../../structures/CommentTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagDefault } from "../../../structures/CommentTagDefault"; -export const test_llm_schema_3_0_CommentTagDefault = - _test_llm_schema({ - model: "3.0", - name: "CommentTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagDefault = _test_llm_schema({ + model: "3.0", + name: "CommentTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagFormat.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagFormat.ts index f7c304327b..0c1e9747fa 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagFormat.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; -export const test_llm_schema_3_0_CommentTagFormat = - _test_llm_schema({ - model: "3.0", - name: "CommentTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagFormat = _test_llm_schema({ + model: "3.0", + name: "CommentTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagLength.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagLength.ts index ac877571a7..a20f35f81f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagLength.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagLength } from "../../../structures/CommentTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; -export const test_llm_schema_3_0_CommentTagLength = - _test_llm_schema({ - model: "3.0", - name: "CommentTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagLength = _test_llm_schema({ + model: "3.0", + name: "CommentTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagObjectUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagObjectUnion.ts index 128f68c282..a540b535b0 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagObjectUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; -export const test_llm_schema_3_0_CommentTagObjectUnion = - _test_llm_schema({ - model: "3.0", - name: "CommentTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagObjectUnion = _test_llm_schema({ + model: "3.0", + name: "CommentTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagPattern.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagPattern.ts index e7db70fb1b..74a43399ee 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagPattern.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; -export const test_llm_schema_3_0_CommentTagPattern = - _test_llm_schema({ - model: "3.0", - name: "CommentTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagPattern = _test_llm_schema({ + model: "3.0", + name: "CommentTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagRange.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagRange.ts index 83041fd82e..1fc4240870 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagRange.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagRange } from "../../../structures/CommentTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; -export const test_llm_schema_3_0_CommentTagRange = - _test_llm_schema({ - model: "3.0", - name: "CommentTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagRange = _test_llm_schema({ + model: "3.0", + name: "CommentTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagType.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagType.ts index 6053852d8f..5986c89dc2 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagType.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_CommentTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagType } from "../../../structures/CommentTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagType } from "../../../structures/CommentTagType"; -export const test_llm_schema_3_0_CommentTagType = - _test_llm_schema({ - model: "3.0", - name: "CommentTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_CommentTagType = _test_llm_schema({ + model: "3.0", + name: "CommentTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicAbsorbed.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicAbsorbed.ts index 6682c2a518..cdb8a89253 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicAbsorbed.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicAbsorbed.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; -export const test_llm_schema_3_0_ConstantAtomicAbsorbed = - _test_llm_schema({ - model: "3.0", - name: "ConstantAtomicAbsorbed", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantAtomicAbsorbed = _test_llm_schema({ + model: "3.0", + name: "ConstantAtomicAbsorbed", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicSimple.ts index 9defcd7fe9..78c94c0e1e 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; -export const test_llm_schema_3_0_ConstantAtomicSimple = - _test_llm_schema({ - model: "3.0", - name: "ConstantAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantAtomicSimple = _test_llm_schema({ + model: "3.0", + name: "ConstantAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicTagged.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicTagged.ts index 0e7b28f668..b3fc14444a 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicTagged.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicTagged.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; -export const test_llm_schema_3_0_ConstantAtomicTagged = - _test_llm_schema({ - model: "3.0", - name: "ConstantAtomicTagged", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantAtomicTagged = _test_llm_schema({ + model: "3.0", + name: "ConstantAtomicTagged", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicUnion.ts index 3c7778cd07..039c81849f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; -export const test_llm_schema_3_0_ConstantAtomicUnion = - _test_llm_schema({ - model: "3.0", - name: "ConstantAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantAtomicUnion = _test_llm_schema({ + model: "3.0", + name: "ConstantAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicWrapper.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicWrapper.ts index 74cff4ba7b..ba6499f35d 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicWrapper.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantAtomicWrapper.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; -export const test_llm_schema_3_0_ConstantAtomicWrapper = - _test_llm_schema({ - model: "3.0", - name: "ConstantAtomicWrapper", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantAtomicWrapper = _test_llm_schema({ + model: "3.0", + name: "ConstantAtomicWrapper", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantConstEnumeration.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantConstEnumeration.ts index b46bc4e891..5ebea5d585 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantConstEnumeration.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantConstEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; -export const test_llm_schema_3_0_ConstantConstEnumeration = - _test_llm_schema({ - model: "3.0", - name: "ConstantConstEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantConstEnumeration = _test_llm_schema({ + model: "3.0", + name: "ConstantConstEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantEnumeration.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantEnumeration.ts index 9a406a40a1..ec01849b5f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantEnumeration.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; -export const test_llm_schema_3_0_ConstantEnumeration = - _test_llm_schema({ - model: "3.0", - name: "ConstantEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantEnumeration = _test_llm_schema({ + model: "3.0", + name: "ConstantEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantIntersection.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantIntersection.ts index dfb60311c7..d5476f8403 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantIntersection.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ConstantIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../../structures/ConstantIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantIntersection } from "../../../structures/ConstantIntersection"; -export const test_llm_schema_3_0_ConstantIntersection = - _test_llm_schema({ - model: "3.0", - name: "ConstantIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ConstantIntersection = _test_llm_schema({ + model: "3.0", + name: "ConstantIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicArray.ts index 9f7656f9ae..1e8ac80b70 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicArray } from "../../../structures/DynamicArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicArray } from "../../../structures/DynamicArray"; -export const test_llm_schema_3_0_DynamicArray = - _test_llm_schema({ - model: "3.0", - name: "DynamicArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicArray = _test_llm_schema({ + model: "3.0", + name: "DynamicArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicComposite.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicComposite.ts index b097d9a2c2..ca714b57a4 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicComposite.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicComposite } from "../../../structures/DynamicComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicComposite } from "../../../structures/DynamicComposite"; -export const test_llm_schema_3_0_DynamicComposite = - _test_llm_schema({ - model: "3.0", - name: "DynamicComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicComposite = _test_llm_schema({ + model: "3.0", + name: "DynamicComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicConstant.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicConstant.ts index ad344c72ba..2227587191 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicConstant.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicConstant } from "../../../structures/DynamicConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; -export const test_llm_schema_3_0_DynamicConstant = - _test_llm_schema({ - model: "3.0", - name: "DynamicConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicConstant = _test_llm_schema({ + model: "3.0", + name: "DynamicConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicEnumeration.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicEnumeration.ts index 37a14990fa..2e16132285 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicEnumeration.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; -export const test_llm_schema_3_0_DynamicEnumeration = - _test_llm_schema({ - model: "3.0", - name: "DynamicEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicEnumeration = _test_llm_schema({ + model: "3.0", + name: "DynamicEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicNever.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicNever.ts index 78c9552951..2a20bba9c5 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicNever.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicNever.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicNever } from "../../../structures/DynamicNever"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicNever } from "../../../structures/DynamicNever"; -export const test_llm_schema_3_0_DynamicNever = - _test_llm_schema({ - model: "3.0", - name: "DynamicNever", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicNever = _test_llm_schema({ + model: "3.0", + name: "DynamicNever", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicSimple.ts index 4dcfc01e7c..9be39c0bc5 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicSimple } from "../../../structures/DynamicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; -export const test_llm_schema_3_0_DynamicSimple = - _test_llm_schema({ - model: "3.0", - name: "DynamicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicSimple = _test_llm_schema({ + model: "3.0", + name: "DynamicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicTemplate.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicTemplate.ts index b40b1b60fb..54b9c178a7 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicTemplate.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicTemplate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTemplate } from "../../../structures/DynamicTemplate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicTemplate } from "../../../structures/DynamicTemplate"; -export const test_llm_schema_3_0_DynamicTemplate = - _test_llm_schema({ - model: "3.0", - name: "DynamicTemplate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicTemplate = _test_llm_schema({ + model: "3.0", + name: "DynamicTemplate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUndefined.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUndefined.ts index 0dcd624850..ef0e2c5012 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUndefined.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; -export const test_llm_schema_3_0_DynamicUndefined = - _test_llm_schema({ - model: "3.0", - name: "DynamicUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicUndefined = _test_llm_schema({ + model: "3.0", + name: "DynamicUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUnion.ts index 1de82f8475..7180edb3dd 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_DynamicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUnion } from "../../../structures/DynamicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUnion } from "../../../structures/DynamicUnion"; -export const test_llm_schema_3_0_DynamicUnion = - _test_llm_schema({ - model: "3.0", - name: "DynamicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_DynamicUnion = _test_llm_schema({ + model: "3.0", + name: "DynamicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectAlias.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectAlias.ts index 0d2204008e..e861f2f191 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectAlias.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectAlias } from "../../../structures/ObjectAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectAlias } from "../../../structures/ObjectAlias"; -export const test_llm_schema_3_0_ObjectAlias = - _test_llm_schema({ - model: "3.0", - name: "ObjectAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectAlias = _test_llm_schema({ + model: "3.0", + name: "ObjectAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDate.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDate.ts index 163006df43..146c6dd8d7 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDate.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDate } from "../../../structures/ObjectDate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDate } from "../../../structures/ObjectDate"; -export const test_llm_schema_3_0_ObjectDate = - _test_llm_schema({ - model: "3.0", - name: "ObjectDate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectDate = _test_llm_schema({ + model: "3.0", + name: "ObjectDate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDescription.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDescription.ts index 9ff47aea27..754871cb9c 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDescription.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDescription.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDescription } from "../../../structures/ObjectDescription"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; -export const test_llm_schema_3_0_ObjectDescription = - _test_llm_schema({ - model: "3.0", - name: "ObjectDescription", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectDescription = _test_llm_schema({ + model: "3.0", + name: "ObjectDescription", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDynamic.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDynamic.ts index f25256af4c..c5e83ae33a 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDynamic.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectDynamic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDynamic } from "../../../structures/ObjectDynamic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDynamic } from "../../../structures/ObjectDynamic"; -export const test_llm_schema_3_0_ObjectDynamic = - _test_llm_schema({ - model: "3.0", - name: "ObjectDynamic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectDynamic = _test_llm_schema({ + model: "3.0", + name: "ObjectDynamic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGeneric.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGeneric.ts index 1c6de0e0c7..7f54ebe228 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGeneric.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGeneric.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGeneric } from "../../../structures/ObjectGeneric"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGeneric } from "../../../structures/ObjectGeneric"; -export const test_llm_schema_3_0_ObjectGeneric = - _test_llm_schema({ - model: "3.0", - name: "ObjectGeneric", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectGeneric = _test_llm_schema({ + model: "3.0", + name: "ObjectGeneric", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericAlias.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericAlias.ts index 82b3a457f2..fcc7c4ff21 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericAlias.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; -export const test_llm_schema_3_0_ObjectGenericAlias = - _test_llm_schema({ - model: "3.0", - name: "ObjectGenericAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectGenericAlias = _test_llm_schema({ + model: "3.0", + name: "ObjectGenericAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericArray.ts index 920ee66f2c..fb56b8f310 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; -export const test_llm_schema_3_0_ObjectGenericArray = - _test_llm_schema({ - model: "3.0", - name: "ObjectGenericArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectGenericArray = _test_llm_schema({ + model: "3.0", + name: "ObjectGenericArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericUnion.ts index 09f2dabe7e..a023c73271 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectGenericUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; -export const test_llm_schema_3_0_ObjectGenericUnion = - _test_llm_schema({ - model: "3.0", - name: "ObjectGenericUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectGenericUnion = _test_llm_schema({ + model: "3.0", + name: "ObjectGenericUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectHierarchical.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectHierarchical.ts index 93f7d48532..cda79c54f0 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectHierarchical.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; -export const test_llm_schema_3_0_ObjectHierarchical = - _test_llm_schema({ - model: "3.0", - name: "ObjectHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectHierarchical = _test_llm_schema({ + model: "3.0", + name: "ObjectHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectInternal.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectInternal.ts index 60e2bfb7c2..10391dfa07 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectInternal.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectInternal.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectInternal } from "../../../structures/ObjectInternal"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; -export const test_llm_schema_3_0_ObjectInternal = - _test_llm_schema({ - model: "3.0", - name: "ObjectInternal", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectInternal = _test_llm_schema({ + model: "3.0", + name: "ObjectInternal", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectIntersection.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectIntersection.ts index 4a7a1171dc..55fa669373 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectIntersection.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; -export const test_llm_schema_3_0_ObjectIntersection = - _test_llm_schema({ - model: "3.0", - name: "ObjectIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectIntersection = _test_llm_schema({ + model: "3.0", + name: "ObjectIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectJsonTag.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectJsonTag.ts index 87c474847c..9b6620eec8 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectJsonTag.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectJsonTag.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; -export const test_llm_schema_3_0_ObjectJsonTag = - _test_llm_schema({ - model: "3.0", - name: "ObjectJsonTag", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectJsonTag = _test_llm_schema({ + model: "3.0", + name: "ObjectJsonTag", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralProperty.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralProperty.ts index 68db67a8e0..703ccc6955 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralProperty.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralProperty.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; -export const test_llm_schema_3_0_ObjectLiteralProperty = - _test_llm_schema({ - model: "3.0", - name: "ObjectLiteralProperty", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectLiteralProperty = _test_llm_schema({ + model: "3.0", + name: "ObjectLiteralProperty", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralType.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralType.ts index 7b5252fc46..04c6788b34 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralType.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectLiteralType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; -export const test_llm_schema_3_0_ObjectLiteralType = - _test_llm_schema({ - model: "3.0", - name: "ObjectLiteralType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectLiteralType = _test_llm_schema({ + model: "3.0", + name: "ObjectLiteralType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectNullable.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectNullable.ts index 96e2da155b..9a32257f6d 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectNullable.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectNullable } from "../../../structures/ObjectNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectNullable } from "../../../structures/ObjectNullable"; -export const test_llm_schema_3_0_ObjectNullable = - _test_llm_schema({ - model: "3.0", - name: "ObjectNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectNullable = _test_llm_schema({ + model: "3.0", + name: "ObjectNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectOptional.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectOptional.ts index c065074157..ef750b405e 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectOptional.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectOptional.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectOptional } from "../../../structures/ObjectOptional"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; -export const test_llm_schema_3_0_ObjectOptional = - _test_llm_schema({ - model: "3.0", - name: "ObjectOptional", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectOptional = _test_llm_schema({ + model: "3.0", + name: "ObjectOptional", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPrimitive.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPrimitive.ts index 3f1692dc2a..2285f73723 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPrimitive.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPrimitive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; -export const test_llm_schema_3_0_ObjectPrimitive = - _test_llm_schema({ - model: "3.0", - name: "ObjectPrimitive", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectPrimitive = _test_llm_schema({ + model: "3.0", + name: "ObjectPrimitive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPropertyNullable.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPropertyNullable.ts index 787283a94d..ab8672c634 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPropertyNullable.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectPropertyNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; -export const test_llm_schema_3_0_ObjectPropertyNullable = - _test_llm_schema({ - model: "3.0", - name: "ObjectPropertyNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectPropertyNullable = _test_llm_schema({ + model: "3.0", + name: "ObjectPropertyNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectSimple.ts index b091006228..d3aaaf0253 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectSimple } from "../../../structures/ObjectSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; -export const test_llm_schema_3_0_ObjectSimple = - _test_llm_schema({ - model: "3.0", - name: "ObjectSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectSimple = _test_llm_schema({ + model: "3.0", + name: "ObjectSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectTuple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectTuple.ts index 0ebf23d69a..5f9f5d93be 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectTuple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectTuple } from "../../../structures/ObjectTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectTuple } from "../../../structures/ObjectTuple"; -export const test_llm_schema_3_0_ObjectTuple = - _test_llm_schema({ - model: "3.0", - name: "ObjectTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectTuple = _test_llm_schema({ + model: "3.0", + name: "ObjectTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUndefined.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUndefined.ts index 0d5bb3ab6e..bf2c1046d7 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUndefined.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUndefined } from "../../../structures/ObjectUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUndefined } from "../../../structures/ObjectUndefined"; -export const test_llm_schema_3_0_ObjectUndefined = - _test_llm_schema({ - model: "3.0", - name: "ObjectUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUndefined = _test_llm_schema({ + model: "3.0", + name: "ObjectUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionComposite.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionComposite.ts index d2d2575493..29413c57d0 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionComposite.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; -export const test_llm_schema_3_0_ObjectUnionComposite = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionComposite = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionCompositePointer.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionCompositePointer.ts index ce6564f0df..cc798437a3 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionCompositePointer.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionCompositePointer.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; -export const test_llm_schema_3_0_ObjectUnionCompositePointer = - _test_llm_schema({ +export const test_llm_schema_3_0_ObjectUnionCompositePointer = _test_llm_schema( + { model: "3.0", name: "ObjectUnionCompositePointer", - })(typia.llm.schema()); \ No newline at end of file + }, +)(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionDouble.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionDouble.ts index 2dd987b63b..9ec7e35991 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionDouble.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; -export const test_llm_schema_3_0_ObjectUnionDouble = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionDouble = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicit.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicit.ts index b744a0b06b..0a929c41c3 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicit.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; -export const test_llm_schema_3_0_ObjectUnionExplicit = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionExplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionExplicit = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionExplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicitPointer.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicitPointer.ts index 0177fad0b0..d73877ab16 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicitPointer.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionExplicitPointer.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; -export const test_llm_schema_3_0_ObjectUnionExplicitPointer = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionExplicitPointer", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionExplicitPointer = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionExplicitPointer", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionImplicit.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionImplicit.ts index 5efe861317..16a7092763 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionImplicit.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionImplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; -export const test_llm_schema_3_0_ObjectUnionImplicit = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionImplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionImplicit = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionImplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionNonPredictable.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionNonPredictable.ts index 22d4e671a7..b7675131c2 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionNonPredictable.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ObjectUnionNonPredictable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; -export const test_llm_schema_3_0_ObjectUnionNonPredictable = - _test_llm_schema({ - model: "3.0", - name: "ObjectUnionNonPredictable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ObjectUnionNonPredictable = _test_llm_schema({ + model: "3.0", + name: "ObjectUnionNonPredictable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateAtomic.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateAtomic.ts index 7b039bef01..61afd40f95 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateAtomic.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; -export const test_llm_schema_3_0_TemplateAtomic = - _test_llm_schema({ - model: "3.0", - name: "TemplateAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TemplateAtomic = _test_llm_schema({ + model: "3.0", + name: "TemplateAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateConstant.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateConstant.ts index e48bb0abc7..7f1528d643 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateConstant.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateConstant } from "../../../structures/TemplateConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; -export const test_llm_schema_3_0_TemplateConstant = - _test_llm_schema({ - model: "3.0", - name: "TemplateConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TemplateConstant = _test_llm_schema({ + model: "3.0", + name: "TemplateConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateUnion.ts index bb292a35cb..b62cb809a4 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TemplateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateUnion } from "../../../structures/TemplateUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateUnion } from "../../../structures/TemplateUnion"; -export const test_llm_schema_3_0_TemplateUnion = - _test_llm_schema({ - model: "3.0", - name: "TemplateUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TemplateUnion = _test_llm_schema({ + model: "3.0", + name: "TemplateUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonArray.ts index d0251c5348..2d3ff1e9c3 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonArray } from "../../../structures/ToJsonArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonArray } from "../../../structures/ToJsonArray"; -export const test_llm_schema_3_0_ToJsonArray = - _test_llm_schema({ - model: "3.0", - name: "ToJsonArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonArray = _test_llm_schema({ + model: "3.0", + name: "ToJsonArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicSimple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicSimple.ts index 9c8134857c..5706c815f9 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicSimple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; -export const test_llm_schema_3_0_ToJsonAtomicSimple = - _test_llm_schema({ - model: "3.0", - name: "ToJsonAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonAtomicSimple = _test_llm_schema({ + model: "3.0", + name: "ToJsonAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicUnion.ts index e28db0ba14..d4ea61ab53 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; -export const test_llm_schema_3_0_ToJsonAtomicUnion = - _test_llm_schema({ - model: "3.0", - name: "ToJsonAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonAtomicUnion = _test_llm_schema({ + model: "3.0", + name: "ToJsonAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonDouble.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonDouble.ts index db39f0dc9f..42f3f8dceb 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonDouble.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; -export const test_llm_schema_3_0_ToJsonDouble = - _test_llm_schema({ - model: "3.0", - name: "ToJsonDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonDouble = _test_llm_schema({ + model: "3.0", + name: "ToJsonDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonNull.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonNull.ts index 715c718bce..3b339df0df 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonNull.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonNull.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonNull } from "../../../structures/ToJsonNull"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; -export const test_llm_schema_3_0_ToJsonNull = - _test_llm_schema({ - model: "3.0", - name: "ToJsonNull", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonNull = _test_llm_schema({ + model: "3.0", + name: "ToJsonNull", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonTuple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonTuple.ts index 3d290a7836..210b821bb1 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonTuple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonTuple } from "../../../structures/ToJsonTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonTuple } from "../../../structures/ToJsonTuple"; -export const test_llm_schema_3_0_ToJsonTuple = - _test_llm_schema({ - model: "3.0", - name: "ToJsonTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonTuple = _test_llm_schema({ + model: "3.0", + name: "ToJsonTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonUnion.ts index 5f38b31328..990ca901c3 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_ToJsonUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonUnion } from "../../../structures/ToJsonUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonUnion } from "../../../structures/ToJsonUnion"; -export const test_llm_schema_3_0_ToJsonUnion = - _test_llm_schema({ - model: "3.0", - name: "ToJsonUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_ToJsonUnion = _test_llm_schema({ + model: "3.0", + name: "ToJsonUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleHierarchical.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleHierarchical.ts index 091fbea583..7423f5d0bc 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleHierarchical.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleHierarchical } from "../../../structures/TupleHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleHierarchical } from "../../../structures/TupleHierarchical"; -export const test_llm_schema_3_0_TupleHierarchical = - _test_llm_schema({ - model: "3.0", - name: "TupleHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TupleHierarchical = _test_llm_schema({ + model: "3.0", + name: "TupleHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestArray.ts index 6f8cc585a0..8c9325a14d 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestArray } from "../../../structures/TupleRestArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestArray } from "../../../structures/TupleRestArray"; -export const test_llm_schema_3_0_TupleRestArray = - _test_llm_schema({ - model: "3.0", - name: "TupleRestArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TupleRestArray = _test_llm_schema({ + model: "3.0", + name: "TupleRestArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestAtomic.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestAtomic.ts index ca49186227..baa03b2426 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestAtomic.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; -export const test_llm_schema_3_0_TupleRestAtomic = - _test_llm_schema({ - model: "3.0", - name: "TupleRestAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TupleRestAtomic = _test_llm_schema({ + model: "3.0", + name: "TupleRestAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestObject.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestObject.ts index 9d2e5f99b2..fdfec9e322 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestObject.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TupleRestObject.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestObject } from "../../../structures/TupleRestObject"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestObject } from "../../../structures/TupleRestObject"; -export const test_llm_schema_3_0_TupleRestObject = - _test_llm_schema({ - model: "3.0", - name: "TupleRestObject", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TupleRestObject = _test_llm_schema({ + model: "3.0", + name: "TupleRestObject", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArray.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArray.ts index fe05c75b1a..69f73f6a05 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArray.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArray } from "../../../structures/TypeTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; -export const test_llm_schema_3_0_TypeTagArray = - _test_llm_schema({ - model: "3.0", - name: "TypeTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagArray = _test_llm_schema({ + model: "3.0", + name: "TypeTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArrayUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArrayUnion.ts index c9a6ee9e41..25e78ad354 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArrayUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; -export const test_llm_schema_3_0_TypeTagArrayUnion = - _test_llm_schema({ - model: "3.0", - name: "TypeTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagArrayUnion = _test_llm_schema({ + model: "3.0", + name: "TypeTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagAtomicUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagAtomicUnion.ts index 54ad80d959..e10ce1ee1e 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagAtomicUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; -export const test_llm_schema_3_0_TypeTagAtomicUnion = - _test_llm_schema({ - model: "3.0", - name: "TypeTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagAtomicUnion = _test_llm_schema({ + model: "3.0", + name: "TypeTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagCustom.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagCustom.ts index 7f3de2e046..2fc3e62a5b 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagCustom.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagCustom.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; -export const test_llm_schema_3_0_TypeTagCustom = - _test_llm_schema({ - model: "3.0", - name: "TypeTagCustom", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagCustom = _test_llm_schema({ + model: "3.0", + name: "TypeTagCustom", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagDefault.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagDefault.ts index ec5b4c8f44..6527c546b6 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagDefault.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagDefault } from "../../../structures/TypeTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagDefault } from "../../../structures/TypeTagDefault"; -export const test_llm_schema_3_0_TypeTagDefault = - _test_llm_schema({ - model: "3.0", - name: "TypeTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagDefault = _test_llm_schema({ + model: "3.0", + name: "TypeTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagFormat.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagFormat.ts index 191a2abe73..e77b6a9c8f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagFormat.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; -export const test_llm_schema_3_0_TypeTagFormat = - _test_llm_schema({ - model: "3.0", - name: "TypeTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagFormat = _test_llm_schema({ + model: "3.0", + name: "TypeTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagLength.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagLength.ts index 93d4c7982e..191f59f7c2 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagLength.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagLength } from "../../../structures/TypeTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; -export const test_llm_schema_3_0_TypeTagLength = - _test_llm_schema({ - model: "3.0", - name: "TypeTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagLength = _test_llm_schema({ + model: "3.0", + name: "TypeTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagMatrix.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagMatrix.ts index 31385b9b6e..e8c03eb09f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagMatrix.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; -export const test_llm_schema_3_0_TypeTagMatrix = - _test_llm_schema({ - model: "3.0", - name: "TypeTagMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagMatrix = _test_llm_schema({ + model: "3.0", + name: "TypeTagMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagObjectUnion.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagObjectUnion.ts index d6eb559516..bbef697ee5 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagObjectUnion.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; -export const test_llm_schema_3_0_TypeTagObjectUnion = - _test_llm_schema({ - model: "3.0", - name: "TypeTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagObjectUnion = _test_llm_schema({ + model: "3.0", + name: "TypeTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagPattern.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagPattern.ts index 6781a975f7..4f48c6f9f9 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagPattern.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; -export const test_llm_schema_3_0_TypeTagPattern = - _test_llm_schema({ - model: "3.0", - name: "TypeTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagPattern = _test_llm_schema({ + model: "3.0", + name: "TypeTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagRange.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagRange.ts index ddfbcfdeda..371a1fed7c 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagRange.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagRange } from "../../../structures/TypeTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; -export const test_llm_schema_3_0_TypeTagRange = - _test_llm_schema({ - model: "3.0", - name: "TypeTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagRange = _test_llm_schema({ + model: "3.0", + name: "TypeTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagTuple.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagTuple.ts index 1bc3b3f169..31e8ba427f 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagTuple.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagTuple } from "../../../structures/TypeTagTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagTuple } from "../../../structures/TypeTagTuple"; -export const test_llm_schema_3_0_TypeTagTuple = - _test_llm_schema({ - model: "3.0", - name: "TypeTagTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagTuple = _test_llm_schema({ + model: "3.0", + name: "TypeTagTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagType.ts b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagType.ts index a8ff486d3b..f4f0bd382c 100644 --- a/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagType.ts +++ b/test/src/features/llm.schema/3.0/test_llm_schema_3_0_TypeTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagType } from "../../../structures/TypeTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagType } from "../../../structures/TypeTagType"; -export const test_llm_schema_3_0_TypeTagType = - _test_llm_schema({ - model: "3.0", - name: "TypeTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_0_TypeTagType = _test_llm_schema({ + model: "3.0", + name: "TypeTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAny.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAny.ts index e5e396b961..344a62dd0e 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAny.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAny.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAny } from "../../../structures/ArrayAny"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAny } from "../../../structures/ArrayAny"; -export const test_llm_schema_3_1_ArrayAny = - _test_llm_schema({ - model: "3.1", - name: "ArrayAny", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayAny = _test_llm_schema({ + model: "3.1", + name: "ArrayAny", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicAlias.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicAlias.ts index 4eedd276ce..3b77e6b2d9 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicAlias.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; -export const test_llm_schema_3_1_ArrayAtomicAlias = - _test_llm_schema({ - model: "3.1", - name: "ArrayAtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayAtomicAlias = _test_llm_schema({ + model: "3.1", + name: "ArrayAtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicSimple.ts index e2e42f0412..2fda0c00e4 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; -export const test_llm_schema_3_1_ArrayAtomicSimple = - _test_llm_schema({ - model: "3.1", - name: "ArrayAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayAtomicSimple = _test_llm_schema({ + model: "3.1", + name: "ArrayAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchical.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchical.ts index 676419d5bd..7d9dda630b 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchical.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; -export const test_llm_schema_3_1_ArrayHierarchical = - _test_llm_schema({ - model: "3.1", - name: "ArrayHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayHierarchical = _test_llm_schema({ + model: "3.1", + name: "ArrayHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchicalPointer.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchicalPointer.ts index 474e8257ce..a39a3ee382 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchicalPointer.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayHierarchicalPointer.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; -export const test_llm_schema_3_1_ArrayHierarchicalPointer = - _test_llm_schema({ - model: "3.1", - name: "ArrayHierarchicalPointer", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayHierarchicalPointer = _test_llm_schema({ + model: "3.1", + name: "ArrayHierarchicalPointer", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayMatrix.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayMatrix.ts index 89c0be1b6f..5230bf3282 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayMatrix.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; -export const test_llm_schema_3_1_ArrayMatrix = - _test_llm_schema({ - model: "3.1", - name: "ArrayMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayMatrix = _test_llm_schema({ + model: "3.1", + name: "ArrayMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArraySimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArraySimple.ts index f136103d8f..fcca45045a 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArraySimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArraySimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArraySimple } from "../../../structures/ArraySimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArraySimple } from "../../../structures/ArraySimple"; -export const test_llm_schema_3_1_ArraySimple = - _test_llm_schema({ - model: "3.1", - name: "ArraySimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArraySimple = _test_llm_schema({ + model: "3.1", + name: "ArraySimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayUnion.ts index 1c8dffedf3..5065b9f5a2 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayUnion } from "../../../structures/ArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayUnion } from "../../../structures/ArrayUnion"; -export const test_llm_schema_3_1_ArrayUnion = - _test_llm_schema({ - model: "3.1", - name: "ArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ArrayUnion = _test_llm_schema({ + model: "3.1", + name: "ArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicAlias.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicAlias.ts index 0691354c2c..f52f1b79a2 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicAlias.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicAlias } from "../../../structures/AtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicAlias } from "../../../structures/AtomicAlias"; -export const test_llm_schema_3_1_AtomicAlias = - _test_llm_schema({ - model: "3.1", - name: "AtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_AtomicAlias = _test_llm_schema({ + model: "3.1", + name: "AtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicClass.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicClass.ts index d928bc5758..b8917db673 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicClass.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicClass.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicClass } from "../../../structures/AtomicClass"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicClass } from "../../../structures/AtomicClass"; -export const test_llm_schema_3_1_AtomicClass = - _test_llm_schema({ - model: "3.1", - name: "AtomicClass", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_AtomicClass = _test_llm_schema({ + model: "3.1", + name: "AtomicClass", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicIntersection.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicIntersection.ts index b3276366bd..b34e164d19 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicIntersection.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicIntersection } from "../../../structures/AtomicIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicIntersection } from "../../../structures/AtomicIntersection"; -export const test_llm_schema_3_1_AtomicIntersection = - _test_llm_schema({ - model: "3.1", - name: "AtomicIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_AtomicIntersection = _test_llm_schema({ + model: "3.1", + name: "AtomicIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicSimple.ts index 829ac29a64..1228cad096 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicSimple } from "../../../structures/AtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicSimple } from "../../../structures/AtomicSimple"; -export const test_llm_schema_3_1_AtomicSimple = - _test_llm_schema({ - model: "3.1", - name: "AtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_AtomicSimple = _test_llm_schema({ + model: "3.1", + name: "AtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicUnion.ts index b37adbb93d..705f05e823 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_AtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicUnion } from "../../../structures/AtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicUnion } from "../../../structures/AtomicUnion"; -export const test_llm_schema_3_1_AtomicUnion = - _test_llm_schema({ - model: "3.1", - name: "AtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_AtomicUnion = _test_llm_schema({ + model: "3.1", + name: "AtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassGetter.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassGetter.ts index d5716d34f7..9be56471eb 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassGetter.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassGetter.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassGetter } from "../../../structures/ClassGetter"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassGetter } from "../../../structures/ClassGetter"; -export const test_llm_schema_3_1_ClassGetter = - _test_llm_schema({ - model: "3.1", - name: "ClassGetter", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ClassGetter = _test_llm_schema({ + model: "3.1", + name: "ClassGetter", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassMethod.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassMethod.ts index a654e02ae0..e0c430ffb0 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassMethod.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassMethod.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassMethod } from "../../../structures/ClassMethod"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassMethod } from "../../../structures/ClassMethod"; -export const test_llm_schema_3_1_ClassMethod = - _test_llm_schema({ - model: "3.1", - name: "ClassMethod", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ClassMethod = _test_llm_schema({ + model: "3.1", + name: "ClassMethod", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassPropertyAssignment.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassPropertyAssignment.ts index 5d85bea469..8915a3c0a3 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassPropertyAssignment.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ClassPropertyAssignment.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; -export const test_llm_schema_3_1_ClassPropertyAssignment = - _test_llm_schema({ - model: "3.1", - name: "ClassPropertyAssignment", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ClassPropertyAssignment = _test_llm_schema({ + model: "3.1", + name: "ClassPropertyAssignment", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArray.ts index d44a530b6d..08d3a9fefd 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArray } from "../../../structures/CommentTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; -export const test_llm_schema_3_1_CommentTagArray = - _test_llm_schema({ - model: "3.1", - name: "CommentTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagArray = _test_llm_schema({ + model: "3.1", + name: "CommentTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArrayUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArrayUnion.ts index a80fef3595..4e14d67b19 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArrayUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; -export const test_llm_schema_3_1_CommentTagArrayUnion = - _test_llm_schema({ - model: "3.1", - name: "CommentTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagArrayUnion = _test_llm_schema({ + model: "3.1", + name: "CommentTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagAtomicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagAtomicUnion.ts index 46f39a0325..a9bd661d16 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagAtomicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; -export const test_llm_schema_3_1_CommentTagAtomicUnion = - _test_llm_schema({ - model: "3.1", - name: "CommentTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagAtomicUnion = _test_llm_schema({ + model: "3.1", + name: "CommentTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagDefault.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagDefault.ts index c34ea34693..0d5b2a0235 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagDefault.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagDefault } from "../../../structures/CommentTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagDefault } from "../../../structures/CommentTagDefault"; -export const test_llm_schema_3_1_CommentTagDefault = - _test_llm_schema({ - model: "3.1", - name: "CommentTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagDefault = _test_llm_schema({ + model: "3.1", + name: "CommentTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagFormat.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagFormat.ts index d444ddce00..76e85d55f5 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagFormat.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; -export const test_llm_schema_3_1_CommentTagFormat = - _test_llm_schema({ - model: "3.1", - name: "CommentTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagFormat = _test_llm_schema({ + model: "3.1", + name: "CommentTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagLength.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagLength.ts index 0ad3056254..edb283d7c3 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagLength.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagLength } from "../../../structures/CommentTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; -export const test_llm_schema_3_1_CommentTagLength = - _test_llm_schema({ - model: "3.1", - name: "CommentTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagLength = _test_llm_schema({ + model: "3.1", + name: "CommentTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagObjectUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagObjectUnion.ts index ee7bec921e..0f4527522f 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagObjectUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; -export const test_llm_schema_3_1_CommentTagObjectUnion = - _test_llm_schema({ - model: "3.1", - name: "CommentTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagObjectUnion = _test_llm_schema({ + model: "3.1", + name: "CommentTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagPattern.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagPattern.ts index 3512a2d166..6b5eda47ca 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagPattern.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; -export const test_llm_schema_3_1_CommentTagPattern = - _test_llm_schema({ - model: "3.1", - name: "CommentTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagPattern = _test_llm_schema({ + model: "3.1", + name: "CommentTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagRange.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagRange.ts index dcbb30470b..ee19a9d337 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagRange.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagRange } from "../../../structures/CommentTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; -export const test_llm_schema_3_1_CommentTagRange = - _test_llm_schema({ - model: "3.1", - name: "CommentTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagRange = _test_llm_schema({ + model: "3.1", + name: "CommentTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagType.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagType.ts index f6bf796eb5..b50577169f 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagType.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_CommentTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagType } from "../../../structures/CommentTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagType } from "../../../structures/CommentTagType"; -export const test_llm_schema_3_1_CommentTagType = - _test_llm_schema({ - model: "3.1", - name: "CommentTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_CommentTagType = _test_llm_schema({ + model: "3.1", + name: "CommentTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicAbsorbed.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicAbsorbed.ts index 8b352bf7e1..b620fd4686 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicAbsorbed.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicAbsorbed.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; -export const test_llm_schema_3_1_ConstantAtomicAbsorbed = - _test_llm_schema({ - model: "3.1", - name: "ConstantAtomicAbsorbed", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantAtomicAbsorbed = _test_llm_schema({ + model: "3.1", + name: "ConstantAtomicAbsorbed", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicSimple.ts index 0fe4ee6b4e..18f30a3616 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; -export const test_llm_schema_3_1_ConstantAtomicSimple = - _test_llm_schema({ - model: "3.1", - name: "ConstantAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantAtomicSimple = _test_llm_schema({ + model: "3.1", + name: "ConstantAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicTagged.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicTagged.ts index df9f0bbfd0..9b74f3770b 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicTagged.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicTagged.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; -export const test_llm_schema_3_1_ConstantAtomicTagged = - _test_llm_schema({ - model: "3.1", - name: "ConstantAtomicTagged", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantAtomicTagged = _test_llm_schema({ + model: "3.1", + name: "ConstantAtomicTagged", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicUnion.ts index 5210cfc071..7d39eeeac2 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; -export const test_llm_schema_3_1_ConstantAtomicUnion = - _test_llm_schema({ - model: "3.1", - name: "ConstantAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantAtomicUnion = _test_llm_schema({ + model: "3.1", + name: "ConstantAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicWrapper.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicWrapper.ts index 352e422aa2..a7d50afcf9 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicWrapper.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantAtomicWrapper.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; -export const test_llm_schema_3_1_ConstantAtomicWrapper = - _test_llm_schema({ - model: "3.1", - name: "ConstantAtomicWrapper", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantAtomicWrapper = _test_llm_schema({ + model: "3.1", + name: "ConstantAtomicWrapper", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantConstEnumeration.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantConstEnumeration.ts index 1c0ad5a02a..f91ea809b6 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantConstEnumeration.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantConstEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; -export const test_llm_schema_3_1_ConstantConstEnumeration = - _test_llm_schema({ - model: "3.1", - name: "ConstantConstEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantConstEnumeration = _test_llm_schema({ + model: "3.1", + name: "ConstantConstEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantEnumeration.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantEnumeration.ts index 49c7e086d2..ccc47526d7 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantEnumeration.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; -export const test_llm_schema_3_1_ConstantEnumeration = - _test_llm_schema({ - model: "3.1", - name: "ConstantEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantEnumeration = _test_llm_schema({ + model: "3.1", + name: "ConstantEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantIntersection.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantIntersection.ts index b1c16b9a51..7e879ffa4e 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantIntersection.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ConstantIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../../structures/ConstantIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantIntersection } from "../../../structures/ConstantIntersection"; -export const test_llm_schema_3_1_ConstantIntersection = - _test_llm_schema({ - model: "3.1", - name: "ConstantIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ConstantIntersection = _test_llm_schema({ + model: "3.1", + name: "ConstantIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicArray.ts index eb7c1464cc..009f7c1db6 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicArray } from "../../../structures/DynamicArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicArray } from "../../../structures/DynamicArray"; -export const test_llm_schema_3_1_DynamicArray = - _test_llm_schema({ - model: "3.1", - name: "DynamicArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicArray = _test_llm_schema({ + model: "3.1", + name: "DynamicArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicComposite.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicComposite.ts index 1b23323fa1..8d090f7e68 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicComposite.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicComposite } from "../../../structures/DynamicComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicComposite } from "../../../structures/DynamicComposite"; -export const test_llm_schema_3_1_DynamicComposite = - _test_llm_schema({ - model: "3.1", - name: "DynamicComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicComposite = _test_llm_schema({ + model: "3.1", + name: "DynamicComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicConstant.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicConstant.ts index acb9c3a1ab..fdd2c6c818 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicConstant.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicConstant } from "../../../structures/DynamicConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; -export const test_llm_schema_3_1_DynamicConstant = - _test_llm_schema({ - model: "3.1", - name: "DynamicConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicConstant = _test_llm_schema({ + model: "3.1", + name: "DynamicConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicEnumeration.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicEnumeration.ts index 210fe26665..43d1cae131 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicEnumeration.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; -export const test_llm_schema_3_1_DynamicEnumeration = - _test_llm_schema({ - model: "3.1", - name: "DynamicEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicEnumeration = _test_llm_schema({ + model: "3.1", + name: "DynamicEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicNever.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicNever.ts index 368bbc5d7f..9b17a1e43b 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicNever.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicNever.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicNever } from "../../../structures/DynamicNever"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicNever } from "../../../structures/DynamicNever"; -export const test_llm_schema_3_1_DynamicNever = - _test_llm_schema({ - model: "3.1", - name: "DynamicNever", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicNever = _test_llm_schema({ + model: "3.1", + name: "DynamicNever", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicSimple.ts index 385c7044fd..9909bd80ce 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicSimple } from "../../../structures/DynamicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; -export const test_llm_schema_3_1_DynamicSimple = - _test_llm_schema({ - model: "3.1", - name: "DynamicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicSimple = _test_llm_schema({ + model: "3.1", + name: "DynamicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicTemplate.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicTemplate.ts index 0554f73a63..1d0cd76368 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicTemplate.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicTemplate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTemplate } from "../../../structures/DynamicTemplate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicTemplate } from "../../../structures/DynamicTemplate"; -export const test_llm_schema_3_1_DynamicTemplate = - _test_llm_schema({ - model: "3.1", - name: "DynamicTemplate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicTemplate = _test_llm_schema({ + model: "3.1", + name: "DynamicTemplate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUndefined.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUndefined.ts index d1314b80d6..04383d828d 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUndefined.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; -export const test_llm_schema_3_1_DynamicUndefined = - _test_llm_schema({ - model: "3.1", - name: "DynamicUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicUndefined = _test_llm_schema({ + model: "3.1", + name: "DynamicUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUnion.ts index 9ee048a29d..e3025a3266 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_DynamicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUnion } from "../../../structures/DynamicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUnion } from "../../../structures/DynamicUnion"; -export const test_llm_schema_3_1_DynamicUnion = - _test_llm_schema({ - model: "3.1", - name: "DynamicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_DynamicUnion = _test_llm_schema({ + model: "3.1", + name: "DynamicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectAlias.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectAlias.ts index 17161e21dc..f7524448b2 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectAlias.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectAlias } from "../../../structures/ObjectAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectAlias } from "../../../structures/ObjectAlias"; -export const test_llm_schema_3_1_ObjectAlias = - _test_llm_schema({ - model: "3.1", - name: "ObjectAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectAlias = _test_llm_schema({ + model: "3.1", + name: "ObjectAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDate.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDate.ts index 7fba0f62a0..eafa6ee634 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDate.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDate } from "../../../structures/ObjectDate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDate } from "../../../structures/ObjectDate"; -export const test_llm_schema_3_1_ObjectDate = - _test_llm_schema({ - model: "3.1", - name: "ObjectDate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectDate = _test_llm_schema({ + model: "3.1", + name: "ObjectDate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDescription.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDescription.ts index a5f8102225..d2823cdc57 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDescription.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDescription.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDescription } from "../../../structures/ObjectDescription"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; -export const test_llm_schema_3_1_ObjectDescription = - _test_llm_schema({ - model: "3.1", - name: "ObjectDescription", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectDescription = _test_llm_schema({ + model: "3.1", + name: "ObjectDescription", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDynamic.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDynamic.ts index 62a6cecc63..32578c2ea9 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDynamic.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectDynamic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDynamic } from "../../../structures/ObjectDynamic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDynamic } from "../../../structures/ObjectDynamic"; -export const test_llm_schema_3_1_ObjectDynamic = - _test_llm_schema({ - model: "3.1", - name: "ObjectDynamic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectDynamic = _test_llm_schema({ + model: "3.1", + name: "ObjectDynamic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGeneric.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGeneric.ts index b86eb4021c..9bf7fea3a0 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGeneric.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGeneric.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGeneric } from "../../../structures/ObjectGeneric"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGeneric } from "../../../structures/ObjectGeneric"; -export const test_llm_schema_3_1_ObjectGeneric = - _test_llm_schema({ - model: "3.1", - name: "ObjectGeneric", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectGeneric = _test_llm_schema({ + model: "3.1", + name: "ObjectGeneric", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericAlias.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericAlias.ts index da12414769..714644c7b1 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericAlias.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; -export const test_llm_schema_3_1_ObjectGenericAlias = - _test_llm_schema({ - model: "3.1", - name: "ObjectGenericAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectGenericAlias = _test_llm_schema({ + model: "3.1", + name: "ObjectGenericAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericArray.ts index 265cf19c70..3ae95fd29d 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; -export const test_llm_schema_3_1_ObjectGenericArray = - _test_llm_schema({ - model: "3.1", - name: "ObjectGenericArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectGenericArray = _test_llm_schema({ + model: "3.1", + name: "ObjectGenericArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericUnion.ts index 0e954ad931..b23b7c2435 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectGenericUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; -export const test_llm_schema_3_1_ObjectGenericUnion = - _test_llm_schema({ - model: "3.1", - name: "ObjectGenericUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectGenericUnion = _test_llm_schema({ + model: "3.1", + name: "ObjectGenericUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectHierarchical.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectHierarchical.ts index dcdd4a7628..4cf66751cc 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectHierarchical.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; -export const test_llm_schema_3_1_ObjectHierarchical = - _test_llm_schema({ - model: "3.1", - name: "ObjectHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectHierarchical = _test_llm_schema({ + model: "3.1", + name: "ObjectHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectInternal.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectInternal.ts index 4412c9a8f3..c373d3486e 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectInternal.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectInternal.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectInternal } from "../../../structures/ObjectInternal"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; -export const test_llm_schema_3_1_ObjectInternal = - _test_llm_schema({ - model: "3.1", - name: "ObjectInternal", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectInternal = _test_llm_schema({ + model: "3.1", + name: "ObjectInternal", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectIntersection.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectIntersection.ts index 929e6a9585..3e8ab422bd 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectIntersection.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; -export const test_llm_schema_3_1_ObjectIntersection = - _test_llm_schema({ - model: "3.1", - name: "ObjectIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectIntersection = _test_llm_schema({ + model: "3.1", + name: "ObjectIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectJsonTag.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectJsonTag.ts index 8a16e8e0d4..1c5b18e136 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectJsonTag.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectJsonTag.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; -export const test_llm_schema_3_1_ObjectJsonTag = - _test_llm_schema({ - model: "3.1", - name: "ObjectJsonTag", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectJsonTag = _test_llm_schema({ + model: "3.1", + name: "ObjectJsonTag", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralProperty.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralProperty.ts index 84dc48f766..3124e9c0b3 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralProperty.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralProperty.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; -export const test_llm_schema_3_1_ObjectLiteralProperty = - _test_llm_schema({ - model: "3.1", - name: "ObjectLiteralProperty", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectLiteralProperty = _test_llm_schema({ + model: "3.1", + name: "ObjectLiteralProperty", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralType.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralType.ts index 0b508a87a9..873bf59d1a 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralType.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectLiteralType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; -export const test_llm_schema_3_1_ObjectLiteralType = - _test_llm_schema({ - model: "3.1", - name: "ObjectLiteralType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectLiteralType = _test_llm_schema({ + model: "3.1", + name: "ObjectLiteralType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectNullable.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectNullable.ts index d0419cc464..4f4648d7d6 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectNullable.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectNullable } from "../../../structures/ObjectNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectNullable } from "../../../structures/ObjectNullable"; -export const test_llm_schema_3_1_ObjectNullable = - _test_llm_schema({ - model: "3.1", - name: "ObjectNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectNullable = _test_llm_schema({ + model: "3.1", + name: "ObjectNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectOptional.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectOptional.ts index 1d4a143348..9b9c306312 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectOptional.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectOptional.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectOptional } from "../../../structures/ObjectOptional"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; -export const test_llm_schema_3_1_ObjectOptional = - _test_llm_schema({ - model: "3.1", - name: "ObjectOptional", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectOptional = _test_llm_schema({ + model: "3.1", + name: "ObjectOptional", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPrimitive.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPrimitive.ts index 02a0da913b..47910aa81b 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPrimitive.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPrimitive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; -export const test_llm_schema_3_1_ObjectPrimitive = - _test_llm_schema({ - model: "3.1", - name: "ObjectPrimitive", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectPrimitive = _test_llm_schema({ + model: "3.1", + name: "ObjectPrimitive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPropertyNullable.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPropertyNullable.ts index f6b3c75e66..b6a4c6e941 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPropertyNullable.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectPropertyNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; -export const test_llm_schema_3_1_ObjectPropertyNullable = - _test_llm_schema({ - model: "3.1", - name: "ObjectPropertyNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectPropertyNullable = _test_llm_schema({ + model: "3.1", + name: "ObjectPropertyNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectSimple.ts index cfe3604e83..30d44881e7 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectSimple } from "../../../structures/ObjectSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; -export const test_llm_schema_3_1_ObjectSimple = - _test_llm_schema({ - model: "3.1", - name: "ObjectSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectSimple = _test_llm_schema({ + model: "3.1", + name: "ObjectSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectTuple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectTuple.ts index 91ba844d72..30715a3084 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectTuple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectTuple } from "../../../structures/ObjectTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectTuple } from "../../../structures/ObjectTuple"; -export const test_llm_schema_3_1_ObjectTuple = - _test_llm_schema({ - model: "3.1", - name: "ObjectTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectTuple = _test_llm_schema({ + model: "3.1", + name: "ObjectTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUndefined.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUndefined.ts index 5536d3e637..9ff41f0c82 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUndefined.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUndefined } from "../../../structures/ObjectUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUndefined } from "../../../structures/ObjectUndefined"; -export const test_llm_schema_3_1_ObjectUndefined = - _test_llm_schema({ - model: "3.1", - name: "ObjectUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUndefined = _test_llm_schema({ + model: "3.1", + name: "ObjectUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionComposite.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionComposite.ts index 45dfca5a76..c77fe3953e 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionComposite.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; -export const test_llm_schema_3_1_ObjectUnionComposite = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionComposite = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionCompositePointer.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionCompositePointer.ts index 793b3246d0..e18eec3e22 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionCompositePointer.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionCompositePointer.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; -export const test_llm_schema_3_1_ObjectUnionCompositePointer = - _test_llm_schema({ +export const test_llm_schema_3_1_ObjectUnionCompositePointer = _test_llm_schema( + { model: "3.1", name: "ObjectUnionCompositePointer", - })(typia.llm.schema()); \ No newline at end of file + }, +)(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionDouble.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionDouble.ts index 093e2fa013..f5bcf89191 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionDouble.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; -export const test_llm_schema_3_1_ObjectUnionDouble = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionDouble = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicit.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicit.ts index 351de33b7c..02b71eae9a 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicit.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; -export const test_llm_schema_3_1_ObjectUnionExplicit = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionExplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionExplicit = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionExplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicitPointer.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicitPointer.ts index 4a5f9735cb..126146ff5f 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicitPointer.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionExplicitPointer.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; -export const test_llm_schema_3_1_ObjectUnionExplicitPointer = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionExplicitPointer", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionExplicitPointer = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionExplicitPointer", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionImplicit.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionImplicit.ts index 7965437c8e..93a3c24d87 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionImplicit.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionImplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; -export const test_llm_schema_3_1_ObjectUnionImplicit = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionImplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionImplicit = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionImplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionNonPredictable.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionNonPredictable.ts index cc5f2bc75a..98b6810da9 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionNonPredictable.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ObjectUnionNonPredictable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; -export const test_llm_schema_3_1_ObjectUnionNonPredictable = - _test_llm_schema({ - model: "3.1", - name: "ObjectUnionNonPredictable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ObjectUnionNonPredictable = _test_llm_schema({ + model: "3.1", + name: "ObjectUnionNonPredictable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateAtomic.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateAtomic.ts index 70096848e4..c23ad327f6 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateAtomic.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; -export const test_llm_schema_3_1_TemplateAtomic = - _test_llm_schema({ - model: "3.1", - name: "TemplateAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TemplateAtomic = _test_llm_schema({ + model: "3.1", + name: "TemplateAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateConstant.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateConstant.ts index 578f1467c1..a1530486a2 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateConstant.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateConstant } from "../../../structures/TemplateConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; -export const test_llm_schema_3_1_TemplateConstant = - _test_llm_schema({ - model: "3.1", - name: "TemplateConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TemplateConstant = _test_llm_schema({ + model: "3.1", + name: "TemplateConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateUnion.ts index c24b62a1c3..998d66e714 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TemplateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateUnion } from "../../../structures/TemplateUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateUnion } from "../../../structures/TemplateUnion"; -export const test_llm_schema_3_1_TemplateUnion = - _test_llm_schema({ - model: "3.1", - name: "TemplateUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TemplateUnion = _test_llm_schema({ + model: "3.1", + name: "TemplateUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonArray.ts index 836c9b8ea7..674d2b1d8c 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonArray } from "../../../structures/ToJsonArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonArray } from "../../../structures/ToJsonArray"; -export const test_llm_schema_3_1_ToJsonArray = - _test_llm_schema({ - model: "3.1", - name: "ToJsonArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonArray = _test_llm_schema({ + model: "3.1", + name: "ToJsonArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicSimple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicSimple.ts index 576fa20b1c..920448e263 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicSimple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; -export const test_llm_schema_3_1_ToJsonAtomicSimple = - _test_llm_schema({ - model: "3.1", - name: "ToJsonAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonAtomicSimple = _test_llm_schema({ + model: "3.1", + name: "ToJsonAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicUnion.ts index b7db59de1b..eec36d03c3 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; -export const test_llm_schema_3_1_ToJsonAtomicUnion = - _test_llm_schema({ - model: "3.1", - name: "ToJsonAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonAtomicUnion = _test_llm_schema({ + model: "3.1", + name: "ToJsonAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonDouble.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonDouble.ts index f40cf301c2..8d0feeda03 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonDouble.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; -export const test_llm_schema_3_1_ToJsonDouble = - _test_llm_schema({ - model: "3.1", - name: "ToJsonDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonDouble = _test_llm_schema({ + model: "3.1", + name: "ToJsonDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonNull.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonNull.ts index ea6785337f..02e876a369 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonNull.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonNull.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonNull } from "../../../structures/ToJsonNull"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; -export const test_llm_schema_3_1_ToJsonNull = - _test_llm_schema({ - model: "3.1", - name: "ToJsonNull", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonNull = _test_llm_schema({ + model: "3.1", + name: "ToJsonNull", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonTuple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonTuple.ts index 32d6fe024e..b8b9568d66 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonTuple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonTuple } from "../../../structures/ToJsonTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonTuple } from "../../../structures/ToJsonTuple"; -export const test_llm_schema_3_1_ToJsonTuple = - _test_llm_schema({ - model: "3.1", - name: "ToJsonTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonTuple = _test_llm_schema({ + model: "3.1", + name: "ToJsonTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonUnion.ts index 92b04f27ab..710de162fe 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_ToJsonUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonUnion } from "../../../structures/ToJsonUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonUnion } from "../../../structures/ToJsonUnion"; -export const test_llm_schema_3_1_ToJsonUnion = - _test_llm_schema({ - model: "3.1", - name: "ToJsonUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_ToJsonUnion = _test_llm_schema({ + model: "3.1", + name: "ToJsonUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleHierarchical.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleHierarchical.ts index 5c735d81b0..44c65c1a49 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleHierarchical.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleHierarchical } from "../../../structures/TupleHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleHierarchical } from "../../../structures/TupleHierarchical"; -export const test_llm_schema_3_1_TupleHierarchical = - _test_llm_schema({ - model: "3.1", - name: "TupleHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TupleHierarchical = _test_llm_schema({ + model: "3.1", + name: "TupleHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestArray.ts index 816034ee1e..ff171edf53 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestArray } from "../../../structures/TupleRestArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestArray } from "../../../structures/TupleRestArray"; -export const test_llm_schema_3_1_TupleRestArray = - _test_llm_schema({ - model: "3.1", - name: "TupleRestArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TupleRestArray = _test_llm_schema({ + model: "3.1", + name: "TupleRestArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestAtomic.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestAtomic.ts index 6898295172..e8c04df4eb 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestAtomic.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; -export const test_llm_schema_3_1_TupleRestAtomic = - _test_llm_schema({ - model: "3.1", - name: "TupleRestAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TupleRestAtomic = _test_llm_schema({ + model: "3.1", + name: "TupleRestAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestObject.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestObject.ts index 649e11b644..ba9fd95d8a 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestObject.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TupleRestObject.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestObject } from "../../../structures/TupleRestObject"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestObject } from "../../../structures/TupleRestObject"; -export const test_llm_schema_3_1_TupleRestObject = - _test_llm_schema({ - model: "3.1", - name: "TupleRestObject", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TupleRestObject = _test_llm_schema({ + model: "3.1", + name: "TupleRestObject", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArray.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArray.ts index 1cd6f70bf2..ac8833e8a0 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArray.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArray } from "../../../structures/TypeTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; -export const test_llm_schema_3_1_TypeTagArray = - _test_llm_schema({ - model: "3.1", - name: "TypeTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagArray = _test_llm_schema({ + model: "3.1", + name: "TypeTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArrayUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArrayUnion.ts index 90871f1433..5693445a42 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArrayUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; -export const test_llm_schema_3_1_TypeTagArrayUnion = - _test_llm_schema({ - model: "3.1", - name: "TypeTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagArrayUnion = _test_llm_schema({ + model: "3.1", + name: "TypeTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagAtomicUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagAtomicUnion.ts index ae0569a65e..5b02cb8ec5 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagAtomicUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; -export const test_llm_schema_3_1_TypeTagAtomicUnion = - _test_llm_schema({ - model: "3.1", - name: "TypeTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagAtomicUnion = _test_llm_schema({ + model: "3.1", + name: "TypeTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagCustom.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagCustom.ts index 88b93f38b7..6b390d1178 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagCustom.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagCustom.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; -export const test_llm_schema_3_1_TypeTagCustom = - _test_llm_schema({ - model: "3.1", - name: "TypeTagCustom", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagCustom = _test_llm_schema({ + model: "3.1", + name: "TypeTagCustom", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagDefault.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagDefault.ts index 835e734613..bc9f0ea1c4 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagDefault.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagDefault } from "../../../structures/TypeTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagDefault } from "../../../structures/TypeTagDefault"; -export const test_llm_schema_3_1_TypeTagDefault = - _test_llm_schema({ - model: "3.1", - name: "TypeTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagDefault = _test_llm_schema({ + model: "3.1", + name: "TypeTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagFormat.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagFormat.ts index 1273874800..e707238023 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagFormat.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; -export const test_llm_schema_3_1_TypeTagFormat = - _test_llm_schema({ - model: "3.1", - name: "TypeTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagFormat = _test_llm_schema({ + model: "3.1", + name: "TypeTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagLength.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagLength.ts index ae4c82b137..c48532b906 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagLength.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagLength } from "../../../structures/TypeTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; -export const test_llm_schema_3_1_TypeTagLength = - _test_llm_schema({ - model: "3.1", - name: "TypeTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagLength = _test_llm_schema({ + model: "3.1", + name: "TypeTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagMatrix.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagMatrix.ts index 896e79927a..740059021e 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagMatrix.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; -export const test_llm_schema_3_1_TypeTagMatrix = - _test_llm_schema({ - model: "3.1", - name: "TypeTagMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagMatrix = _test_llm_schema({ + model: "3.1", + name: "TypeTagMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagObjectUnion.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagObjectUnion.ts index 689a2f4f25..4bb13e7eab 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagObjectUnion.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; -export const test_llm_schema_3_1_TypeTagObjectUnion = - _test_llm_schema({ - model: "3.1", - name: "TypeTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagObjectUnion = _test_llm_schema({ + model: "3.1", + name: "TypeTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagPattern.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagPattern.ts index 12d6758b12..8d84bb4c22 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagPattern.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; -export const test_llm_schema_3_1_TypeTagPattern = - _test_llm_schema({ - model: "3.1", - name: "TypeTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagPattern = _test_llm_schema({ + model: "3.1", + name: "TypeTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagRange.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagRange.ts index af95a742ee..31a762848d 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagRange.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagRange } from "../../../structures/TypeTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; -export const test_llm_schema_3_1_TypeTagRange = - _test_llm_schema({ - model: "3.1", - name: "TypeTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagRange = _test_llm_schema({ + model: "3.1", + name: "TypeTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagTuple.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagTuple.ts index 3870d0ee29..018ba5c94a 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagTuple.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagTuple } from "../../../structures/TypeTagTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagTuple } from "../../../structures/TypeTagTuple"; -export const test_llm_schema_3_1_TypeTagTuple = - _test_llm_schema({ - model: "3.1", - name: "TypeTagTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagTuple = _test_llm_schema({ + model: "3.1", + name: "TypeTagTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagType.ts b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagType.ts index 2e5860310f..0e413b1e78 100644 --- a/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagType.ts +++ b/test/src/features/llm.schema/3.1/test_llm_schema_3_1_TypeTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagType } from "../../../structures/TypeTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagType } from "../../../structures/TypeTagType"; -export const test_llm_schema_3_1_TypeTagType = - _test_llm_schema({ - model: "3.1", - name: "TypeTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_3_1_TypeTagType = _test_llm_schema({ + model: "3.1", + name: "TypeTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAny.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAny.ts index 7d8c948a1f..8fe31f659b 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAny.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAny.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAny } from "../../../structures/ArrayAny"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAny } from "../../../structures/ArrayAny"; -export const test_llm_schema_chatgpt_ArrayAny = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayAny", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayAny = _test_llm_schema({ + model: "chatgpt", + name: "ArrayAny", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicAlias.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicAlias.ts index 718b13e78b..335db898f7 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicAlias.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicAlias } from "../../../structures/ArrayAtomicAlias"; -export const test_llm_schema_chatgpt_ArrayAtomicAlias = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayAtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayAtomicAlias = _test_llm_schema({ + model: "chatgpt", + name: "ArrayAtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicSimple.ts index bcc7ef8c1e..040a6de2cf 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAtomicSimple } from "../../../structures/ArrayAtomicSimple"; -export const test_llm_schema_chatgpt_ArrayAtomicSimple = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayAtomicSimple = _test_llm_schema({ + model: "chatgpt", + name: "ArrayAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchical.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchical.ts index 925c0560f7..dddd0caf92 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchical.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; -export const test_llm_schema_chatgpt_ArrayHierarchical = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayHierarchical = _test_llm_schema({ + model: "chatgpt", + name: "ArrayHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchicalPointer.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchicalPointer.ts index f89c72c0a4..8f4a37a0d4 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchicalPointer.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayHierarchicalPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; -export const test_llm_schema_chatgpt_ArrayHierarchicalPointer = +export const test_llm_schema_chatgpt_ArrayHierarchicalPointer = _test_llm_schema({ model: "chatgpt", name: "ArrayHierarchicalPointer", - })(typia.llm.schema()); \ No newline at end of file + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayMatrix.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayMatrix.ts index 5c897f5257..f7c26bddca 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayMatrix.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; -export const test_llm_schema_chatgpt_ArrayMatrix = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayMatrix = _test_llm_schema({ + model: "chatgpt", + name: "ArrayMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursive.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursive.ts new file mode 100644 index 0000000000..bac2a38d6a --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursive.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRecursive } from "../../../structures/ArrayRecursive"; + +export const test_llm_schema_chatgpt_ArrayRecursive = _test_llm_schema({ + model: "chatgpt", + name: "ArrayRecursive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicit.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicit.ts new file mode 100644 index 0000000000..a7a4b82a52 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicit.ts @@ -0,0 +1,10 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRecursiveUnionExplicit } from "../../../structures/ArrayRecursiveUnionExplicit"; + +export const test_llm_schema_chatgpt_ArrayRecursiveUnionExplicit = + _test_llm_schema({ + model: "chatgpt", + name: "ArrayRecursiveUnionExplicit", + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicitPointer.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicitPointer.ts new file mode 100644 index 0000000000..362153f0c8 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionExplicitPointer.ts @@ -0,0 +1,10 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRecursiveUnionExplicitPointer } from "../../../structures/ArrayRecursiveUnionExplicitPointer"; + +export const test_llm_schema_chatgpt_ArrayRecursiveUnionExplicitPointer = + _test_llm_schema({ + model: "chatgpt", + name: "ArrayRecursiveUnionExplicitPointer", + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionImplicit.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionImplicit.ts new file mode 100644 index 0000000000..e297b7ee28 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRecursiveUnionImplicit.ts @@ -0,0 +1,10 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRecursiveUnionImplicit } from "../../../structures/ArrayRecursiveUnionImplicit"; + +export const test_llm_schema_chatgpt_ArrayRecursiveUnionImplicit = + _test_llm_schema({ + model: "chatgpt", + name: "ArrayRecursiveUnionImplicit", + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedNullable.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedNullable.ts new file mode 100644 index 0000000000..a77a8128b3 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedNullable.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRepeatedNullable } from "../../../structures/ArrayRepeatedNullable"; + +export const test_llm_schema_chatgpt_ArrayRepeatedNullable = _test_llm_schema({ + model: "chatgpt", + name: "ArrayRepeatedNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedRequired.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedRequired.ts new file mode 100644 index 0000000000..8b8670d2f3 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedRequired.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRepeatedRequired } from "../../../structures/ArrayRepeatedRequired"; + +export const test_llm_schema_chatgpt_ArrayRepeatedRequired = _test_llm_schema({ + model: "chatgpt", + name: "ArrayRepeatedRequired", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnion.ts new file mode 100644 index 0000000000..b7468827a6 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnion.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRepeatedUnion } from "../../../structures/ArrayRepeatedUnion"; + +export const test_llm_schema_chatgpt_ArrayRepeatedUnion = _test_llm_schema({ + model: "chatgpt", + name: "ArrayRepeatedUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnionWithTuple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnionWithTuple.ts new file mode 100644 index 0000000000..cd3816d8be --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayRepeatedUnionWithTuple.ts @@ -0,0 +1,10 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayRepeatedUnionWithTuple } from "../../../structures/ArrayRepeatedUnionWithTuple"; + +export const test_llm_schema_chatgpt_ArrayRepeatedUnionWithTuple = + _test_llm_schema({ + model: "chatgpt", + name: "ArrayRepeatedUnionWithTuple", + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArraySimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArraySimple.ts index 74274845cf..152436522d 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArraySimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArraySimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArraySimple } from "../../../structures/ArraySimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArraySimple } from "../../../structures/ArraySimple"; -export const test_llm_schema_chatgpt_ArraySimple = - _test_llm_schema({ - model: "chatgpt", - name: "ArraySimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArraySimple = _test_llm_schema({ + model: "chatgpt", + name: "ArraySimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayUnion.ts index da0bc73067..0321b1585c 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ArrayUnion } from "../../../structures/ArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayUnion } from "../../../structures/ArrayUnion"; -export const test_llm_schema_chatgpt_ArrayUnion = - _test_llm_schema({ - model: "chatgpt", - name: "ArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ArrayUnion = _test_llm_schema({ + model: "chatgpt", + name: "ArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicAlias.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicAlias.ts index be449fd81a..5b7755a9c3 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicAlias.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicAlias } from "../../../structures/AtomicAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicAlias } from "../../../structures/AtomicAlias"; -export const test_llm_schema_chatgpt_AtomicAlias = - _test_llm_schema({ - model: "chatgpt", - name: "AtomicAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_AtomicAlias = _test_llm_schema({ + model: "chatgpt", + name: "AtomicAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicClass.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicClass.ts index b42726d6d9..282816b469 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicClass.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicClass.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicClass } from "../../../structures/AtomicClass"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicClass } from "../../../structures/AtomicClass"; -export const test_llm_schema_chatgpt_AtomicClass = - _test_llm_schema({ - model: "chatgpt", - name: "AtomicClass", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_AtomicClass = _test_llm_schema({ + model: "chatgpt", + name: "AtomicClass", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicIntersection.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicIntersection.ts index 82ab2b2723..601f5bebf1 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicIntersection.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicIntersection } from "../../../structures/AtomicIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicIntersection } from "../../../structures/AtomicIntersection"; -export const test_llm_schema_chatgpt_AtomicIntersection = - _test_llm_schema({ - model: "chatgpt", - name: "AtomicIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_AtomicIntersection = _test_llm_schema({ + model: "chatgpt", + name: "AtomicIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicSimple.ts index f1914eddb2..36dd220642 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicSimple } from "../../../structures/AtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicSimple } from "../../../structures/AtomicSimple"; -export const test_llm_schema_chatgpt_AtomicSimple = - _test_llm_schema({ - model: "chatgpt", - name: "AtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_AtomicSimple = _test_llm_schema({ + model: "chatgpt", + name: "AtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicUnion.ts index 2dfe4c8f3a..0306604fa7 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_AtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { AtomicUnion } from "../../../structures/AtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { AtomicUnion } from "../../../structures/AtomicUnion"; -export const test_llm_schema_chatgpt_AtomicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "AtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_AtomicUnion = _test_llm_schema({ + model: "chatgpt", + name: "AtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassGetter.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassGetter.ts index bca8855037..b810f3c56a 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassGetter.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassGetter.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassGetter } from "../../../structures/ClassGetter"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassGetter } from "../../../structures/ClassGetter"; -export const test_llm_schema_chatgpt_ClassGetter = - _test_llm_schema({ - model: "chatgpt", - name: "ClassGetter", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ClassGetter = _test_llm_schema({ + model: "chatgpt", + name: "ClassGetter", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassMethod.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassMethod.ts index 4211d67101..f86646a536 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassMethod.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassMethod.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ClassMethod } from "../../../structures/ClassMethod"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassMethod } from "../../../structures/ClassMethod"; -export const test_llm_schema_chatgpt_ClassMethod = - _test_llm_schema({ - model: "chatgpt", - name: "ClassMethod", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ClassMethod = _test_llm_schema({ + model: "chatgpt", + name: "ClassMethod", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassPropertyAssignment.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassPropertyAssignment.ts index 254eb84077..77f0cea219 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassPropertyAssignment.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ClassPropertyAssignment.ts @@ -1,9 +1,11 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; -export const test_llm_schema_chatgpt_ClassPropertyAssignment = - _test_llm_schema({ +export const test_llm_schema_chatgpt_ClassPropertyAssignment = _test_llm_schema( + { model: "chatgpt", name: "ClassPropertyAssignment", - })(typia.llm.schema()); \ No newline at end of file + }, +)(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArray.ts index e15bbba866..43b32661b8 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArray } from "../../../structures/CommentTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; -export const test_llm_schema_chatgpt_CommentTagArray = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagArray = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArrayUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArrayUnion.ts index 744ca66ff9..ff39912e36 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArrayUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArrayUnion } from "../../../structures/CommentTagArrayUnion"; -export const test_llm_schema_chatgpt_CommentTagArrayUnion = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagArrayUnion = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagAtomicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagAtomicUnion.ts index b9ce8b24c0..1e9b6d2ca4 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagAtomicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagAtomicUnion } from "../../../structures/CommentTagAtomicUnion"; -export const test_llm_schema_chatgpt_CommentTagAtomicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagAtomicUnion = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagDefault.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagDefault.ts index 83d2b8caff..7e959513ff 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagDefault.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagDefault } from "../../../structures/CommentTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagDefault } from "../../../structures/CommentTagDefault"; -export const test_llm_schema_chatgpt_CommentTagDefault = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagDefault = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagFormat.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagFormat.ts index 7cdc804631..e69826f850 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagFormat.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; -export const test_llm_schema_chatgpt_CommentTagFormat = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagFormat = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagLength.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagLength.ts index b5ebf1c6eb..3698449f71 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagLength.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagLength } from "../../../structures/CommentTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; -export const test_llm_schema_chatgpt_CommentTagLength = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagLength = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagObjectUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagObjectUnion.ts index a7e4d76a09..cce03c6224 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagObjectUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagObjectUnion } from "../../../structures/CommentTagObjectUnion"; -export const test_llm_schema_chatgpt_CommentTagObjectUnion = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagObjectUnion = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagPattern.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagPattern.ts index e476698191..e336988ce8 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagPattern.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; -export const test_llm_schema_chatgpt_CommentTagPattern = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagPattern = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagRange.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagRange.ts index 4a549afeae..7786a745f4 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagRange.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagRange } from "../../../structures/CommentTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; -export const test_llm_schema_chatgpt_CommentTagRange = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagRange = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagType.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagType.ts index 6e0479c0f6..116d7fe6cc 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagType.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_CommentTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { CommentTagType } from "../../../structures/CommentTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagType } from "../../../structures/CommentTagType"; -export const test_llm_schema_chatgpt_CommentTagType = - _test_llm_schema({ - model: "chatgpt", - name: "CommentTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_CommentTagType = _test_llm_schema({ + model: "chatgpt", + name: "CommentTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicAbsorbed.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicAbsorbed.ts index f75234016a..c275ce4ee5 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicAbsorbed.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicAbsorbed.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; -export const test_llm_schema_chatgpt_ConstantAtomicAbsorbed = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantAtomicAbsorbed", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantAtomicAbsorbed = _test_llm_schema({ + model: "chatgpt", + name: "ConstantAtomicAbsorbed", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicSimple.ts index ea79847ccd..5f2e6a29f9 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicSimple } from "../../../structures/ConstantAtomicSimple"; -export const test_llm_schema_chatgpt_ConstantAtomicSimple = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantAtomicSimple = _test_llm_schema({ + model: "chatgpt", + name: "ConstantAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicTagged.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicTagged.ts index dd8c89a9c8..4cef0e6233 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicTagged.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicTagged.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicTagged } from "../../../structures/ConstantAtomicTagged"; -export const test_llm_schema_chatgpt_ConstantAtomicTagged = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantAtomicTagged", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantAtomicTagged = _test_llm_schema({ + model: "chatgpt", + name: "ConstantAtomicTagged", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicUnion.ts index 9ecaca3347..b7b42efcca 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicUnion } from "../../../structures/ConstantAtomicUnion"; -export const test_llm_schema_chatgpt_ConstantAtomicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantAtomicUnion = _test_llm_schema({ + model: "chatgpt", + name: "ConstantAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicWrapper.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicWrapper.ts index ed7a289c93..9a3bbcce18 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicWrapper.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantAtomicWrapper.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicWrapper } from "../../../structures/ConstantAtomicWrapper"; -export const test_llm_schema_chatgpt_ConstantAtomicWrapper = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantAtomicWrapper", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantAtomicWrapper = _test_llm_schema({ + model: "chatgpt", + name: "ConstantAtomicWrapper", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantConstEnumeration.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantConstEnumeration.ts index 8231529425..3c840b62dd 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantConstEnumeration.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantConstEnumeration.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantConstEnumeration } from "../../../structures/ConstantConstEnumeration"; -export const test_llm_schema_chatgpt_ConstantConstEnumeration = +export const test_llm_schema_chatgpt_ConstantConstEnumeration = _test_llm_schema({ model: "chatgpt", name: "ConstantConstEnumeration", - })(typia.llm.schema()); \ No newline at end of file + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantEnumeration.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantEnumeration.ts index 6ddebfdfbc..65eb354f3d 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantEnumeration.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantEnumeration } from "../../../structures/ConstantEnumeration"; -export const test_llm_schema_chatgpt_ConstantEnumeration = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantEnumeration = _test_llm_schema({ + model: "chatgpt", + name: "ConstantEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantIntersection.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantIntersection.ts index 81bfad81c2..9498323336 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantIntersection.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ConstantIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../../structures/ConstantIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantIntersection } from "../../../structures/ConstantIntersection"; -export const test_llm_schema_chatgpt_ConstantIntersection = - _test_llm_schema({ - model: "chatgpt", - name: "ConstantIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ConstantIntersection = _test_llm_schema({ + model: "chatgpt", + name: "ConstantIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicArray.ts index b6f8871a26..05f3cd1969 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicArray } from "../../../structures/DynamicArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicArray } from "../../../structures/DynamicArray"; -export const test_llm_schema_chatgpt_DynamicArray = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicArray = _test_llm_schema({ + model: "chatgpt", + name: "DynamicArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicComposite.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicComposite.ts index 88c3f1f4cb..80255d62ef 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicComposite.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicComposite } from "../../../structures/DynamicComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicComposite } from "../../../structures/DynamicComposite"; -export const test_llm_schema_chatgpt_DynamicComposite = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicComposite = _test_llm_schema({ + model: "chatgpt", + name: "DynamicComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicConstant.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicConstant.ts index 381741456c..2a16e48a65 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicConstant.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicConstant } from "../../../structures/DynamicConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; -export const test_llm_schema_chatgpt_DynamicConstant = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicConstant = _test_llm_schema({ + model: "chatgpt", + name: "DynamicConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicEnumeration.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicEnumeration.ts index cf1e10d375..e1a4e5f8b1 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicEnumeration.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicEnumeration.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; -export const test_llm_schema_chatgpt_DynamicEnumeration = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicEnumeration", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicEnumeration = _test_llm_schema({ + model: "chatgpt", + name: "DynamicEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicNever.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicNever.ts index 7769146979..118d853263 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicNever.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicNever.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicNever } from "../../../structures/DynamicNever"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicNever } from "../../../structures/DynamicNever"; -export const test_llm_schema_chatgpt_DynamicNever = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicNever", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicNever = _test_llm_schema({ + model: "chatgpt", + name: "DynamicNever", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicSimple.ts index dcc2ff7568..b50bf602f3 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicSimple } from "../../../structures/DynamicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; -export const test_llm_schema_chatgpt_DynamicSimple = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicSimple = _test_llm_schema({ + model: "chatgpt", + name: "DynamicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTemplate.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTemplate.ts index 13c103e23d..eda678d1ba 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTemplate.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTemplate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicTemplate } from "../../../structures/DynamicTemplate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicTemplate } from "../../../structures/DynamicTemplate"; -export const test_llm_schema_chatgpt_DynamicTemplate = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicTemplate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicTemplate = _test_llm_schema({ + model: "chatgpt", + name: "DynamicTemplate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTree.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTree.ts new file mode 100644 index 0000000000..b626d4c8c3 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicTree.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicTree } from "../../../structures/DynamicTree"; + +export const test_llm_schema_chatgpt_DynamicTree = _test_llm_schema({ + model: "chatgpt", + name: "DynamicTree", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUndefined.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUndefined.ts index ceab0f79ea..7d508b5378 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUndefined.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; -export const test_llm_schema_chatgpt_DynamicUndefined = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicUndefined = _test_llm_schema({ + model: "chatgpt", + name: "DynamicUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUnion.ts index 5c98204cba..4032e5b7c0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_DynamicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { DynamicUnion } from "../../../structures/DynamicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUnion } from "../../../structures/DynamicUnion"; -export const test_llm_schema_chatgpt_DynamicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "DynamicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_DynamicUnion = _test_llm_schema({ + model: "chatgpt", + name: "DynamicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectAlias.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectAlias.ts index 2b7aa2172b..cba6efff24 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectAlias.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectAlias } from "../../../structures/ObjectAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectAlias } from "../../../structures/ObjectAlias"; -export const test_llm_schema_chatgpt_ObjectAlias = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectAlias = _test_llm_schema({ + model: "chatgpt", + name: "ObjectAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDate.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDate.ts index 6d100700a6..f1c731fb71 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDate.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDate.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDate } from "../../../structures/ObjectDate"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDate } from "../../../structures/ObjectDate"; -export const test_llm_schema_chatgpt_ObjectDate = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectDate", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectDate = _test_llm_schema({ + model: "chatgpt", + name: "ObjectDate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDescription.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDescription.ts index 28fc77f9ca..6dd3b3ca66 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDescription.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDescription.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDescription } from "../../../structures/ObjectDescription"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; -export const test_llm_schema_chatgpt_ObjectDescription = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectDescription", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectDescription = _test_llm_schema({ + model: "chatgpt", + name: "ObjectDescription", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDynamic.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDynamic.ts index 5fd98c169b..5252d25b11 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDynamic.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectDynamic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectDynamic } from "../../../structures/ObjectDynamic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDynamic } from "../../../structures/ObjectDynamic"; -export const test_llm_schema_chatgpt_ObjectDynamic = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectDynamic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectDynamic = _test_llm_schema({ + model: "chatgpt", + name: "ObjectDynamic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGeneric.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGeneric.ts index b5de3161f7..1ad2aa2a38 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGeneric.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGeneric.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGeneric } from "../../../structures/ObjectGeneric"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGeneric } from "../../../structures/ObjectGeneric"; -export const test_llm_schema_chatgpt_ObjectGeneric = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectGeneric", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectGeneric = _test_llm_schema({ + model: "chatgpt", + name: "ObjectGeneric", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericAlias.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericAlias.ts index 7c27f1d6cf..5b143eee3c 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericAlias.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericAlias.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; -export const test_llm_schema_chatgpt_ObjectGenericAlias = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectGenericAlias", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectGenericAlias = _test_llm_schema({ + model: "chatgpt", + name: "ObjectGenericAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericArray.ts index 1f0742ee6f..ce92bf8eee 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; -export const test_llm_schema_chatgpt_ObjectGenericArray = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectGenericArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectGenericArray = _test_llm_schema({ + model: "chatgpt", + name: "ObjectGenericArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericUnion.ts index 88c2cd8916..a25f6bd2e0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectGenericUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericUnion } from "../../../structures/ObjectGenericUnion"; -export const test_llm_schema_chatgpt_ObjectGenericUnion = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectGenericUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectGenericUnion = _test_llm_schema({ + model: "chatgpt", + name: "ObjectGenericUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectHierarchical.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectHierarchical.ts index 459518cc5b..2ebcd0b508 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectHierarchical.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectHierarchical } from "../../../structures/ObjectHierarchical"; -export const test_llm_schema_chatgpt_ObjectHierarchical = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectHierarchical = _test_llm_schema({ + model: "chatgpt", + name: "ObjectHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectInternal.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectInternal.ts index 310035c574..271b15e83a 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectInternal.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectInternal.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectInternal } from "../../../structures/ObjectInternal"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; -export const test_llm_schema_chatgpt_ObjectInternal = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectInternal", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectInternal = _test_llm_schema({ + model: "chatgpt", + name: "ObjectInternal", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectIntersection.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectIntersection.ts index 0d06ea189b..19edcdc9d9 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectIntersection.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectIntersection.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; -export const test_llm_schema_chatgpt_ObjectIntersection = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectIntersection", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectIntersection = _test_llm_schema({ + model: "chatgpt", + name: "ObjectIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectJsonTag.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectJsonTag.ts index c02c06930b..7500afb71e 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectJsonTag.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectJsonTag.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; -export const test_llm_schema_chatgpt_ObjectJsonTag = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectJsonTag", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectJsonTag = _test_llm_schema({ + model: "chatgpt", + name: "ObjectJsonTag", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralProperty.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralProperty.ts index 6387901f46..d8c9f27949 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralProperty.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralProperty.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; -export const test_llm_schema_chatgpt_ObjectLiteralProperty = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectLiteralProperty", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectLiteralProperty = _test_llm_schema({ + model: "chatgpt", + name: "ObjectLiteralProperty", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralType.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralType.ts index d777184aae..691e644dcb 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralType.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectLiteralType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; -export const test_llm_schema_chatgpt_ObjectLiteralType = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectLiteralType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectLiteralType = _test_llm_schema({ + model: "chatgpt", + name: "ObjectLiteralType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectNullable.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectNullable.ts index 476299061b..54875df1c4 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectNullable.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectNullable } from "../../../structures/ObjectNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectNullable } from "../../../structures/ObjectNullable"; -export const test_llm_schema_chatgpt_ObjectNullable = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectNullable = _test_llm_schema({ + model: "chatgpt", + name: "ObjectNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectOptional.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectOptional.ts index e6bc23301a..53ab0396d9 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectOptional.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectOptional.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectOptional } from "../../../structures/ObjectOptional"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; -export const test_llm_schema_chatgpt_ObjectOptional = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectOptional", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectOptional = _test_llm_schema({ + model: "chatgpt", + name: "ObjectOptional", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartial.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartial.ts new file mode 100644 index 0000000000..5e26c05b96 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartial.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPartial } from "../../../structures/ObjectPartial"; + +export const test_llm_schema_chatgpt_ObjectPartial = _test_llm_schema({ + model: "chatgpt", + name: "ObjectPartial", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartialAndRequired.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartialAndRequired.ts new file mode 100644 index 0000000000..fe06159197 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPartialAndRequired.ts @@ -0,0 +1,10 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPartialAndRequired } from "../../../structures/ObjectPartialAndRequired"; + +export const test_llm_schema_chatgpt_ObjectPartialAndRequired = + _test_llm_schema({ + model: "chatgpt", + name: "ObjectPartialAndRequired", + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPrimitive.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPrimitive.ts index 7e3c2adf18..a29bebc881 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPrimitive.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPrimitive.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; -export const test_llm_schema_chatgpt_ObjectPrimitive = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectPrimitive", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectPrimitive = _test_llm_schema({ + model: "chatgpt", + name: "ObjectPrimitive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPropertyNullable.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPropertyNullable.ts index 584b226a3b..af980fa0d0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPropertyNullable.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectPropertyNullable.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPropertyNullable } from "../../../structures/ObjectPropertyNullable"; -export const test_llm_schema_chatgpt_ObjectPropertyNullable = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectPropertyNullable", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectPropertyNullable = _test_llm_schema({ + model: "chatgpt", + name: "ObjectPropertyNullable", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRecursive.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRecursive.ts new file mode 100644 index 0000000000..04d6fa3b5b --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRecursive.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectRecursive } from "../../../structures/ObjectRecursive"; + +export const test_llm_schema_chatgpt_ObjectRecursive = _test_llm_schema({ + model: "chatgpt", + name: "ObjectRecursive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRequired.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRequired.ts new file mode 100644 index 0000000000..83d1c24a49 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectRequired.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectRequired } from "../../../structures/ObjectRequired"; + +export const test_llm_schema_chatgpt_ObjectRequired = _test_llm_schema({ + model: "chatgpt", + name: "ObjectRequired", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectSimple.ts index e984deb307..f0217c1280 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectSimple } from "../../../structures/ObjectSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; -export const test_llm_schema_chatgpt_ObjectSimple = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectSimple = _test_llm_schema({ + model: "chatgpt", + name: "ObjectSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectTuple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectTuple.ts index e0cd82bcc8..27601e29c3 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectTuple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectTuple } from "../../../structures/ObjectTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectTuple } from "../../../structures/ObjectTuple"; -export const test_llm_schema_chatgpt_ObjectTuple = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectTuple = _test_llm_schema({ + model: "chatgpt", + name: "ObjectTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUndefined.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUndefined.ts index a536451b83..ba3764abf1 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUndefined.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUndefined.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUndefined } from "../../../structures/ObjectUndefined"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUndefined } from "../../../structures/ObjectUndefined"; -export const test_llm_schema_chatgpt_ObjectUndefined = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectUndefined", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectUndefined = _test_llm_schema({ + model: "chatgpt", + name: "ObjectUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionComposite.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionComposite.ts index 9da49e0513..4af899a4e0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionComposite.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionComposite.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionComposite } from "../../../structures/ObjectUnionComposite"; -export const test_llm_schema_chatgpt_ObjectUnionComposite = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectUnionComposite", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectUnionComposite = _test_llm_schema({ + model: "chatgpt", + name: "ObjectUnionComposite", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionCompositePointer.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionCompositePointer.ts index 51df53da9b..ef5c6234de 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionCompositePointer.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionCompositePointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionCompositePointer } from "../../../structures/ObjectUnionCompositePointer"; -export const test_llm_schema_chatgpt_ObjectUnionCompositePointer = +export const test_llm_schema_chatgpt_ObjectUnionCompositePointer = _test_llm_schema({ model: "chatgpt", name: "ObjectUnionCompositePointer", - })(typia.llm.schema()); \ No newline at end of file + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionDouble.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionDouble.ts index c675829aac..265c3d1228 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionDouble.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionDouble } from "../../../structures/ObjectUnionDouble"; -export const test_llm_schema_chatgpt_ObjectUnionDouble = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectUnionDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectUnionDouble = _test_llm_schema({ + model: "chatgpt", + name: "ObjectUnionDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicit.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicit.ts index e1b8e82e5c..7da39f4d52 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicit.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicit } from "../../../structures/ObjectUnionExplicit"; -export const test_llm_schema_chatgpt_ObjectUnionExplicit = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectUnionExplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectUnionExplicit = _test_llm_schema({ + model: "chatgpt", + name: "ObjectUnionExplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicitPointer.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicitPointer.ts index 4cf4f120bd..465fdf1325 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicitPointer.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionExplicitPointer.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionExplicitPointer } from "../../../structures/ObjectUnionExplicitPointer"; -export const test_llm_schema_chatgpt_ObjectUnionExplicitPointer = +export const test_llm_schema_chatgpt_ObjectUnionExplicitPointer = _test_llm_schema({ model: "chatgpt", name: "ObjectUnionExplicitPointer", - })(typia.llm.schema()); \ No newline at end of file + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionImplicit.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionImplicit.ts index c10636b81a..5543b56b68 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionImplicit.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionImplicit.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionImplicit } from "../../../structures/ObjectUnionImplicit"; -export const test_llm_schema_chatgpt_ObjectUnionImplicit = - _test_llm_schema({ - model: "chatgpt", - name: "ObjectUnionImplicit", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ObjectUnionImplicit = _test_llm_schema({ + model: "chatgpt", + name: "ObjectUnionImplicit", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionNonPredictable.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionNonPredictable.ts index a6401155d5..c3f0ce66f6 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionNonPredictable.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ObjectUnionNonPredictable.ts @@ -1,9 +1,10 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectUnionNonPredictable } from "../../../structures/ObjectUnionNonPredictable"; -export const test_llm_schema_chatgpt_ObjectUnionNonPredictable = +export const test_llm_schema_chatgpt_ObjectUnionNonPredictable = _test_llm_schema({ model: "chatgpt", name: "ObjectUnionNonPredictable", - })(typia.llm.schema()); \ No newline at end of file + })(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateAtomic.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateAtomic.ts index 27aff8a8bd..9246c4a376 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateAtomic.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; -export const test_llm_schema_chatgpt_TemplateAtomic = - _test_llm_schema({ - model: "chatgpt", - name: "TemplateAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TemplateAtomic = _test_llm_schema({ + model: "chatgpt", + name: "TemplateAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateConstant.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateConstant.ts index 15f93365c1..185806015b 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateConstant.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateConstant.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateConstant } from "../../../structures/TemplateConstant"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; -export const test_llm_schema_chatgpt_TemplateConstant = - _test_llm_schema({ - model: "chatgpt", - name: "TemplateConstant", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TemplateConstant = _test_llm_schema({ + model: "chatgpt", + name: "TemplateConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateUnion.ts index fffc8f9cf6..592540ec04 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TemplateUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TemplateUnion } from "../../../structures/TemplateUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateUnion } from "../../../structures/TemplateUnion"; -export const test_llm_schema_chatgpt_TemplateUnion = - _test_llm_schema({ - model: "chatgpt", - name: "TemplateUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TemplateUnion = _test_llm_schema({ + model: "chatgpt", + name: "TemplateUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonArray.ts index e9c28325cf..c54c31fa4b 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonArray } from "../../../structures/ToJsonArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonArray } from "../../../structures/ToJsonArray"; -export const test_llm_schema_chatgpt_ToJsonArray = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonArray = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicSimple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicSimple.ts index 9d7ee1e400..c53a092ec7 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicSimple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicSimple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicSimple } from "../../../structures/ToJsonAtomicSimple"; -export const test_llm_schema_chatgpt_ToJsonAtomicSimple = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonAtomicSimple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonAtomicSimple = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonAtomicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicUnion.ts index e6936acd88..a2a41aa766 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonAtomicUnion } from "../../../structures/ToJsonAtomicUnion"; -export const test_llm_schema_chatgpt_ToJsonAtomicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonAtomicUnion = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonDouble.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonDouble.ts index b417167b7d..6c0bd29dd0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonDouble.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonDouble.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; -export const test_llm_schema_chatgpt_ToJsonDouble = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonDouble", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonDouble = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonNull.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonNull.ts index 3217b8a9fa..f853c08cd9 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonNull.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonNull.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonNull } from "../../../structures/ToJsonNull"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; -export const test_llm_schema_chatgpt_ToJsonNull = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonNull", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonNull = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonNull", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonTuple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonTuple.ts index 656c60e8f6..56ab939272 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonTuple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonTuple } from "../../../structures/ToJsonTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonTuple } from "../../../structures/ToJsonTuple"; -export const test_llm_schema_chatgpt_ToJsonTuple = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonTuple = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonUnion.ts index d91088982e..f6637546fd 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_ToJsonUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { ToJsonUnion } from "../../../structures/ToJsonUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonUnion } from "../../../structures/ToJsonUnion"; -export const test_llm_schema_chatgpt_ToJsonUnion = - _test_llm_schema({ - model: "chatgpt", - name: "ToJsonUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_ToJsonUnion = _test_llm_schema({ + model: "chatgpt", + name: "ToJsonUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleHierarchical.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleHierarchical.ts index c5044947c8..977a2c1bfe 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleHierarchical.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleHierarchical.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleHierarchical } from "../../../structures/TupleHierarchical"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleHierarchical } from "../../../structures/TupleHierarchical"; -export const test_llm_schema_chatgpt_TupleHierarchical = - _test_llm_schema({ - model: "chatgpt", - name: "TupleHierarchical", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TupleHierarchical = _test_llm_schema({ + model: "chatgpt", + name: "TupleHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestArray.ts index 918cb4749d..c185db7d37 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestArray } from "../../../structures/TupleRestArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestArray } from "../../../structures/TupleRestArray"; -export const test_llm_schema_chatgpt_TupleRestArray = - _test_llm_schema({ - model: "chatgpt", - name: "TupleRestArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TupleRestArray = _test_llm_schema({ + model: "chatgpt", + name: "TupleRestArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestAtomic.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestAtomic.ts index 88fb141b47..56484e88ac 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestAtomic.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestAtomic.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestAtomic } from "../../../structures/TupleRestAtomic"; -export const test_llm_schema_chatgpt_TupleRestAtomic = - _test_llm_schema({ - model: "chatgpt", - name: "TupleRestAtomic", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TupleRestAtomic = _test_llm_schema({ + model: "chatgpt", + name: "TupleRestAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestObject.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestObject.ts index 5b0ff4b29f..38f35ad31f 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestObject.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TupleRestObject.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TupleRestObject } from "../../../structures/TupleRestObject"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TupleRestObject } from "../../../structures/TupleRestObject"; -export const test_llm_schema_chatgpt_TupleRestObject = - _test_llm_schema({ - model: "chatgpt", - name: "TupleRestObject", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TupleRestObject = _test_llm_schema({ + model: "chatgpt", + name: "TupleRestObject", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArray.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArray.ts index c4f14d350c..817683185e 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArray.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArray.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArray } from "../../../structures/TypeTagArray"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; -export const test_llm_schema_chatgpt_TypeTagArray = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagArray", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagArray = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArrayUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArrayUnion.ts index 6f27455a3c..2b2064f18d 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArrayUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagArrayUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArrayUnion } from "../../../structures/TypeTagArrayUnion"; -export const test_llm_schema_chatgpt_TypeTagArrayUnion = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagArrayUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagArrayUnion = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagArrayUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagAtomicUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagAtomicUnion.ts index 0c383fd41f..d810a1e3bf 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagAtomicUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagAtomicUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagAtomicUnion } from "../../../structures/TypeTagAtomicUnion"; -export const test_llm_schema_chatgpt_TypeTagAtomicUnion = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagAtomicUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagAtomicUnion = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagAtomicUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagCustom.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagCustom.ts index be0d9f8b19..f5a9af00d1 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagCustom.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagCustom.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; -export const test_llm_schema_chatgpt_TypeTagCustom = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagCustom", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagCustom = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagCustom", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagDefault.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagDefault.ts index cc77535d27..ba2c89e1c0 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagDefault.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagDefault.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagDefault } from "../../../structures/TypeTagDefault"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagDefault } from "../../../structures/TypeTagDefault"; -export const test_llm_schema_chatgpt_TypeTagDefault = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagDefault", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagDefault = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagDefault", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagFormat.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagFormat.ts index dcd06f01bc..27de5798cc 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagFormat.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagFormat.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; -export const test_llm_schema_chatgpt_TypeTagFormat = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagFormat", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagFormat = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagLength.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagLength.ts index fc6050afd4..cffadf797a 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagLength.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagLength.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagLength } from "../../../structures/TypeTagLength"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; -export const test_llm_schema_chatgpt_TypeTagLength = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagLength", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagLength = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagMatrix.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagMatrix.ts index 0d1e728da1..4895aebfb8 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagMatrix.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagMatrix.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; -export const test_llm_schema_chatgpt_TypeTagMatrix = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagMatrix", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagMatrix = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagObjectUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagObjectUnion.ts index da48bf20c8..089a2dd217 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagObjectUnion.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagObjectUnion.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagObjectUnion } from "../../../structures/TypeTagObjectUnion"; -export const test_llm_schema_chatgpt_TypeTagObjectUnion = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagObjectUnion", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagObjectUnion = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagObjectUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagPattern.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagPattern.ts index b03d7b9783..8f233334c8 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagPattern.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagPattern.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; -export const test_llm_schema_chatgpt_TypeTagPattern = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagPattern", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagPattern = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagRange.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagRange.ts index ddcae123b6..627acbbde5 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagRange.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagRange.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagRange } from "../../../structures/TypeTagRange"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; -export const test_llm_schema_chatgpt_TypeTagRange = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagRange", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagRange = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagTuple.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagTuple.ts index 3cda7f5d56..28ca57af12 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagTuple.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagTuple.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagTuple } from "../../../structures/TypeTagTuple"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagTuple } from "../../../structures/TypeTagTuple"; -export const test_llm_schema_chatgpt_TypeTagTuple = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagTuple", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagTuple = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagTuple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagType.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagType.ts index 8e561d8d17..c43e0f3d18 100644 --- a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagType.ts +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_TypeTagType.ts @@ -1,9 +1,9 @@ import typia from "typia"; -import { TypeTagType } from "../../../structures/TypeTagType"; + import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagType } from "../../../structures/TypeTagType"; -export const test_llm_schema_chatgpt_TypeTagType = - _test_llm_schema({ - model: "chatgpt", - name: "TypeTagType", - })(typia.llm.schema()); \ No newline at end of file +export const test_llm_schema_chatgpt_TypeTagType = _test_llm_schema({ + model: "chatgpt", + name: "TypeTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_UltimateUnion.ts b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_UltimateUnion.ts new file mode 100644 index 0000000000..5ee54c6954 --- /dev/null +++ b/test/src/features/llm.schema/chatgpt/test_llm_schema_chatgpt_UltimateUnion.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { UltimateUnion } from "../../../structures/UltimateUnion"; + +export const test_llm_schema_chatgpt_UltimateUnion = _test_llm_schema({ + model: "chatgpt", + name: "UltimateUnion", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayAny.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayAny.ts new file mode 100644 index 0000000000..71bfb381bf --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayAny.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayAny } from "../../../structures/ArrayAny"; + +export const test_llm_schema_gemini_ArrayAny = _test_llm_schema({ + model: "gemini", + name: "ArrayAny", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchical.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchical.ts new file mode 100644 index 0000000000..7c6ee8d8c4 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchical.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchical } from "../../../structures/ArrayHierarchical"; + +export const test_llm_schema_gemini_ArrayHierarchical = _test_llm_schema({ + model: "gemini", + name: "ArrayHierarchical", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchicalPointer.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchicalPointer.ts new file mode 100644 index 0000000000..69ed8a6988 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayHierarchicalPointer.ts @@ -0,0 +1,11 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayHierarchicalPointer } from "../../../structures/ArrayHierarchicalPointer"; + +export const test_llm_schema_gemini_ArrayHierarchicalPointer = _test_llm_schema( + { + model: "gemini", + name: "ArrayHierarchicalPointer", + }, +)(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayMatrix.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayMatrix.ts new file mode 100644 index 0000000000..490192eb55 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArrayMatrix.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArrayMatrix } from "../../../structures/ArrayMatrix"; + +export const test_llm_schema_gemini_ArrayMatrix = _test_llm_schema({ + model: "gemini", + name: "ArrayMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArraySimple.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArraySimple.ts new file mode 100644 index 0000000000..252983b3d8 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ArraySimple.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ArraySimple } from "../../../structures/ArraySimple"; + +export const test_llm_schema_gemini_ArraySimple = _test_llm_schema({ + model: "gemini", + name: "ArraySimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassGetter.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassGetter.ts new file mode 100644 index 0000000000..4dac7d7255 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassGetter.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassGetter } from "../../../structures/ClassGetter"; + +export const test_llm_schema_gemini_ClassGetter = _test_llm_schema({ + model: "gemini", + name: "ClassGetter", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassMethod.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassMethod.ts new file mode 100644 index 0000000000..2b2cf95b72 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassMethod.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassMethod } from "../../../structures/ClassMethod"; + +export const test_llm_schema_gemini_ClassMethod = _test_llm_schema({ + model: "gemini", + name: "ClassMethod", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassPropertyAssignment.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassPropertyAssignment.ts new file mode 100644 index 0000000000..d48c50db70 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ClassPropertyAssignment.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ClassPropertyAssignment } from "../../../structures/ClassPropertyAssignment"; + +export const test_llm_schema_gemini_ClassPropertyAssignment = _test_llm_schema({ + model: "gemini", + name: "ClassPropertyAssignment", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagArray.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagArray.ts new file mode 100644 index 0000000000..4eb4506299 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagArray.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagArray } from "../../../structures/CommentTagArray"; + +export const test_llm_schema_gemini_CommentTagArray = _test_llm_schema({ + model: "gemini", + name: "CommentTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagFormat.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagFormat.ts new file mode 100644 index 0000000000..b182684a10 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagFormat.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagFormat } from "../../../structures/CommentTagFormat"; + +export const test_llm_schema_gemini_CommentTagFormat = _test_llm_schema({ + model: "gemini", + name: "CommentTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagLength.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagLength.ts new file mode 100644 index 0000000000..7c2e5fbdda --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagLength.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagLength } from "../../../structures/CommentTagLength"; + +export const test_llm_schema_gemini_CommentTagLength = _test_llm_schema({ + model: "gemini", + name: "CommentTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagPattern.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagPattern.ts new file mode 100644 index 0000000000..cddb78c150 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagPattern.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagPattern } from "../../../structures/CommentTagPattern"; + +export const test_llm_schema_gemini_CommentTagPattern = _test_llm_schema({ + model: "gemini", + name: "CommentTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagRange.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagRange.ts new file mode 100644 index 0000000000..1dd65d8ada --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagRange.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagRange } from "../../../structures/CommentTagRange"; + +export const test_llm_schema_gemini_CommentTagRange = _test_llm_schema({ + model: "gemini", + name: "CommentTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagType.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagType.ts new file mode 100644 index 0000000000..4a372315b1 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_CommentTagType.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { CommentTagType } from "../../../structures/CommentTagType"; + +export const test_llm_schema_gemini_CommentTagType = _test_llm_schema({ + model: "gemini", + name: "CommentTagType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ConstantAtomicAbsorbed.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ConstantAtomicAbsorbed.ts new file mode 100644 index 0000000000..1083148841 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ConstantAtomicAbsorbed.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ConstantAtomicAbsorbed } from "../../../structures/ConstantAtomicAbsorbed"; + +export const test_llm_schema_gemini_ConstantAtomicAbsorbed = _test_llm_schema({ + model: "gemini", + name: "ConstantAtomicAbsorbed", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicArray.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicArray.ts new file mode 100644 index 0000000000..376819dd75 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicArray.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicArray } from "../../../structures/DynamicArray"; + +export const test_llm_schema_gemini_DynamicArray = _test_llm_schema({ + model: "gemini", + name: "DynamicArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicConstant.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicConstant.ts new file mode 100644 index 0000000000..01bcee7dfb --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicConstant.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicConstant } from "../../../structures/DynamicConstant"; + +export const test_llm_schema_gemini_DynamicConstant = _test_llm_schema({ + model: "gemini", + name: "DynamicConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicEnumeration.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicEnumeration.ts new file mode 100644 index 0000000000..10748dfe91 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicEnumeration.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicEnumeration } from "../../../structures/DynamicEnumeration"; + +export const test_llm_schema_gemini_DynamicEnumeration = _test_llm_schema({ + model: "gemini", + name: "DynamicEnumeration", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicNever.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicNever.ts new file mode 100644 index 0000000000..0915199966 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicNever.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicNever } from "../../../structures/DynamicNever"; + +export const test_llm_schema_gemini_DynamicNever = _test_llm_schema({ + model: "gemini", + name: "DynamicNever", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicSimple.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicSimple.ts new file mode 100644 index 0000000000..d3cda8e279 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicSimple.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicSimple } from "../../../structures/DynamicSimple"; + +export const test_llm_schema_gemini_DynamicSimple = _test_llm_schema({ + model: "gemini", + name: "DynamicSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicUndefined.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicUndefined.ts new file mode 100644 index 0000000000..1a36956a12 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_DynamicUndefined.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { DynamicUndefined } from "../../../structures/DynamicUndefined"; + +export const test_llm_schema_gemini_DynamicUndefined = _test_llm_schema({ + model: "gemini", + name: "DynamicUndefined", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDate.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDate.ts new file mode 100644 index 0000000000..8173586495 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDate.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDate } from "../../../structures/ObjectDate"; + +export const test_llm_schema_gemini_ObjectDate = _test_llm_schema({ + model: "gemini", + name: "ObjectDate", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDescription.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDescription.ts new file mode 100644 index 0000000000..91ed6a0cfc --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectDescription.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectDescription } from "../../../structures/ObjectDescription"; + +export const test_llm_schema_gemini_ObjectDescription = _test_llm_schema({ + model: "gemini", + name: "ObjectDescription", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericAlias.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericAlias.ts new file mode 100644 index 0000000000..eb0e6fdd01 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericAlias.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericAlias } from "../../../structures/ObjectGenericAlias"; + +export const test_llm_schema_gemini_ObjectGenericAlias = _test_llm_schema({ + model: "gemini", + name: "ObjectGenericAlias", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericArray.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericArray.ts new file mode 100644 index 0000000000..0d83d3e85a --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectGenericArray.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectGenericArray } from "../../../structures/ObjectGenericArray"; + +export const test_llm_schema_gemini_ObjectGenericArray = _test_llm_schema({ + model: "gemini", + name: "ObjectGenericArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectInternal.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectInternal.ts new file mode 100644 index 0000000000..7b86be72f7 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectInternal.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectInternal } from "../../../structures/ObjectInternal"; + +export const test_llm_schema_gemini_ObjectInternal = _test_llm_schema({ + model: "gemini", + name: "ObjectInternal", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectIntersection.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectIntersection.ts new file mode 100644 index 0000000000..ed255dfb31 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectIntersection.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectIntersection } from "../../../structures/ObjectIntersection"; + +export const test_llm_schema_gemini_ObjectIntersection = _test_llm_schema({ + model: "gemini", + name: "ObjectIntersection", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectJsonTag.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectJsonTag.ts new file mode 100644 index 0000000000..3f3db7994b --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectJsonTag.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectJsonTag } from "../../../structures/ObjectJsonTag"; + +export const test_llm_schema_gemini_ObjectJsonTag = _test_llm_schema({ + model: "gemini", + name: "ObjectJsonTag", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralProperty.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralProperty.ts new file mode 100644 index 0000000000..ac749b6c21 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralProperty.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralProperty } from "../../../structures/ObjectLiteralProperty"; + +export const test_llm_schema_gemini_ObjectLiteralProperty = _test_llm_schema({ + model: "gemini", + name: "ObjectLiteralProperty", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralType.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralType.ts new file mode 100644 index 0000000000..dc978a57a9 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectLiteralType.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectLiteralType } from "../../../structures/ObjectLiteralType"; + +export const test_llm_schema_gemini_ObjectLiteralType = _test_llm_schema({ + model: "gemini", + name: "ObjectLiteralType", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectOptional.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectOptional.ts new file mode 100644 index 0000000000..1020d25ccc --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectOptional.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectOptional } from "../../../structures/ObjectOptional"; + +export const test_llm_schema_gemini_ObjectOptional = _test_llm_schema({ + model: "gemini", + name: "ObjectOptional", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectPrimitive.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectPrimitive.ts new file mode 100644 index 0000000000..75410d046f --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectPrimitive.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectPrimitive } from "../../../structures/ObjectPrimitive"; + +export const test_llm_schema_gemini_ObjectPrimitive = _test_llm_schema({ + model: "gemini", + name: "ObjectPrimitive", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectSimple.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectSimple.ts new file mode 100644 index 0000000000..6782030689 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ObjectSimple.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ObjectSimple } from "../../../structures/ObjectSimple"; + +export const test_llm_schema_gemini_ObjectSimple = _test_llm_schema({ + model: "gemini", + name: "ObjectSimple", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateAtomic.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateAtomic.ts new file mode 100644 index 0000000000..02dc80b10d --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateAtomic.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateAtomic } from "../../../structures/TemplateAtomic"; + +export const test_llm_schema_gemini_TemplateAtomic = _test_llm_schema({ + model: "gemini", + name: "TemplateAtomic", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateConstant.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateConstant.ts new file mode 100644 index 0000000000..d4d1ab104b --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TemplateConstant.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TemplateConstant } from "../../../structures/TemplateConstant"; + +export const test_llm_schema_gemini_TemplateConstant = _test_llm_schema({ + model: "gemini", + name: "TemplateConstant", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonDouble.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonDouble.ts new file mode 100644 index 0000000000..3bec5f40f9 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonDouble.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonDouble } from "../../../structures/ToJsonDouble"; + +export const test_llm_schema_gemini_ToJsonDouble = _test_llm_schema({ + model: "gemini", + name: "ToJsonDouble", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonNull.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonNull.ts new file mode 100644 index 0000000000..0db314dfbb --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_ToJsonNull.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { ToJsonNull } from "../../../structures/ToJsonNull"; + +export const test_llm_schema_gemini_ToJsonNull = _test_llm_schema({ + model: "gemini", + name: "ToJsonNull", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagArray.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagArray.ts new file mode 100644 index 0000000000..ae3a36b5a6 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagArray.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagArray } from "../../../structures/TypeTagArray"; + +export const test_llm_schema_gemini_TypeTagArray = _test_llm_schema({ + model: "gemini", + name: "TypeTagArray", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagCustom.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagCustom.ts new file mode 100644 index 0000000000..9f25dfa8fc --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagCustom.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagCustom } from "../../../structures/TypeTagCustom"; + +export const test_llm_schema_gemini_TypeTagCustom = _test_llm_schema({ + model: "gemini", + name: "TypeTagCustom", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagFormat.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagFormat.ts new file mode 100644 index 0000000000..845d607bb8 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagFormat.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagFormat } from "../../../structures/TypeTagFormat"; + +export const test_llm_schema_gemini_TypeTagFormat = _test_llm_schema({ + model: "gemini", + name: "TypeTagFormat", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagLength.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagLength.ts new file mode 100644 index 0000000000..ce7b286d89 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagLength.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagLength } from "../../../structures/TypeTagLength"; + +export const test_llm_schema_gemini_TypeTagLength = _test_llm_schema({ + model: "gemini", + name: "TypeTagLength", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagMatrix.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagMatrix.ts new file mode 100644 index 0000000000..52627acda5 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagMatrix.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagMatrix } from "../../../structures/TypeTagMatrix"; + +export const test_llm_schema_gemini_TypeTagMatrix = _test_llm_schema({ + model: "gemini", + name: "TypeTagMatrix", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagPattern.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagPattern.ts new file mode 100644 index 0000000000..7f6da35d93 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagPattern.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagPattern } from "../../../structures/TypeTagPattern"; + +export const test_llm_schema_gemini_TypeTagPattern = _test_llm_schema({ + model: "gemini", + name: "TypeTagPattern", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagRange.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagRange.ts new file mode 100644 index 0000000000..1e4a2a5f62 --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagRange.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagRange } from "../../../structures/TypeTagRange"; + +export const test_llm_schema_gemini_TypeTagRange = _test_llm_schema({ + model: "gemini", + name: "TypeTagRange", +})(typia.llm.schema()); diff --git a/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagType.ts b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagType.ts new file mode 100644 index 0000000000..dc9af1674c --- /dev/null +++ b/test/src/features/llm.schema/gemini/test_llm_schema_gemini_TypeTagType.ts @@ -0,0 +1,9 @@ +import typia from "typia"; + +import { _test_llm_schema } from "../../../internal/_test_llm_schema"; +import { TypeTagType } from "../../../structures/TypeTagType"; + +export const test_llm_schema_gemini_TypeTagType = _test_llm_schema({ + model: "gemini", + name: "TypeTagType", +})(typia.llm.schema()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArrayHierarchicalPointer.ts b/test/src/features/protobuf.message/test_protobuf_message_ArrayHierarchicalPointer.ts index a150536c58..f60d07ae17 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArrayHierarchicalPointer.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArrayHierarchicalPointer.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../structures/ArrayHierarchicalPointer"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArrayHierarchicalPointer } from "../../structures/ArrayHierarchicalPointer"; -export const test_protobuf_message_ArrayHierarchicalPointer = _test_protobuf_message( - "ArrayHierarchicalPointer", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ArrayHierarchicalPointer = + _test_protobuf_message("ArrayHierarchicalPointer")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursive.ts b/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursive.ts index 6b6b2528ca..8a3d38deb2 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursive.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursive.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ArrayRecursive } from "../../structures/ArrayRecursive"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArrayRecursive } from "../../structures/ArrayRecursive"; export const test_protobuf_message_ArrayRecursive = _test_protobuf_message( "ArrayRecursive", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursiveUnionExplicitPointer.ts b/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursiveUnionExplicitPointer.ts index 10c256cdb5..9a41679730 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursiveUnionExplicitPointer.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArrayRecursiveUnionExplicitPointer.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicitPointer } from "../../structures/ArrayRecursiveUnionExplicitPointer"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArrayRecursiveUnionExplicitPointer } from "../../structures/ArrayRecursiveUnionExplicitPointer"; -export const test_protobuf_message_ArrayRecursiveUnionExplicitPointer = _test_protobuf_message( - "ArrayRecursiveUnionExplicitPointer", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ArrayRecursiveUnionExplicitPointer = + _test_protobuf_message("ArrayRecursiveUnionExplicitPointer")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobuf.ts b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobuf.ts index d9c9fbb2cb..944ebfbcd9 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobuf.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobuf.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ArraySimpleProtobuf } from "../../structures/ArraySimpleProtobuf"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArraySimpleProtobuf } from "../../structures/ArraySimpleProtobuf"; export const test_protobuf_message_ArraySimpleProtobuf = _test_protobuf_message( "ArraySimpleProtobuf", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufNullable.ts b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufNullable.ts index 441440f5be..6d5db086e7 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufNullable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufNullable.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ArraySimpleProtobufNullable } from "../../structures/ArraySimpleProtobufNullable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArraySimpleProtobufNullable } from "../../structures/ArraySimpleProtobufNullable"; -export const test_protobuf_message_ArraySimpleProtobufNullable = _test_protobuf_message( - "ArraySimpleProtobufNullable", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ArraySimpleProtobufNullable = + _test_protobuf_message("ArraySimpleProtobufNullable")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufOptional.ts b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufOptional.ts index 47a15b0272..e3cfade963 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufOptional.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ArraySimpleProtobufOptional.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ArraySimpleProtobufOptional } from "../../structures/ArraySimpleProtobufOptional"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ArraySimpleProtobufOptional } from "../../structures/ArraySimpleProtobufOptional"; -export const test_protobuf_message_ArraySimpleProtobufOptional = _test_protobuf_message( - "ArraySimpleProtobufOptional", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ArraySimpleProtobufOptional = + _test_protobuf_message("ArraySimpleProtobufOptional")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ClassGetter.ts b/test/src/features/protobuf.message/test_protobuf_message_ClassGetter.ts index 5caf701435..8d520e503a 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ClassGetter.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ClassGetter.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ClassGetter } from "../../structures/ClassGetter"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ClassGetter } from "../../structures/ClassGetter"; export const test_protobuf_message_ClassGetter = _test_protobuf_message( "ClassGetter", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ClassMethod.ts b/test/src/features/protobuf.message/test_protobuf_message_ClassMethod.ts index 20e1a0332f..58e89df9c2 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ClassMethod.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ClassMethod.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ClassMethod } from "../../structures/ClassMethod"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ClassMethod } from "../../structures/ClassMethod"; export const test_protobuf_message_ClassMethod = _test_protobuf_message( "ClassMethod", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ClassNonPublic.ts b/test/src/features/protobuf.message/test_protobuf_message_ClassNonPublic.ts index e622e5d755..dd69c55578 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ClassNonPublic.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ClassNonPublic.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ClassNonPublic } from "../../structures/ClassNonPublic"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ClassNonPublic } from "../../structures/ClassNonPublic"; export const test_protobuf_message_ClassNonPublic = _test_protobuf_message( "ClassNonPublic", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ClassPropertyAssignment.ts b/test/src/features/protobuf.message/test_protobuf_message_ClassPropertyAssignment.ts index 09418992a2..456999b3f1 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ClassPropertyAssignment.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ClassPropertyAssignment.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../structures/ClassPropertyAssignment"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ClassPropertyAssignment } from "../../structures/ClassPropertyAssignment"; -export const test_protobuf_message_ClassPropertyAssignment = _test_protobuf_message( - "ClassPropertyAssignment", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ClassPropertyAssignment = + _test_protobuf_message("ClassPropertyAssignment")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagArray.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagArray.ts index 6f940be7d9..314a64fd7c 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagArray.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagArray.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagArray } from "../../structures/CommentTagArray"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagArray } from "../../structures/CommentTagArray"; export const test_protobuf_message_CommentTagArray = _test_protobuf_message( "CommentTagArray", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagAtomicUnion.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagAtomicUnion.ts index 60d60f6b44..fe1040e782 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagAtomicUnion.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagAtomicUnion.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../structures/CommentTagAtomicUnion"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagAtomicUnion } from "../../structures/CommentTagAtomicUnion"; -export const test_protobuf_message_CommentTagAtomicUnion = _test_protobuf_message( - "CommentTagAtomicUnion", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_CommentTagAtomicUnion = + _test_protobuf_message("CommentTagAtomicUnion")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagBigInt.ts index 1bfcdac32a..5594116be7 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagBigInt.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagBigInt } from "../../structures/CommentTagBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagBigInt } from "../../structures/CommentTagBigInt"; export const test_protobuf_message_CommentTagBigInt = _test_protobuf_message( "CommentTagBigInt", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagDefault.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagDefault.ts index 2558c57280..ed74cf099f 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagDefault.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagDefault.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagDefault } from "../../structures/CommentTagDefault"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagDefault } from "../../structures/CommentTagDefault"; export const test_protobuf_message_CommentTagDefault = _test_protobuf_message( "CommentTagDefault", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagFormat.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagFormat.ts index 604206ceb7..b5d347e111 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagFormat.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagFormat.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagFormat } from "../../structures/CommentTagFormat"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagFormat } from "../../structures/CommentTagFormat"; export const test_protobuf_message_CommentTagFormat = _test_protobuf_message( "CommentTagFormat", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagInfinite.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagInfinite.ts index 1fa1ca7fc1..22acd76b23 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagInfinite.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagInfinite.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagInfinite } from "../../structures/CommentTagInfinite"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagInfinite } from "../../structures/CommentTagInfinite"; export const test_protobuf_message_CommentTagInfinite = _test_protobuf_message( "CommentTagInfinite", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagLength.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagLength.ts index 40e4029838..367b480ed1 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagLength.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagLength.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagLength } from "../../structures/CommentTagLength"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagLength } from "../../structures/CommentTagLength"; export const test_protobuf_message_CommentTagLength = _test_protobuf_message( "CommentTagLength", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagNaN.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagNaN.ts index ab03fee33e..3975d433b9 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagNaN.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagNaN.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagNaN } from "../../structures/CommentTagNaN"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagNaN } from "../../structures/CommentTagNaN"; export const test_protobuf_message_CommentTagNaN = _test_protobuf_message( "CommentTagNaN", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagPattern.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagPattern.ts index 96258e014b..ff811362f6 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagPattern.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagPattern.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagPattern } from "../../structures/CommentTagPattern"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagPattern } from "../../structures/CommentTagPattern"; export const test_protobuf_message_CommentTagPattern = _test_protobuf_message( "CommentTagPattern", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagRange.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagRange.ts index 18816bf33d..054d44adab 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagRange.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagRange.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagRange } from "../../structures/CommentTagRange"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagRange } from "../../structures/CommentTagRange"; export const test_protobuf_message_CommentTagRange = _test_protobuf_message( "CommentTagRange", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagRangeBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagRangeBigInt.ts index da9d27e316..abe5fce3b8 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagRangeBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagRangeBigInt.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { CommentTagRangeBigInt } from "../../structures/CommentTagRangeBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagRangeBigInt } from "../../structures/CommentTagRangeBigInt"; -export const test_protobuf_message_CommentTagRangeBigInt = _test_protobuf_message( - "CommentTagRangeBigInt", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_CommentTagRangeBigInt = + _test_protobuf_message("CommentTagRangeBigInt")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagType.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagType.ts index d456003809..4554893237 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagType.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagType.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { CommentTagType } from "../../structures/CommentTagType"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagType } from "../../structures/CommentTagType"; export const test_protobuf_message_CommentTagType = _test_protobuf_message( "CommentTagType", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_CommentTagTypeBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_CommentTagTypeBigInt.ts index 47683b16df..3771bc424f 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_CommentTagTypeBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_CommentTagTypeBigInt.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { CommentTagTypeBigInt } from "../../structures/CommentTagTypeBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { CommentTagTypeBigInt } from "../../structures/CommentTagTypeBigInt"; -export const test_protobuf_message_CommentTagTypeBigInt = _test_protobuf_message( - "CommentTagTypeBigInt", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_CommentTagTypeBigInt = + _test_protobuf_message("CommentTagTypeBigInt")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicAbsorbed.ts b/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicAbsorbed.ts index 6335bb378e..b85db0fbde 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicAbsorbed.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicAbsorbed.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../structures/ConstantAtomicAbsorbed"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ConstantAtomicAbsorbed } from "../../structures/ConstantAtomicAbsorbed"; -export const test_protobuf_message_ConstantAtomicAbsorbed = _test_protobuf_message( - "ConstantAtomicAbsorbed", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ConstantAtomicAbsorbed = + _test_protobuf_message("ConstantAtomicAbsorbed")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicTagged.ts b/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicTagged.ts index 77e98f49c0..26861e636a 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicTagged.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ConstantAtomicTagged.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../structures/ConstantAtomicTagged"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ConstantAtomicTagged } from "../../structures/ConstantAtomicTagged"; -export const test_protobuf_message_ConstantAtomicTagged = _test_protobuf_message( - "ConstantAtomicTagged", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ConstantAtomicTagged = + _test_protobuf_message("ConstantAtomicTagged")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_DynamicConstant.ts b/test/src/features/protobuf.message/test_protobuf_message_DynamicConstant.ts index 8ed93d045e..3f58212368 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_DynamicConstant.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_DynamicConstant.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { DynamicConstant } from "../../structures/DynamicConstant"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { DynamicConstant } from "../../structures/DynamicConstant"; export const test_protobuf_message_DynamicConstant = _test_protobuf_message( "DynamicConstant", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_DynamicSimple.ts b/test/src/features/protobuf.message/test_protobuf_message_DynamicSimple.ts index ce2b64ac3b..91a52ad5df 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_DynamicSimple.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_DynamicSimple.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { DynamicSimple } from "../../structures/DynamicSimple"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { DynamicSimple } from "../../structures/DynamicSimple"; export const test_protobuf_message_DynamicSimple = _test_protobuf_message( "DynamicSimple", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_DynamicTree.ts b/test/src/features/protobuf.message/test_protobuf_message_DynamicTree.ts index e8960b73d8..57caac75eb 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_DynamicTree.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_DynamicTree.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { DynamicTree } from "../../structures/DynamicTree"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { DynamicTree } from "../../structures/DynamicTree"; export const test_protobuf_message_DynamicTree = _test_protobuf_message( "DynamicTree", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobuf.ts b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobuf.ts index 6112dae163..d8b4c4c1f0 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobuf.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobuf.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { MapSimpleProtobuf } from "../../structures/MapSimpleProtobuf"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { MapSimpleProtobuf } from "../../structures/MapSimpleProtobuf"; export const test_protobuf_message_MapSimpleProtobuf = _test_protobuf_message( "MapSimpleProtobuf", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufNullable.ts b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufNullable.ts index 1933da8212..c06531ed02 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufNullable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufNullable.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { MapSimpleProtobufNullable } from "../../structures/MapSimpleProtobufNullable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { MapSimpleProtobufNullable } from "../../structures/MapSimpleProtobufNullable"; -export const test_protobuf_message_MapSimpleProtobufNullable = _test_protobuf_message( - "MapSimpleProtobufNullable", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_MapSimpleProtobufNullable = + _test_protobuf_message("MapSimpleProtobufNullable")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufOptional.ts b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufOptional.ts index 89641911f7..7ce1b367ea 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufOptional.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_MapSimpleProtobufOptional.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { MapSimpleProtobufOptional } from "../../structures/MapSimpleProtobufOptional"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { MapSimpleProtobufOptional } from "../../structures/MapSimpleProtobufOptional"; -export const test_protobuf_message_MapSimpleProtobufOptional = _test_protobuf_message( - "MapSimpleProtobufOptional", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_MapSimpleProtobufOptional = + _test_protobuf_message("MapSimpleProtobufOptional")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectDescription.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectDescription.ts index 55ca76f385..de24ca0776 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectDescription.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectDescription.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectDescription } from "../../structures/ObjectDescription"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectDescription } from "../../structures/ObjectDescription"; export const test_protobuf_message_ObjectDescription = _test_protobuf_message( "ObjectDescription", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericAlias.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericAlias.ts index c74fa22550..15bd894edc 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericAlias.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericAlias.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../structures/ObjectGenericAlias"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectGenericAlias } from "../../structures/ObjectGenericAlias"; export const test_protobuf_message_ObjectGenericAlias = _test_protobuf_message( "ObjectGenericAlias", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericArray.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericArray.ts index 98f270b31b..925aad648b 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericArray.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericArray.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../structures/ObjectGenericArray"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectGenericArray } from "../../structures/ObjectGenericArray"; export const test_protobuf_message_ObjectGenericArray = _test_protobuf_message( "ObjectGenericArray", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericUnion.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericUnion.ts index 0354d14000..3344447a0f 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericUnion.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectGenericUnion.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../structures/ObjectGenericUnion"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectGenericUnion } from "../../structures/ObjectGenericUnion"; export const test_protobuf_message_ObjectGenericUnion = _test_protobuf_message( "ObjectGenericUnion", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpArray.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpArray.ts index 7d339df40e..8e9b26ead8 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpArray.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpArray.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectHttpArray } from "../../structures/ObjectHttpArray"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpArray } from "../../structures/ObjectHttpArray"; export const test_protobuf_message_ObjectHttpArray = _test_protobuf_message( "ObjectHttpArray", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpAtomic.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpAtomic.ts index f97988634f..4bf34c45c1 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpAtomic.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpAtomic.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectHttpAtomic } from "../../structures/ObjectHttpAtomic"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpAtomic } from "../../structures/ObjectHttpAtomic"; export const test_protobuf_message_ObjectHttpAtomic = _test_protobuf_message( "ObjectHttpAtomic", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpCommentTag.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpCommentTag.ts index d8ad66434d..81100edd25 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpCommentTag.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpCommentTag.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectHttpCommentTag } from "../../structures/ObjectHttpCommentTag"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpCommentTag } from "../../structures/ObjectHttpCommentTag"; -export const test_protobuf_message_ObjectHttpCommentTag = _test_protobuf_message( - "ObjectHttpCommentTag", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectHttpCommentTag = + _test_protobuf_message("ObjectHttpCommentTag")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpConstant.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpConstant.ts index 09aff06623..4f1dbb3080 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpConstant.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpConstant.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectHttpConstant } from "../../structures/ObjectHttpConstant"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpConstant } from "../../structures/ObjectHttpConstant"; export const test_protobuf_message_ObjectHttpConstant = _test_protobuf_message( "ObjectHttpConstant", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpNullable.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpNullable.ts index e0943a2a87..679574551a 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpNullable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpNullable.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectHttpNullable } from "../../structures/ObjectHttpNullable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpNullable } from "../../structures/ObjectHttpNullable"; export const test_protobuf_message_ObjectHttpNullable = _test_protobuf_message( "ObjectHttpNullable", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpTypeTag.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpTypeTag.ts index 62dc0994f1..3ac3f84dde 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpTypeTag.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpTypeTag.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectHttpTypeTag } from "../../structures/ObjectHttpTypeTag"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpTypeTag } from "../../structures/ObjectHttpTypeTag"; export const test_protobuf_message_ObjectHttpTypeTag = _test_protobuf_message( "ObjectHttpTypeTag", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpUndefindable.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpUndefindable.ts index b0e8b4571a..1d7118a8e9 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpUndefindable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectHttpUndefindable.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectHttpUndefindable } from "../../structures/ObjectHttpUndefindable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectHttpUndefindable } from "../../structures/ObjectHttpUndefindable"; -export const test_protobuf_message_ObjectHttpUndefindable = _test_protobuf_message( - "ObjectHttpUndefindable", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectHttpUndefindable = + _test_protobuf_message("ObjectHttpUndefindable")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectInternal.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectInternal.ts index 24d779818f..34e6e75e01 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectInternal.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectInternal.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectInternal } from "../../structures/ObjectInternal"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectInternal } from "../../structures/ObjectInternal"; export const test_protobuf_message_ObjectInternal = _test_protobuf_message( "ObjectInternal", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectIntersection.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectIntersection.ts index 636827ebc9..377d5ba19a 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectIntersection.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectIntersection.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectIntersection } from "../../structures/ObjectIntersection"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectIntersection } from "../../structures/ObjectIntersection"; export const test_protobuf_message_ObjectIntersection = _test_protobuf_message( "ObjectIntersection", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectJsonTag.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectJsonTag.ts index a731b340fc..6b654be09e 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectJsonTag.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectJsonTag.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../structures/ObjectJsonTag"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectJsonTag } from "../../structures/ObjectJsonTag"; export const test_protobuf_message_ObjectJsonTag = _test_protobuf_message( "ObjectJsonTag", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectLiteralType.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectLiteralType.ts index 0d0b2beb30..1c5cb5e745 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectLiteralType.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectLiteralType.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../structures/ObjectLiteralType"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectLiteralType } from "../../structures/ObjectLiteralType"; export const test_protobuf_message_ObjectLiteralType = _test_protobuf_message( "ObjectLiteralType", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectNullable.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectNullable.ts index 389420c6ee..5c27f5ded1 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectNullable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectNullable.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectNullable } from "../../structures/ObjectNullable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectNullable } from "../../structures/ObjectNullable"; export const test_protobuf_message_ObjectNullable = _test_protobuf_message( "ObjectNullable", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectOptional.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectOptional.ts index 8c481766ea..606fc5c370 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectOptional.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectOptional.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectOptional } from "../../structures/ObjectOptional"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectOptional } from "../../structures/ObjectOptional"; export const test_protobuf_message_ObjectOptional = _test_protobuf_message( "ObjectOptional", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectPartial.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectPartial.ts index b742d58612..183c6773bf 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectPartial.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectPartial.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectPartial } from "../../structures/ObjectPartial"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectPartial } from "../../structures/ObjectPartial"; export const test_protobuf_message_ObjectPartial = _test_protobuf_message( "ObjectPartial", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectPartialAndRequired.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectPartialAndRequired.ts index f464b1a1a7..9a1a71ee6c 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectPartialAndRequired.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectPartialAndRequired.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectPartialAndRequired } from "../../structures/ObjectPartialAndRequired"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectPartialAndRequired } from "../../structures/ObjectPartialAndRequired"; -export const test_protobuf_message_ObjectPartialAndRequired = _test_protobuf_message( - "ObjectPartialAndRequired", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectPartialAndRequired = + _test_protobuf_message("ObjectPartialAndRequired")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectPrimitive.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectPrimitive.ts index 0210438bb0..9db40cf14f 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectPrimitive.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectPrimitive.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../structures/ObjectPrimitive"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectPrimitive } from "../../structures/ObjectPrimitive"; export const test_protobuf_message_ObjectPrimitive = _test_protobuf_message( "ObjectPrimitive", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectRequired.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectRequired.ts index 31c4771fbc..8293670da4 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectRequired.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectRequired.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectRequired } from "../../structures/ObjectRequired"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectRequired } from "../../structures/ObjectRequired"; export const test_protobuf_message_ObjectRequired = _test_protobuf_message( "ObjectRequired", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectSequenceProtobuf.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectSequenceProtobuf.ts index d76ff37cb7..a7dc620cf2 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectSequenceProtobuf.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectSequenceProtobuf.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectSequenceProtobuf } from "../../structures/ObjectSequenceProtobuf"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectSequenceProtobuf } from "../../structures/ObjectSequenceProtobuf"; -export const test_protobuf_message_ObjectSequenceProtobuf = _test_protobuf_message( - "ObjectSequenceProtobuf", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectSequenceProtobuf = + _test_protobuf_message("ObjectSequenceProtobuf")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimple.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimple.ts index 6cc7e3207f..1d7c8254dd 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimple.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimple.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { ObjectSimple } from "../../structures/ObjectSimple"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectSimple } from "../../structures/ObjectSimple"; export const test_protobuf_message_ObjectSimple = _test_protobuf_message( "ObjectSimple", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobuf.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobuf.ts index b81e242ef0..30f45d2e2d 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobuf.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobuf.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobuf } from "../../structures/ObjectSimpleProtobuf"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectSimpleProtobuf } from "../../structures/ObjectSimpleProtobuf"; -export const test_protobuf_message_ObjectSimpleProtobuf = _test_protobuf_message( - "ObjectSimpleProtobuf", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectSimpleProtobuf = + _test_protobuf_message("ObjectSimpleProtobuf")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufNullable.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufNullable.ts index be196a4196..397439d116 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufNullable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufNullable.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobufNullable } from "../../structures/ObjectSimpleProtobufNullable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectSimpleProtobufNullable } from "../../structures/ObjectSimpleProtobufNullable"; -export const test_protobuf_message_ObjectSimpleProtobufNullable = _test_protobuf_message( - "ObjectSimpleProtobufNullable", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectSimpleProtobufNullable = + _test_protobuf_message("ObjectSimpleProtobufNullable")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufOptional.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufOptional.ts index c121c45dc7..70745a521f 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufOptional.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectSimpleProtobufOptional.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobufOptional } from "../../structures/ObjectSimpleProtobufOptional"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectSimpleProtobufOptional } from "../../structures/ObjectSimpleProtobufOptional"; -export const test_protobuf_message_ObjectSimpleProtobufOptional = _test_protobuf_message( - "ObjectSimpleProtobufOptional", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectSimpleProtobufOptional = + _test_protobuf_message("ObjectSimpleProtobufOptional")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionCompositePointer.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionCompositePointer.ts index 17141cb51d..07c445140d 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionCompositePointer.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionCompositePointer.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../structures/ObjectUnionCompositePointer"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectUnionCompositePointer } from "../../structures/ObjectUnionCompositePointer"; -export const test_protobuf_message_ObjectUnionCompositePointer = _test_protobuf_message( - "ObjectUnionCompositePointer", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectUnionCompositePointer = + _test_protobuf_message("ObjectUnionCompositePointer")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionExplicitPointer.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionExplicitPointer.ts index 564420da71..19fa8ba081 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionExplicitPointer.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionExplicitPointer.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../structures/ObjectUnionExplicitPointer"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectUnionExplicitPointer } from "../../structures/ObjectUnionExplicitPointer"; -export const test_protobuf_message_ObjectUnionExplicitPointer = _test_protobuf_message( - "ObjectUnionExplicitPointer", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectUnionExplicitPointer = + _test_protobuf_message("ObjectUnionExplicitPointer")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionNonPredictable.ts b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionNonPredictable.ts index c70d0eff8b..582af37ce3 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionNonPredictable.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_ObjectUnionNonPredictable.ts @@ -1,7 +1,9 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../structures/ObjectUnionNonPredictable"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { ObjectUnionNonPredictable } from "../../structures/ObjectUnionNonPredictable"; -export const test_protobuf_message_ObjectUnionNonPredictable = _test_protobuf_message( - "ObjectUnionNonPredictable", -)(typia.protobuf.message()); \ No newline at end of file +export const test_protobuf_message_ObjectUnionNonPredictable = + _test_protobuf_message("ObjectUnionNonPredictable")( + typia.protobuf.message(), + ); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TemplateAtomic.ts b/test/src/features/protobuf.message/test_protobuf_message_TemplateAtomic.ts index ea288aeb2a..94ac787a63 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TemplateAtomic.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TemplateAtomic.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TemplateAtomic } from "../../structures/TemplateAtomic"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TemplateAtomic } from "../../structures/TemplateAtomic"; export const test_protobuf_message_TemplateAtomic = _test_protobuf_message( "TemplateAtomic", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TemplateConstant.ts b/test/src/features/protobuf.message/test_protobuf_message_TemplateConstant.ts index 1b36be3b48..36e80f6238 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TemplateConstant.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TemplateConstant.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TemplateConstant } from "../../structures/TemplateConstant"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TemplateConstant } from "../../structures/TemplateConstant"; export const test_protobuf_message_TemplateConstant = _test_protobuf_message( "TemplateConstant", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TemplateUnion.ts b/test/src/features/protobuf.message/test_protobuf_message_TemplateUnion.ts index ffde1b6234..35923444a5 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TemplateUnion.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TemplateUnion.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TemplateUnion } from "../../structures/TemplateUnion"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TemplateUnion } from "../../structures/TemplateUnion"; export const test_protobuf_message_TemplateUnion = _test_protobuf_message( "TemplateUnion", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagArray.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagArray.ts index b887f65b55..dbcdcdeb19 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagArray.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagArray.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagArray } from "../../structures/TypeTagArray"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagArray } from "../../structures/TypeTagArray"; export const test_protobuf_message_TypeTagArray = _test_protobuf_message( "TypeTagArray", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagAtomicUnion.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagAtomicUnion.ts index 897bd75739..433f1fbd79 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagAtomicUnion.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagAtomicUnion.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../structures/TypeTagAtomicUnion"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagAtomicUnion } from "../../structures/TypeTagAtomicUnion"; export const test_protobuf_message_TypeTagAtomicUnion = _test_protobuf_message( "TypeTagAtomicUnion", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagBigInt.ts index 7e0f26dc62..50485d27ae 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagBigInt.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagBigInt } from "../../structures/TypeTagBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagBigInt } from "../../structures/TypeTagBigInt"; export const test_protobuf_message_TypeTagBigInt = _test_protobuf_message( "TypeTagBigInt", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagCustom.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagCustom.ts index 4f0a2ed673..981c2aee55 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagCustom.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagCustom.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagCustom } from "../../structures/TypeTagCustom"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagCustom } from "../../structures/TypeTagCustom"; export const test_protobuf_message_TypeTagCustom = _test_protobuf_message( "TypeTagCustom", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagDefault.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagDefault.ts index 81a7fac327..29c7d3b79e 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagDefault.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagDefault.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagDefault } from "../../structures/TypeTagDefault"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagDefault } from "../../structures/TypeTagDefault"; export const test_protobuf_message_TypeTagDefault = _test_protobuf_message( "TypeTagDefault", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagFormat.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagFormat.ts index 6f2d21dd74..123498af83 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagFormat.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagFormat.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagFormat } from "../../structures/TypeTagFormat"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagFormat } from "../../structures/TypeTagFormat"; export const test_protobuf_message_TypeTagFormat = _test_protobuf_message( "TypeTagFormat", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagInfinite.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagInfinite.ts index 52c3844f7b..86de434a38 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagInfinite.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagInfinite.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagInfinite } from "../../structures/TypeTagInfinite"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagInfinite } from "../../structures/TypeTagInfinite"; export const test_protobuf_message_TypeTagInfinite = _test_protobuf_message( "TypeTagInfinite", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagLength.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagLength.ts index 2f76f4e698..8178290b05 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagLength.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagLength.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagLength } from "../../structures/TypeTagLength"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagLength } from "../../structures/TypeTagLength"; export const test_protobuf_message_TypeTagLength = _test_protobuf_message( "TypeTagLength", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagNaN.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagNaN.ts index 2dd0df05f5..f4f5202c62 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagNaN.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagNaN.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagNaN } from "../../structures/TypeTagNaN"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagNaN } from "../../structures/TypeTagNaN"; export const test_protobuf_message_TypeTagNaN = _test_protobuf_message( "TypeTagNaN", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagPattern.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagPattern.ts index 2718a7f833..c35073c239 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagPattern.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagPattern.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagPattern } from "../../structures/TypeTagPattern"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagPattern } from "../../structures/TypeTagPattern"; export const test_protobuf_message_TypeTagPattern = _test_protobuf_message( "TypeTagPattern", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagRange.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagRange.ts index 4dc614124b..377022dadc 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagRange.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagRange.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagRange } from "../../structures/TypeTagRange"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagRange } from "../../structures/TypeTagRange"; export const test_protobuf_message_TypeTagRange = _test_protobuf_message( "TypeTagRange", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagRangeBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagRangeBigInt.ts index 4d3c3f7be1..a0fc21633b 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagRangeBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagRangeBigInt.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagRangeBigInt } from "../../structures/TypeTagRangeBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagRangeBigInt } from "../../structures/TypeTagRangeBigInt"; export const test_protobuf_message_TypeTagRangeBigInt = _test_protobuf_message( "TypeTagRangeBigInt", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagType.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagType.ts index 8487370205..6d4c9c546a 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagType.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagType.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagType } from "../../structures/TypeTagType"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagType } from "../../structures/TypeTagType"; export const test_protobuf_message_TypeTagType = _test_protobuf_message( "TypeTagType", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeBigInt.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeBigInt.ts index d9a95082f0..bbd13b87b7 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeBigInt.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeBigInt.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagTypeBigInt } from "../../structures/TypeTagTypeBigInt"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagTypeBigInt } from "../../structures/TypeTagTypeBigInt"; export const test_protobuf_message_TypeTagTypeBigInt = _test_protobuf_message( "TypeTagTypeBigInt", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeUnion.ts b/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeUnion.ts index b87bc98287..c6c1d585f1 100644 --- a/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeUnion.ts +++ b/test/src/features/protobuf.message/test_protobuf_message_TypeTagTypeUnion.ts @@ -1,7 +1,8 @@ import typia from "typia"; -import { TypeTagTypeUnion } from "../../structures/TypeTagTypeUnion"; + import { _test_protobuf_message } from "../../internal/_test_protobuf_message"; +import { TypeTagTypeUnion } from "../../structures/TypeTagTypeUnion"; export const test_protobuf_message_TypeTagTypeUnion = _test_protobuf_message( "TypeTagTypeUnion", -)(typia.protobuf.message()); \ No newline at end of file +)(typia.protobuf.message()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAny.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAny.ts index 824182235f..e1eafcc112 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAny.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAny.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayAny } from "../../structures/ArrayAny"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayAny } from "../../structures/ArrayAny"; -export const test_reflect_metadata_ArrayAny = - _test_reflect_metadata("ArrayAny")( - typia.reflect.metadata<[ArrayAny]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayAny = _test_reflect_metadata( + "ArrayAny", +)(typia.reflect.metadata<[ArrayAny]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicAlias.ts index ac4600187d..1d73608f4a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayAtomicAlias } from "../../structures/ArrayAtomicAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayAtomicAlias } from "../../structures/ArrayAtomicAlias"; -export const test_reflect_metadata_ArrayAtomicAlias = - _test_reflect_metadata("ArrayAtomicAlias")( - typia.reflect.metadata<[ArrayAtomicAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayAtomicAlias = _test_reflect_metadata( + "ArrayAtomicAlias", +)(typia.reflect.metadata<[ArrayAtomicAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicSimple.ts index 712bec2619..cac87e8bcb 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayAtomicSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayAtomicSimple } from "../../structures/ArrayAtomicSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayAtomicSimple } from "../../structures/ArrayAtomicSimple"; -export const test_reflect_metadata_ArrayAtomicSimple = - _test_reflect_metadata("ArrayAtomicSimple")( - typia.reflect.metadata<[ArrayAtomicSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayAtomicSimple = _test_reflect_metadata( + "ArrayAtomicSimple", +)(typia.reflect.metadata<[ArrayAtomicSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchical.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchical.ts index 1afc09369c..1b60cb3379 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchical.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchical.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayHierarchical } from "../../structures/ArrayHierarchical"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayHierarchical } from "../../structures/ArrayHierarchical"; -export const test_reflect_metadata_ArrayHierarchical = - _test_reflect_metadata("ArrayHierarchical")( - typia.reflect.metadata<[ArrayHierarchical]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayHierarchical = _test_reflect_metadata( + "ArrayHierarchical", +)(typia.reflect.metadata<[ArrayHierarchical]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchicalPointer.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchicalPointer.ts index 382ff2e382..46976d7843 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchicalPointer.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayHierarchicalPointer.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayHierarchicalPointer } from "../../structures/ArrayHierarchicalPointer"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayHierarchicalPointer } from "../../structures/ArrayHierarchicalPointer"; -export const test_reflect_metadata_ArrayHierarchicalPointer = +export const test_reflect_metadata_ArrayHierarchicalPointer = _test_reflect_metadata("ArrayHierarchicalPointer")( - typia.reflect.metadata<[ArrayHierarchicalPointer]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayHierarchicalPointer]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayMatrix.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayMatrix.ts index 8504cfce7a..43d102c926 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayMatrix.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayMatrix.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayMatrix } from "../../structures/ArrayMatrix"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayMatrix } from "../../structures/ArrayMatrix"; -export const test_reflect_metadata_ArrayMatrix = - _test_reflect_metadata("ArrayMatrix")( - typia.reflect.metadata<[ArrayMatrix]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayMatrix = _test_reflect_metadata( + "ArrayMatrix", +)(typia.reflect.metadata<[ArrayMatrix]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursive.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursive.ts index 19e2e25afa..204effd455 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursive.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursive.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayRecursive } from "../../structures/ArrayRecursive"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRecursive } from "../../structures/ArrayRecursive"; -export const test_reflect_metadata_ArrayRecursive = - _test_reflect_metadata("ArrayRecursive")( - typia.reflect.metadata<[ArrayRecursive]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayRecursive = _test_reflect_metadata( + "ArrayRecursive", +)(typia.reflect.metadata<[ArrayRecursive]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicit.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicit.ts index 1ff2315fb7..46657b3716 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicit.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicit.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicit } from "../../structures/ArrayRecursiveUnionExplicit"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRecursiveUnionExplicit } from "../../structures/ArrayRecursiveUnionExplicit"; -export const test_reflect_metadata_ArrayRecursiveUnionExplicit = +export const test_reflect_metadata_ArrayRecursiveUnionExplicit = _test_reflect_metadata("ArrayRecursiveUnionExplicit")( - typia.reflect.metadata<[ArrayRecursiveUnionExplicit]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRecursiveUnionExplicit]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicitPointer.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicitPointer.ts index 570bc41f03..532ecd337b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicitPointer.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionExplicitPointer.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRecursiveUnionExplicitPointer } from "../../structures/ArrayRecursiveUnionExplicitPointer"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRecursiveUnionExplicitPointer } from "../../structures/ArrayRecursiveUnionExplicitPointer"; -export const test_reflect_metadata_ArrayRecursiveUnionExplicitPointer = +export const test_reflect_metadata_ArrayRecursiveUnionExplicitPointer = _test_reflect_metadata("ArrayRecursiveUnionExplicitPointer")( - typia.reflect.metadata<[ArrayRecursiveUnionExplicitPointer]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRecursiveUnionExplicitPointer]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionImplicit.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionImplicit.ts index fab09b5602..610bc19bfc 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionImplicit.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRecursiveUnionImplicit.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRecursiveUnionImplicit } from "../../structures/ArrayRecursiveUnionImplicit"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRecursiveUnionImplicit } from "../../structures/ArrayRecursiveUnionImplicit"; -export const test_reflect_metadata_ArrayRecursiveUnionImplicit = +export const test_reflect_metadata_ArrayRecursiveUnionImplicit = _test_reflect_metadata("ArrayRecursiveUnionImplicit")( - typia.reflect.metadata<[ArrayRecursiveUnionImplicit]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRecursiveUnionImplicit]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedNullable.ts index c56ac5da48..f725c0fcff 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedNullable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedNullable } from "../../structures/ArrayRepeatedNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRepeatedNullable } from "../../structures/ArrayRepeatedNullable"; -export const test_reflect_metadata_ArrayRepeatedNullable = +export const test_reflect_metadata_ArrayRepeatedNullable = _test_reflect_metadata("ArrayRepeatedNullable")( - typia.reflect.metadata<[ArrayRepeatedNullable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRepeatedNullable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedOptional.ts index bb723add61..e1bd069508 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedOptional.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedOptional } from "../../structures/ArrayRepeatedOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRepeatedOptional } from "../../structures/ArrayRepeatedOptional"; -export const test_reflect_metadata_ArrayRepeatedOptional = +export const test_reflect_metadata_ArrayRepeatedOptional = _test_reflect_metadata("ArrayRepeatedOptional")( - typia.reflect.metadata<[ArrayRepeatedOptional]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRepeatedOptional]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedRequired.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedRequired.ts index 29c8822ed5..d34681a06e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedRequired.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedRequired.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedRequired } from "../../structures/ArrayRepeatedRequired"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRepeatedRequired } from "../../structures/ArrayRepeatedRequired"; -export const test_reflect_metadata_ArrayRepeatedRequired = +export const test_reflect_metadata_ArrayRepeatedRequired = _test_reflect_metadata("ArrayRepeatedRequired")( - typia.reflect.metadata<[ArrayRepeatedRequired]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRepeatedRequired]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnion.ts index 0f33caeb65..b1055ce5fc 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayRepeatedUnion } from "../../structures/ArrayRepeatedUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRepeatedUnion } from "../../structures/ArrayRepeatedUnion"; -export const test_reflect_metadata_ArrayRepeatedUnion = - _test_reflect_metadata("ArrayRepeatedUnion")( - typia.reflect.metadata<[ArrayRepeatedUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayRepeatedUnion = _test_reflect_metadata( + "ArrayRepeatedUnion", +)(typia.reflect.metadata<[ArrayRepeatedUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnionWithTuple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnionWithTuple.ts index 2aa5ccc085..af175b7180 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnionWithTuple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayRepeatedUnionWithTuple.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArrayRepeatedUnionWithTuple } from "../../structures/ArrayRepeatedUnionWithTuple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayRepeatedUnionWithTuple } from "../../structures/ArrayRepeatedUnionWithTuple"; -export const test_reflect_metadata_ArrayRepeatedUnionWithTuple = +export const test_reflect_metadata_ArrayRepeatedUnionWithTuple = _test_reflect_metadata("ArrayRepeatedUnionWithTuple")( - typia.reflect.metadata<[ArrayRepeatedUnionWithTuple]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArrayRepeatedUnionWithTuple]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimple.ts index c4bf6ca20f..a135b4a9f2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArraySimple } from "../../structures/ArraySimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArraySimple } from "../../structures/ArraySimple"; -export const test_reflect_metadata_ArraySimple = - _test_reflect_metadata("ArraySimple")( - typia.reflect.metadata<[ArraySimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArraySimple = _test_reflect_metadata( + "ArraySimple", +)(typia.reflect.metadata<[ArraySimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobuf.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobuf.ts index 4886fcf1b8..da3e6bd272 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobuf.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobuf.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArraySimpleProtobuf } from "../../structures/ArraySimpleProtobuf"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArraySimpleProtobuf } from "../../structures/ArraySimpleProtobuf"; -export const test_reflect_metadata_ArraySimpleProtobuf = - _test_reflect_metadata("ArraySimpleProtobuf")( - typia.reflect.metadata<[ArraySimpleProtobuf]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArraySimpleProtobuf = _test_reflect_metadata( + "ArraySimpleProtobuf", +)(typia.reflect.metadata<[ArraySimpleProtobuf]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufNullable.ts index d344880469..22ee03ccdc 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufNullable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArraySimpleProtobufNullable } from "../../structures/ArraySimpleProtobufNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArraySimpleProtobufNullable } from "../../structures/ArraySimpleProtobufNullable"; -export const test_reflect_metadata_ArraySimpleProtobufNullable = +export const test_reflect_metadata_ArraySimpleProtobufNullable = _test_reflect_metadata("ArraySimpleProtobufNullable")( - typia.reflect.metadata<[ArraySimpleProtobufNullable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArraySimpleProtobufNullable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufOptional.ts index 8f1b123388..40eee1405c 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArraySimpleProtobufOptional.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ArraySimpleProtobufOptional } from "../../structures/ArraySimpleProtobufOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArraySimpleProtobufOptional } from "../../structures/ArraySimpleProtobufOptional"; -export const test_reflect_metadata_ArraySimpleProtobufOptional = +export const test_reflect_metadata_ArraySimpleProtobufOptional = _test_reflect_metadata("ArraySimpleProtobufOptional")( - typia.reflect.metadata<[ArraySimpleProtobufOptional]>() - ); \ No newline at end of file + typia.reflect.metadata<[ArraySimpleProtobufOptional]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayUnion.ts index 44e22c34ea..90154d667b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ArrayUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ArrayUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ArrayUnion } from "../../structures/ArrayUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ArrayUnion } from "../../structures/ArrayUnion"; -export const test_reflect_metadata_ArrayUnion = - _test_reflect_metadata("ArrayUnion")( - typia.reflect.metadata<[ArrayUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ArrayUnion = _test_reflect_metadata( + "ArrayUnion", +)(typia.reflect.metadata<[ArrayUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicAlias.ts index 645c92963b..b5f237ca84 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { AtomicAlias } from "../../structures/AtomicAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { AtomicAlias } from "../../structures/AtomicAlias"; -export const test_reflect_metadata_AtomicAlias = - _test_reflect_metadata("AtomicAlias")( - typia.reflect.metadata<[AtomicAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_AtomicAlias = _test_reflect_metadata( + "AtomicAlias", +)(typia.reflect.metadata<[AtomicAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicClass.ts b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicClass.ts index 4b0a6695b7..a7fab878fa 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicClass.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicClass.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { AtomicClass } from "../../structures/AtomicClass"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { AtomicClass } from "../../structures/AtomicClass"; -export const test_reflect_metadata_AtomicClass = - _test_reflect_metadata("AtomicClass")( - typia.reflect.metadata<[AtomicClass]>() - ); \ No newline at end of file +export const test_reflect_metadata_AtomicClass = _test_reflect_metadata( + "AtomicClass", +)(typia.reflect.metadata<[AtomicClass]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicIntersection.ts b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicIntersection.ts index 3c20ea4217..635cf01fc1 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicIntersection.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicIntersection.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { AtomicIntersection } from "../../structures/AtomicIntersection"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { AtomicIntersection } from "../../structures/AtomicIntersection"; -export const test_reflect_metadata_AtomicIntersection = - _test_reflect_metadata("AtomicIntersection")( - typia.reflect.metadata<[AtomicIntersection]>() - ); \ No newline at end of file +export const test_reflect_metadata_AtomicIntersection = _test_reflect_metadata( + "AtomicIntersection", +)(typia.reflect.metadata<[AtomicIntersection]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicSimple.ts index 8683100c4a..eddcb137e6 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { AtomicSimple } from "../../structures/AtomicSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { AtomicSimple } from "../../structures/AtomicSimple"; -export const test_reflect_metadata_AtomicSimple = - _test_reflect_metadata("AtomicSimple")( - typia.reflect.metadata<[AtomicSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_AtomicSimple = _test_reflect_metadata( + "AtomicSimple", +)(typia.reflect.metadata<[AtomicSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicUnion.ts index c1f2e3ab4d..374b0fb57e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_AtomicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_AtomicUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { AtomicUnion } from "../../structures/AtomicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { AtomicUnion } from "../../structures/AtomicUnion"; -export const test_reflect_metadata_AtomicUnion = - _test_reflect_metadata("AtomicUnion")( - typia.reflect.metadata<[AtomicUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_AtomicUnion = _test_reflect_metadata( + "AtomicUnion", +)(typia.reflect.metadata<[AtomicUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ClassClosure.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ClassClosure.ts index 241850a85f..790e75e73b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ClassClosure.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ClassClosure.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ClassClosure } from "../../structures/ClassClosure"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ClassClosure } from "../../structures/ClassClosure"; -export const test_reflect_metadata_ClassClosure = - _test_reflect_metadata("ClassClosure")( - typia.reflect.metadata<[ClassClosure]>() - ); \ No newline at end of file +export const test_reflect_metadata_ClassClosure = _test_reflect_metadata( + "ClassClosure", +)(typia.reflect.metadata<[ClassClosure]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ClassGetter.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ClassGetter.ts index 53189dadb5..13d4cd7a7b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ClassGetter.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ClassGetter.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ClassGetter } from "../../structures/ClassGetter"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ClassGetter } from "../../structures/ClassGetter"; -export const test_reflect_metadata_ClassGetter = - _test_reflect_metadata("ClassGetter")( - typia.reflect.metadata<[ClassGetter]>() - ); \ No newline at end of file +export const test_reflect_metadata_ClassGetter = _test_reflect_metadata( + "ClassGetter", +)(typia.reflect.metadata<[ClassGetter]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ClassMethod.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ClassMethod.ts index 79937c0b39..4766dc369a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ClassMethod.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ClassMethod.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ClassMethod } from "../../structures/ClassMethod"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ClassMethod } from "../../structures/ClassMethod"; -export const test_reflect_metadata_ClassMethod = - _test_reflect_metadata("ClassMethod")( - typia.reflect.metadata<[ClassMethod]>() - ); \ No newline at end of file +export const test_reflect_metadata_ClassMethod = _test_reflect_metadata( + "ClassMethod", +)(typia.reflect.metadata<[ClassMethod]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ClassNonPublic.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ClassNonPublic.ts index 4eaf059fee..ace0071601 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ClassNonPublic.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ClassNonPublic.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ClassNonPublic } from "../../structures/ClassNonPublic"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ClassNonPublic } from "../../structures/ClassNonPublic"; -export const test_reflect_metadata_ClassNonPublic = - _test_reflect_metadata("ClassNonPublic")( - typia.reflect.metadata<[ClassNonPublic]>() - ); \ No newline at end of file +export const test_reflect_metadata_ClassNonPublic = _test_reflect_metadata( + "ClassNonPublic", +)(typia.reflect.metadata<[ClassNonPublic]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ClassPropertyAssignment.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ClassPropertyAssignment.ts index c951964b50..a23201c0c6 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ClassPropertyAssignment.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ClassPropertyAssignment.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ClassPropertyAssignment } from "../../structures/ClassPropertyAssignment"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ClassPropertyAssignment } from "../../structures/ClassPropertyAssignment"; -export const test_reflect_metadata_ClassPropertyAssignment = +export const test_reflect_metadata_ClassPropertyAssignment = _test_reflect_metadata("ClassPropertyAssignment")( - typia.reflect.metadata<[ClassPropertyAssignment]>() - ); \ No newline at end of file + typia.reflect.metadata<[ClassPropertyAssignment]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArray.ts index c0a10ef5c3..340833a294 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagArray } from "../../structures/CommentTagArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagArray } from "../../structures/CommentTagArray"; -export const test_reflect_metadata_CommentTagArray = - _test_reflect_metadata("CommentTagArray")( - typia.reflect.metadata<[CommentTagArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagArray = _test_reflect_metadata( + "CommentTagArray", +)(typia.reflect.metadata<[CommentTagArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArrayUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArrayUnion.ts index 54ba467896..0de95a968d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArrayUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagArrayUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { CommentTagArrayUnion } from "../../structures/CommentTagArrayUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagArrayUnion } from "../../structures/CommentTagArrayUnion"; -export const test_reflect_metadata_CommentTagArrayUnion = +export const test_reflect_metadata_CommentTagArrayUnion = _test_reflect_metadata("CommentTagArrayUnion")( - typia.reflect.metadata<[CommentTagArrayUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[CommentTagArrayUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagAtomicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagAtomicUnion.ts index 4969e77986..133ba458f2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagAtomicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagAtomicUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { CommentTagAtomicUnion } from "../../structures/CommentTagAtomicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagAtomicUnion } from "../../structures/CommentTagAtomicUnion"; -export const test_reflect_metadata_CommentTagAtomicUnion = +export const test_reflect_metadata_CommentTagAtomicUnion = _test_reflect_metadata("CommentTagAtomicUnion")( - typia.reflect.metadata<[CommentTagAtomicUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[CommentTagAtomicUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagBigInt.ts index 7103e1de15..13aa7fe548 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagBigInt.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagBigInt } from "../../structures/CommentTagBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagBigInt } from "../../structures/CommentTagBigInt"; -export const test_reflect_metadata_CommentTagBigInt = - _test_reflect_metadata("CommentTagBigInt")( - typia.reflect.metadata<[CommentTagBigInt]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagBigInt = _test_reflect_metadata( + "CommentTagBigInt", +)(typia.reflect.metadata<[CommentTagBigInt]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagDefault.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagDefault.ts index 5ea8d07af7..3e5f61eb20 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagDefault.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagDefault.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagDefault } from "../../structures/CommentTagDefault"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagDefault } from "../../structures/CommentTagDefault"; -export const test_reflect_metadata_CommentTagDefault = - _test_reflect_metadata("CommentTagDefault")( - typia.reflect.metadata<[CommentTagDefault]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagDefault = _test_reflect_metadata( + "CommentTagDefault", +)(typia.reflect.metadata<[CommentTagDefault]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagFormat.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagFormat.ts index 623663a38a..df159c26d7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagFormat.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagFormat.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagFormat } from "../../structures/CommentTagFormat"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagFormat } from "../../structures/CommentTagFormat"; -export const test_reflect_metadata_CommentTagFormat = - _test_reflect_metadata("CommentTagFormat")( - typia.reflect.metadata<[CommentTagFormat]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagFormat = _test_reflect_metadata( + "CommentTagFormat", +)(typia.reflect.metadata<[CommentTagFormat]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagInfinite.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagInfinite.ts index 509387e8eb..f5dde789c4 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagInfinite.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagInfinite.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagInfinite } from "../../structures/CommentTagInfinite"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagInfinite } from "../../structures/CommentTagInfinite"; -export const test_reflect_metadata_CommentTagInfinite = - _test_reflect_metadata("CommentTagInfinite")( - typia.reflect.metadata<[CommentTagInfinite]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagInfinite = _test_reflect_metadata( + "CommentTagInfinite", +)(typia.reflect.metadata<[CommentTagInfinite]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagLength.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagLength.ts index bb5c07be11..fac3859c2e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagLength.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagLength.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagLength } from "../../structures/CommentTagLength"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagLength } from "../../structures/CommentTagLength"; -export const test_reflect_metadata_CommentTagLength = - _test_reflect_metadata("CommentTagLength")( - typia.reflect.metadata<[CommentTagLength]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagLength = _test_reflect_metadata( + "CommentTagLength", +)(typia.reflect.metadata<[CommentTagLength]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagNaN.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagNaN.ts index 408c3def20..64cc1df01d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagNaN.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagNaN.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagNaN } from "../../structures/CommentTagNaN"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagNaN } from "../../structures/CommentTagNaN"; -export const test_reflect_metadata_CommentTagNaN = - _test_reflect_metadata("CommentTagNaN")( - typia.reflect.metadata<[CommentTagNaN]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagNaN = _test_reflect_metadata( + "CommentTagNaN", +)(typia.reflect.metadata<[CommentTagNaN]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagObjectUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagObjectUnion.ts index f3a9ae57f5..71c782ae02 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagObjectUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagObjectUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { CommentTagObjectUnion } from "../../structures/CommentTagObjectUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagObjectUnion } from "../../structures/CommentTagObjectUnion"; -export const test_reflect_metadata_CommentTagObjectUnion = +export const test_reflect_metadata_CommentTagObjectUnion = _test_reflect_metadata("CommentTagObjectUnion")( - typia.reflect.metadata<[CommentTagObjectUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[CommentTagObjectUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagPattern.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagPattern.ts index e969f3c9d9..4569964bd2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagPattern.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagPattern.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagPattern } from "../../structures/CommentTagPattern"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagPattern } from "../../structures/CommentTagPattern"; -export const test_reflect_metadata_CommentTagPattern = - _test_reflect_metadata("CommentTagPattern")( - typia.reflect.metadata<[CommentTagPattern]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagPattern = _test_reflect_metadata( + "CommentTagPattern", +)(typia.reflect.metadata<[CommentTagPattern]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRange.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRange.ts index 5ef0e333fe..09a2873924 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRange.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRange.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagRange } from "../../structures/CommentTagRange"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagRange } from "../../structures/CommentTagRange"; -export const test_reflect_metadata_CommentTagRange = - _test_reflect_metadata("CommentTagRange")( - typia.reflect.metadata<[CommentTagRange]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagRange = _test_reflect_metadata( + "CommentTagRange", +)(typia.reflect.metadata<[CommentTagRange]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRangeBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRangeBigInt.ts index 7aab7a818c..ed45f9c2ee 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRangeBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagRangeBigInt.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { CommentTagRangeBigInt } from "../../structures/CommentTagRangeBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagRangeBigInt } from "../../structures/CommentTagRangeBigInt"; -export const test_reflect_metadata_CommentTagRangeBigInt = +export const test_reflect_metadata_CommentTagRangeBigInt = _test_reflect_metadata("CommentTagRangeBigInt")( - typia.reflect.metadata<[CommentTagRangeBigInt]>() - ); \ No newline at end of file + typia.reflect.metadata<[CommentTagRangeBigInt]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagType.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagType.ts index 5fdf9a83e4..d2f249a7d1 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagType.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagType.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { CommentTagType } from "../../structures/CommentTagType"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagType } from "../../structures/CommentTagType"; -export const test_reflect_metadata_CommentTagType = - _test_reflect_metadata("CommentTagType")( - typia.reflect.metadata<[CommentTagType]>() - ); \ No newline at end of file +export const test_reflect_metadata_CommentTagType = _test_reflect_metadata( + "CommentTagType", +)(typia.reflect.metadata<[CommentTagType]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagTypeBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagTypeBigInt.ts index 6940fc0d44..3eb1d0b863 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagTypeBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_CommentTagTypeBigInt.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { CommentTagTypeBigInt } from "../../structures/CommentTagTypeBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { CommentTagTypeBigInt } from "../../structures/CommentTagTypeBigInt"; -export const test_reflect_metadata_CommentTagTypeBigInt = +export const test_reflect_metadata_CommentTagTypeBigInt = _test_reflect_metadata("CommentTagTypeBigInt")( - typia.reflect.metadata<[CommentTagTypeBigInt]>() - ); \ No newline at end of file + typia.reflect.metadata<[CommentTagTypeBigInt]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicAbsorbed.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicAbsorbed.ts index 273688632d..3293845b8b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicAbsorbed.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicAbsorbed.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantAtomicAbsorbed } from "../../structures/ConstantAtomicAbsorbed"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantAtomicAbsorbed } from "../../structures/ConstantAtomicAbsorbed"; -export const test_reflect_metadata_ConstantAtomicAbsorbed = +export const test_reflect_metadata_ConstantAtomicAbsorbed = _test_reflect_metadata("ConstantAtomicAbsorbed")( - typia.reflect.metadata<[ConstantAtomicAbsorbed]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantAtomicAbsorbed]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicSimple.ts index 5cb311c3b6..8125189a0e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicSimple.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantAtomicSimple } from "../../structures/ConstantAtomicSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantAtomicSimple } from "../../structures/ConstantAtomicSimple"; -export const test_reflect_metadata_ConstantAtomicSimple = +export const test_reflect_metadata_ConstantAtomicSimple = _test_reflect_metadata("ConstantAtomicSimple")( - typia.reflect.metadata<[ConstantAtomicSimple]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantAtomicSimple]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicTagged.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicTagged.ts index c2cc48f14f..a9022df168 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicTagged.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicTagged.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantAtomicTagged } from "../../structures/ConstantAtomicTagged"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantAtomicTagged } from "../../structures/ConstantAtomicTagged"; -export const test_reflect_metadata_ConstantAtomicTagged = +export const test_reflect_metadata_ConstantAtomicTagged = _test_reflect_metadata("ConstantAtomicTagged")( - typia.reflect.metadata<[ConstantAtomicTagged]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantAtomicTagged]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicUnion.ts index 57ba6d8be9..481d4c7bd4 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ConstantAtomicUnion } from "../../structures/ConstantAtomicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantAtomicUnion } from "../../structures/ConstantAtomicUnion"; -export const test_reflect_metadata_ConstantAtomicUnion = - _test_reflect_metadata("ConstantAtomicUnion")( - typia.reflect.metadata<[ConstantAtomicUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ConstantAtomicUnion = _test_reflect_metadata( + "ConstantAtomicUnion", +)(typia.reflect.metadata<[ConstantAtomicUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicWrapper.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicWrapper.ts index e5c8c01cad..8dbe77f244 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicWrapper.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantAtomicWrapper.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantAtomicWrapper } from "../../structures/ConstantAtomicWrapper"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantAtomicWrapper } from "../../structures/ConstantAtomicWrapper"; -export const test_reflect_metadata_ConstantAtomicWrapper = +export const test_reflect_metadata_ConstantAtomicWrapper = _test_reflect_metadata("ConstantAtomicWrapper")( - typia.reflect.metadata<[ConstantAtomicWrapper]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantAtomicWrapper]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantConstEnumeration.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantConstEnumeration.ts index 958658bcf6..68bc64efe3 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantConstEnumeration.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantConstEnumeration.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantConstEnumeration } from "../../structures/ConstantConstEnumeration"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantConstEnumeration } from "../../structures/ConstantConstEnumeration"; -export const test_reflect_metadata_ConstantConstEnumeration = +export const test_reflect_metadata_ConstantConstEnumeration = _test_reflect_metadata("ConstantConstEnumeration")( - typia.reflect.metadata<[ConstantConstEnumeration]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantConstEnumeration]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantEnumeration.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantEnumeration.ts index 2976c4be2c..3db6b8ad73 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantEnumeration.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantEnumeration.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ConstantEnumeration } from "../../structures/ConstantEnumeration"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantEnumeration } from "../../structures/ConstantEnumeration"; -export const test_reflect_metadata_ConstantEnumeration = - _test_reflect_metadata("ConstantEnumeration")( - typia.reflect.metadata<[ConstantEnumeration]>() - ); \ No newline at end of file +export const test_reflect_metadata_ConstantEnumeration = _test_reflect_metadata( + "ConstantEnumeration", +)(typia.reflect.metadata<[ConstantEnumeration]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantIntersection.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantIntersection.ts index 0e12cb2b82..06c073cf63 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ConstantIntersection.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ConstantIntersection.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ConstantIntersection } from "../../structures/ConstantIntersection"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ConstantIntersection } from "../../structures/ConstantIntersection"; -export const test_reflect_metadata_ConstantIntersection = +export const test_reflect_metadata_ConstantIntersection = _test_reflect_metadata("ConstantIntersection")( - typia.reflect.metadata<[ConstantIntersection]>() - ); \ No newline at end of file + typia.reflect.metadata<[ConstantIntersection]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicArray.ts index 47f61f1e1f..b3a2177a8b 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicArray } from "../../structures/DynamicArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicArray } from "../../structures/DynamicArray"; -export const test_reflect_metadata_DynamicArray = - _test_reflect_metadata("DynamicArray")( - typia.reflect.metadata<[DynamicArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicArray = _test_reflect_metadata( + "DynamicArray", +)(typia.reflect.metadata<[DynamicArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicComposite.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicComposite.ts index e762c0f5d0..cbf3f0d5a1 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicComposite.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicComposite.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicComposite } from "../../structures/DynamicComposite"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicComposite } from "../../structures/DynamicComposite"; -export const test_reflect_metadata_DynamicComposite = - _test_reflect_metadata("DynamicComposite")( - typia.reflect.metadata<[DynamicComposite]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicComposite = _test_reflect_metadata( + "DynamicComposite", +)(typia.reflect.metadata<[DynamicComposite]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicConstant.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicConstant.ts index 04e22b1f94..220a31da22 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicConstant.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicConstant.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicConstant } from "../../structures/DynamicConstant"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicConstant } from "../../structures/DynamicConstant"; -export const test_reflect_metadata_DynamicConstant = - _test_reflect_metadata("DynamicConstant")( - typia.reflect.metadata<[DynamicConstant]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicConstant = _test_reflect_metadata( + "DynamicConstant", +)(typia.reflect.metadata<[DynamicConstant]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicEnumeration.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicEnumeration.ts index c4844a8aa8..298f992cde 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicEnumeration.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicEnumeration.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicEnumeration } from "../../structures/DynamicEnumeration"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicEnumeration } from "../../structures/DynamicEnumeration"; -export const test_reflect_metadata_DynamicEnumeration = - _test_reflect_metadata("DynamicEnumeration")( - typia.reflect.metadata<[DynamicEnumeration]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicEnumeration = _test_reflect_metadata( + "DynamicEnumeration", +)(typia.reflect.metadata<[DynamicEnumeration]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicJsonValue.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicJsonValue.ts index 919e9605b3..f1d9817cf6 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicJsonValue.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicJsonValue.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicJsonValue } from "../../structures/DynamicJsonValue"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicJsonValue } from "../../structures/DynamicJsonValue"; -export const test_reflect_metadata_DynamicJsonValue = - _test_reflect_metadata("DynamicJsonValue")( - typia.reflect.metadata<[DynamicJsonValue]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicJsonValue = _test_reflect_metadata( + "DynamicJsonValue", +)(typia.reflect.metadata<[DynamicJsonValue]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicNever.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicNever.ts index b29259e971..75f87c1c73 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicNever.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicNever.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicNever } from "../../structures/DynamicNever"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicNever } from "../../structures/DynamicNever"; -export const test_reflect_metadata_DynamicNever = - _test_reflect_metadata("DynamicNever")( - typia.reflect.metadata<[DynamicNever]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicNever = _test_reflect_metadata( + "DynamicNever", +)(typia.reflect.metadata<[DynamicNever]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicSimple.ts index f3d69040b6..4b3e6e77b5 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicSimple } from "../../structures/DynamicSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicSimple } from "../../structures/DynamicSimple"; -export const test_reflect_metadata_DynamicSimple = - _test_reflect_metadata("DynamicSimple")( - typia.reflect.metadata<[DynamicSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicSimple = _test_reflect_metadata( + "DynamicSimple", +)(typia.reflect.metadata<[DynamicSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTag.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTag.ts index c7f5fc493f..7b3b854174 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTag.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTag.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicTag } from "../../structures/DynamicTag"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicTag } from "../../structures/DynamicTag"; -export const test_reflect_metadata_DynamicTag = - _test_reflect_metadata("DynamicTag")( - typia.reflect.metadata<[DynamicTag]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicTag = _test_reflect_metadata( + "DynamicTag", +)(typia.reflect.metadata<[DynamicTag]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTemplate.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTemplate.ts index a25764cdb5..a632b72059 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTemplate.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTemplate.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicTemplate } from "../../structures/DynamicTemplate"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicTemplate } from "../../structures/DynamicTemplate"; -export const test_reflect_metadata_DynamicTemplate = - _test_reflect_metadata("DynamicTemplate")( - typia.reflect.metadata<[DynamicTemplate]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicTemplate = _test_reflect_metadata( + "DynamicTemplate", +)(typia.reflect.metadata<[DynamicTemplate]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTree.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTree.ts index edd13b4e35..672afc30ec 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTree.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicTree.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicTree } from "../../structures/DynamicTree"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicTree } from "../../structures/DynamicTree"; -export const test_reflect_metadata_DynamicTree = - _test_reflect_metadata("DynamicTree")( - typia.reflect.metadata<[DynamicTree]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicTree = _test_reflect_metadata( + "DynamicTree", +)(typia.reflect.metadata<[DynamicTree]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUndefined.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUndefined.ts index 0cf87d5e02..42c784c1fc 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUndefined.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUndefined.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicUndefined } from "../../structures/DynamicUndefined"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicUndefined } from "../../structures/DynamicUndefined"; -export const test_reflect_metadata_DynamicUndefined = - _test_reflect_metadata("DynamicUndefined")( - typia.reflect.metadata<[DynamicUndefined]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicUndefined = _test_reflect_metadata( + "DynamicUndefined", +)(typia.reflect.metadata<[DynamicUndefined]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUnion.ts index 74d2f736e6..2ba7c61539 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_DynamicUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { DynamicUnion } from "../../structures/DynamicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { DynamicUnion } from "../../structures/DynamicUnion"; -export const test_reflect_metadata_DynamicUnion = - _test_reflect_metadata("DynamicUnion")( - typia.reflect.metadata<[DynamicUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_DynamicUnion = _test_reflect_metadata( + "DynamicUnion", +)(typia.reflect.metadata<[DynamicUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArray.ts index 25d28901b7..5010feb930 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { FunctionalArray } from "../../structures/FunctionalArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalArray } from "../../structures/FunctionalArray"; -export const test_reflect_metadata_FunctionalArray = - _test_reflect_metadata("FunctionalArray")( - typia.reflect.metadata<[FunctionalArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_FunctionalArray = _test_reflect_metadata( + "FunctionalArray", +)(typia.reflect.metadata<[FunctionalArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArrayUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArrayUnion.ts index 8df236ef4e..68db28fb76 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArrayUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalArrayUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { FunctionalArrayUnion } from "../../structures/FunctionalArrayUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalArrayUnion } from "../../structures/FunctionalArrayUnion"; -export const test_reflect_metadata_FunctionalArrayUnion = +export const test_reflect_metadata_FunctionalArrayUnion = _test_reflect_metadata("FunctionalArrayUnion")( - typia.reflect.metadata<[FunctionalArrayUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[FunctionalArrayUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalObjectUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalObjectUnion.ts index e898d81ab2..98a648fdba 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalObjectUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalObjectUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { FunctionalObjectUnion } from "../../structures/FunctionalObjectUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalObjectUnion } from "../../structures/FunctionalObjectUnion"; -export const test_reflect_metadata_FunctionalObjectUnion = +export const test_reflect_metadata_FunctionalObjectUnion = _test_reflect_metadata("FunctionalObjectUnion")( - typia.reflect.metadata<[FunctionalObjectUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[FunctionalObjectUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalProperty.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalProperty.ts index c1062051fc..dfeed681f8 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalProperty.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalProperty.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { FunctionalProperty } from "../../structures/FunctionalProperty"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalProperty } from "../../structures/FunctionalProperty"; -export const test_reflect_metadata_FunctionalProperty = - _test_reflect_metadata("FunctionalProperty")( - typia.reflect.metadata<[FunctionalProperty]>() - ); \ No newline at end of file +export const test_reflect_metadata_FunctionalProperty = _test_reflect_metadata( + "FunctionalProperty", +)(typia.reflect.metadata<[FunctionalProperty]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalPropertyUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalPropertyUnion.ts index 59a386e7de..ead309c189 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalPropertyUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalPropertyUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { FunctionalPropertyUnion } from "../../structures/FunctionalPropertyUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalPropertyUnion } from "../../structures/FunctionalPropertyUnion"; -export const test_reflect_metadata_FunctionalPropertyUnion = +export const test_reflect_metadata_FunctionalPropertyUnion = _test_reflect_metadata("FunctionalPropertyUnion")( - typia.reflect.metadata<[FunctionalPropertyUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[FunctionalPropertyUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTuple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTuple.ts index 7673b037a6..b771f8212d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTuple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTuple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { FunctionalTuple } from "../../structures/FunctionalTuple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalTuple } from "../../structures/FunctionalTuple"; -export const test_reflect_metadata_FunctionalTuple = - _test_reflect_metadata("FunctionalTuple")( - typia.reflect.metadata<[FunctionalTuple]>() - ); \ No newline at end of file +export const test_reflect_metadata_FunctionalTuple = _test_reflect_metadata( + "FunctionalTuple", +)(typia.reflect.metadata<[FunctionalTuple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTupleUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTupleUnion.ts index 914c39c281..a7beb85995 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTupleUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalTupleUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { FunctionalTupleUnion } from "../../structures/FunctionalTupleUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalTupleUnion } from "../../structures/FunctionalTupleUnion"; -export const test_reflect_metadata_FunctionalTupleUnion = +export const test_reflect_metadata_FunctionalTupleUnion = _test_reflect_metadata("FunctionalTupleUnion")( - typia.reflect.metadata<[FunctionalTupleUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[FunctionalTupleUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValue.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValue.ts index 49a07d84d5..7ec672609f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValue.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValue.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { FunctionalValue } from "../../structures/FunctionalValue"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalValue } from "../../structures/FunctionalValue"; -export const test_reflect_metadata_FunctionalValue = - _test_reflect_metadata("FunctionalValue")( - typia.reflect.metadata<[FunctionalValue]>() - ); \ No newline at end of file +export const test_reflect_metadata_FunctionalValue = _test_reflect_metadata( + "FunctionalValue", +)(typia.reflect.metadata<[FunctionalValue]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValueUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValueUnion.ts index 81f397507d..ec1047c2de 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValueUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_FunctionalValueUnion.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { FunctionalValueUnion } from "../../structures/FunctionalValueUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { FunctionalValueUnion } from "../../structures/FunctionalValueUnion"; -export const test_reflect_metadata_FunctionalValueUnion = +export const test_reflect_metadata_FunctionalValueUnion = _test_reflect_metadata("FunctionalValueUnion")( - typia.reflect.metadata<[FunctionalValueUnion]>() - ); \ No newline at end of file + typia.reflect.metadata<[FunctionalValueUnion]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_InstanceUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_InstanceUnion.ts index 3c9bcf4d06..6d3ec99eb4 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_InstanceUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_InstanceUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { InstanceUnion } from "../../structures/InstanceUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { InstanceUnion } from "../../structures/InstanceUnion"; -export const test_reflect_metadata_InstanceUnion = - _test_reflect_metadata("InstanceUnion")( - typia.reflect.metadata<[InstanceUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_InstanceUnion = _test_reflect_metadata( + "InstanceUnion", +)(typia.reflect.metadata<[InstanceUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapAlias.ts index 598c35d796..d67ba636d3 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { MapAlias } from "../../structures/MapAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapAlias } from "../../structures/MapAlias"; -export const test_reflect_metadata_MapAlias = - _test_reflect_metadata("MapAlias")( - typia.reflect.metadata<[MapAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_MapAlias = _test_reflect_metadata( + "MapAlias", +)(typia.reflect.metadata<[MapAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimple.ts index 37a2f79f9f..b419b39754 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { MapSimple } from "../../structures/MapSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapSimple } from "../../structures/MapSimple"; -export const test_reflect_metadata_MapSimple = - _test_reflect_metadata("MapSimple")( - typia.reflect.metadata<[MapSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_MapSimple = _test_reflect_metadata( + "MapSimple", +)(typia.reflect.metadata<[MapSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobuf.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobuf.ts index 82029ac27e..982160b291 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobuf.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobuf.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { MapSimpleProtobuf } from "../../structures/MapSimpleProtobuf"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapSimpleProtobuf } from "../../structures/MapSimpleProtobuf"; -export const test_reflect_metadata_MapSimpleProtobuf = - _test_reflect_metadata("MapSimpleProtobuf")( - typia.reflect.metadata<[MapSimpleProtobuf]>() - ); \ No newline at end of file +export const test_reflect_metadata_MapSimpleProtobuf = _test_reflect_metadata( + "MapSimpleProtobuf", +)(typia.reflect.metadata<[MapSimpleProtobuf]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufNullable.ts index cd9e5afa76..f9ccd0d2f9 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufNullable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { MapSimpleProtobufNullable } from "../../structures/MapSimpleProtobufNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapSimpleProtobufNullable } from "../../structures/MapSimpleProtobufNullable"; -export const test_reflect_metadata_MapSimpleProtobufNullable = +export const test_reflect_metadata_MapSimpleProtobufNullable = _test_reflect_metadata("MapSimpleProtobufNullable")( - typia.reflect.metadata<[MapSimpleProtobufNullable]>() - ); \ No newline at end of file + typia.reflect.metadata<[MapSimpleProtobufNullable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufOptional.ts index 9af3455318..ad272f10c0 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapSimpleProtobufOptional.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { MapSimpleProtobufOptional } from "../../structures/MapSimpleProtobufOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapSimpleProtobufOptional } from "../../structures/MapSimpleProtobufOptional"; -export const test_reflect_metadata_MapSimpleProtobufOptional = +export const test_reflect_metadata_MapSimpleProtobufOptional = _test_reflect_metadata("MapSimpleProtobufOptional")( - typia.reflect.metadata<[MapSimpleProtobufOptional]>() - ); \ No newline at end of file + typia.reflect.metadata<[MapSimpleProtobufOptional]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_MapUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_MapUnion.ts index cfaea0c437..4e2ceb1b62 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_MapUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_MapUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { MapUnion } from "../../structures/MapUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { MapUnion } from "../../structures/MapUnion"; -export const test_reflect_metadata_MapUnion = - _test_reflect_metadata("MapUnion")( - typia.reflect.metadata<[MapUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_MapUnion = _test_reflect_metadata( + "MapUnion", +)(typia.reflect.metadata<[MapUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_NativeAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_NativeAlias.ts index 0b3f1d5ab5..052e9167a7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_NativeAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_NativeAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { NativeAlias } from "../../structures/NativeAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { NativeAlias } from "../../structures/NativeAlias"; -export const test_reflect_metadata_NativeAlias = - _test_reflect_metadata("NativeAlias")( - typia.reflect.metadata<[NativeAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_NativeAlias = _test_reflect_metadata( + "NativeAlias", +)(typia.reflect.metadata<[NativeAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_NativeSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_NativeSimple.ts index d541bec53c..8dbc242908 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_NativeSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_NativeSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { NativeSimple } from "../../structures/NativeSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { NativeSimple } from "../../structures/NativeSimple"; -export const test_reflect_metadata_NativeSimple = - _test_reflect_metadata("NativeSimple")( - typia.reflect.metadata<[NativeSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_NativeSimple = _test_reflect_metadata( + "NativeSimple", +)(typia.reflect.metadata<[NativeSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_NativeUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_NativeUnion.ts index 261655cf64..66be361826 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_NativeUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_NativeUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { NativeUnion } from "../../structures/NativeUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { NativeUnion } from "../../structures/NativeUnion"; -export const test_reflect_metadata_NativeUnion = - _test_reflect_metadata("NativeUnion")( - typia.reflect.metadata<[NativeUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_NativeUnion = _test_reflect_metadata( + "NativeUnion", +)(typia.reflect.metadata<[NativeUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectAlias.ts index 2fce0ee62e..eb2b520b8e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectAlias } from "../../structures/ObjectAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectAlias } from "../../structures/ObjectAlias"; -export const test_reflect_metadata_ObjectAlias = - _test_reflect_metadata("ObjectAlias")( - typia.reflect.metadata<[ObjectAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectAlias = _test_reflect_metadata( + "ObjectAlias", +)(typia.reflect.metadata<[ObjectAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectClosure.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectClosure.ts index 856c9db01c..ea00b644ed 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectClosure.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectClosure.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectClosure } from "../../structures/ObjectClosure"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectClosure } from "../../structures/ObjectClosure"; -export const test_reflect_metadata_ObjectClosure = - _test_reflect_metadata("ObjectClosure")( - typia.reflect.metadata<[ObjectClosure]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectClosure = _test_reflect_metadata( + "ObjectClosure", +)(typia.reflect.metadata<[ObjectClosure]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDate.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDate.ts index 2ea4367139..13cec2db8a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDate.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDate.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectDate } from "../../structures/ObjectDate"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectDate } from "../../structures/ObjectDate"; -export const test_reflect_metadata_ObjectDate = - _test_reflect_metadata("ObjectDate")( - typia.reflect.metadata<[ObjectDate]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectDate = _test_reflect_metadata( + "ObjectDate", +)(typia.reflect.metadata<[ObjectDate]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDescription.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDescription.ts index a2df251929..a51ef656ab 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDescription.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDescription.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectDescription } from "../../structures/ObjectDescription"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectDescription } from "../../structures/ObjectDescription"; -export const test_reflect_metadata_ObjectDescription = - _test_reflect_metadata("ObjectDescription")( - typia.reflect.metadata<[ObjectDescription]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectDescription = _test_reflect_metadata( + "ObjectDescription", +)(typia.reflect.metadata<[ObjectDescription]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDynamic.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDynamic.ts index 2b65bf0231..3160ff3fd7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDynamic.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectDynamic.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectDynamic } from "../../structures/ObjectDynamic"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectDynamic } from "../../structures/ObjectDynamic"; -export const test_reflect_metadata_ObjectDynamic = - _test_reflect_metadata("ObjectDynamic")( - typia.reflect.metadata<[ObjectDynamic]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectDynamic = _test_reflect_metadata( + "ObjectDynamic", +)(typia.reflect.metadata<[ObjectDynamic]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGeneric.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGeneric.ts index 567b02c145..115765eff3 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGeneric.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGeneric.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectGeneric } from "../../structures/ObjectGeneric"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectGeneric } from "../../structures/ObjectGeneric"; -export const test_reflect_metadata_ObjectGeneric = - _test_reflect_metadata("ObjectGeneric")( - typia.reflect.metadata<[ObjectGeneric]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectGeneric = _test_reflect_metadata( + "ObjectGeneric", +)(typia.reflect.metadata<[ObjectGeneric]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericAlias.ts index bb583f0cb0..c6158e9377 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectGenericAlias } from "../../structures/ObjectGenericAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectGenericAlias } from "../../structures/ObjectGenericAlias"; -export const test_reflect_metadata_ObjectGenericAlias = - _test_reflect_metadata("ObjectGenericAlias")( - typia.reflect.metadata<[ObjectGenericAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectGenericAlias = _test_reflect_metadata( + "ObjectGenericAlias", +)(typia.reflect.metadata<[ObjectGenericAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericArray.ts index 414da9a502..c38ab4ebef 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectGenericArray } from "../../structures/ObjectGenericArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectGenericArray } from "../../structures/ObjectGenericArray"; -export const test_reflect_metadata_ObjectGenericArray = - _test_reflect_metadata("ObjectGenericArray")( - typia.reflect.metadata<[ObjectGenericArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectGenericArray = _test_reflect_metadata( + "ObjectGenericArray", +)(typia.reflect.metadata<[ObjectGenericArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericUnion.ts index dfbec4acc8..6254b19e45 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectGenericUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectGenericUnion } from "../../structures/ObjectGenericUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectGenericUnion } from "../../structures/ObjectGenericUnion"; -export const test_reflect_metadata_ObjectGenericUnion = - _test_reflect_metadata("ObjectGenericUnion")( - typia.reflect.metadata<[ObjectGenericUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectGenericUnion = _test_reflect_metadata( + "ObjectGenericUnion", +)(typia.reflect.metadata<[ObjectGenericUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHierarchical.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHierarchical.ts index 13c41f67e8..f6bb397383 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHierarchical.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHierarchical.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHierarchical } from "../../structures/ObjectHierarchical"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHierarchical } from "../../structures/ObjectHierarchical"; -export const test_reflect_metadata_ObjectHierarchical = - _test_reflect_metadata("ObjectHierarchical")( - typia.reflect.metadata<[ObjectHierarchical]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHierarchical = _test_reflect_metadata( + "ObjectHierarchical", +)(typia.reflect.metadata<[ObjectHierarchical]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpArray.ts index 003707d4d2..29c2be6587 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpArray } from "../../structures/ObjectHttpArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpArray } from "../../structures/ObjectHttpArray"; -export const test_reflect_metadata_ObjectHttpArray = - _test_reflect_metadata("ObjectHttpArray")( - typia.reflect.metadata<[ObjectHttpArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpArray = _test_reflect_metadata( + "ObjectHttpArray", +)(typia.reflect.metadata<[ObjectHttpArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpAtomic.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpAtomic.ts index 7d179c1655..069bcbf00c 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpAtomic.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpAtomic.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpAtomic } from "../../structures/ObjectHttpAtomic"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpAtomic } from "../../structures/ObjectHttpAtomic"; -export const test_reflect_metadata_ObjectHttpAtomic = - _test_reflect_metadata("ObjectHttpAtomic")( - typia.reflect.metadata<[ObjectHttpAtomic]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpAtomic = _test_reflect_metadata( + "ObjectHttpAtomic", +)(typia.reflect.metadata<[ObjectHttpAtomic]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpCommentTag.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpCommentTag.ts index 439c6d5c2d..d21319953f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpCommentTag.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpCommentTag.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectHttpCommentTag } from "../../structures/ObjectHttpCommentTag"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpCommentTag } from "../../structures/ObjectHttpCommentTag"; -export const test_reflect_metadata_ObjectHttpCommentTag = +export const test_reflect_metadata_ObjectHttpCommentTag = _test_reflect_metadata("ObjectHttpCommentTag")( - typia.reflect.metadata<[ObjectHttpCommentTag]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectHttpCommentTag]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpConstant.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpConstant.ts index 8aab243115..5c66d9a053 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpConstant.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpConstant.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpConstant } from "../../structures/ObjectHttpConstant"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpConstant } from "../../structures/ObjectHttpConstant"; -export const test_reflect_metadata_ObjectHttpConstant = - _test_reflect_metadata("ObjectHttpConstant")( - typia.reflect.metadata<[ObjectHttpConstant]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpConstant = _test_reflect_metadata( + "ObjectHttpConstant", +)(typia.reflect.metadata<[ObjectHttpConstant]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpFormData.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpFormData.ts index 4b514c1582..50bb46fbda 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpFormData.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpFormData.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpFormData } from "../../structures/ObjectHttpFormData"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpFormData } from "../../structures/ObjectHttpFormData"; -export const test_reflect_metadata_ObjectHttpFormData = - _test_reflect_metadata("ObjectHttpFormData")( - typia.reflect.metadata<[ObjectHttpFormData]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpFormData = _test_reflect_metadata( + "ObjectHttpFormData", +)(typia.reflect.metadata<[ObjectHttpFormData]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpNullable.ts index 08fc87f51a..5a4fdbeac1 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpNullable.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpNullable } from "../../structures/ObjectHttpNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpNullable } from "../../structures/ObjectHttpNullable"; -export const test_reflect_metadata_ObjectHttpNullable = - _test_reflect_metadata("ObjectHttpNullable")( - typia.reflect.metadata<[ObjectHttpNullable]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpNullable = _test_reflect_metadata( + "ObjectHttpNullable", +)(typia.reflect.metadata<[ObjectHttpNullable]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpTypeTag.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpTypeTag.ts index b735c08ff2..4cb5aa185d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpTypeTag.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpTypeTag.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectHttpTypeTag } from "../../structures/ObjectHttpTypeTag"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpTypeTag } from "../../structures/ObjectHttpTypeTag"; -export const test_reflect_metadata_ObjectHttpTypeTag = - _test_reflect_metadata("ObjectHttpTypeTag")( - typia.reflect.metadata<[ObjectHttpTypeTag]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectHttpTypeTag = _test_reflect_metadata( + "ObjectHttpTypeTag", +)(typia.reflect.metadata<[ObjectHttpTypeTag]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpUndefindable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpUndefindable.ts index 7537d4fce9..7c67e76349 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpUndefindable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectHttpUndefindable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectHttpUndefindable } from "../../structures/ObjectHttpUndefindable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectHttpUndefindable } from "../../structures/ObjectHttpUndefindable"; -export const test_reflect_metadata_ObjectHttpUndefindable = +export const test_reflect_metadata_ObjectHttpUndefindable = _test_reflect_metadata("ObjectHttpUndefindable")( - typia.reflect.metadata<[ObjectHttpUndefindable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectHttpUndefindable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectInternal.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectInternal.ts index d3986da750..4c77916ec2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectInternal.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectInternal.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectInternal } from "../../structures/ObjectInternal"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectInternal } from "../../structures/ObjectInternal"; -export const test_reflect_metadata_ObjectInternal = - _test_reflect_metadata("ObjectInternal")( - typia.reflect.metadata<[ObjectInternal]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectInternal = _test_reflect_metadata( + "ObjectInternal", +)(typia.reflect.metadata<[ObjectInternal]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectIntersection.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectIntersection.ts index def52e8d2b..80222d0c77 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectIntersection.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectIntersection.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectIntersection } from "../../structures/ObjectIntersection"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectIntersection } from "../../structures/ObjectIntersection"; -export const test_reflect_metadata_ObjectIntersection = - _test_reflect_metadata("ObjectIntersection")( - typia.reflect.metadata<[ObjectIntersection]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectIntersection = _test_reflect_metadata( + "ObjectIntersection", +)(typia.reflect.metadata<[ObjectIntersection]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectJsonTag.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectJsonTag.ts index e1436c14cf..50291e9556 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectJsonTag.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectJsonTag.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectJsonTag } from "../../structures/ObjectJsonTag"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectJsonTag } from "../../structures/ObjectJsonTag"; -export const test_reflect_metadata_ObjectJsonTag = - _test_reflect_metadata("ObjectJsonTag")( - typia.reflect.metadata<[ObjectJsonTag]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectJsonTag = _test_reflect_metadata( + "ObjectJsonTag", +)(typia.reflect.metadata<[ObjectJsonTag]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralProperty.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralProperty.ts index fd440ddf01..2e52e94102 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralProperty.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralProperty.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectLiteralProperty } from "../../structures/ObjectLiteralProperty"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectLiteralProperty } from "../../structures/ObjectLiteralProperty"; -export const test_reflect_metadata_ObjectLiteralProperty = +export const test_reflect_metadata_ObjectLiteralProperty = _test_reflect_metadata("ObjectLiteralProperty")( - typia.reflect.metadata<[ObjectLiteralProperty]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectLiteralProperty]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralType.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralType.ts index 4fe9bdfdee..8069f8dcd7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralType.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectLiteralType.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectLiteralType } from "../../structures/ObjectLiteralType"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectLiteralType } from "../../structures/ObjectLiteralType"; -export const test_reflect_metadata_ObjectLiteralType = - _test_reflect_metadata("ObjectLiteralType")( - typia.reflect.metadata<[ObjectLiteralType]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectLiteralType = _test_reflect_metadata( + "ObjectLiteralType", +)(typia.reflect.metadata<[ObjectLiteralType]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectNullable.ts index 078a8ed909..52a2402581 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectNullable.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectNullable } from "../../structures/ObjectNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectNullable } from "../../structures/ObjectNullable"; -export const test_reflect_metadata_ObjectNullable = - _test_reflect_metadata("ObjectNullable")( - typia.reflect.metadata<[ObjectNullable]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectNullable = _test_reflect_metadata( + "ObjectNullable", +)(typia.reflect.metadata<[ObjectNullable]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectOptional.ts index d90552c04b..ed7746d5a8 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectOptional.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectOptional } from "../../structures/ObjectOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectOptional } from "../../structures/ObjectOptional"; -export const test_reflect_metadata_ObjectOptional = - _test_reflect_metadata("ObjectOptional")( - typia.reflect.metadata<[ObjectOptional]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectOptional = _test_reflect_metadata( + "ObjectOptional", +)(typia.reflect.metadata<[ObjectOptional]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartial.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartial.ts index 3b4116a394..43cc58acab 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartial.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartial.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectPartial } from "../../structures/ObjectPartial"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectPartial } from "../../structures/ObjectPartial"; -export const test_reflect_metadata_ObjectPartial = - _test_reflect_metadata("ObjectPartial")( - typia.reflect.metadata<[ObjectPartial]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectPartial = _test_reflect_metadata( + "ObjectPartial", +)(typia.reflect.metadata<[ObjectPartial]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartialAndRequired.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartialAndRequired.ts index 070a0aca1e..7ad0cdf8d7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartialAndRequired.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPartialAndRequired.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectPartialAndRequired } from "../../structures/ObjectPartialAndRequired"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectPartialAndRequired } from "../../structures/ObjectPartialAndRequired"; -export const test_reflect_metadata_ObjectPartialAndRequired = +export const test_reflect_metadata_ObjectPartialAndRequired = _test_reflect_metadata("ObjectPartialAndRequired")( - typia.reflect.metadata<[ObjectPartialAndRequired]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectPartialAndRequired]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPrimitive.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPrimitive.ts index 5bf21b7b39..40655be409 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPrimitive.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPrimitive.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectPrimitive } from "../../structures/ObjectPrimitive"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectPrimitive } from "../../structures/ObjectPrimitive"; -export const test_reflect_metadata_ObjectPrimitive = - _test_reflect_metadata("ObjectPrimitive")( - typia.reflect.metadata<[ObjectPrimitive]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectPrimitive = _test_reflect_metadata( + "ObjectPrimitive", +)(typia.reflect.metadata<[ObjectPrimitive]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPropertyNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPropertyNullable.ts index c9f9fb5754..e7bdbab7e8 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPropertyNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectPropertyNullable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectPropertyNullable } from "../../structures/ObjectPropertyNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectPropertyNullable } from "../../structures/ObjectPropertyNullable"; -export const test_reflect_metadata_ObjectPropertyNullable = +export const test_reflect_metadata_ObjectPropertyNullable = _test_reflect_metadata("ObjectPropertyNullable")( - typia.reflect.metadata<[ObjectPropertyNullable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectPropertyNullable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRecursive.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRecursive.ts index 7fba771cf9..af87793878 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRecursive.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRecursive.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectRecursive } from "../../structures/ObjectRecursive"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectRecursive } from "../../structures/ObjectRecursive"; -export const test_reflect_metadata_ObjectRecursive = - _test_reflect_metadata("ObjectRecursive")( - typia.reflect.metadata<[ObjectRecursive]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectRecursive = _test_reflect_metadata( + "ObjectRecursive", +)(typia.reflect.metadata<[ObjectRecursive]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRequired.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRequired.ts index 15dcacd21f..fabc7e2c44 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRequired.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectRequired.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectRequired } from "../../structures/ObjectRequired"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectRequired } from "../../structures/ObjectRequired"; -export const test_reflect_metadata_ObjectRequired = - _test_reflect_metadata("ObjectRequired")( - typia.reflect.metadata<[ObjectRequired]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectRequired = _test_reflect_metadata( + "ObjectRequired", +)(typia.reflect.metadata<[ObjectRequired]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSequenceProtobuf.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSequenceProtobuf.ts index f1b8e74c5c..d6f825e7f4 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSequenceProtobuf.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSequenceProtobuf.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectSequenceProtobuf } from "../../structures/ObjectSequenceProtobuf"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectSequenceProtobuf } from "../../structures/ObjectSequenceProtobuf"; -export const test_reflect_metadata_ObjectSequenceProtobuf = +export const test_reflect_metadata_ObjectSequenceProtobuf = _test_reflect_metadata("ObjectSequenceProtobuf")( - typia.reflect.metadata<[ObjectSequenceProtobuf]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectSequenceProtobuf]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimple.ts index c42e6118f5..b119916583 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectSimple } from "../../structures/ObjectSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectSimple } from "../../structures/ObjectSimple"; -export const test_reflect_metadata_ObjectSimple = - _test_reflect_metadata("ObjectSimple")( - typia.reflect.metadata<[ObjectSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectSimple = _test_reflect_metadata( + "ObjectSimple", +)(typia.reflect.metadata<[ObjectSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobuf.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobuf.ts index 26ae8772ec..6546d75e34 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobuf.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobuf.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobuf } from "../../structures/ObjectSimpleProtobuf"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectSimpleProtobuf } from "../../structures/ObjectSimpleProtobuf"; -export const test_reflect_metadata_ObjectSimpleProtobuf = +export const test_reflect_metadata_ObjectSimpleProtobuf = _test_reflect_metadata("ObjectSimpleProtobuf")( - typia.reflect.metadata<[ObjectSimpleProtobuf]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectSimpleProtobuf]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufNullable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufNullable.ts index 12072ce8ad..040850287e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufNullable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufNullable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobufNullable } from "../../structures/ObjectSimpleProtobufNullable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectSimpleProtobufNullable } from "../../structures/ObjectSimpleProtobufNullable"; -export const test_reflect_metadata_ObjectSimpleProtobufNullable = +export const test_reflect_metadata_ObjectSimpleProtobufNullable = _test_reflect_metadata("ObjectSimpleProtobufNullable")( - typia.reflect.metadata<[ObjectSimpleProtobufNullable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectSimpleProtobufNullable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufOptional.ts index 924c36a3ac..0db8a3df9a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectSimpleProtobufOptional.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectSimpleProtobufOptional } from "../../structures/ObjectSimpleProtobufOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectSimpleProtobufOptional } from "../../structures/ObjectSimpleProtobufOptional"; -export const test_reflect_metadata_ObjectSimpleProtobufOptional = +export const test_reflect_metadata_ObjectSimpleProtobufOptional = _test_reflect_metadata("ObjectSimpleProtobufOptional")( - typia.reflect.metadata<[ObjectSimpleProtobufOptional]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectSimpleProtobufOptional]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectTuple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectTuple.ts index d5445cc814..3a044de402 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectTuple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectTuple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectTuple } from "../../structures/ObjectTuple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectTuple } from "../../structures/ObjectTuple"; -export const test_reflect_metadata_ObjectTuple = - _test_reflect_metadata("ObjectTuple")( - typia.reflect.metadata<[ObjectTuple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectTuple = _test_reflect_metadata( + "ObjectTuple", +)(typia.reflect.metadata<[ObjectTuple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUndefined.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUndefined.ts index 91dd3c97ec..d50a47c4de 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUndefined.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUndefined.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectUndefined } from "../../structures/ObjectUndefined"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUndefined } from "../../structures/ObjectUndefined"; -export const test_reflect_metadata_ObjectUndefined = - _test_reflect_metadata("ObjectUndefined")( - typia.reflect.metadata<[ObjectUndefined]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectUndefined = _test_reflect_metadata( + "ObjectUndefined", +)(typia.reflect.metadata<[ObjectUndefined]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionComposite.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionComposite.ts index f2ae16f8ac..84859f8f2e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionComposite.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionComposite.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectUnionComposite } from "../../structures/ObjectUnionComposite"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionComposite } from "../../structures/ObjectUnionComposite"; -export const test_reflect_metadata_ObjectUnionComposite = +export const test_reflect_metadata_ObjectUnionComposite = _test_reflect_metadata("ObjectUnionComposite")( - typia.reflect.metadata<[ObjectUnionComposite]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectUnionComposite]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionCompositePointer.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionCompositePointer.ts index 8fd8744398..d20d0949b7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionCompositePointer.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionCompositePointer.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectUnionCompositePointer } from "../../structures/ObjectUnionCompositePointer"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionCompositePointer } from "../../structures/ObjectUnionCompositePointer"; -export const test_reflect_metadata_ObjectUnionCompositePointer = +export const test_reflect_metadata_ObjectUnionCompositePointer = _test_reflect_metadata("ObjectUnionCompositePointer")( - typia.reflect.metadata<[ObjectUnionCompositePointer]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectUnionCompositePointer]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionDouble.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionDouble.ts index 27e09372a5..0127ce11f1 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionDouble.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionDouble.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectUnionDouble } from "../../structures/ObjectUnionDouble"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionDouble } from "../../structures/ObjectUnionDouble"; -export const test_reflect_metadata_ObjectUnionDouble = - _test_reflect_metadata("ObjectUnionDouble")( - typia.reflect.metadata<[ObjectUnionDouble]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectUnionDouble = _test_reflect_metadata( + "ObjectUnionDouble", +)(typia.reflect.metadata<[ObjectUnionDouble]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicit.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicit.ts index 8ba5a70694..64f0dc539a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicit.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicit.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectUnionExplicit } from "../../structures/ObjectUnionExplicit"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionExplicit } from "../../structures/ObjectUnionExplicit"; -export const test_reflect_metadata_ObjectUnionExplicit = - _test_reflect_metadata("ObjectUnionExplicit")( - typia.reflect.metadata<[ObjectUnionExplicit]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectUnionExplicit = _test_reflect_metadata( + "ObjectUnionExplicit", +)(typia.reflect.metadata<[ObjectUnionExplicit]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicitPointer.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicitPointer.ts index 01ebf29429..ac65543d24 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicitPointer.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionExplicitPointer.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectUnionExplicitPointer } from "../../structures/ObjectUnionExplicitPointer"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionExplicitPointer } from "../../structures/ObjectUnionExplicitPointer"; -export const test_reflect_metadata_ObjectUnionExplicitPointer = +export const test_reflect_metadata_ObjectUnionExplicitPointer = _test_reflect_metadata("ObjectUnionExplicitPointer")( - typia.reflect.metadata<[ObjectUnionExplicitPointer]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectUnionExplicitPointer]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionImplicit.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionImplicit.ts index e65f11fdc4..de2a27335e 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionImplicit.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionImplicit.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ObjectUnionImplicit } from "../../structures/ObjectUnionImplicit"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionImplicit } from "../../structures/ObjectUnionImplicit"; -export const test_reflect_metadata_ObjectUnionImplicit = - _test_reflect_metadata("ObjectUnionImplicit")( - typia.reflect.metadata<[ObjectUnionImplicit]>() - ); \ No newline at end of file +export const test_reflect_metadata_ObjectUnionImplicit = _test_reflect_metadata( + "ObjectUnionImplicit", +)(typia.reflect.metadata<[ObjectUnionImplicit]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionNonPredictable.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionNonPredictable.ts index 6d92b461e3..b47e77e3ea 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionNonPredictable.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ObjectUnionNonPredictable.ts @@ -1,8 +1,9 @@ import typia from "typia"; -import { ObjectUnionNonPredictable } from "../../structures/ObjectUnionNonPredictable"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ObjectUnionNonPredictable } from "../../structures/ObjectUnionNonPredictable"; -export const test_reflect_metadata_ObjectUnionNonPredictable = +export const test_reflect_metadata_ObjectUnionNonPredictable = _test_reflect_metadata("ObjectUnionNonPredictable")( - typia.reflect.metadata<[ObjectUnionNonPredictable]>() - ); \ No newline at end of file + typia.reflect.metadata<[ObjectUnionNonPredictable]>(), + ); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_SetAlias.ts b/test/src/features/reflect.metadata/test_reflect_metadata_SetAlias.ts index e14d016915..e534967768 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_SetAlias.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_SetAlias.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { SetAlias } from "../../structures/SetAlias"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { SetAlias } from "../../structures/SetAlias"; -export const test_reflect_metadata_SetAlias = - _test_reflect_metadata("SetAlias")( - typia.reflect.metadata<[SetAlias]>() - ); \ No newline at end of file +export const test_reflect_metadata_SetAlias = _test_reflect_metadata( + "SetAlias", +)(typia.reflect.metadata<[SetAlias]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_SetSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_SetSimple.ts index cf53f81eea..1a561b2e63 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_SetSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_SetSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { SetSimple } from "../../structures/SetSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { SetSimple } from "../../structures/SetSimple"; -export const test_reflect_metadata_SetSimple = - _test_reflect_metadata("SetSimple")( - typia.reflect.metadata<[SetSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_SetSimple = _test_reflect_metadata( + "SetSimple", +)(typia.reflect.metadata<[SetSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_SetUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_SetUnion.ts index 7b66762a8b..3e5589f2d6 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_SetUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_SetUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { SetUnion } from "../../structures/SetUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { SetUnion } from "../../structures/SetUnion"; -export const test_reflect_metadata_SetUnion = - _test_reflect_metadata("SetUnion")( - typia.reflect.metadata<[SetUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_SetUnion = _test_reflect_metadata( + "SetUnion", +)(typia.reflect.metadata<[SetUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateAtomic.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateAtomic.ts index ac9657637d..8f2a93ce88 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateAtomic.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateAtomic.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TemplateAtomic } from "../../structures/TemplateAtomic"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TemplateAtomic } from "../../structures/TemplateAtomic"; -export const test_reflect_metadata_TemplateAtomic = - _test_reflect_metadata("TemplateAtomic")( - typia.reflect.metadata<[TemplateAtomic]>() - ); \ No newline at end of file +export const test_reflect_metadata_TemplateAtomic = _test_reflect_metadata( + "TemplateAtomic", +)(typia.reflect.metadata<[TemplateAtomic]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateConstant.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateConstant.ts index 3ca0b379e5..05e00e883f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateConstant.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateConstant.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TemplateConstant } from "../../structures/TemplateConstant"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TemplateConstant } from "../../structures/TemplateConstant"; -export const test_reflect_metadata_TemplateConstant = - _test_reflect_metadata("TemplateConstant")( - typia.reflect.metadata<[TemplateConstant]>() - ); \ No newline at end of file +export const test_reflect_metadata_TemplateConstant = _test_reflect_metadata( + "TemplateConstant", +)(typia.reflect.metadata<[TemplateConstant]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateUnion.ts index e51a93ebd4..db75145e57 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TemplateUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TemplateUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TemplateUnion } from "../../structures/TemplateUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TemplateUnion } from "../../structures/TemplateUnion"; -export const test_reflect_metadata_TemplateUnion = - _test_reflect_metadata("TemplateUnion")( - typia.reflect.metadata<[TemplateUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TemplateUnion = _test_reflect_metadata( + "TemplateUnion", +)(typia.reflect.metadata<[TemplateUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonArray.ts index fbe2504dbd..60f89b3cf8 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonArray } from "../../structures/ToJsonArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonArray } from "../../structures/ToJsonArray"; -export const test_reflect_metadata_ToJsonArray = - _test_reflect_metadata("ToJsonArray")( - typia.reflect.metadata<[ToJsonArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonArray = _test_reflect_metadata( + "ToJsonArray", +)(typia.reflect.metadata<[ToJsonArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicSimple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicSimple.ts index 720412d87f..01348b9238 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicSimple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicSimple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonAtomicSimple } from "../../structures/ToJsonAtomicSimple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonAtomicSimple } from "../../structures/ToJsonAtomicSimple"; -export const test_reflect_metadata_ToJsonAtomicSimple = - _test_reflect_metadata("ToJsonAtomicSimple")( - typia.reflect.metadata<[ToJsonAtomicSimple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonAtomicSimple = _test_reflect_metadata( + "ToJsonAtomicSimple", +)(typia.reflect.metadata<[ToJsonAtomicSimple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicUnion.ts index 07c01b3bbd..83356c37ea 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonAtomicUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonAtomicUnion } from "../../structures/ToJsonAtomicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonAtomicUnion } from "../../structures/ToJsonAtomicUnion"; -export const test_reflect_metadata_ToJsonAtomicUnion = - _test_reflect_metadata("ToJsonAtomicUnion")( - typia.reflect.metadata<[ToJsonAtomicUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonAtomicUnion = _test_reflect_metadata( + "ToJsonAtomicUnion", +)(typia.reflect.metadata<[ToJsonAtomicUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonDouble.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonDouble.ts index 1fe7d31600..6ebf0d0d76 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonDouble.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonDouble.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonDouble } from "../../structures/ToJsonDouble"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonDouble } from "../../structures/ToJsonDouble"; -export const test_reflect_metadata_ToJsonDouble = - _test_reflect_metadata("ToJsonDouble")( - typia.reflect.metadata<[ToJsonDouble]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonDouble = _test_reflect_metadata( + "ToJsonDouble", +)(typia.reflect.metadata<[ToJsonDouble]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonNull.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonNull.ts index 100f53ef59..bf0ba51a16 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonNull.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonNull.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonNull } from "../../structures/ToJsonNull"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonNull } from "../../structures/ToJsonNull"; -export const test_reflect_metadata_ToJsonNull = - _test_reflect_metadata("ToJsonNull")( - typia.reflect.metadata<[ToJsonNull]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonNull = _test_reflect_metadata( + "ToJsonNull", +)(typia.reflect.metadata<[ToJsonNull]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonTuple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonTuple.ts index f0c0aae59a..be53d0bff0 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonTuple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonTuple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonTuple } from "../../structures/ToJsonTuple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonTuple } from "../../structures/ToJsonTuple"; -export const test_reflect_metadata_ToJsonTuple = - _test_reflect_metadata("ToJsonTuple")( - typia.reflect.metadata<[ToJsonTuple]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonTuple = _test_reflect_metadata( + "ToJsonTuple", +)(typia.reflect.metadata<[ToJsonTuple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonUnion.ts index 7f234398af..79e1e4a63f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_ToJsonUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { ToJsonUnion } from "../../structures/ToJsonUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { ToJsonUnion } from "../../structures/ToJsonUnion"; -export const test_reflect_metadata_ToJsonUnion = - _test_reflect_metadata("ToJsonUnion")( - typia.reflect.metadata<[ToJsonUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_ToJsonUnion = _test_reflect_metadata( + "ToJsonUnion", +)(typia.reflect.metadata<[ToJsonUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleHierarchical.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleHierarchical.ts index 7059feaba6..1017f0e473 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleHierarchical.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleHierarchical.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleHierarchical } from "../../structures/TupleHierarchical"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleHierarchical } from "../../structures/TupleHierarchical"; -export const test_reflect_metadata_TupleHierarchical = - _test_reflect_metadata("TupleHierarchical")( - typia.reflect.metadata<[TupleHierarchical]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleHierarchical = _test_reflect_metadata( + "TupleHierarchical", +)(typia.reflect.metadata<[TupleHierarchical]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleOptional.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleOptional.ts index 24740942d8..a3d1c30bd2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleOptional.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleOptional.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleOptional } from "../../structures/TupleOptional"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleOptional } from "../../structures/TupleOptional"; -export const test_reflect_metadata_TupleOptional = - _test_reflect_metadata("TupleOptional")( - typia.reflect.metadata<[TupleOptional]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleOptional = _test_reflect_metadata( + "TupleOptional", +)(typia.reflect.metadata<[TupleOptional]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestArray.ts index 9657918ed6..24081bbc33 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleRestArray } from "../../structures/TupleRestArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleRestArray } from "../../structures/TupleRestArray"; -export const test_reflect_metadata_TupleRestArray = - _test_reflect_metadata("TupleRestArray")( - typia.reflect.metadata<[TupleRestArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleRestArray = _test_reflect_metadata( + "TupleRestArray", +)(typia.reflect.metadata<[TupleRestArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestAtomic.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestAtomic.ts index 98eaa601f7..39bc82e297 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestAtomic.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestAtomic.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleRestAtomic } from "../../structures/TupleRestAtomic"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleRestAtomic } from "../../structures/TupleRestAtomic"; -export const test_reflect_metadata_TupleRestAtomic = - _test_reflect_metadata("TupleRestAtomic")( - typia.reflect.metadata<[TupleRestAtomic]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleRestAtomic = _test_reflect_metadata( + "TupleRestAtomic", +)(typia.reflect.metadata<[TupleRestAtomic]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestObject.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestObject.ts index 45b7d0a9b5..6d2824504a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestObject.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleRestObject.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleRestObject } from "../../structures/TupleRestObject"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleRestObject } from "../../structures/TupleRestObject"; -export const test_reflect_metadata_TupleRestObject = - _test_reflect_metadata("TupleRestObject")( - typia.reflect.metadata<[TupleRestObject]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleRestObject = _test_reflect_metadata( + "TupleRestObject", +)(typia.reflect.metadata<[TupleRestObject]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TupleUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TupleUnion.ts index 1362702fe9..245743ee8f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TupleUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TupleUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TupleUnion } from "../../structures/TupleUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TupleUnion } from "../../structures/TupleUnion"; -export const test_reflect_metadata_TupleUnion = - _test_reflect_metadata("TupleUnion")( - typia.reflect.metadata<[TupleUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TupleUnion = _test_reflect_metadata( + "TupleUnion", +)(typia.reflect.metadata<[TupleUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArray.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArray.ts index 882eabfa25..cbc5198186 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArray.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArray.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagArray } from "../../structures/TypeTagArray"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagArray } from "../../structures/TypeTagArray"; -export const test_reflect_metadata_TypeTagArray = - _test_reflect_metadata("TypeTagArray")( - typia.reflect.metadata<[TypeTagArray]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagArray = _test_reflect_metadata( + "TypeTagArray", +)(typia.reflect.metadata<[TypeTagArray]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArrayUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArrayUnion.ts index 9bce9ae04a..c82b4293dc 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArrayUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagArrayUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagArrayUnion } from "../../structures/TypeTagArrayUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagArrayUnion } from "../../structures/TypeTagArrayUnion"; -export const test_reflect_metadata_TypeTagArrayUnion = - _test_reflect_metadata("TypeTagArrayUnion")( - typia.reflect.metadata<[TypeTagArrayUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagArrayUnion = _test_reflect_metadata( + "TypeTagArrayUnion", +)(typia.reflect.metadata<[TypeTagArrayUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagAtomicUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagAtomicUnion.ts index 6211827720..0b4ed0175a 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagAtomicUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagAtomicUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagAtomicUnion } from "../../structures/TypeTagAtomicUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagAtomicUnion } from "../../structures/TypeTagAtomicUnion"; -export const test_reflect_metadata_TypeTagAtomicUnion = - _test_reflect_metadata("TypeTagAtomicUnion")( - typia.reflect.metadata<[TypeTagAtomicUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagAtomicUnion = _test_reflect_metadata( + "TypeTagAtomicUnion", +)(typia.reflect.metadata<[TypeTagAtomicUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagBigInt.ts index c6948d853b..22fb245b6d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagBigInt.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagBigInt } from "../../structures/TypeTagBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagBigInt } from "../../structures/TypeTagBigInt"; -export const test_reflect_metadata_TypeTagBigInt = - _test_reflect_metadata("TypeTagBigInt")( - typia.reflect.metadata<[TypeTagBigInt]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagBigInt = _test_reflect_metadata( + "TypeTagBigInt", +)(typia.reflect.metadata<[TypeTagBigInt]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagCustom.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagCustom.ts index edb902d710..39a7f2e257 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagCustom.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagCustom.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagCustom } from "../../structures/TypeTagCustom"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagCustom } from "../../structures/TypeTagCustom"; -export const test_reflect_metadata_TypeTagCustom = - _test_reflect_metadata("TypeTagCustom")( - typia.reflect.metadata<[TypeTagCustom]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagCustom = _test_reflect_metadata( + "TypeTagCustom", +)(typia.reflect.metadata<[TypeTagCustom]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagDefault.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagDefault.ts index 99041eb6cc..c46876e448 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagDefault.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagDefault.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagDefault } from "../../structures/TypeTagDefault"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagDefault } from "../../structures/TypeTagDefault"; -export const test_reflect_metadata_TypeTagDefault = - _test_reflect_metadata("TypeTagDefault")( - typia.reflect.metadata<[TypeTagDefault]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagDefault = _test_reflect_metadata( + "TypeTagDefault", +)(typia.reflect.metadata<[TypeTagDefault]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagFormat.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagFormat.ts index a255c647f6..5ef6404311 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagFormat.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagFormat.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagFormat } from "../../structures/TypeTagFormat"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagFormat } from "../../structures/TypeTagFormat"; -export const test_reflect_metadata_TypeTagFormat = - _test_reflect_metadata("TypeTagFormat")( - typia.reflect.metadata<[TypeTagFormat]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagFormat = _test_reflect_metadata( + "TypeTagFormat", +)(typia.reflect.metadata<[TypeTagFormat]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagInfinite.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagInfinite.ts index b73aa6936c..e98fb1207d 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagInfinite.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagInfinite.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagInfinite } from "../../structures/TypeTagInfinite"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagInfinite } from "../../structures/TypeTagInfinite"; -export const test_reflect_metadata_TypeTagInfinite = - _test_reflect_metadata("TypeTagInfinite")( - typia.reflect.metadata<[TypeTagInfinite]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagInfinite = _test_reflect_metadata( + "TypeTagInfinite", +)(typia.reflect.metadata<[TypeTagInfinite]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagLength.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagLength.ts index fd34efedc0..14cdb5aac2 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagLength.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagLength.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagLength } from "../../structures/TypeTagLength"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagLength } from "../../structures/TypeTagLength"; -export const test_reflect_metadata_TypeTagLength = - _test_reflect_metadata("TypeTagLength")( - typia.reflect.metadata<[TypeTagLength]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagLength = _test_reflect_metadata( + "TypeTagLength", +)(typia.reflect.metadata<[TypeTagLength]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagMatrix.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagMatrix.ts index ab6b09d7ff..1e128b5be8 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagMatrix.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagMatrix.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagMatrix } from "../../structures/TypeTagMatrix"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagMatrix } from "../../structures/TypeTagMatrix"; -export const test_reflect_metadata_TypeTagMatrix = - _test_reflect_metadata("TypeTagMatrix")( - typia.reflect.metadata<[TypeTagMatrix]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagMatrix = _test_reflect_metadata( + "TypeTagMatrix", +)(typia.reflect.metadata<[TypeTagMatrix]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagNaN.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagNaN.ts index 52e5a2d5cc..b7d764f9c7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagNaN.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagNaN.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagNaN } from "../../structures/TypeTagNaN"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagNaN } from "../../structures/TypeTagNaN"; -export const test_reflect_metadata_TypeTagNaN = - _test_reflect_metadata("TypeTagNaN")( - typia.reflect.metadata<[TypeTagNaN]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagNaN = _test_reflect_metadata( + "TypeTagNaN", +)(typia.reflect.metadata<[TypeTagNaN]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagObjectUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagObjectUnion.ts index ec2fd272a0..b8ea737668 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagObjectUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagObjectUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagObjectUnion } from "../../structures/TypeTagObjectUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagObjectUnion } from "../../structures/TypeTagObjectUnion"; -export const test_reflect_metadata_TypeTagObjectUnion = - _test_reflect_metadata("TypeTagObjectUnion")( - typia.reflect.metadata<[TypeTagObjectUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagObjectUnion = _test_reflect_metadata( + "TypeTagObjectUnion", +)(typia.reflect.metadata<[TypeTagObjectUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagPattern.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagPattern.ts index 58d2ea9fb5..f6badbef11 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagPattern.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagPattern.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagPattern } from "../../structures/TypeTagPattern"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagPattern } from "../../structures/TypeTagPattern"; -export const test_reflect_metadata_TypeTagPattern = - _test_reflect_metadata("TypeTagPattern")( - typia.reflect.metadata<[TypeTagPattern]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagPattern = _test_reflect_metadata( + "TypeTagPattern", +)(typia.reflect.metadata<[TypeTagPattern]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRange.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRange.ts index ee94c020c3..8e402f4a52 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRange.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRange.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagRange } from "../../structures/TypeTagRange"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagRange } from "../../structures/TypeTagRange"; -export const test_reflect_metadata_TypeTagRange = - _test_reflect_metadata("TypeTagRange")( - typia.reflect.metadata<[TypeTagRange]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagRange = _test_reflect_metadata( + "TypeTagRange", +)(typia.reflect.metadata<[TypeTagRange]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRangeBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRangeBigInt.ts index b6fc24c7b4..ed34204fe0 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRangeBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagRangeBigInt.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagRangeBigInt } from "../../structures/TypeTagRangeBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagRangeBigInt } from "../../structures/TypeTagRangeBigInt"; -export const test_reflect_metadata_TypeTagRangeBigInt = - _test_reflect_metadata("TypeTagRangeBigInt")( - typia.reflect.metadata<[TypeTagRangeBigInt]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagRangeBigInt = _test_reflect_metadata( + "TypeTagRangeBigInt", +)(typia.reflect.metadata<[TypeTagRangeBigInt]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTuple.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTuple.ts index 78b38a2d3c..6b461c324f 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTuple.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTuple.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagTuple } from "../../structures/TypeTagTuple"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagTuple } from "../../structures/TypeTagTuple"; -export const test_reflect_metadata_TypeTagTuple = - _test_reflect_metadata("TypeTagTuple")( - typia.reflect.metadata<[TypeTagTuple]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagTuple = _test_reflect_metadata( + "TypeTagTuple", +)(typia.reflect.metadata<[TypeTagTuple]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagType.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagType.ts index a2170a0784..e3765af747 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagType.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagType.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagType } from "../../structures/TypeTagType"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagType } from "../../structures/TypeTagType"; -export const test_reflect_metadata_TypeTagType = - _test_reflect_metadata("TypeTagType")( - typia.reflect.metadata<[TypeTagType]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagType = _test_reflect_metadata( + "TypeTagType", +)(typia.reflect.metadata<[TypeTagType]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeBigInt.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeBigInt.ts index 3d5689c9ab..6c152d9af6 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeBigInt.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeBigInt.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagTypeBigInt } from "../../structures/TypeTagTypeBigInt"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagTypeBigInt } from "../../structures/TypeTagTypeBigInt"; -export const test_reflect_metadata_TypeTagTypeBigInt = - _test_reflect_metadata("TypeTagTypeBigInt")( - typia.reflect.metadata<[TypeTagTypeBigInt]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagTypeBigInt = _test_reflect_metadata( + "TypeTagTypeBigInt", +)(typia.reflect.metadata<[TypeTagTypeBigInt]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeUnion.ts index c2dc4ba064..b88c8abf02 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_TypeTagTypeUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { TypeTagTypeUnion } from "../../structures/TypeTagTypeUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { TypeTagTypeUnion } from "../../structures/TypeTagTypeUnion"; -export const test_reflect_metadata_TypeTagTypeUnion = - _test_reflect_metadata("TypeTagTypeUnion")( - typia.reflect.metadata<[TypeTagTypeUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_TypeTagTypeUnion = _test_reflect_metadata( + "TypeTagTypeUnion", +)(typia.reflect.metadata<[TypeTagTypeUnion]>()); diff --git a/test/src/features/reflect.metadata/test_reflect_metadata_UltimateUnion.ts b/test/src/features/reflect.metadata/test_reflect_metadata_UltimateUnion.ts index 4852591009..60bacb2eb7 100644 --- a/test/src/features/reflect.metadata/test_reflect_metadata_UltimateUnion.ts +++ b/test/src/features/reflect.metadata/test_reflect_metadata_UltimateUnion.ts @@ -1,8 +1,8 @@ import typia from "typia"; -import { UltimateUnion } from "../../structures/UltimateUnion"; + import { _test_reflect_metadata } from "../../internal/_test_reflect_metadata"; +import { UltimateUnion } from "../../structures/UltimateUnion"; -export const test_reflect_metadata_UltimateUnion = - _test_reflect_metadata("UltimateUnion")( - typia.reflect.metadata<[UltimateUnion]>() - ); \ No newline at end of file +export const test_reflect_metadata_UltimateUnion = _test_reflect_metadata( + "UltimateUnion", +)(typia.reflect.metadata<[UltimateUnion]>());