@glidevvr/storage-payload-types-pkg 1.0.55 → 1.0.56
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 +12 -12
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -488,38 +488,38 @@ export interface Facility {
|
|
|
488
488
|
*/
|
|
489
489
|
gallery?: (string | Media)[] | null;
|
|
490
490
|
contentTabs?: ContentTabs;
|
|
491
|
-
unitTableSettings
|
|
491
|
+
unitTableSettings: {
|
|
492
492
|
selectedFacilities?: (string | Facility)[] | null;
|
|
493
|
-
tableLayout
|
|
494
|
-
buttonLayout
|
|
495
|
-
vacancyNotice
|
|
493
|
+
tableLayout: 'row';
|
|
494
|
+
buttonLayout: 'separate' | 'combined';
|
|
495
|
+
vacancyNotice: boolean;
|
|
496
496
|
/**
|
|
497
497
|
* At how many units left to show the urgency notice.
|
|
498
498
|
*/
|
|
499
499
|
vacancyThreshold?: number | null;
|
|
500
|
-
showAppliedPromoPrice
|
|
501
|
-
unavailableUnits
|
|
500
|
+
showAppliedPromoPrice: boolean;
|
|
501
|
+
unavailableUnits: boolean;
|
|
502
502
|
/**
|
|
503
503
|
* If a unit is unavailable, show nearby options.
|
|
504
504
|
*/
|
|
505
505
|
showNearbyUnits?: boolean | null;
|
|
506
|
-
disableRental
|
|
507
|
-
disableReservation
|
|
506
|
+
disableRental: boolean;
|
|
507
|
+
disableReservation: boolean;
|
|
508
508
|
/**
|
|
509
509
|
* A soft reservation does not remove a unit from inventory.
|
|
510
510
|
*/
|
|
511
|
-
disableSoftReservation
|
|
512
|
-
rentalAppLocation
|
|
511
|
+
disableSoftReservation: boolean;
|
|
512
|
+
rentalAppLocation: 'drawer' | 'dialog' | 'accordion' | 'external';
|
|
513
513
|
/**
|
|
514
514
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
515
515
|
*/
|
|
516
516
|
rentalAppExternalUrl?: string | null;
|
|
517
|
-
reservationAppLocation
|
|
517
|
+
reservationAppLocation: 'drawer' | 'dialog' | 'accordion' | 'external';
|
|
518
518
|
/**
|
|
519
519
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
520
520
|
*/
|
|
521
521
|
reservationAppExternalUrl?: string | null;
|
|
522
|
-
softReservationAppLocation
|
|
522
|
+
softReservationAppLocation: 'drawer' | 'dialog' | 'accordion' | 'external';
|
|
523
523
|
/**
|
|
524
524
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
525
525
|
*/
|