@glidevvr/storage-payload-types-pkg 1.0.35 → 1.0.37

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +4 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.35",
3
+ "version": "1.0.37",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
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
- layout: (
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
- layout?:
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
- layout?:
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
- layout?:
2571
+ blocks?:
2572
2572
  | T
2573
2573
  | {
2574
2574
  archive?: T | ArchiveBlockSelect<T>;