@hey-api/openapi-ts 0.64.15 → 0.66.0
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/bin/index.cjs +7 -0
- package/dist/index.cjs +55 -55
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +111 -30
- package/dist/index.d.ts +111 -30
- package/dist/index.js +56 -56
- package/dist/index.js.map +1 -1
- package/package.json +7 -34
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hey-api/openapi-ts",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.66.0",
|
|
4
4
|
"description": "🚀 The OpenAPI to TypeScript codegen. Generate clients, SDKs, validators, and more.",
|
|
5
5
|
"homepage": "https://heyapi.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -66,7 +66,7 @@
|
|
|
66
66
|
"node": "^18.18.0 || ^20.9.0 || >=22.10.0"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@hey-api/json-schema-ref-parser": "1.0.
|
|
69
|
+
"@hey-api/json-schema-ref-parser": "1.0.4",
|
|
70
70
|
"c12": "2.0.1",
|
|
71
71
|
"commander": "13.0.0",
|
|
72
72
|
"handlebars": "4.7.8"
|
|
@@ -75,55 +75,28 @@
|
|
|
75
75
|
"typescript": "^5.5.3"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@angular-devkit/build-angular": "19.2.0",
|
|
79
|
-
"@angular/animations": "19.2.0",
|
|
80
|
-
"@angular/cli": "19.2.0",
|
|
81
|
-
"@angular/common": "19.2.0",
|
|
82
|
-
"@angular/compiler": "19.2.0",
|
|
83
|
-
"@angular/compiler-cli": "19.2.0",
|
|
84
|
-
"@angular/core": "19.2.0",
|
|
85
|
-
"@angular/forms": "19.2.0",
|
|
86
|
-
"@angular/platform-browser": "19.2.0",
|
|
87
|
-
"@angular/platform-browser-dynamic": "19.2.0",
|
|
88
|
-
"@angular/router": "19.2.0",
|
|
89
|
-
"@tanstack/angular-query-experimental": "5.62.13",
|
|
90
|
-
"@tanstack/react-query": "5.62.15",
|
|
91
|
-
"@tanstack/solid-query": "5.51.21",
|
|
92
|
-
"@tanstack/svelte-query": "5.62.12",
|
|
93
|
-
"@tanstack/vue-query": "5.62.12",
|
|
94
78
|
"@types/cross-spawn": "6.0.6",
|
|
95
79
|
"@types/express": "4.17.21",
|
|
96
80
|
"axios": "1.7.9",
|
|
97
81
|
"cross-spawn": "7.0.5",
|
|
98
82
|
"eslint": "9.17.0",
|
|
99
83
|
"express": "4.21.0",
|
|
100
|
-
"fastify": "5.2.0",
|
|
101
84
|
"glob": "10.4.3",
|
|
102
85
|
"node-fetch": "3.3.2",
|
|
103
|
-
"nuxt": "3.14.1592",
|
|
104
86
|
"prettier": "3.4.2",
|
|
105
|
-
"puppeteer": "22.12.1",
|
|
106
|
-
"rxjs": "7.8.1",
|
|
107
87
|
"ts-node": "10.9.2",
|
|
108
88
|
"tslib": "2.8.1",
|
|
109
|
-
"typescript": "5.5.3"
|
|
110
|
-
"vue": "3.5.13",
|
|
111
|
-
"zod": "3.23.8",
|
|
112
|
-
"@hey-api/client-axios": "0.6.3",
|
|
113
|
-
"@hey-api/client-next": "0.2.4",
|
|
114
|
-
"@hey-api/client-nuxt": "0.3.1",
|
|
115
|
-
"@hey-api/client-fetch": "0.8.4"
|
|
89
|
+
"typescript": "5.5.3"
|
|
116
90
|
},
|
|
117
91
|
"scripts": {
|
|
118
92
|
"build": "tsup && pnpm check-exports",
|
|
119
93
|
"check-exports": "attw --pack .",
|
|
120
94
|
"dev": "tsup --watch",
|
|
121
95
|
"handlebars": "node src/legacy/handlebars/handlebars.cjs",
|
|
122
|
-
"test:coverage": "vitest run --
|
|
123
|
-
"test:
|
|
124
|
-
"test:
|
|
125
|
-
"test
|
|
126
|
-
"test": "vitest run --config vitest.config.unit.ts",
|
|
96
|
+
"test:coverage": "vitest run --coverage",
|
|
97
|
+
"test:update": "vitest watch --update",
|
|
98
|
+
"test:watch": "vitest watch",
|
|
99
|
+
"test": "vitest run",
|
|
127
100
|
"typecheck": "tsc --noEmit"
|
|
128
101
|
}
|
|
129
102
|
}
|