@glidevvr/storage-payload-types-pkg 1.0.36 → 1.0.38
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 -5
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -256,7 +256,7 @@ export interface Page {
|
|
|
256
256
|
id: string;
|
|
257
257
|
tenant?: (string | null) | Tenant;
|
|
258
258
|
title: string;
|
|
259
|
-
|
|
259
|
+
blocks: (
|
|
260
260
|
| ArchiveBlock
|
|
261
261
|
| CallToActionBlock
|
|
262
262
|
| ContentBlock
|
|
@@ -518,7 +518,7 @@ export interface Market {
|
|
|
518
518
|
sort: 'facility_title' | 'state' | 'city' | 'starting_price';
|
|
519
519
|
customOrGeo: 'geo' | 'custom';
|
|
520
520
|
customFacilities?: (string | Facility)[] | null;
|
|
521
|
-
|
|
521
|
+
blocks?:
|
|
522
522
|
| (
|
|
523
523
|
| ArchiveBlock
|
|
524
524
|
| CallToActionBlock
|
|
@@ -1893,7 +1893,7 @@ export interface PayloadMigration {
|
|
|
1893
1893
|
export interface PagesSelect<T extends boolean = true> {
|
|
1894
1894
|
tenant?: T;
|
|
1895
1895
|
title?: T;
|
|
1896
|
-
|
|
1896
|
+
blocks?:
|
|
1897
1897
|
| T
|
|
1898
1898
|
| {
|
|
1899
1899
|
archive?: T | ArchiveBlockSelect<T>;
|
|
@@ -2568,7 +2568,7 @@ export interface MarketsSelect<T extends boolean = true> {
|
|
|
2568
2568
|
sort?: T;
|
|
2569
2569
|
customOrGeo?: T;
|
|
2570
2570
|
customFacilities?: T;
|
|
2571
|
-
|
|
2571
|
+
blocks?:
|
|
2572
2572
|
| T
|
|
2573
2573
|
| {
|
|
2574
2574
|
archive?: T | ArchiveBlockSelect<T>;
|
|
@@ -2990,7 +2990,7 @@ export interface ButtonBlock {
|
|
|
2990
2990
|
* via the `definition` "CodeBlock".
|
|
2991
2991
|
*/
|
|
2992
2992
|
export interface CodeBlock {
|
|
2993
|
-
language
|
|
2993
|
+
language: 'typescript' | 'javascript' | 'css';
|
|
2994
2994
|
code: string;
|
|
2995
2995
|
id?: string | null;
|
|
2996
2996
|
blockName?: string | null;
|