@glidevvr/storage-payload-types-pkg 1.0.72 → 1.0.74
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 +5 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -318,6 +318,10 @@ export interface Tenant {
|
|
|
318
318
|
*/
|
|
319
319
|
allFacilitiesPage?: (string | null) | Market;
|
|
320
320
|
paymentSystem?: ('none' | 'storage_essentials') | null;
|
|
321
|
+
/**
|
|
322
|
+
* This notice will be displayed on all pages of the website.
|
|
323
|
+
*/
|
|
324
|
+
siteWideNotice?: string | null;
|
|
321
325
|
seCompanyId?: number | null;
|
|
322
326
|
seApiKey?: string | null;
|
|
323
327
|
seApiPrivateKey?: string | null;
|
|
@@ -2514,6 +2518,7 @@ export interface TenantsSelect<T extends boolean = true> {
|
|
|
2514
2518
|
users?: T;
|
|
2515
2519
|
allFacilitiesPage?: T;
|
|
2516
2520
|
paymentSystem?: T;
|
|
2521
|
+
siteWideNotice?: T;
|
|
2517
2522
|
seCompanyId?: T;
|
|
2518
2523
|
seApiKey?: T;
|
|
2519
2524
|
seApiPrivateKey?: T;
|