@glidevvr/storage-payload-types-pkg 1.0.31 → 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 +2 -0
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;
|
|
@@ -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;
|