Skip to content

Commit 338bbf6

Browse files
committed
first commit
0 parents  commit 338bbf6

File tree

128 files changed

+18051
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

128 files changed

+18051
-0
lines changed

.changeset/config.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": ["@changesets/changelog-github", { "repo": "hirotaka/openapi-typescript-vue" }],
4+
"ignore": ["openapi-typescript-vue-docs", "@example/*"],
5+
"commit": false,
6+
"fixed": [],
7+
"linked": [],
8+
"access": "public",
9+
"baseBranch": "main"
10+
}

.changeset/initial-release.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
"openapi-vue-query": patch
3+
---
4+
5+
Initial release of openapi-vue-query
6+
7+
Fast, type-safe @tanstack/vue-query client for OpenAPI schemas

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @openapi-ts/maintainers

.github/FUNDING.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# These are supported funding model platforms
2+
3+
github: # Replace with GitHub username(s)
4+
patreon: # Replace with a single Patreon username
5+
open_collective: openapi-ts
6+
ko_fi: # Replace with a single Ko-fi username
7+
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
8+
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
9+
liberapay: # Replace with a single Liberapay username
10+
issuehunt: # Replace with a single IssueHunt username
11+
lfx_crowdfunding: # Replace with a single LFX Crowdfunding project-name e.g., cloud-foundry
12+
polar: # Replace with a single Polar username
13+
custom: # Replace with up to 4 custom sponsorship URLs e.g., ['link1', 'link2']
Lines changed: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,61 @@
1+
name: "openapi-typescript: Bug report"
2+
description: Report a bug or unexpected behavior
3+
labels:
4+
- openapi-ts
5+
- bug
6+
- triage
7+
body:
8+
- type: input
9+
id: version
10+
attributes:
11+
label: openapi-typescript version
12+
placeholder: x.x.x
13+
validations:
14+
required: true
15+
- type: input
16+
id: node
17+
attributes:
18+
label: Node.js version
19+
placeholder: 20.x.x
20+
validations:
21+
required: true
22+
- type: input
23+
id: os
24+
attributes:
25+
label: OS + version
26+
placeholder: macOS 15.1.1
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: description
31+
attributes:
32+
label: Description
33+
description: A brief description of the bug. Provide either a screenshot or the full error message!
34+
validations:
35+
required: true
36+
- type: textarea
37+
id: repro
38+
attributes:
39+
label: Reproduction
40+
description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link.
41+
validations:
42+
required: true
43+
- type: textarea
44+
attributes:
45+
label: Expected result
46+
description: (In case it’s not obvious)
47+
validations:
48+
required: true
49+
- type: checkboxes
50+
id: required
51+
attributes:
52+
label: Required
53+
options:
54+
- label: My OpenAPI schema is valid and passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`)
55+
required: true
56+
- type: checkboxes
57+
id: extra
58+
attributes:
59+
label: Extra
60+
options:
61+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "openapi-typescript: Feature request"
2+
description: Propose new functionality or a breaking change
3+
labels:
4+
- openapi-ts
5+
- enhancement
6+
projects:
7+
- openapi-ts/2
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Description
13+
description: Brief description of the problem you’re trying to solve, and why this could be useful.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: proposal
18+
attributes:
19+
label: Proposal
20+
description: Outline the change to the library. If this is for the CLI, propose a flag name and/or workflow. If this is for Node API, propose how this would be consumed. Reference any prior art or similar examples.
21+
validations:
22+
required: true
23+
- type: checkboxes
24+
id: extra
25+
attributes:
26+
label: Extra
27+
options:
28+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
name: "openapi-fetch: Bug report"
2+
description: Report a bug or unexpected behavior
3+
labels:
4+
- openapi-fetch
5+
- bug
6+
- triage
7+
body:
8+
- type: input
9+
id: version
10+
attributes:
11+
label: openapi-fetch version
12+
placeholder: x.x.x
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: Description
19+
description: A brief description of the bug. Provide either a screenshot or the full error message!
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: repro
24+
attributes:
25+
label: Reproduction
26+
description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link.
27+
validations:
28+
required: true
29+
- type: textarea
30+
attributes:
31+
label: Expected result
32+
description: (In case it’s not obvious)
33+
validations:
34+
required: true
35+
- type: checkboxes
36+
id: extra
37+
attributes:
38+
label: Extra
39+
options:
40+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: "openapi-fetch: Feature request"
2+
description: Propose new functionality or a breaking change
3+
labels:
4+
- openapi-fetch
5+
- enhancement
6+
projects:
7+
- openapi-ts/3
8+
body:
9+
- type: textarea
10+
id: description
11+
attributes:
12+
label: Description
13+
description: Brief description of the problem you’re trying to solve, and why this could be useful.
14+
validations:
15+
required: true
16+
- type: textarea
17+
id: proposal
18+
attributes:
19+
label: Proposal
20+
description: Describe the proposed syntax change. Please reference any prior art or similar examples.
21+
validations:
22+
required: true
23+
- type: checkboxes
24+
id: extra
25+
attributes:
26+
label: Extra
27+
options:
28+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
name: "openapi-react-query: Bug report"
2+
description: Report a bug or unexpected behavior
3+
labels:
4+
- openapi-react-query
5+
- bug
6+
- triage
7+
body:
8+
- type: input
9+
id: version
10+
attributes:
11+
label: openapi-react-query version
12+
placeholder: x.x.x
13+
validations:
14+
required: true
15+
- type: textarea
16+
id: description
17+
attributes:
18+
label: Description
19+
description: A brief description of the bug. Provide either a screenshot or the full error message!
20+
validations:
21+
required: true
22+
- type: textarea
23+
id: repro
24+
attributes:
25+
label: Reproduction
26+
description: How can this be reproduced / when did the error occur? Does the issue occur in a specific browser, or all browsers? Bonus points for a GitHub repository link.
27+
validations:
28+
required: true
29+
- type: textarea
30+
id: expected
31+
attributes:
32+
label: Expected result
33+
description: (In case it’s not obvious)
34+
validations:
35+
required: true
36+
- type: checkboxes
37+
id: extra
38+
attributes:
39+
label: Extra
40+
options:
41+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md))
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: "openapi-react-query: Feature request"
2+
description: Propose new functionality or a breaking change
3+
labels:
4+
- openapi-react-query
5+
- enhancement
6+
body:
7+
- type: textarea
8+
id: description
9+
attributes:
10+
label: Description
11+
description: Brief description of the problem you’re trying to solve, and why this could be useful.
12+
validations:
13+
required: true
14+
- type: textarea
15+
id: proposal
16+
attributes:
17+
label: Proposal
18+
description: Describe the proposed syntax change. Please reference any prior art or similar examples.
19+
validations:
20+
required: true
21+
- type: checkboxes
22+
id: extra
23+
attributes:
24+
label: Extra
25+
options:
26+
- label: I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-react-query/CONTRIBUTING.md))

0 commit comments

Comments
 (0)