@glidevvr/storage-payload-types-pkg 1.0.84 → 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 +13 -9
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
|
*/
|
|
@@ -1231,6 +1231,8 @@ export interface FormBlock {
|
|
|
1231
1231
|
export interface Form {
|
|
1232
1232
|
id: string;
|
|
1233
1233
|
tenant?: (string | null) | Tenant;
|
|
1234
|
+
createdBy?: string | null;
|
|
1235
|
+
updatedBy?: string | null;
|
|
1234
1236
|
title: string;
|
|
1235
1237
|
fields?:
|
|
1236
1238
|
| (
|
|
@@ -1415,8 +1417,6 @@ export interface Form {
|
|
|
1415
1417
|
id?: string | null;
|
|
1416
1418
|
}[]
|
|
1417
1419
|
| null;
|
|
1418
|
-
createdBy?: string | null;
|
|
1419
|
-
updatedBy?: string | null;
|
|
1420
1420
|
updatedAt: string;
|
|
1421
1421
|
createdAt: string;
|
|
1422
1422
|
}
|
|
@@ -1828,6 +1828,9 @@ export interface Build {
|
|
|
1828
1828
|
*/
|
|
1829
1829
|
export interface FormSubmission {
|
|
1830
1830
|
id: string;
|
|
1831
|
+
tenant?: (string | null) | Tenant;
|
|
1832
|
+
createdBy?: string | null;
|
|
1833
|
+
updatedBy?: string | null;
|
|
1831
1834
|
form: string | Form;
|
|
1832
1835
|
submissionData?:
|
|
1833
1836
|
| {
|
|
@@ -1836,7 +1839,6 @@ export interface FormSubmission {
|
|
|
1836
1839
|
id?: string | null;
|
|
1837
1840
|
}[]
|
|
1838
1841
|
| null;
|
|
1839
|
-
tenant?: (string | null) | Tenant;
|
|
1840
1842
|
updatedAt: string;
|
|
1841
1843
|
createdAt: string;
|
|
1842
1844
|
}
|
|
@@ -2906,6 +2908,8 @@ export interface BuildsSelect<T extends boolean = true> {
|
|
|
2906
2908
|
*/
|
|
2907
2909
|
export interface FormsSelect<T extends boolean = true> {
|
|
2908
2910
|
tenant?: T;
|
|
2911
|
+
createdBy?: T;
|
|
2912
|
+
updatedBy?: T;
|
|
2909
2913
|
title?: T;
|
|
2910
2914
|
fields?:
|
|
2911
2915
|
| T
|
|
@@ -3034,8 +3038,6 @@ export interface FormsSelect<T extends boolean = true> {
|
|
|
3034
3038
|
message?: T;
|
|
3035
3039
|
id?: T;
|
|
3036
3040
|
};
|
|
3037
|
-
createdBy?: T;
|
|
3038
|
-
updatedBy?: T;
|
|
3039
3041
|
updatedAt?: T;
|
|
3040
3042
|
createdAt?: T;
|
|
3041
3043
|
}
|
|
@@ -3044,6 +3046,9 @@ export interface FormsSelect<T extends boolean = true> {
|
|
|
3044
3046
|
* via the `definition` "form-submissions_select".
|
|
3045
3047
|
*/
|
|
3046
3048
|
export interface FormSubmissionsSelect<T extends boolean = true> {
|
|
3049
|
+
tenant?: T;
|
|
3050
|
+
createdBy?: T;
|
|
3051
|
+
updatedBy?: T;
|
|
3047
3052
|
form?: T;
|
|
3048
3053
|
submissionData?:
|
|
3049
3054
|
| T
|
|
@@ -3052,7 +3057,6 @@ export interface FormSubmissionsSelect<T extends boolean = true> {
|
|
|
3052
3057
|
value?: T;
|
|
3053
3058
|
id?: T;
|
|
3054
3059
|
};
|
|
3055
|
-
tenant?: T;
|
|
3056
3060
|
updatedAt?: T;
|
|
3057
3061
|
createdAt?: T;
|
|
3058
3062
|
}
|