@glidevvr/storage-payload-types-pkg 1.0.16 → 1.0.18

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 +135 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.16",
3
+ "version": "1.0.18",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -265,6 +265,14 @@ export interface Page {
265
265
  featuredImage?: (string | null) | Media;
266
266
  createdBy?: string | null;
267
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;
268
276
  updatedAt: string;
269
277
  createdAt: string;
270
278
  _status?: ('draft' | 'published') | null;
@@ -580,6 +588,15 @@ export interface Post {
580
588
  excerpt?: string | null;
581
589
  createdBy?: string | null;
582
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;
583
600
  updatedAt: string;
584
601
  createdAt: string;
585
602
  _status?: ('draft' | 'published') | null;
@@ -723,6 +740,50 @@ export interface Facility {
723
740
  id?: string | null;
724
741
  }[]
725
742
  | null;
743
+ unitTableSettings?: {
744
+ selectedFacilities?: (string | Facility)[] | null;
745
+ tableLayout?: 'row' | null;
746
+ buttonLayout?: ('separate' | 'combined') | null;
747
+ vacancyNotice?: boolean | null;
748
+ vacancyThreshold?: number | null;
749
+ showAppliedPromoPrice?: boolean | null;
750
+ unavailableUnits?: boolean | null;
751
+ showNearbyUnits?: boolean | null;
752
+ disableRental?: boolean | null;
753
+ disableReservation?: boolean | null;
754
+ disableSoftReservation?: boolean | null;
755
+ rentalAppLocation?: ('drawer' | 'external' | 'dialog' | 'Accordion') | null;
756
+ rentalAppExternalUrl?: string | null;
757
+ reservationAppLocation?: ('drawer' | 'external' | 'dialog' | 'Accordion') | null;
758
+ reservationAppExternalUrl?: string | null;
759
+ softReservationAppLocation?: ('drawer' | 'external' | 'dialog' | 'Accordion') | null;
760
+ softReservationAppExternalUrl?: string | null;
761
+ /**
762
+ * Category names should be comma separated.
763
+ */
764
+ allowedCategories?: string | null;
765
+ /**
766
+ * Feature names should be comma separated.
767
+ */
768
+ allowedFeatures?: string | null;
769
+ sort?:
770
+ | (
771
+ | 'area'
772
+ | 'area:desc'
773
+ | 'available'
774
+ | 'available:desc'
775
+ | 'length'
776
+ | 'length:desc'
777
+ | 'unit_type_id'
778
+ | 'unit_type_id:desc'
779
+ | 'width'
780
+ | 'width:desc'
781
+ | 'display_rate'
782
+ | 'display_rate:desc'
783
+ )[]
784
+ | null;
785
+ groupBy?: ('width' | 'length' | 'unit_type_id' | 'display_Rate' | 'floor')[] | null;
786
+ };
726
787
  faq?:
727
788
  | {
728
789
  question: string;
@@ -757,6 +818,14 @@ export interface Facility {
757
818
  parent?: (string | null) | Market;
758
819
  createdBy?: string | null;
759
820
  updatedBy?: string | null;
821
+ breadcrumbs?:
822
+ | {
823
+ doc?: (string | null) | Facility;
824
+ url?: string | null;
825
+ label?: string | null;
826
+ id?: string | null;
827
+ }[]
828
+ | null;
760
829
  updatedAt: string;
761
830
  createdAt: string;
762
831
  _status?: ('draft' | 'published') | null;
@@ -828,6 +897,14 @@ export interface Market {
828
897
  parent?: (string | null) | Market;
829
898
  createdBy?: string | null;
830
899
  updatedBy?: string | null;
900
+ breadcrumbs?:
901
+ | {
902
+ doc?: (string | null) | Market;
903
+ url?: string | null;
904
+ label?: string | null;
905
+ id?: string | null;
906
+ }[]
907
+ | null;
831
908
  updatedAt: string;
832
909
  createdAt: string;
833
910
  _status?: ('draft' | 'published') | null;
@@ -1666,6 +1743,14 @@ export interface PagesSelect<T extends boolean = true> {
1666
1743
  featuredImage?: T;
1667
1744
  createdBy?: T;
1668
1745
  updatedBy?: T;
1746
+ breadcrumbs?:
1747
+ | T
1748
+ | {
1749
+ doc?: T;
1750
+ url?: T;
1751
+ label?: T;
1752
+ id?: T;
1753
+ };
1669
1754
  updatedAt?: T;
1670
1755
  createdAt?: T;
1671
1756
  _status?: T;
@@ -2065,6 +2150,15 @@ export interface PostsSelect<T extends boolean = true> {
2065
2150
  excerpt?: T;
2066
2151
  createdBy?: T;
2067
2152
  updatedBy?: T;
2153
+ breadcrumbs?:
2154
+ | T
2155
+ | {
2156
+ doc?: T;
2157
+ url?: T;
2158
+ label?: T;
2159
+ id?: T;
2160
+ };
2161
+ parent?: T;
2068
2162
  updatedAt?: T;
2069
2163
  createdAt?: T;
2070
2164
  _status?: T;
@@ -2198,6 +2292,31 @@ export interface FacilitiesSelect<T extends boolean = true> {
2198
2292
  tabContent?: T;
2199
2293
  id?: T;
2200
2294
  };
2295
+ unitTableSettings?:
2296
+ | T
2297
+ | {
2298
+ selectedFacilities?: T;
2299
+ tableLayout?: T;
2300
+ buttonLayout?: T;
2301
+ vacancyNotice?: T;
2302
+ vacancyThreshold?: T;
2303
+ showAppliedPromoPrice?: T;
2304
+ unavailableUnits?: T;
2305
+ showNearbyUnits?: T;
2306
+ disableRental?: T;
2307
+ disableReservation?: T;
2308
+ disableSoftReservation?: T;
2309
+ rentalAppLocation?: T;
2310
+ rentalAppExternalUrl?: T;
2311
+ reservationAppLocation?: T;
2312
+ reservationAppExternalUrl?: T;
2313
+ softReservationAppLocation?: T;
2314
+ softReservationAppExternalUrl?: T;
2315
+ allowedCategories?: T;
2316
+ allowedFeatures?: T;
2317
+ sort?: T;
2318
+ groupBy?: T;
2319
+ };
2201
2320
  faq?:
2202
2321
  | T
2203
2322
  | {
@@ -2217,6 +2336,14 @@ export interface FacilitiesSelect<T extends boolean = true> {
2217
2336
  parent?: T;
2218
2337
  createdBy?: T;
2219
2338
  updatedBy?: T;
2339
+ breadcrumbs?:
2340
+ | T
2341
+ | {
2342
+ doc?: T;
2343
+ url?: T;
2344
+ label?: T;
2345
+ id?: T;
2346
+ };
2220
2347
  updatedAt?: T;
2221
2348
  createdAt?: T;
2222
2349
  _status?: T;
@@ -2267,6 +2394,14 @@ export interface MarketsSelect<T extends boolean = true> {
2267
2394
  parent?: T;
2268
2395
  createdBy?: T;
2269
2396
  updatedBy?: T;
2397
+ breadcrumbs?:
2398
+ | T
2399
+ | {
2400
+ doc?: T;
2401
+ url?: T;
2402
+ label?: T;
2403
+ id?: T;
2404
+ };
2270
2405
  updatedAt?: T;
2271
2406
  createdAt?: T;
2272
2407
  _status?: T;