@glidevvr/storage-payload-types-pkg 1.0.46 → 1.0.48

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 +0 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.46",
3
+ "version": "1.0.48",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -284,7 +284,6 @@ export interface Page {
284
284
  indexable?: boolean | null;
285
285
  };
286
286
  slug: string;
287
- slugLock?: boolean | null;
288
287
  parent?: (string | null) | Page;
289
288
  featuredImage?: (string | null) | Media;
290
289
  createdBy?: string | null;
@@ -554,7 +553,6 @@ export interface Market {
554
553
  indexable?: boolean | null;
555
554
  };
556
555
  slug: string;
557
- slugLock?: boolean | null;
558
556
  parent?: (string | null) | Market;
559
557
  createdBy?: string | null;
560
558
  updatedBy?: string | null;
@@ -701,7 +699,6 @@ export interface Facility {
701
699
  indexable?: boolean | null;
702
700
  };
703
701
  slug: string;
704
- slugLock?: boolean | null;
705
702
  parent?: (string | null) | Market;
706
703
  createdBy?: string | null;
707
704
  updatedBy?: string | null;
@@ -728,7 +725,6 @@ export interface FacilityFeature {
728
725
  description?: string | null;
729
726
  icon?: string | null;
730
727
  slug: string;
731
- slugLock?: boolean | null;
732
728
  createdBy?: string | null;
733
729
  updatedBy?: string | null;
734
730
  updatedAt: string;
@@ -885,7 +881,6 @@ export interface Category {
885
881
  indexable?: boolean | null;
886
882
  };
887
883
  slug: string;
888
- slugLock?: boolean | null;
889
884
  featuredImage?: (string | null) | Media;
890
885
  createdBy?: string | null;
891
886
  updatedBy?: string | null;
@@ -926,7 +921,6 @@ export interface Post {
926
921
  indexable?: boolean | null;
927
922
  };
928
923
  slug: string;
929
- slugLock?: boolean | null;
930
924
  author?: (string | null) | User;
931
925
  publishedAt?: string | null;
932
926
  featuredImage?: (string | null) | Media;
@@ -2077,7 +2071,6 @@ export interface PagesSelect<T extends boolean = true> {
2077
2071
  indexable?: T;
2078
2072
  };
2079
2073
  slug?: T;
2080
- slugLock?: T;
2081
2074
  parent?: T;
2082
2075
  featuredImage?: T;
2083
2076
  createdBy?: T;
@@ -2566,7 +2559,6 @@ export interface PostsSelect<T extends boolean = true> {
2566
2559
  indexable?: T;
2567
2560
  };
2568
2561
  slug?: T;
2569
- slugLock?: T;
2570
2562
  author?: T;
2571
2563
  publishedAt?: T;
2572
2564
  featuredImage?: T;
@@ -2602,7 +2594,6 @@ export interface CategoriesSelect<T extends boolean = true> {
2602
2594
  indexable?: T;
2603
2595
  };
2604
2596
  slug?: T;
2605
- slugLock?: T;
2606
2597
  featuredImage?: T;
2607
2598
  createdBy?: T;
2608
2599
  updatedBy?: T;
@@ -2755,7 +2746,6 @@ export interface FacilitiesSelect<T extends boolean = true> {
2755
2746
  indexable?: T;
2756
2747
  };
2757
2748
  slug?: T;
2758
- slugLock?: T;
2759
2749
  parent?: T;
2760
2750
  createdBy?: T;
2761
2751
  updatedBy?: T;
@@ -2840,7 +2830,6 @@ export interface MarketsSelect<T extends boolean = true> {
2840
2830
  indexable?: T;
2841
2831
  };
2842
2832
  slug?: T;
2843
- slugLock?: T;
2844
2833
  parent?: T;
2845
2834
  createdBy?: T;
2846
2835
  updatedBy?: T;
@@ -2866,7 +2855,6 @@ export interface FacilityFeaturesSelect<T extends boolean = true> {
2866
2855
  description?: T;
2867
2856
  icon?: T;
2868
2857
  slug?: T;
2869
- slugLock?: T;
2870
2858
  createdBy?: T;
2871
2859
  updatedBy?: T;
2872
2860
  updatedAt?: T;