@@ -371,6 +371,36 @@ export interface VideoAssetTrackDeletedWebhookEvent extends BaseWebhookEvent {
371
371
type : 'video.asset.track.deleted' ;
372
372
}
373
373
374
+ export interface VideoAssetStaticRenditionCreatedWebhookEvent extends BaseWebhookEvent {
375
+ data : AssetsAPI . Asset ;
376
+
377
+ type : 'video.asset.static_rendition.created' ;
378
+ }
379
+
380
+ export interface VideoAssetStaticRenditionReadyWebhookEvent extends BaseWebhookEvent {
381
+ data : AssetsAPI . Asset ;
382
+
383
+ type : 'video.asset.static_rendition.ready' ;
384
+ }
385
+
386
+ export interface VideoAssetStaticRenditionErroredWebhookEvent extends BaseWebhookEvent {
387
+ data : AssetsAPI . Asset ;
388
+
389
+ type : 'video.asset.static_rendition.errored' ;
390
+ }
391
+
392
+ export interface VideoAssetStaticRenditionDeletedWebhookEvent extends BaseWebhookEvent {
393
+ data : AssetsAPI . Asset ;
394
+
395
+ type : 'video.asset.static_rendition.deleted' ;
396
+ }
397
+
398
+ export interface VideoAssetStaticRenditionSkippedWebhookEvent extends BaseWebhookEvent {
399
+ data : AssetsAPI . Asset ;
400
+
401
+ type : 'video.asset.static_rendition.skipped' ;
402
+ }
403
+
374
404
export interface VideoAssetWarningWebhookEvent extends BaseWebhookEvent {
375
405
data : AssetsAPI . Asset ;
376
406
@@ -666,6 +696,11 @@ export type UnwrapWebhookEvent =
666
696
| VideoAssetTrackReadyWebhookEvent
667
697
| VideoAssetTrackErroredWebhookEvent
668
698
| VideoAssetTrackDeletedWebhookEvent
699
+ | VideoAssetStaticRenditionCreatedWebhookEvent
700
+ | VideoAssetStaticRenditionReadyWebhookEvent
701
+ | VideoAssetStaticRenditionErroredWebhookEvent
702
+ | VideoAssetStaticRenditionDeletedWebhookEvent
703
+ | VideoAssetStaticRenditionSkippedWebhookEvent
669
704
| VideoAssetWarningWebhookEvent
670
705
| VideoAssetNonStandardInputDetectedWebhookEvent
671
706
| VideoUploadAssetCreatedWebhookEvent
0 commit comments