pull/700/head
Travis Fischer 2025-03-23 14:56:17 +08:00
rodzic 8651ab1abb
commit 86f8a9771d
18 zmienionych plików z 8 dodań i 4 usunięć

Wyświetl plik

@ -1,5 +1,5 @@
{
"root": true,
"extends": ["@fisch0920/eslint-config/node"],
"ignorePatterns": ["out", "packages/openapi-to-ts-client/fixtures/generated"]
"ignorePatterns": ["out", "packages/openapi-to-ts/fixtures/generated"]
}

Wyświetl plik

@ -1,2 +1,2 @@
out
packages/openapi-to-ts-client/fixtures/generated
packages/openapi-to-ts/fixtures/generated

Wyświetl plik

@ -1,5 +1,5 @@
{
"name": "@agentic/openapi-to-ts-client",
"name": "@agentic/openapi-to-ts",
"version": "0.1.0",
"description": "TODO",
"author": "Travis Fischer <travis@transitivebullsh.it>",
@ -13,7 +13,7 @@
"types": "./dist/index.d.ts",
"sideEffects": false,
"bin": {
"openapi-to-ts-client": "./dist/index.js"
"openapi-to-ts": "./dist/index.js"
},
"files": [
"dist"

Wyświetl plik

@ -21,6 +21,10 @@
## TODO
- convert to https://github.com/readmeio/oas
- support filters
- // match only the schema named `foo` and `GET` operation for the `/api/v1/foo` path
- include: '^(#/components/schemas/foo|#/paths/api/v1/foo/get)$',
- [ ] Convert HTML in descriptions to markdown.
- [ ] Properly format multiline function comments.
- [ ] Debug stripe schema issue.