@glidevvr/storage-payload-types-pkg 1.0.83 → 1.0.85

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 +10 -6
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glidevvr/storage-payload-types-pkg",
3
- "version": "1.0.83",
3
+ "version": "1.0.85",
4
4
  "description": "Package for Payload CMS types.",
5
5
  "main": "payload-types.ts",
6
6
  "scripts": {
package/payload-types.ts CHANGED
@@ -1231,6 +1231,8 @@ export interface FormBlock {
1231
1231
  export interface Form {
1232
1232
  id: string;
1233
1233
  tenant?: (string | null) | Tenant;
1234
+ createdBy?: string | null;
1235
+ updatedBy?: string | null;
1234
1236
  title: string;
1235
1237
  fields?:
1236
1238
  | (
@@ -1415,8 +1417,6 @@ export interface Form {
1415
1417
  id?: string | null;
1416
1418
  }[]
1417
1419
  | null;
1418
- createdBy?: string | null;
1419
- updatedBy?: string | null;
1420
1420
  updatedAt: string;
1421
1421
  createdAt: string;
1422
1422
  }
@@ -1828,6 +1828,9 @@ export interface Build {
1828
1828
  */
1829
1829
  export interface FormSubmission {
1830
1830
  id: string;
1831
+ tenant?: (string | null) | Tenant;
1832
+ createdBy?: string | null;
1833
+ updatedBy?: string | null;
1831
1834
  form: string | Form;
1832
1835
  submissionData?:
1833
1836
  | {
@@ -1836,7 +1839,6 @@ export interface FormSubmission {
1836
1839
  id?: string | null;
1837
1840
  }[]
1838
1841
  | null;
1839
- tenant?: (string | null) | Tenant;
1840
1842
  updatedAt: string;
1841
1843
  createdAt: string;
1842
1844
  }
@@ -2906,6 +2908,8 @@ export interface BuildsSelect<T extends boolean = true> {
2906
2908
  */
2907
2909
  export interface FormsSelect<T extends boolean = true> {
2908
2910
  tenant?: T;
2911
+ createdBy?: T;
2912
+ updatedBy?: T;
2909
2913
  title?: T;
2910
2914
  fields?:
2911
2915
  | T
@@ -3034,8 +3038,6 @@ export interface FormsSelect<T extends boolean = true> {
3034
3038
  message?: T;
3035
3039
  id?: T;
3036
3040
  };
3037
- createdBy?: T;
3038
- updatedBy?: T;
3039
3041
  updatedAt?: T;
3040
3042
  createdAt?: T;
3041
3043
  }
@@ -3044,6 +3046,9 @@ export interface FormsSelect<T extends boolean = true> {
3044
3046
  * via the `definition` "form-submissions_select".
3045
3047
  */
3046
3048
  export interface FormSubmissionsSelect<T extends boolean = true> {
3049
+ tenant?: T;
3050
+ createdBy?: T;
3051
+ updatedBy?: T;
3047
3052
  form?: T;
3048
3053
  submissionData?:
3049
3054
  | T
@@ -3052,7 +3057,6 @@ export interface FormSubmissionsSelect<T extends boolean = true> {
3052
3057
  value?: T;
3053
3058
  id?: T;
3054
3059
  };
3055
- tenant?: T;
3056
3060
  updatedAt?: T;
3057
3061
  createdAt?: T;
3058
3062
  }