@glidevvr/storage-payload-types-pkg 1.0.310 → 1.0.312
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.
- package/package.json +1 -1
- package/payload-types.ts +13 -2
package/package.json
CHANGED
package/payload-types.ts
CHANGED
|
@@ -233,6 +233,7 @@ export interface Config {
|
|
|
233
233
|
user: User;
|
|
234
234
|
jobs: {
|
|
235
235
|
tasks: {
|
|
236
|
+
vimeoUpload: TaskVimeoUpload;
|
|
236
237
|
schedulePublish: TaskSchedulePublish;
|
|
237
238
|
inline: {
|
|
238
239
|
input: unknown;
|
|
@@ -3882,7 +3883,7 @@ export interface PayloadJob {
|
|
|
3882
3883
|
| {
|
|
3883
3884
|
executedAt: string;
|
|
3884
3885
|
completedAt: string;
|
|
3885
|
-
taskSlug: 'inline' | 'schedulePublish';
|
|
3886
|
+
taskSlug: 'inline' | 'vimeoUpload' | 'schedulePublish';
|
|
3886
3887
|
taskID: string;
|
|
3887
3888
|
input?:
|
|
3888
3889
|
| {
|
|
@@ -3915,7 +3916,7 @@ export interface PayloadJob {
|
|
|
3915
3916
|
id?: string | null;
|
|
3916
3917
|
}[]
|
|
3917
3918
|
| null;
|
|
3918
|
-
taskSlug?: ('inline' | 'schedulePublish') | null;
|
|
3919
|
+
taskSlug?: ('inline' | 'vimeoUpload' | 'schedulePublish') | null;
|
|
3919
3920
|
queue?: string | null;
|
|
3920
3921
|
waitUntil?: string | null;
|
|
3921
3922
|
processing?: boolean | null;
|
|
@@ -5460,6 +5461,16 @@ export interface CollectionsWidget {
|
|
|
5460
5461
|
};
|
|
5461
5462
|
width: 'full';
|
|
5462
5463
|
}
|
|
5464
|
+
/**
|
|
5465
|
+
* This interface was referenced by `Config`'s JSON-Schema
|
|
5466
|
+
* via the `definition` "TaskVimeoUpload".
|
|
5467
|
+
*/
|
|
5468
|
+
export interface TaskVimeoUpload {
|
|
5469
|
+
input: {
|
|
5470
|
+
mediaId: string;
|
|
5471
|
+
};
|
|
5472
|
+
output?: unknown;
|
|
5473
|
+
}
|
|
5463
5474
|
/**
|
|
5464
5475
|
* This interface was referenced by `Config`'s JSON-Schema
|
|
5465
5476
|
* via the `definition` "TaskSchedulePublish".
|