Skip to content

Commit 7242291

Browse files
chore(release): v0.2.1 (#2)
Co-authored-by: brysonbw <[email protected]>
1 parent cb463bc commit 7242291

File tree

14 files changed

+40
-30
lines changed

14 files changed

+40
-30
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
### Changelog
2+
3+
All notable changes to this project will be documented in this file. Dates are displayed in UTC.
4+
5+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6+
7+
#### 0.2.1
8+
9+
- Add 'enhancement' to list of prefixes [`#1`](https://github.com/brysonbw/fetchet/pull/1)
10+
- Init fetchet [`6fca160`](https://github.com/brysonbw/fetchet/commit/6fca16019ff6f2fd60a6e95e1b15fcfb36bc0e53)

docs/api-reference/enumerations/FetchetErrorMessage.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Enumeration: FetchetErrorMessage
88

9-
Defined in: types.ts:60
9+
Defined in: [types.ts:60](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L60)
1010

1111
Enum representing common error messages thrown during request preparation or parsing
1212

@@ -16,20 +16,20 @@ Enum representing common error messages thrown during request preparation or par
1616

1717
> **HeadersInvalid**: `"Cannot read Headers"`
1818
19-
Defined in: types.ts:61
19+
Defined in: [types.ts:61](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L61)
2020

2121
***
2222

2323
### UndefinedOrInvalidProperty
2424

2525
> **UndefinedOrInvalidProperty**: `"Cannot read undefined or invalid properties"`
2626
27-
Defined in: types.ts:62
27+
Defined in: [types.ts:62](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L62)
2828

2929
***
3030

3131
### UnsupportedHTTPMethod
3232

3333
> **UnsupportedHTTPMethod**: `"Cannot read HTTP method"`
3434
35-
Defined in: types.ts:63
35+
Defined in: [types.ts:63](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L63)

docs/api-reference/enumerations/FetchetRequestMethod.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Enumeration: FetchetRequestMethod
88

9-
Defined in: types.ts:33
9+
Defined in: [types.ts:33](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L33)
1010

1111
Enum representing [HTTP request methods](https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Methods)
1212

@@ -16,7 +16,7 @@ Enum representing [HTTP request methods](https://developer.mozilla.org/en-US/doc
1616

1717
> **DELETE**: `"DELETE"`
1818
19-
Defined in: types.ts:44
19+
Defined in: [types.ts:44](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L44)
2020

2121
Delete the specified resource
2222

@@ -26,7 +26,7 @@ Delete the specified resource
2626

2727
> **GET**: `"GET"`
2828
29-
Defined in: types.ts:35
29+
Defined in: [types.ts:35](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L35)
3030

3131
Request a representation of the specified resource
3232

@@ -36,7 +36,7 @@ Request a representation of the specified resource
3636

3737
> **HEAD**: `"HEAD"`
3838
39-
Defined in: types.ts:53
39+
Defined in: [types.ts:53](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L53)
4040

4141
Ask for a response identical to a GET request, but without a response body
4242

@@ -46,7 +46,7 @@ Ask for a response identical to a GET request, but without a response body
4646

4747
> **OPTIONS**: `"OPTIONS"`
4848
49-
Defined in: types.ts:50
49+
Defined in: [types.ts:50](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L50)
5050

5151
Describe the communication options for the target resource
5252

@@ -56,7 +56,7 @@ Describe the communication options for the target resource
5656

5757
> **PATCH**: `"PATCH"`
5858
59-
Defined in: types.ts:47
59+
Defined in: [types.ts:47](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L47)
6060

6161
Applies partial modifications to a resource
6262

@@ -66,7 +66,7 @@ Applies partial modifications to a resource
6666

6767
> **POST**: `"POST"`
6868
69-
Defined in: types.ts:38
69+
Defined in: [types.ts:38](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L38)
7070

7171
Submit an entity to the specified resource
7272

@@ -76,6 +76,6 @@ Submit an entity to the specified resource
7676

7777
> **PUT**: `"PUT"`
7878
79-
Defined in: types.ts:41
79+
Defined in: [types.ts:41](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L41)
8080

8181
Replace all current representations of the target resource with the request

docs/api-reference/functions/fetchet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **fetchet**(`url`, `options?`): `Promise`\<`Response`\>
1010
11-
Defined in: fetchet.ts:31
11+
Defined in: [fetchet.ts:31](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/fetchet.ts#L31)
1212

1313
fetchet – HTTP fetch client
1414

docs/api-reference/interfaces/IFetchetOptions.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,52 +6,52 @@
66

77
# Interface: IFetchetOptions
88

9-
Defined in: types.ts:1
9+
Defined in: [types.ts:1](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L1)
1010

1111
## Properties
1212

1313
### body?
1414

1515
> `optional` **body**: [`FetchetRequestBody`](../type-aliases/FetchetRequestBody.md) \| `Record`\<`string` \| `number` \| `symbol`, `any`\>
1616
17-
Defined in: types.ts:2
17+
Defined in: [types.ts:2](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L2)
1818

1919
***
2020

2121
### config?
2222

2323
> `optional` **config**: `RequestInit`
2424
25-
Defined in: types.ts:3
25+
Defined in: [types.ts:3](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L3)
2626

2727
***
2828

2929
### headers?
3030

3131
> `optional` **headers**: `HeadersInit`
3232
33-
Defined in: types.ts:4
33+
Defined in: [types.ts:4](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L4)
3434

3535
***
3636

3737
### json?
3838

3939
> `optional` **json**: `boolean`
4040
41-
Defined in: types.ts:5
41+
Defined in: [types.ts:5](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L5)
4242

4343
***
4444

4545
### method?
4646

4747
> `optional` **method**: [`FetchetRequestMethod`](../enumerations/FetchetRequestMethod.md)
4848
49-
Defined in: types.ts:6
49+
Defined in: [types.ts:6](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L6)
5050

5151
***
5252

5353
### parameters?
5454

5555
> `optional` **parameters**: [`FetchetParameter`](../type-aliases/FetchetParameter.md)
5656
57-
Defined in: types.ts:7
57+
Defined in: [types.ts:7](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L7)

docs/api-reference/type-aliases/FetchetConfig.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
> **FetchetConfig** = `RequestInit`
1010
11-
Defined in: types.ts:12
11+
Defined in: [types.ts:12](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L12)
1212

1313
Contains options that control things like HTTP method, headers, body content, credentials, and more

docs/api-reference/type-aliases/FetchetHeaders.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
> **FetchetHeaders** = `HeadersInit`
1010
11-
Defined in: types.ts:14
11+
Defined in: [types.ts:14](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L14)

docs/api-reference/type-aliases/FetchetJSON.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@
88

99
> **FetchetJSON** = `boolean`
1010
11-
Defined in: types.ts:16
11+
Defined in: [types.ts:16](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L16)
1212

1313
Specifies if request body contents to be handled as JSON

docs/api-reference/type-aliases/FetchetParameter.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
> **FetchetParameter** = `Record`\<`string`, `string`\> \| `URLSearchParams`
1010
11-
Defined in: types.ts:17
11+
Defined in: [types.ts:17](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L17)

docs/api-reference/type-aliases/FetchetRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
> **FetchetRequest** = `RequestInfo` \| `URL`
1010
11-
Defined in: types.ts:13
11+
Defined in: [types.ts:13](https://github.com/brysonbw/fetchet/blob/cb463bcedb07349f7406e3d774822146d47c777d/src/types.ts#L13)

0 commit comments

Comments
 (0)