create-payload-app 3.80.0-internal.cee0ccf → 3.80.0
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.
|
@@ -90,6 +90,9 @@ export interface Config {
|
|
|
90
90
|
globals: {};
|
|
91
91
|
globalsSelect: {};
|
|
92
92
|
locale: null;
|
|
93
|
+
widgets: {
|
|
94
|
+
collections: CollectionsWidget;
|
|
95
|
+
};
|
|
93
96
|
user: User;
|
|
94
97
|
jobs: {
|
|
95
98
|
tasks: unknown;
|
|
@@ -312,6 +315,16 @@ export interface PayloadMigrationsSelect<T extends boolean = true> {
|
|
|
312
315
|
updatedAt?: T;
|
|
313
316
|
createdAt?: T;
|
|
314
317
|
}
|
|
318
|
+
/**
|
|
319
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
320
|
+
* via the `definition` "collections_widget".
|
|
321
|
+
*/
|
|
322
|
+
export interface CollectionsWidget {
|
|
323
|
+
data?: {
|
|
324
|
+
[k: string]: unknown;
|
|
325
|
+
};
|
|
326
|
+
width: 'full';
|
|
327
|
+
}
|
|
315
328
|
/**
|
|
316
329
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
317
330
|
* via the `definition` "auth".
|