@glidevvr/storage-payload-types-pkg 1.0.38 → 1.0.40

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 +36 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.38",
3
+ "version": "1.0.40",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1464,6 +1464,33 @@ export interface SingleTestimonialBlock {
1464
1464
  topImage?: (string | null) | Media;
1465
1465
  middleImage?: (string | null) | Media;
1466
1466
  bottomImage?: (string | null) | Media;
1467
+ buttonLink?: {
1468
+ type?: ('reference' | 'custom') | null;
1469
+ newTab?: boolean | null;
1470
+ reference?:
1471
+ | ({
1472
+ relationTo: 'pages';
1473
+ value: string | Page;
1474
+ } | null)
1475
+ | ({
1476
+ relationTo: 'posts';
1477
+ value: string | Post;
1478
+ } | null)
1479
+ | ({
1480
+ relationTo: 'facilities';
1481
+ value: string | Facility;
1482
+ } | null)
1483
+ | ({
1484
+ relationTo: 'markets';
1485
+ value: string | Market;
1486
+ } | null)
1487
+ | ({
1488
+ relationTo: 'categories';
1489
+ value: string | Category;
1490
+ } | null);
1491
+ url?: string | null;
1492
+ label?: string | null;
1493
+ };
1467
1494
  id?: string | null;
1468
1495
  blockName?: string | null;
1469
1496
  blockType: 'singleTestimonial';
@@ -2103,6 +2130,15 @@ export interface SingleTestimonialBlockSelect<T extends boolean = true> {
2103
2130
  topImage?: T;
2104
2131
  middleImage?: T;
2105
2132
  bottomImage?: T;
2133
+ buttonLink?:
2134
+ | T
2135
+ | {
2136
+ type?: T;
2137
+ newTab?: T;
2138
+ reference?: T;
2139
+ url?: T;
2140
+ label?: T;
2141
+ };
2106
2142
  id?: T;
2107
2143
  blockName?: T;
2108
2144
  }