@glidevvr/storage-payload-types-pkg 1.0.132 → 1.0.134

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 +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.132",
3
+ "version": "1.0.134",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -575,6 +575,7 @@ export interface Category {
575
575
  updatedBy?: string | null;
576
576
  updatedAt: string;
577
577
  createdAt: string;
578
+ _status?: ('draft' | 'published') | null;
578
579
  }
579
580
  /**
580
581
  * This interface was referenced by `Config`'s JSON-Schema
@@ -2601,6 +2602,7 @@ export interface CategoriesSelect<T extends boolean = true> {
2601
2602
  updatedBy?: T;
2602
2603
  updatedAt?: T;
2603
2604
  createdAt?: T;
2605
+ _status?: T;
2604
2606
  }
2605
2607
  /**
2606
2608
  * This interface was referenced by `Config`'s JSON-Schema
@@ -3106,6 +3108,10 @@ export interface TaskSchedulePublish {
3106
3108
  relationTo: 'posts';
3107
3109
  value: string | Post;
3108
3110
  } | null)
3111
+ | ({
3112
+ relationTo: 'categories';
3113
+ value: string | Category;
3114
+ } | null)
3109
3115
  | ({
3110
3116
  relationTo: 'facilities';
3111
3117
  value: string | Facility;