@glidevvr/storage-payload-types-pkg 1.0.99 → 1.0.101

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 +2 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.99",
3
+ "version": "1.0.101",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -576,8 +576,6 @@ export interface Post {
576
576
  };
577
577
  [k: string]: unknown;
578
578
  };
579
- relatedPosts?: (string | Post)[] | null;
580
- categories?: (string | Category)[] | null;
581
579
  meta?: {
582
580
  title?: string | null;
583
581
  description?: string | null;
@@ -594,6 +592,7 @@ export interface Post {
594
592
  * Defaults to the beginning of your post content if not entered.
595
593
  */
596
594
  excerpt?: string | null;
595
+ categories?: (string | Category)[] | null;
597
596
  createdBy?: string | null;
598
597
  updatedBy?: string | null;
599
598
  updatedAt: string;
@@ -2546,8 +2545,6 @@ export interface PostsSelect<T extends boolean = true> {
2546
2545
  tenant?: T;
2547
2546
  title?: T;
2548
2547
  content?: T;
2549
- relatedPosts?: T;
2550
- categories?: T;
2551
2548
  meta?:
2552
2549
  | T
2553
2550
  | {
@@ -2560,6 +2557,7 @@ export interface PostsSelect<T extends boolean = true> {
2560
2557
  publishedAt?: T;
2561
2558
  featuredImage?: T;
2562
2559
  excerpt?: T;
2560
+ categories?: T;
2563
2561
  createdBy?: T;
2564
2562
  updatedBy?: T;
2565
2563
  updatedAt?: T;