@gcforms/types 1.0.13 → 1.0.14

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 CHANGED
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
5
5
  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
+ ## [1.0.14] - 2025-07-10
9
+
10
+ ### Changed
11
+
12
+ - Update fileInputResponse to migrate from base64 to BufferArray
13
+
8
14
  # [1.0.13] - 2025-07-08
9
15
 
10
16
  ### Changed
@@ -15,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
15
21
 
16
22
  ### Changed
17
23
 
24
+ - Update fileInputResponse to migrate from base64 to BufferArray
25
+
18
26
  ## [1.0.11] - 2025-06-23
19
27
 
20
28
  ### Changed
package/dist/index.d.mts CHANGED
@@ -194,7 +194,7 @@ type Response = string | string[] | number | Record<string, unknown>[] | FileInp
194
194
  type FileInputResponse = {
195
195
  name: string | null;
196
196
  size: number | null;
197
- based64EncodedFile: string | null;
197
+ content: ArrayBuffer | null;
198
198
  };
199
199
 
200
200
  export { type AddressComponents, type BrandProperties, type ClosedDetails, type ConditionalRule, type DeliveryOption, type ElementProperties, type FileInputResponse, type FormElement, FormElementTypes, type FormProperties, type FormPurpose, type FormRecord, FormStatus, type Group, NotificationsInterval, NotificationsIntervalDefault, type PropertyChoices, type PublicFormRecord, type Response, type Responses, type SecurityAttribute, SortOption, type SortValue, type ValidationProperties, type dynamicRowType };
package/dist/index.d.ts CHANGED
@@ -194,7 +194,7 @@ type Response = string | string[] | number | Record<string, unknown>[] | FileInp
194
194
  type FileInputResponse = {
195
195
  name: string | null;
196
196
  size: number | null;
197
- based64EncodedFile: string | null;
197
+ content: ArrayBuffer | null;
198
198
  };
199
199
 
200
200
  export { type AddressComponents, type BrandProperties, type ClosedDetails, type ConditionalRule, type DeliveryOption, type ElementProperties, type FileInputResponse, type FormElement, FormElementTypes, type FormProperties, type FormPurpose, type FormRecord, FormStatus, type Group, NotificationsInterval, NotificationsIntervalDefault, type PropertyChoices, type PublicFormRecord, type Response, type Responses, type SecurityAttribute, SortOption, type SortValue, type ValidationProperties, type dynamicRowType };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gcforms/types",
3
- "version": "1.0.13",
3
+ "version": "1.0.14",
4
4
  "author": "Canadian Digital Service",
5
5
  "license": "MIT",
6
6
  "publishConfig": {