@glidevvr/storage-payload-types-pkg 1.0.88 → 1.0.89
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 +3 -3
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -797,7 +797,7 @@ export interface Facility {
|
|
|
797
797
|
* A soft reservation does not remove a unit from inventory.
|
|
798
798
|
*/
|
|
799
799
|
disableSoftReservation: boolean;
|
|
800
|
-
rentalAppLocation: '
|
|
800
|
+
rentalAppLocation: 'external';
|
|
801
801
|
/**
|
|
802
802
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
803
803
|
*/
|
|
@@ -805,12 +805,12 @@ export interface Facility {
|
|
|
805
805
|
/**
|
|
806
806
|
* If the buttons are combined, the reservation app location will default to the location of the rental app.
|
|
807
807
|
*/
|
|
808
|
-
reservationAppLocation?:
|
|
808
|
+
reservationAppLocation?: 'external' | null;
|
|
809
809
|
/**
|
|
810
810
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
811
811
|
*/
|
|
812
812
|
reservationAppExternalUrl?: string | null;
|
|
813
|
-
softReservationAppLocation: '
|
|
813
|
+
softReservationAppLocation: 'external';
|
|
814
814
|
/**
|
|
815
815
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
816
816
|
*/
|