@glidevvr/storage-payload-types-pkg 1.0.366 → 1.0.368
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 +16 -6
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -350,6 +350,14 @@ export interface Tenant {
|
|
|
350
350
|
*/
|
|
351
351
|
comingSoonForm?: (string | null) | Form;
|
|
352
352
|
paymentSystem?: ('none' | 'storage_essentials') | null;
|
|
353
|
+
/**
|
|
354
|
+
* Where Reserve opens for facilities set to "Use Organization Setting".
|
|
355
|
+
*/
|
|
356
|
+
reservationAppLocation: 'external' | 'inline';
|
|
357
|
+
/**
|
|
358
|
+
* Where Get a Quote opens for facilities set to "Use Organization Setting".
|
|
359
|
+
*/
|
|
360
|
+
softReservationAppLocation: 'external' | 'inline';
|
|
353
361
|
/**
|
|
354
362
|
* This notice will be displayed on all pages of the website.
|
|
355
363
|
*/
|
|
@@ -994,14 +1002,14 @@ export interface Facility {
|
|
|
994
1002
|
*/
|
|
995
1003
|
rentalAppExternalUrl?: string | null;
|
|
996
1004
|
/**
|
|
997
|
-
*
|
|
1005
|
+
* Inline applies only when Button Layout is Separate. With combined buttons, Reserve opens in the unit selection modal and always goes to the reservation page.
|
|
998
1006
|
*/
|
|
999
|
-
reservationAppLocation
|
|
1007
|
+
reservationAppLocation: 'default' | 'external' | 'inline';
|
|
1000
1008
|
/**
|
|
1001
1009
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
1002
1010
|
*/
|
|
1003
1011
|
reservationAppExternalUrl?: string | null;
|
|
1004
|
-
softReservationAppLocation: 'external';
|
|
1012
|
+
softReservationAppLocation: 'default' | 'external' | 'inline';
|
|
1005
1013
|
/**
|
|
1006
1014
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
1007
1015
|
*/
|
|
@@ -4695,6 +4703,8 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
4695
4703
|
allFacilitiesPage?: T;
|
|
4696
4704
|
comingSoonForm?: T;
|
|
4697
4705
|
paymentSystem?: T;
|
|
4706
|
+
reservationAppLocation?: T;
|
|
4707
|
+
softReservationAppLocation?: T;
|
|
4698
4708
|
siteWideNotice?: T;
|
|
4699
4709
|
searchRadius?: T;
|
|
4700
4710
|
showCompanyInfoInFooter?: T;
|
|
@@ -5311,14 +5321,14 @@ export interface UnitsTableBlock {
|
|
|
5311
5321
|
*/
|
|
5312
5322
|
rentalAppExternalUrl?: string | null;
|
|
5313
5323
|
/**
|
|
5314
|
-
*
|
|
5324
|
+
* Inline applies only when Button Layout is Separate. With combined buttons, Reserve opens in the unit selection modal and always goes to the reservation page.
|
|
5315
5325
|
*/
|
|
5316
|
-
reservationAppLocation
|
|
5326
|
+
reservationAppLocation: 'default' | 'external' | 'inline';
|
|
5317
5327
|
/**
|
|
5318
5328
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
5319
5329
|
*/
|
|
5320
5330
|
reservationAppExternalUrl?: string | null;
|
|
5321
|
-
softReservationAppLocation: 'external';
|
|
5331
|
+
softReservationAppLocation: 'default' | 'external' | 'inline';
|
|
5322
5332
|
/**
|
|
5323
5333
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
5324
5334
|
*/
|