@typia/interface 12.0.0-dev.20260310 → 12.0.0-dev.20260311

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -12,7 +12,6 @@ import { IValidation } from "./IValidation";
12
12
  *
13
13
  * - {@link ILlmApplication.IConfig.validate}: Custom validation per method
14
14
  * - {@link ILlmSchema.IConfig.strict}: OpenAI structured output mode
15
- * - {@link ILlmSchema.IConfig.reference}: Control `$ref` inlining behavior
16
15
  *
17
16
  * @author Jeongho Nam - https://github.com/samchon
18
17
  * @template Class Source class/interface type
@@ -30,7 +29,7 @@ export interface ILlmApplication<Class extends object = any> {
30
29
  * Configuration used to generate this application.
31
30
  *
32
31
  * Contains the settings that were applied during schema generation, including
33
- * reference handling, strict mode, and parameter separation.
32
+ * strict mode and any custom validation hooks.
34
33
  */
35
34
  config: ILlmApplication.IConfig<Class>;
36
35
  /**
@@ -25,19 +25,9 @@ export declare namespace ILlmSchema {
25
25
  * Configuration options for LLM schema generation.
26
26
  *
27
27
  * Controls how TypeScript types are converted to LLM-compatible JSON schemas.
28
- * These settings affect reference handling and OpenAI structured output
29
- * compatibility.
28
+ * These settings affect OpenAI structured output compatibility.
30
29
  */
31
30
  interface IConfig {
32
- /**
33
- * Whether to allow `$ref` references everywhere.
34
- *
35
- * When `false`, references are inlined except for recursive types.
36
- * References reduce token cost but may cause hallucination.
37
- *
38
- * @default true
39
- */
40
- reference: boolean;
41
31
  /**
42
32
  * Whether to enable strict mode (OpenAI structured output).
43
33
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@typia/interface",
3
- "version": "12.0.0-dev.20260310",
3
+ "version": "12.0.0-dev.20260311",
4
4
  "description": "Superfast runtime validators with only one line",
5
5
  "main": "lib/index.js",
6
6
  "exports": {
@@ -13,7 +13,6 @@ import { IValidation } from "./IValidation";
13
13
  *
14
14
  * - {@link ILlmApplication.IConfig.validate}: Custom validation per method
15
15
  * - {@link ILlmSchema.IConfig.strict}: OpenAI structured output mode
16
- * - {@link ILlmSchema.IConfig.reference}: Control `$ref` inlining behavior
17
16
  *
18
17
  * @author Jeongho Nam - https://github.com/samchon
19
18
  * @template Class Source class/interface type
@@ -32,7 +31,7 @@ export interface ILlmApplication<Class extends object = any> {
32
31
  * Configuration used to generate this application.
33
32
  *
34
33
  * Contains the settings that were applied during schema generation, including
35
- * reference handling, strict mode, and parameter separation.
34
+ * strict mode and any custom validation hooks.
36
35
  */
37
36
  config: ILlmApplication.IConfig<Class>;
38
37
 
@@ -36,20 +36,9 @@ export namespace ILlmSchema {
36
36
  * Configuration options for LLM schema generation.
37
37
  *
38
38
  * Controls how TypeScript types are converted to LLM-compatible JSON schemas.
39
- * These settings affect reference handling and OpenAI structured output
40
- * compatibility.
39
+ * These settings affect OpenAI structured output compatibility.
41
40
  */
42
41
  export interface IConfig {
43
- /**
44
- * Whether to allow `$ref` references everywhere.
45
- *
46
- * When `false`, references are inlined except for recursive types.
47
- * References reduce token cost but may cause hallucination.
48
- *
49
- * @default true
50
- */
51
- reference: boolean;
52
-
53
42
  /**
54
43
  * Whether to enable strict mode (OpenAI structured output).
55
44
  *