@hey-api/openapi-ts 0.60.1 → 0.61.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +229 -8
- package/bin/index.cjs +12 -2
- package/dist/index.cjs +179 -180
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4680 -2875
- package/dist/index.d.ts +4680 -2875
- package/dist/index.js +174 -174
- package/dist/index.js.map +1 -1
- package/package.json +22 -23
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hey-api/openapi-ts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.61.1",
|
|
4
4
|
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
|
|
5
5
|
"homepage": "https://heyapi.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -13,8 +13,8 @@
|
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"author": {
|
|
15
15
|
"email": "lubos@heyapi.dev",
|
|
16
|
-
"name": "
|
|
17
|
-
"url": "https://
|
|
16
|
+
"name": "Hey API",
|
|
17
|
+
"url": "https://heyapi.dev"
|
|
18
18
|
},
|
|
19
19
|
"funding": "https://github.com/sponsors/hey-api",
|
|
20
20
|
"keywords": [
|
|
@@ -63,31 +63,31 @@
|
|
|
63
63
|
"node": "^18.0.0 || >=20.0.0"
|
|
64
64
|
},
|
|
65
65
|
"dependencies": {
|
|
66
|
-
"@
|
|
66
|
+
"@hey-api/json-schema-ref-parser": "1.0.1",
|
|
67
67
|
"c12": "2.0.1",
|
|
68
|
-
"commander": "
|
|
68
|
+
"commander": "13.0.0",
|
|
69
69
|
"handlebars": "4.7.8"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|
|
72
72
|
"typescript": "^5.x"
|
|
73
73
|
},
|
|
74
74
|
"devDependencies": {
|
|
75
|
-
"@angular-devkit/build-angular": "19.0.
|
|
76
|
-
"@angular/animations": "19.0.
|
|
77
|
-
"@angular/cli": "19.0.
|
|
78
|
-
"@angular/common": "19.0.
|
|
79
|
-
"@angular/compiler": "19.0.
|
|
80
|
-
"@angular/compiler-cli": "19.0.
|
|
81
|
-
"@angular/core": "19.0.
|
|
82
|
-
"@angular/forms": "19.0.
|
|
83
|
-
"@angular/platform-browser": "19.0.
|
|
84
|
-
"@angular/platform-browser-dynamic": "19.0.
|
|
85
|
-
"@angular/router": "19.0.
|
|
86
|
-
"@tanstack/angular-query-experimental": "5.62.
|
|
87
|
-
"@tanstack/react-query": "5.62.
|
|
75
|
+
"@angular-devkit/build-angular": "19.0.6",
|
|
76
|
+
"@angular/animations": "19.0.5",
|
|
77
|
+
"@angular/cli": "19.0.6",
|
|
78
|
+
"@angular/common": "19.0.5",
|
|
79
|
+
"@angular/compiler": "19.0.5",
|
|
80
|
+
"@angular/compiler-cli": "19.0.5",
|
|
81
|
+
"@angular/core": "19.0.5",
|
|
82
|
+
"@angular/forms": "19.0.5",
|
|
83
|
+
"@angular/platform-browser": "19.0.5",
|
|
84
|
+
"@angular/platform-browser-dynamic": "19.0.5",
|
|
85
|
+
"@angular/router": "19.0.5",
|
|
86
|
+
"@tanstack/angular-query-experimental": "5.62.13",
|
|
87
|
+
"@tanstack/react-query": "5.62.15",
|
|
88
88
|
"@tanstack/solid-query": "5.51.21",
|
|
89
|
-
"@tanstack/svelte-query": "5.62.
|
|
90
|
-
"@tanstack/vue-query": "5.62.
|
|
89
|
+
"@tanstack/svelte-query": "5.62.12",
|
|
90
|
+
"@tanstack/vue-query": "5.62.12",
|
|
91
91
|
"@types/cross-spawn": "6.0.6",
|
|
92
92
|
"@types/express": "4.17.21",
|
|
93
93
|
"axios": "1.7.9",
|
|
@@ -104,8 +104,8 @@
|
|
|
104
104
|
"tslib": "2.8.1",
|
|
105
105
|
"typescript": "5.5.3",
|
|
106
106
|
"zod": "3.23.8",
|
|
107
|
-
"@hey-api/client-axios": "0.
|
|
108
|
-
"@hey-api/client-fetch": "0.
|
|
107
|
+
"@hey-api/client-axios": "0.4.0",
|
|
108
|
+
"@hey-api/client-fetch": "0.6.0"
|
|
109
109
|
},
|
|
110
110
|
"scripts": {
|
|
111
111
|
"build": "tsup && pnpm check-exports",
|
|
@@ -114,7 +114,6 @@
|
|
|
114
114
|
"handlebars": "node src/legacy/handlebars/handlebars.cjs",
|
|
115
115
|
"test:coverage": "vitest run --config vitest.config.unit.ts --coverage",
|
|
116
116
|
"test:e2e": "vitest run --config vitest.config.e2e.ts",
|
|
117
|
-
"test:sample": "node test/sample.cjs",
|
|
118
117
|
"test:update": "vitest watch --config vitest.config.unit.ts --update",
|
|
119
118
|
"test:watch": "vitest watch --config vitest.config.unit.ts",
|
|
120
119
|
"test": "vitest run --config vitest.config.unit.ts",
|