@@ -221,6 +221,36 @@ export interface VideoAssetTrackDeletedWebhookEvent extends BaseWebhookEvent {
221
221
type : 'video.asset.track.deleted' ;
222
222
}
223
223
224
+ export interface VideoAssetStaticRenditionCreatedWebhookEvent extends BaseWebhookEvent {
225
+ data : AssetsAPI . Asset ;
226
+
227
+ type : 'video.asset.static_rendition.created' ;
228
+ }
229
+
230
+ export interface VideoAssetStaticRenditionReadyWebhookEvent extends BaseWebhookEvent {
231
+ data : AssetsAPI . Asset ;
232
+
233
+ type : 'video.asset.static_rendition.ready' ;
234
+ }
235
+
236
+ export interface VideoAssetStaticRenditionErroredWebhookEvent extends BaseWebhookEvent {
237
+ data : AssetsAPI . Asset ;
238
+
239
+ type : 'video.asset.static_rendition.errored' ;
240
+ }
241
+
242
+ export interface VideoAssetStaticRenditionDeletedWebhookEvent extends BaseWebhookEvent {
243
+ data : AssetsAPI . Asset ;
244
+
245
+ type : 'video.asset.static_rendition.deleted' ;
246
+ }
247
+
248
+ export interface VideoAssetStaticRenditionSkippedWebhookEvent extends BaseWebhookEvent {
249
+ data : AssetsAPI . Asset ;
250
+
251
+ type : 'video.asset.static_rendition.skipped' ;
252
+ }
253
+
224
254
export interface VideoAssetWarningWebhookEvent extends BaseWebhookEvent {
225
255
data : AssetsAPI . Asset ;
226
256
@@ -516,6 +546,11 @@ export type UnwrapWebhookEvent =
516
546
| VideoAssetTrackReadyWebhookEvent
517
547
| VideoAssetTrackErroredWebhookEvent
518
548
| VideoAssetTrackDeletedWebhookEvent
549
+ | VideoAssetStaticRenditionCreatedWebhookEvent
550
+ | VideoAssetStaticRenditionReadyWebhookEvent
551
+ | VideoAssetStaticRenditionErroredWebhookEvent
552
+ | VideoAssetStaticRenditionDeletedWebhookEvent
553
+ | VideoAssetStaticRenditionSkippedWebhookEvent
519
554
| VideoAssetWarningWebhookEvent
520
555
| VideoAssetNonStandardInputDetectedWebhookEvent
521
556
| VideoUploadAssetCreatedWebhookEvent
0 commit comments