@glidevvr/storage-payload-types-pkg 1.0.16 → 1.0.17
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 +66 -0
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -265,6 +265,14 @@ export interface Page {
|
|
|
265
265
|
featuredImage?: (string | null) | Media;
|
|
266
266
|
createdBy?: string | null;
|
|
267
267
|
updatedBy?: string | null;
|
|
268
|
+
breadcrumbs?:
|
|
269
|
+
| {
|
|
270
|
+
doc?: (string | null) | Page;
|
|
271
|
+
url?: string | null;
|
|
272
|
+
label?: string | null;
|
|
273
|
+
id?: string | null;
|
|
274
|
+
}[]
|
|
275
|
+
| null;
|
|
268
276
|
updatedAt: string;
|
|
269
277
|
createdAt: string;
|
|
270
278
|
_status?: ('draft' | 'published') | null;
|
|
@@ -580,6 +588,15 @@ export interface Post {
|
|
|
580
588
|
excerpt?: string | null;
|
|
581
589
|
createdBy?: string | null;
|
|
582
590
|
updatedBy?: string | null;
|
|
591
|
+
breadcrumbs?:
|
|
592
|
+
| {
|
|
593
|
+
doc?: (string | null) | Post;
|
|
594
|
+
url?: string | null;
|
|
595
|
+
label?: string | null;
|
|
596
|
+
id?: string | null;
|
|
597
|
+
}[]
|
|
598
|
+
| null;
|
|
599
|
+
parent?: (string | null) | Post;
|
|
583
600
|
updatedAt: string;
|
|
584
601
|
createdAt: string;
|
|
585
602
|
_status?: ('draft' | 'published') | null;
|
|
@@ -757,6 +774,14 @@ export interface Facility {
|
|
|
757
774
|
parent?: (string | null) | Market;
|
|
758
775
|
createdBy?: string | null;
|
|
759
776
|
updatedBy?: string | null;
|
|
777
|
+
breadcrumbs?:
|
|
778
|
+
| {
|
|
779
|
+
doc?: (string | null) | Facility;
|
|
780
|
+
url?: string | null;
|
|
781
|
+
label?: string | null;
|
|
782
|
+
id?: string | null;
|
|
783
|
+
}[]
|
|
784
|
+
| null;
|
|
760
785
|
updatedAt: string;
|
|
761
786
|
createdAt: string;
|
|
762
787
|
_status?: ('draft' | 'published') | null;
|
|
@@ -828,6 +853,14 @@ export interface Market {
|
|
|
828
853
|
parent?: (string | null) | Market;
|
|
829
854
|
createdBy?: string | null;
|
|
830
855
|
updatedBy?: string | null;
|
|
856
|
+
breadcrumbs?:
|
|
857
|
+
| {
|
|
858
|
+
doc?: (string | null) | Market;
|
|
859
|
+
url?: string | null;
|
|
860
|
+
label?: string | null;
|
|
861
|
+
id?: string | null;
|
|
862
|
+
}[]
|
|
863
|
+
| null;
|
|
831
864
|
updatedAt: string;
|
|
832
865
|
createdAt: string;
|
|
833
866
|
_status?: ('draft' | 'published') | null;
|
|
@@ -1666,6 +1699,14 @@ export interface PagesSelect<T extends boolean = true> {
|
|
|
1666
1699
|
featuredImage?: T;
|
|
1667
1700
|
createdBy?: T;
|
|
1668
1701
|
updatedBy?: T;
|
|
1702
|
+
breadcrumbs?:
|
|
1703
|
+
| T
|
|
1704
|
+
| {
|
|
1705
|
+
doc?: T;
|
|
1706
|
+
url?: T;
|
|
1707
|
+
label?: T;
|
|
1708
|
+
id?: T;
|
|
1709
|
+
};
|
|
1669
1710
|
updatedAt?: T;
|
|
1670
1711
|
createdAt?: T;
|
|
1671
1712
|
_status?: T;
|
|
@@ -2065,6 +2106,15 @@ export interface PostsSelect<T extends boolean = true> {
|
|
|
2065
2106
|
excerpt?: T;
|
|
2066
2107
|
createdBy?: T;
|
|
2067
2108
|
updatedBy?: T;
|
|
2109
|
+
breadcrumbs?:
|
|
2110
|
+
| T
|
|
2111
|
+
| {
|
|
2112
|
+
doc?: T;
|
|
2113
|
+
url?: T;
|
|
2114
|
+
label?: T;
|
|
2115
|
+
id?: T;
|
|
2116
|
+
};
|
|
2117
|
+
parent?: T;
|
|
2068
2118
|
updatedAt?: T;
|
|
2069
2119
|
createdAt?: T;
|
|
2070
2120
|
_status?: T;
|
|
@@ -2217,6 +2267,14 @@ export interface FacilitiesSelect<T extends boolean = true> {
|
|
|
2217
2267
|
parent?: T;
|
|
2218
2268
|
createdBy?: T;
|
|
2219
2269
|
updatedBy?: T;
|
|
2270
|
+
breadcrumbs?:
|
|
2271
|
+
| T
|
|
2272
|
+
| {
|
|
2273
|
+
doc?: T;
|
|
2274
|
+
url?: T;
|
|
2275
|
+
label?: T;
|
|
2276
|
+
id?: T;
|
|
2277
|
+
};
|
|
2220
2278
|
updatedAt?: T;
|
|
2221
2279
|
createdAt?: T;
|
|
2222
2280
|
_status?: T;
|
|
@@ -2267,6 +2325,14 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2267
2325
|
parent?: T;
|
|
2268
2326
|
createdBy?: T;
|
|
2269
2327
|
updatedBy?: T;
|
|
2328
|
+
breadcrumbs?:
|
|
2329
|
+
| T
|
|
2330
|
+
| {
|
|
2331
|
+
doc?: T;
|
|
2332
|
+
url?: T;
|
|
2333
|
+
label?: T;
|
|
2334
|
+
id?: T;
|
|
2335
|
+
};
|
|
2270
2336
|
updatedAt?: T;
|
|
2271
2337
|
createdAt?: T;
|
|
2272
2338
|
_status?: T;
|