@glidevvr/storage-payload-types-pkg 1.0.85 → 1.0.86
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
|
@@ -793,7 +793,7 @@ export interface Facility {
|
|
|
793
793
|
* A soft reservation does not remove a unit from inventory.
|
|
794
794
|
*/
|
|
795
795
|
disableSoftReservation: boolean;
|
|
796
|
-
rentalAppLocation: 'drawer' | 'dialog';
|
|
796
|
+
rentalAppLocation: 'drawer' | 'dialog' | 'external';
|
|
797
797
|
/**
|
|
798
798
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
799
799
|
*/
|
|
@@ -801,12 +801,12 @@ export interface Facility {
|
|
|
801
801
|
/**
|
|
802
802
|
* If the buttons are combined, the reservation app location will default to the location of the rental app.
|
|
803
803
|
*/
|
|
804
|
-
reservationAppLocation?: ('drawer' | 'dialog') | null;
|
|
804
|
+
reservationAppLocation?: ('drawer' | 'dialog' | 'external') | null;
|
|
805
805
|
/**
|
|
806
806
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
807
807
|
*/
|
|
808
808
|
reservationAppExternalUrl?: string | null;
|
|
809
|
-
softReservationAppLocation: 'drawer' | 'dialog';
|
|
809
|
+
softReservationAppLocation: 'drawer' | 'dialog' | 'external';
|
|
810
810
|
/**
|
|
811
811
|
* If you need values mapped to the url, pass them in using the dot notation and the app will "translate".
|
|
812
812
|
*/
|