@gcforms/types 1.0.23 → 1.0.24

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/dist/index.d.mts CHANGED
@@ -177,6 +177,7 @@ type FormRecord = {
177
177
  id: string;
178
178
  createdAt?: string;
179
179
  updatedAt?: string;
180
+ ttl?: Date | null;
180
181
  name: string;
181
182
  form: FormProperties;
182
183
  isPublished: boolean;
@@ -186,7 +187,7 @@ type FormRecord = {
186
187
  closedDetails?: ClosedDetails;
187
188
  saveAndResume?: boolean;
188
189
  notificationsInterval?: NotificationsInterval;
189
- [key: string]: string | boolean | number | FormProperties | DeliveryOption | ClosedDetails | undefined | null;
190
+ [key: string]: string | boolean | number | Date | FormProperties | DeliveryOption | ClosedDetails | undefined | null;
190
191
  };
191
192
  type SecurityAttribute = "Unclassified" | "Protected A" | "Protected B";
192
193
  type FormPurpose = "" | "admin" | "nonAdmin";
package/dist/index.d.ts CHANGED
@@ -177,6 +177,7 @@ type FormRecord = {
177
177
  id: string;
178
178
  createdAt?: string;
179
179
  updatedAt?: string;
180
+ ttl?: Date | null;
180
181
  name: string;
181
182
  form: FormProperties;
182
183
  isPublished: boolean;
@@ -186,7 +187,7 @@ type FormRecord = {
186
187
  closedDetails?: ClosedDetails;
187
188
  saveAndResume?: boolean;
188
189
  notificationsInterval?: NotificationsInterval;
189
- [key: string]: string | boolean | number | FormProperties | DeliveryOption | ClosedDetails | undefined | null;
190
+ [key: string]: string | boolean | number | Date | FormProperties | DeliveryOption | ClosedDetails | undefined | null;
190
191
  };
191
192
  type SecurityAttribute = "Unclassified" | "Protected A" | "Protected B";
192
193
  type FormPurpose = "" | "admin" | "nonAdmin";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gcforms/types",
3
- "version": "1.0.23",
3
+ "version": "1.0.24",
4
4
  "author": "Canadian Digital Service",
5
5
  "license": "MIT",
6
6
  "publishConfig": {