@glidevvr/storage-payload-types-pkg 1.0.15 → 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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/payload-types.ts +90 -14
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.15",
3
+ "version": "1.0.17",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -6,6 +6,18 @@
6
6
  * and re-run `payload generate:types` to regenerate this file.
7
7
  */
8
8
 
9
+ /**
10
+ * This interface was referenced by `Config`'s JSON-Schema
11
+ * via the `definition` "SocialMedia".
12
+ */
13
+ export type SocialMedia =
14
+ | {
15
+ socialMediaIcon: string;
16
+ url: string;
17
+ screenReaderText: string;
18
+ id?: string | null;
19
+ }[]
20
+ | null;
9
21
  /**
10
22
  * This interface was referenced by `Config`'s JSON-Schema
11
23
  * via the `definition` "NavItem".
@@ -253,6 +265,14 @@ export interface Page {
253
265
  featuredImage?: (string | null) | Media;
254
266
  createdBy?: string | null;
255
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;
256
276
  updatedAt: string;
257
277
  createdAt: string;
258
278
  _status?: ('draft' | 'published') | null;
@@ -297,13 +317,7 @@ export interface Tenant {
297
317
  * Search engine visibility for the website. It is up to search engines to honor this request.
298
318
  */
299
319
  websiteNotIndexable?: boolean | null;
300
- facebook?: string | null;
301
- x?: string | null;
302
- tiktok?: string | null;
303
- instagram?: string | null;
304
- youtube?: string | null;
305
- linkedIn?: string | null;
306
- yelp?: string | null;
320
+ socialMedia?: SocialMedia;
307
321
  createdBy?: string | null;
308
322
  updatedBy?: string | null;
309
323
  updatedAt: string;
@@ -574,6 +588,15 @@ export interface Post {
574
588
  excerpt?: string | null;
575
589
  createdBy?: string | null;
576
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;
577
600
  updatedAt: string;
578
601
  createdAt: string;
579
602
  _status?: ('draft' | 'published') | null;
@@ -751,6 +774,14 @@ export interface Facility {
751
774
  parent?: (string | null) | Market;
752
775
  createdBy?: string | null;
753
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;
754
785
  updatedAt: string;
755
786
  createdAt: string;
756
787
  _status?: ('draft' | 'published') | null;
@@ -822,6 +853,14 @@ export interface Market {
822
853
  parent?: (string | null) | Market;
823
854
  createdBy?: string | null;
824
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;
825
864
  updatedAt: string;
826
865
  createdAt: string;
827
866
  _status?: ('draft' | 'published') | null;
@@ -1660,6 +1699,14 @@ export interface PagesSelect<T extends boolean = true> {
1660
1699
  featuredImage?: T;
1661
1700
  createdBy?: T;
1662
1701
  updatedBy?: T;
1702
+ breadcrumbs?:
1703
+ | T
1704
+ | {
1705
+ doc?: T;
1706
+ url?: T;
1707
+ label?: T;
1708
+ id?: T;
1709
+ };
1663
1710
  updatedAt?: T;
1664
1711
  createdAt?: T;
1665
1712
  _status?: T;
@@ -2018,18 +2065,22 @@ export interface TenantsSelect<T extends boolean = true> {
2018
2065
  googleApiServerKey?: T;
2019
2066
  gtmId?: T;
2020
2067
  websiteNotIndexable?: T;
2021
- facebook?: T;
2022
- x?: T;
2023
- tiktok?: T;
2024
- instagram?: T;
2025
- youtube?: T;
2026
- linkedIn?: T;
2027
- yelp?: T;
2068
+ socialMedia?: T | SocialMediaSelect<T>;
2028
2069
  createdBy?: T;
2029
2070
  updatedBy?: T;
2030
2071
  updatedAt?: T;
2031
2072
  createdAt?: T;
2032
2073
  }
2074
+ /**
2075
+ * This interface was referenced by `Config`'s JSON-Schema
2076
+ * via the `definition` "SocialMedia_select".
2077
+ */
2078
+ export interface SocialMediaSelect<T extends boolean = true> {
2079
+ socialMediaIcon?: T;
2080
+ url?: T;
2081
+ screenReaderText?: T;
2082
+ id?: T;
2083
+ }
2033
2084
  /**
2034
2085
  * This interface was referenced by `Config`'s JSON-Schema
2035
2086
  * via the `definition` "posts_select".
@@ -2055,6 +2106,15 @@ export interface PostsSelect<T extends boolean = true> {
2055
2106
  excerpt?: T;
2056
2107
  createdBy?: T;
2057
2108
  updatedBy?: T;
2109
+ breadcrumbs?:
2110
+ | T
2111
+ | {
2112
+ doc?: T;
2113
+ url?: T;
2114
+ label?: T;
2115
+ id?: T;
2116
+ };
2117
+ parent?: T;
2058
2118
  updatedAt?: T;
2059
2119
  createdAt?: T;
2060
2120
  _status?: T;
@@ -2207,6 +2267,14 @@ export interface FacilitiesSelect<T extends boolean = true> {
2207
2267
  parent?: T;
2208
2268
  createdBy?: T;
2209
2269
  updatedBy?: T;
2270
+ breadcrumbs?:
2271
+ | T
2272
+ | {
2273
+ doc?: T;
2274
+ url?: T;
2275
+ label?: T;
2276
+ id?: T;
2277
+ };
2210
2278
  updatedAt?: T;
2211
2279
  createdAt?: T;
2212
2280
  _status?: T;
@@ -2257,6 +2325,14 @@ export interface MarketsSelect<T extends boolean = true> {
2257
2325
  parent?: T;
2258
2326
  createdBy?: T;
2259
2327
  updatedBy?: T;
2328
+ breadcrumbs?:
2329
+ | T
2330
+ | {
2331
+ doc?: T;
2332
+ url?: T;
2333
+ label?: T;
2334
+ id?: T;
2335
+ };
2260
2336
  updatedAt?: T;
2261
2337
  createdAt?: T;
2262
2338
  _status?: T;