@glidevvr/storage-payload-types-pkg 1.0.73 → 1.0.75
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 -11
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;
|
|
@@ -3204,17 +3209,6 @@ export interface ButtonBlock {
|
|
|
3204
3209
|
blockName?: string | null;
|
|
3205
3210
|
blockType: 'button';
|
|
3206
3211
|
}
|
|
3207
|
-
/**
|
|
3208
|
-
* This interface was referenced by `Config`'s JSON-Schema
|
|
3209
|
-
* via the `definition` "CodeBlock".
|
|
3210
|
-
*/
|
|
3211
|
-
export interface CodeBlock {
|
|
3212
|
-
language: 'typescript' | 'javascript' | 'css';
|
|
3213
|
-
code: string;
|
|
3214
|
-
id?: string | null;
|
|
3215
|
-
blockName?: string | null;
|
|
3216
|
-
blockType: 'code';
|
|
3217
|
-
}
|
|
3218
3212
|
/**
|
|
3219
3213
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
3220
3214
|
* via the `definition` "auth".
|