File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed
Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ import {
2121 WebhookEvent ,
2222 WebhookEventVideoAccepted ,
2323 WebhookEventVideoReady ,
24- WebhookEventVideoFailed ,
24+ WebhookEventVideoError ,
2525} from "./webhookEvent" ;
2626
2727type FinalUrlOptions = ImageKitOptions & UrlOptions ; // actual options used to construct url
@@ -65,6 +65,6 @@ export type {
6565 WebhookEvent ,
6666 WebhookEventVideoAccepted ,
6767 WebhookEventVideoReady ,
68- WebhookEventVideoFailed ,
68+ WebhookEventVideoError ,
6969} ;
7070export type { IKCallback } from "./IKCallback" ;
Original file line number Diff line number Diff line change @@ -60,8 +60,8 @@ export interface WebhookEventVideoReady extends WebhookEventVideoBase {
6060 } ;
6161}
6262
63- export interface WebhookEventVideoFailed extends WebhookEventVideoBase {
64- type : "video.transformation.failed " ;
63+ export interface WebhookEventVideoError extends WebhookEventVideoBase {
64+ type : "video.transformation.error " ;
6565 data : {
6666 asset : Asset ;
6767 transformation : {
@@ -77,4 +77,4 @@ export interface WebhookEventVideoFailed extends WebhookEventVideoBase {
7777export type WebhookEvent =
7878 | WebhookEventVideoAccepted
7979 | WebhookEventVideoReady
80- | WebhookEventVideoFailed ;
80+ | WebhookEventVideoError ;
You can’t perform that action at this time.
0 commit comments