@glidevvr/storage-payload-types-pkg 1.0.265 → 1.0.267
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 +15 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -818,6 +818,14 @@ export interface Facility {
|
|
|
818
818
|
};
|
|
819
819
|
slug: string;
|
|
820
820
|
parent?: (string | null) | Market;
|
|
821
|
+
/**
|
|
822
|
+
* This data is populated from Storage Essentials.
|
|
823
|
+
*/
|
|
824
|
+
facilityAddress?: {
|
|
825
|
+
address1?: string | null;
|
|
826
|
+
city?: string | null;
|
|
827
|
+
state?: string | null;
|
|
828
|
+
};
|
|
821
829
|
createdBy?: string | null;
|
|
822
830
|
updatedBy?: string | null;
|
|
823
831
|
breadcrumbs?:
|
|
@@ -3102,6 +3110,13 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
3102
3110
|
};
|
|
3103
3111
|
slug?: T;
|
|
3104
3112
|
parent?: T;
|
|
3113
|
+
facilityAddress?:
|
|
3114
|
+
| T
|
|
3115
|
+
| {
|
|
3116
|
+
address1?: T;
|
|
3117
|
+
city?: T;
|
|
3118
|
+
state?: T;
|
|
3119
|
+
};
|
|
3105
3120
|
createdBy?: T;
|
|
3106
3121
|
updatedBy?: T;
|
|
3107
3122
|
breadcrumbs?:
|