@glidevvr/storage-payload-types-pkg 1.0.284 → 1.0.286
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 +10 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -1016,6 +1016,10 @@ export interface Page {
|
|
|
1016
1016
|
};
|
|
1017
1017
|
slug: string;
|
|
1018
1018
|
parent?: (string | null) | Page;
|
|
1019
|
+
/**
|
|
1020
|
+
* If unset, the branding will default to the company's default brand.
|
|
1021
|
+
*/
|
|
1022
|
+
brandSelection?: (string | null) | Brand;
|
|
1019
1023
|
createdBy?: string | null;
|
|
1020
1024
|
updatedBy?: string | null;
|
|
1021
1025
|
breadcrumbs?:
|
|
@@ -1421,6 +1425,10 @@ export interface Market {
|
|
|
1421
1425
|
};
|
|
1422
1426
|
slug: string;
|
|
1423
1427
|
parent?: (string | null) | Market;
|
|
1428
|
+
/**
|
|
1429
|
+
* If unset, the branding will default to the company's default brand.
|
|
1430
|
+
*/
|
|
1431
|
+
brandSelection?: (string | null) | Brand;
|
|
1424
1432
|
createdBy?: string | null;
|
|
1425
1433
|
updatedBy?: string | null;
|
|
1426
1434
|
breadcrumbs?:
|
|
@@ -3549,6 +3557,7 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
3549
3557
|
};
|
|
3550
3558
|
slug?: T;
|
|
3551
3559
|
parent?: T;
|
|
3560
|
+
brandSelection?: T;
|
|
3552
3561
|
createdBy?: T;
|
|
3553
3562
|
updatedBy?: T;
|
|
3554
3563
|
breadcrumbs?:
|
|
@@ -4175,6 +4184,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
4175
4184
|
};
|
|
4176
4185
|
slug?: T;
|
|
4177
4186
|
parent?: T;
|
|
4187
|
+
brandSelection?: T;
|
|
4178
4188
|
createdBy?: T;
|
|
4179
4189
|
updatedBy?: T;
|
|
4180
4190
|
breadcrumbs?:
|