@glidevvr/storage-payload-types-pkg 1.0.90 → 1.0.92

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +11 -9
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.90",
3
+ "version": "1.0.92",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1236,15 +1236,17 @@ export interface Form {
1236
1236
  id: string;
1237
1237
  tenant?: (string | null) | Tenant;
1238
1238
  title: string;
1239
- fields: (
1240
- | FacilitySelectField
1241
- | EmailField
1242
- | PhoneField
1243
- | FirstNameField
1244
- | LastNameField
1245
- | MessageField
1246
- | CurrentCustomerField
1247
- )[];
1239
+ fields?:
1240
+ | (
1241
+ | FacilitySelectField
1242
+ | EmailField
1243
+ | PhoneField
1244
+ | FirstNameField
1245
+ | LastNameField
1246
+ | MessageField
1247
+ | CurrentCustomerField
1248
+ )[]
1249
+ | null;
1248
1250
  submitButtonLabel?: string | null;
1249
1251
  confirmationType: 'message';
1250
1252
  /**