Skip to content

Commit 7bd29b0

Browse files
authored
Merge branch 'main' into feat/plugin-pydantic-resolvers
2 parents 8090ac4 + 750c5d7 commit 7bd29b0

27 files changed

Lines changed: 3045 additions & 424 deletions

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"**/.mypy_cache": true,
2222
"**/__snapshots__": true,
2323
"**/coverage": true,
24+
"**/openapi-python-tests/**/.gen": true,
2425
"**/openapi-ts-tests/**/generated": true,
2526
"**/openapi-ts-tests/**/.gen": true,
2627
"**/*.tsbuildinfo": true

dev/inputs.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
import path from 'node:path';
22

3-
import { getSpecsPath } from '../packages/openapi-ts-tests/utils';
3+
const specsPath = path.join(__dirname, '..', 'specs');
44

55
export const inputs = {
6-
circular: path.resolve(getSpecsPath(), '3.0.x', 'circular.yaml'),
7-
full: path.resolve(getSpecsPath(), '3.1.x', 'full.yaml'),
6+
circular: path.resolve(specsPath, '3.0.x', 'circular.yaml'),
7+
full: path.resolve(specsPath, '3.1.x', 'full.yaml'),
88
local: 'http://localhost:8000/openapi.json',
9-
opencode: path.resolve(getSpecsPath(), '3.1.x', 'opencode.yaml'),
9+
opencode: path.resolve(specsPath, '3.1.x', 'opencode.yaml'),
1010
petstore:
1111
'https://raw.githubusercontent.com/swagger-api/swagger-petstore/master/src/main/resources/openapi.yaml',
1212
redfish:
1313
'https://raw.githubusercontent.com/DMTF/Redfish-Publications/refs/heads/main/openapi/openapi.yaml',
1414
scalar: 'scalar:@scalar/access-service',
15-
transformers: path.resolve(getSpecsPath(), '3.1.x', 'transformers.json'),
16-
validators: path.resolve(getSpecsPath(), '3.1.x', 'validators.yaml'),
15+
transformers: path.resolve(specsPath, '3.1.x', 'transformers.json'),
16+
validators: path.resolve(specsPath, '3.1.x', 'validators.yaml'),
1717
} as const;
1818

1919
export type InputKey = keyof typeof inputs;

dev/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@
1212
"@hey-api/codegen-core": "workspace:*",
1313
"@hey-api/openapi-python": "workspace:*",
1414
"@hey-api/openapi-ts": "workspace:*",
15-
"@opencode-ai/sdk": "1.1.48",
15+
"@opencode-ai/sdk": "1.2.20",
1616
"@pinia/colada": "0.19.1",
1717
"@tanstack/angular-query-experimental": "5.90.25",
1818
"@tanstack/preact-query": "5.93.0",
1919
"@tanstack/react-query": "5.90.21",
2020
"@tanstack/solid-query": "5.90.23",
2121
"@tanstack/svelte-query": "5.90.2",
2222
"@tanstack/vue-query": "5.92.9",
23-
"arktype": "2.1.29",
23+
"arktype": "2.2.0",
2424
"nuxt": "3.21.0",
2525
"swr": "2.4.0",
2626
"tsx": "4.21.0",

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
"devDependencies": {
5151
"@arethetypeswrong/cli": "0.18.2",
5252
"@changesets/cli": "2.30.0",
53-
"@changesets/get-github-info": "0.7.0",
54-
"@changesets/parse": "0.4.2",
53+
"@changesets/get-github-info": "0.8.0",
54+
"@changesets/parse": "0.4.3",
5555
"@changesets/types": "6.1.0",
5656
"@eslint/js": "9.39.2",
5757
"@hey-api/custom-client": "workspace:*",
@@ -67,13 +67,13 @@
6767
"eslint-plugin-sort-keys-fix": "1.1.2",
6868
"eslint-plugin-typescript-sort-keys": "3.3.0",
6969
"eslint-plugin-vue": "10.7.0",
70-
"globals": "17.3.0",
70+
"globals": "17.4.0",
7171
"husky": "9.1.7",
72-
"lint-staged": "16.2.7",
72+
"lint-staged": "16.3.2",
7373
"oxfmt": "0.36.0",
7474
"tsdown": "0.18.4",
7575
"tsx": "4.21.0",
76-
"turbo": "2.8.12",
76+
"turbo": "2.8.14",
7777
"typescript": "5.9.3",
7878
"typescript-eslint": "8.54.0",
7979
"vitest": "4.0.18"
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.DS_Store
2+
.idea
3+
.tsdown
4+
.tmp
5+
junit.xml
6+
logs
7+
node_modules
8+
npm-debug.log*
9+
temp
10+
yarn-debug.log*
11+
yarn-error.log*
12+
13+
*.iml
14+
dist
15+
coverage
16+
.env
17+
18+
# test files
19+
.gen/

0 commit comments

Comments
 (0)