orval 7.11.1 → 7.12.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin/orval.d.ts +1 -1
- package/dist/bin/orval.js +61 -4555
- package/dist/bin/orval.js.map +1 -1
- package/dist/generate-C5kRAcZ2.js +1349 -0
- package/dist/generate-C5kRAcZ2.js.map +1 -0
- package/dist/index.d.ts +8 -6
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +33 -4536
- package/dist/index.js.map +1 -1
- package/package.json +44 -31
package/package.json
CHANGED
|
@@ -1,14 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "orval",
|
|
3
3
|
"description": "A swagger client generator for typescript",
|
|
4
|
-
"version": "7.
|
|
4
|
+
"version": "7.12.1",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"files": [
|
|
7
7
|
"dist"
|
|
8
8
|
],
|
|
9
|
-
"bin": "dist/bin/orval.js",
|
|
9
|
+
"bin": "./dist/bin/orval.js",
|
|
10
10
|
"type": "commonjs",
|
|
11
|
-
"
|
|
11
|
+
"exports": {
|
|
12
|
+
".": {
|
|
13
|
+
"types": "./dist/index.d.ts",
|
|
14
|
+
"default": "./dist/index.js"
|
|
15
|
+
}
|
|
16
|
+
},
|
|
12
17
|
"keywords": [
|
|
13
18
|
"rest",
|
|
14
19
|
"client",
|
|
@@ -42,44 +47,52 @@
|
|
|
42
47
|
"url": "git+https://github.com/orval-labs/orval.git"
|
|
43
48
|
},
|
|
44
49
|
"scripts": {
|
|
45
|
-
"build": "
|
|
46
|
-
"dev": "
|
|
47
|
-
"lint": "eslint
|
|
48
|
-
"generate-api": "
|
|
49
|
-
"test": "tsc --noEmit && vitest
|
|
50
|
+
"build": "tsdown --config-loader unconfig",
|
|
51
|
+
"dev": "tsdown --config-loader unconfig --watch src --onSuccess 'yarn generate-api'",
|
|
52
|
+
"lint": "eslint .",
|
|
53
|
+
"generate-api": "orval --config ../../samples/react-query/basic/orval.config.ts",
|
|
54
|
+
"test": "tsc --noEmit && vitest",
|
|
55
|
+
"clean": "rimraf .turbo dist",
|
|
56
|
+
"nuke": "rimraf .turbo dist node_modules"
|
|
50
57
|
},
|
|
51
58
|
"devDependencies": {
|
|
52
|
-
"@types/
|
|
53
|
-
"@types/js-yaml": "^4.0.
|
|
54
|
-
"@types/lodash.uniq": "^4.5.
|
|
55
|
-
"
|
|
59
|
+
"@types/fs-extra": "^11.0.4",
|
|
60
|
+
"@types/js-yaml": "^4.0.9",
|
|
61
|
+
"@types/lodash.uniq": "^4.5.9",
|
|
62
|
+
"eslint": "^9.35.0",
|
|
63
|
+
"openapi-types": "^12.1.3",
|
|
64
|
+
"rimraf": "^6.0.1",
|
|
65
|
+
"tsdown": "^0.15.2",
|
|
66
|
+
"typescript": "^5.9.2",
|
|
67
|
+
"vitest": "^3.2.4"
|
|
56
68
|
},
|
|
57
69
|
"dependencies": {
|
|
58
|
-
"@apidevtools/swagger-parser": "^
|
|
59
|
-
"@
|
|
60
|
-
"@orval/
|
|
61
|
-
"@orval/
|
|
62
|
-
"@orval/
|
|
63
|
-
"@orval/
|
|
64
|
-
"@orval/
|
|
65
|
-
"@orval/
|
|
66
|
-
"@orval/
|
|
67
|
-
"@orval/
|
|
68
|
-
"@orval/
|
|
69
|
-
"
|
|
70
|
-
"cac": "^6.7.14",
|
|
70
|
+
"@apidevtools/swagger-parser": "^12.0.0",
|
|
71
|
+
"@commander-js/extra-typings": "^14.0.0",
|
|
72
|
+
"@orval/angular": "workspace:*",
|
|
73
|
+
"@orval/axios": "workspace:*",
|
|
74
|
+
"@orval/core": "workspace:*",
|
|
75
|
+
"@orval/fetch": "workspace:*",
|
|
76
|
+
"@orval/hono": "workspace:*",
|
|
77
|
+
"@orval/mcp": "workspace:*",
|
|
78
|
+
"@orval/mock": "workspace:*",
|
|
79
|
+
"@orval/query": "workspace:*",
|
|
80
|
+
"@orval/swr": "workspace:*",
|
|
81
|
+
"@orval/zod": "workspace:*",
|
|
71
82
|
"chalk": "^4.1.2",
|
|
72
83
|
"chokidar": "^4.0.3",
|
|
84
|
+
"commander": "^14.0.1",
|
|
73
85
|
"enquirer": "^2.4.1",
|
|
74
86
|
"execa": "^5.1.1",
|
|
75
87
|
"find-up": "5.0.0",
|
|
76
|
-
"fs-extra": "^11.3.
|
|
88
|
+
"fs-extra": "^11.3.1",
|
|
89
|
+
"js-yaml": "4.1.0",
|
|
77
90
|
"lodash.uniq": "^4.5.0",
|
|
78
|
-
"openapi3-ts": "4.
|
|
91
|
+
"openapi3-ts": "4.5.0",
|
|
79
92
|
"string-argv": "^0.3.2",
|
|
80
|
-
"tsconfck": "^2.
|
|
81
|
-
"typedoc": "^0.28.
|
|
82
|
-
"typedoc-plugin-
|
|
83
|
-
"
|
|
93
|
+
"tsconfck": "^2.1.2",
|
|
94
|
+
"typedoc": "^0.28.12",
|
|
95
|
+
"typedoc-plugin-coverage": "^4.0.1",
|
|
96
|
+
"typedoc-plugin-markdown": "^4.8.1"
|
|
84
97
|
}
|
|
85
98
|
}
|