Skip to content

Commit 4e116ad

Browse files
authored
fixes links in READMEs and issue templates (#1402)
1 parent 7d62124 commit 4e116ad

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/ISSUE_TEMPLATE/bug-report-fetch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ _(in case it’s not obvious)_
2020

2121
**Checklist**
2222

23-
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-fetch/blob/main/CONTRIBUTING.md))
23+
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/bug-report-ts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ _(in case it’s not obvious)_
3131
**Checklist**
3232

3333
- [ ] My OpenAPI schema passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`)
34-
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/CONTRIBUTING.md))
34+
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/feature-request-fetch.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ _Write out the proposed syntax change. Please reference any prior art or similar
1616

1717
**Checklist**
1818

19-
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-fetch/blob/main/CONTRIBUTING.md))
19+
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/feature-request-ts.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ _Outline the change to the library. If this is for the CLI, propose a flag name
1616

1717
**Checklist**
1818

19-
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/CONTRIBUTING.md))
19+
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))

packages/openapi-fetch/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ await PUT("/blogposts", {
3636

3737
`data` and `error` are typechecked and expose their shapes to Intellisence in VS Code (and any other IDE with TypeScript support). Likewise, the request `body` will also typecheck its fields, erring if any required params are missing, or if there’s a type mismatch.
3838

39-
`GET`, `PUT`, `POST`, etc. are only thin wrappers around the native [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) (which you can [swap for any call](/openapi-fetch/api#create-client)).
39+
`GET`, `PUT`, `POST`, etc. are only thin wrappers around the native [fetch API](https://developer.mozilla.org/en-US/docs/Web/API/Fetch_API) (which you can [swap for any call](https://openapi-ts.pages.dev/openapi-fetch/api/#create-client)).
4040

4141
Notice there are no generics, and no manual typing. Your endpoint’s request and response were inferred automatically. This is a huge improvement in the type safety of your endpoints because **every manual assertion could lead to a bug**! This eliminates all of the following:
4242

packages/openapi-typescript/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,4 +85,4 @@ _Thanks, [@psmyrdek](https://github.com/psmyrdek)!_
8585

8686
## 📓 Docs
8787

88-
[View Docs](https://openapi-ts.pages.dev/)
88+
[View Docs](https://openapi-ts.pages.dev/introduction/)

0 commit comments

Comments
 (0)