@glidevvr/storage-payload-types-pkg 1.0.255 → 1.0.257

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 +34 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.255",
3
+ "version": "1.0.257",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1495,6 +1495,32 @@ export interface FeaturesGridBlock {
1495
1495
  | {
1496
1496
  featureIcon: string;
1497
1497
  featureName: string;
1498
+ featureLink?: {
1499
+ type?: ('reference' | 'custom') | null;
1500
+ newTab?: boolean | null;
1501
+ reference?:
1502
+ | ({
1503
+ relationTo: 'pages';
1504
+ value: string | Page;
1505
+ } | null)
1506
+ | ({
1507
+ relationTo: 'posts';
1508
+ value: string | Post;
1509
+ } | null)
1510
+ | ({
1511
+ relationTo: 'facilities';
1512
+ value: string | Facility;
1513
+ } | null)
1514
+ | ({
1515
+ relationTo: 'markets';
1516
+ value: string | Market;
1517
+ } | null)
1518
+ | ({
1519
+ relationTo: 'categories';
1520
+ value: string | Category;
1521
+ } | null);
1522
+ url?: string | null;
1523
+ };
1498
1524
  id?: string | null;
1499
1525
  }[]
1500
1526
  | null;
@@ -2700,6 +2726,14 @@ export interface FeaturesGridBlockSelect<T extends boolean = true> {
2700
2726
  | {
2701
2727
  featureIcon?: T;
2702
2728
  featureName?: T;
2729
+ featureLink?:
2730
+ | T
2731
+ | {
2732
+ type?: T;
2733
+ newTab?: T;
2734
+ reference?: T;
2735
+ url?: T;
2736
+ };
2703
2737
  id?: T;
2704
2738
  };
2705
2739
  buttonLink?: