@glidevvr/storage-payload-types-pkg 1.0.30 → 1.0.32
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 +4 -2
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -356,6 +356,7 @@ export interface Tenant {
|
|
|
356
356
|
* The page for the All Locations page content. Routing will use this page's slug.
|
|
357
357
|
*/
|
|
358
358
|
allFacilitiesPage?: (string | null) | Market;
|
|
359
|
+
paymentSystem?: ('provider' | 'storage_essentials') | null;
|
|
359
360
|
seCompanyId?: number | null;
|
|
360
361
|
seApiKey?: string | null;
|
|
361
362
|
seApiPrivateKey?: string | null;
|
|
@@ -743,7 +744,7 @@ export interface Facility {
|
|
|
743
744
|
export interface FacilityFeature {
|
|
744
745
|
id: string;
|
|
745
746
|
tenant?: (string | null) | Tenant;
|
|
746
|
-
|
|
747
|
+
name: string;
|
|
747
748
|
description?: string | null;
|
|
748
749
|
icon?: string | null;
|
|
749
750
|
slug: string;
|
|
@@ -2232,6 +2233,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2232
2233
|
users?: T;
|
|
2233
2234
|
defaultBrand?: T;
|
|
2234
2235
|
allFacilitiesPage?: T;
|
|
2236
|
+
paymentSystem?: T;
|
|
2235
2237
|
seCompanyId?: T;
|
|
2236
2238
|
seApiKey?: T;
|
|
2237
2239
|
seApiPrivateKey?: T;
|
|
@@ -2568,7 +2570,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2568
2570
|
*/
|
|
2569
2571
|
export interface FacilityFeaturesSelect<T extends boolean = true> {
|
|
2570
2572
|
tenant?: T;
|
|
2571
|
-
|
|
2573
|
+
name?: T;
|
|
2572
2574
|
description?: T;
|
|
2573
2575
|
icon?: T;
|
|
2574
2576
|
slug?: T;
|