Skip to content

Commit 9485a9a

Browse files
committed
0.1.2
1 parent df16f64 commit 9485a9a

8 files changed

Lines changed: 14 additions & 14 deletions

File tree

apis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[< Back](./../README.md)
22

3-
# @jderjs/core v0.1.1
3+
# @jderjs/core v0.1.2
44

55
## Type Aliases
66

apis/functions/createJsonResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
function createJsonResponse<D>(options?): Response;
77
```
88

9-
Defined in: [json/index.ts:151](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L151)
9+
Defined in: [json/index.ts:147](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L147)
1010

1111
Create a JSON response.
1212

apis/functions/createResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
function createResponse<D>(options?): Response;
77
```
88

9-
Defined in: [index.ts:73](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/index.ts#L73)
9+
Defined in: [index.ts:73](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/index.ts#L73)
1010

1111
Create a response.
1212

apis/type-aliases/CreateJsonResponseOptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
type CreateJsonResponseOptions<D> = CreateJsonResponseStructOptions<D>;
77
```
88

9-
Defined in: [json/index.ts:105](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L105)
9+
Defined in: [json/index.ts:101](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L101)
1010

1111
Options of `createJsonResponse` function.
1212

apis/type-aliases/CreateResponseOptions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
type CreateResponseOptions<D> = CreateResponseStructOptions<D>;
77
```
88

9-
Defined in: [index.ts:40](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/index.ts#L40)
9+
Defined in: [index.ts:40](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/index.ts#L40)
1010

1111
Options of `createResponse` function.
1212

apis/type-aliases/JsonResponse.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
type JsonResponse<D> = object;
77
```
88

9-
Defined in: [json/index.ts:14](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L14)
9+
Defined in: [json/index.ts:14](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L14)
1010

1111
JSON response.
1212

@@ -24,7 +24,7 @@ JSON response.
2424
optional data: D;
2525
```
2626

27-
Defined in: [json/index.ts:18](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L18)
27+
Defined in: [json/index.ts:18](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L18)
2828

2929
Data for the response when `success` is `true`.
3030

@@ -36,7 +36,7 @@ Data for the response when `success` is `true`.
3636
optional error: JsonResponseError;
3737
```
3838

39-
Defined in: [json/index.ts:20](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L20)
39+
Defined in: [json/index.ts:20](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L20)
4040

4141
Error for the response when `success` is `false`.
4242

@@ -48,6 +48,6 @@ Error for the response when `success` is `false`.
4848
success: boolean;
4949
```
5050

51-
Defined in: [json/index.ts:16](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L16)
51+
Defined in: [json/index.ts:16](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L16)
5252

5353
Whether the response is successful.

apis/type-aliases/JsonResponseError.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
type JsonResponseError = object;
77
```
88

9-
Defined in: [json/index.ts:4](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L4)
9+
Defined in: [json/index.ts:4](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L4)
1010

1111
JSON response error.
1212

@@ -18,7 +18,7 @@ JSON response error.
1818
code: string;
1919
```
2020

21-
Defined in: [json/index.ts:6](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L6)
21+
Defined in: [json/index.ts:6](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L6)
2222

2323
Error code.
2424

@@ -30,7 +30,7 @@ Error code.
3030
optional field: string;
3131
```
3232

33-
Defined in: [json/index.ts:8](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L8)
33+
Defined in: [json/index.ts:8](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L8)
3434

3535
Field of the error.
3636

@@ -42,6 +42,6 @@ Field of the error.
4242
optional message: string;
4343
```
4444

45-
Defined in: [json/index.ts:10](https://github.com/jder-std/core.js/blob/8f752d1679b827b4deb2cd21184bd81491ea8d2c/package/src/response/json/index.ts#L10)
45+
Defined in: [json/index.ts:10](https://github.com/jder-std/core.js/blob/df16f6474437d321209268c15546284823cc2253/package/src/response/json/index.ts#L10)
4646

4747
Message of the error.

package/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## 0.1.2
1+
## 0.1.2 (2025-05-26)
22

33
### What's Changed
44

0 commit comments

Comments
 (0)