@nestia/editor 11.0.0-dev.20260305 → 11.0.0-dev.20260313

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nestia/editor",
3
- "version": "11.0.0-dev.20260305",
3
+ "version": "11.0.0-dev.20260313",
4
4
  "main": "lib/index.js",
5
5
  "exports": {
6
6
  ".": {
@@ -35,12 +35,12 @@
35
35
  "dependencies": {
36
36
  "@mui/material": "^5.15.6",
37
37
  "@stackblitz/sdk": "^1.11.0",
38
- "@typia/interface": "12.0.0-dev.20260303-2",
38
+ "@typia/interface": "12.0.0-dev.20260313",
39
39
  "js-yaml": "^4.1.0",
40
40
  "prettier": "^3.8.1",
41
41
  "react-mui-fileuploader": "^0.5.2",
42
- "typia": "12.0.0-dev.20260303-2",
43
- "@nestia/migrate": "^11.0.0-dev.20260305"
42
+ "typia": "12.0.0-dev.20260313",
43
+ "@nestia/migrate": "^11.0.0-dev.20260313"
44
44
  },
45
45
  "devDependencies": {
46
46
  "@eslint/js": "^9.13.0",
@@ -1,4 +1,9 @@
1
- import type { OpenApiV3, OpenApiV3_1, SwaggerV2 } from "@typia/interface";
1
+ import type {
2
+ OpenApiV3,
3
+ OpenApiV3_1,
4
+ OpenApiV3_2,
5
+ SwaggerV2,
6
+ } from "@typia/interface";
2
7
  import * as fs from "fs";
3
8
 
4
9
  export namespace NestiaEditorModule {
@@ -9,7 +14,8 @@ export namespace NestiaEditorModule {
9
14
  | string
10
15
  | SwaggerV2.IDocument
11
16
  | OpenApiV3.IDocument
12
- | OpenApiV3_1.IDocument;
17
+ | OpenApiV3_1.IDocument
18
+ | OpenApiV3_2.IDocument;
13
19
  package?: string;
14
20
  simulate?: boolean;
15
21
  e2e?: boolean;
@@ -1,5 +1,10 @@
1
1
  import { NestiaMigrateApplication } from "@nestia/migrate";
2
- import { OpenApiV3, OpenApiV3_1, SwaggerV2 } from "@typia/interface";
2
+ import {
3
+ OpenApiV3,
4
+ OpenApiV3_1,
5
+ OpenApiV3_2,
6
+ SwaggerV2,
7
+ } from "@typia/interface";
3
8
  import * as prettierEsTreePlugin from "prettier/plugins/estree";
4
9
  import * as prettierTsPlugin from "prettier/plugins/typescript";
5
10
  import { format } from "prettier/standalone";
@@ -7,7 +12,11 @@ import { IValidation } from "typia";
7
12
 
8
13
  export namespace NestiaEditorComposer {
9
14
  export interface IProps {
10
- document: SwaggerV2.IDocument | OpenApiV3.IDocument | OpenApiV3_1.IDocument;
15
+ document:
16
+ | SwaggerV2.IDocument
17
+ | OpenApiV3.IDocument
18
+ | OpenApiV3_1.IDocument
19
+ | OpenApiV3_2.IDocument;
11
20
  e2e: boolean;
12
21
  keyword: boolean;
13
22
  simulate: boolean;