@glidevvr/storage-payload-types-pkg 1.0.117 → 1.0.119
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/package.json +1 -1
- package/payload-types.ts +11 -1
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -317,6 +317,10 @@ export interface Tenant {
|
|
|
317
317
|
* The page for the All Locations page content. Routing will use this page's slug.
|
|
318
318
|
*/
|
|
319
319
|
allFacilitiesPage?: (string | null) | Market;
|
|
320
|
+
/**
|
|
321
|
+
* The form for coming soon facilities.
|
|
322
|
+
*/
|
|
323
|
+
comingSoonForm?: (string | null) | Form;
|
|
320
324
|
paymentSystem?: ('none' | 'storage_essentials') | null;
|
|
321
325
|
/**
|
|
322
326
|
* This notice will be displayed on all pages of the website.
|
|
@@ -932,7 +936,7 @@ export interface Brand {
|
|
|
932
936
|
export interface ContentTabs {
|
|
933
937
|
findUnit?: {
|
|
934
938
|
/**
|
|
935
|
-
* This content is displayed below the unit grid.
|
|
939
|
+
* This content is displayed below the unit grid, or before the coming soon form if the facility is coming soon.
|
|
936
940
|
*/
|
|
937
941
|
content?: {
|
|
938
942
|
root: {
|
|
@@ -1288,6 +1292,10 @@ export interface FacilitySelectField {
|
|
|
1288
1292
|
placeholder?: string | null;
|
|
1289
1293
|
width?: number | null;
|
|
1290
1294
|
required?: boolean | null;
|
|
1295
|
+
/**
|
|
1296
|
+
* If checked, the field will not be displayed to the user. This is useful for fields that are only used for internal purposes, or pre-filled with data.
|
|
1297
|
+
*/
|
|
1298
|
+
hidden?: boolean | null;
|
|
1291
1299
|
id?: string | null;
|
|
1292
1300
|
blockName?: string | null;
|
|
1293
1301
|
blockType: 'facilitySelect';
|
|
@@ -2504,6 +2512,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2504
2512
|
name?: T;
|
|
2505
2513
|
users?: T;
|
|
2506
2514
|
allFacilitiesPage?: T;
|
|
2515
|
+
comingSoonForm?: T;
|
|
2507
2516
|
paymentSystem?: T;
|
|
2508
2517
|
siteWideNotice?: T;
|
|
2509
2518
|
environment?: T;
|
|
@@ -2907,6 +2916,7 @@ export interface FacilitySelectFieldSelect<T extends boolean = true> {
|
|
|
2907
2916
|
placeholder?: T;
|
|
2908
2917
|
width?: T;
|
|
2909
2918
|
required?: T;
|
|
2919
|
+
hidden?: T;
|
|
2910
2920
|
id?: T;
|
|
2911
2921
|
blockName?: T;
|
|
2912
2922
|
}
|