@gcforms/types 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/dist/index.d.mts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
8
|
|
|
9
|
+
## [1.0.16] - 2025-08-13
|
|
10
|
+
|
|
11
|
+
- Add DateObject to Response definition
|
|
12
|
+
|
|
9
13
|
## [1.0.15] - 2025-08-13
|
|
10
14
|
|
|
11
15
|
### Changed
|
package/dist/index.d.mts
CHANGED
|
@@ -202,7 +202,7 @@ declare enum DatePart {
|
|
|
202
202
|
type Responses = {
|
|
203
203
|
[key: string]: Response;
|
|
204
204
|
};
|
|
205
|
-
type Response = string | string[] | number | Record<string, unknown>[] | FileInputResponse | FileInputResponse[] | Record<string, unknown>;
|
|
205
|
+
type Response = string | string[] | number | Record<string, unknown>[] | FileInputResponse | FileInputResponse[] | DateObject | Record<string, unknown>;
|
|
206
206
|
type FileInputResponse = {
|
|
207
207
|
name: string | null;
|
|
208
208
|
size: number | null;
|
package/dist/index.d.ts
CHANGED
|
@@ -202,7 +202,7 @@ declare enum DatePart {
|
|
|
202
202
|
type Responses = {
|
|
203
203
|
[key: string]: Response;
|
|
204
204
|
};
|
|
205
|
-
type Response = string | string[] | number | Record<string, unknown>[] | FileInputResponse | FileInputResponse[] | Record<string, unknown>;
|
|
205
|
+
type Response = string | string[] | number | Record<string, unknown>[] | FileInputResponse | FileInputResponse[] | DateObject | Record<string, unknown>;
|
|
206
206
|
type FileInputResponse = {
|
|
207
207
|
name: string | null;
|
|
208
208
|
size: number | null;
|