@@ -496,7 +496,7 @@ export interface TextOverlay extends BaseOverlay {
496
496
* Regardless of the encoding method, the input text is always percent-encoded to ensure it is URL-safe.
497
497
*/
498
498
499
- encoding : "auto" | "plain" | "base64" ;
499
+ encoding ? : "auto" | "plain" | "base64" ;
500
500
501
501
/**
502
502
* Control styling of the text overlay.
@@ -522,7 +522,7 @@ export interface ImageOverlay extends BaseOverlay {
522
522
* - Leading and trailing slashes are removed.
523
523
* - Remaining slashes within the path are replaced with `@@` when using plain text.
524
524
*/
525
- encoding : "auto" | "plain" | "base64" ;
525
+ encoding ? : "auto" | "plain" | "base64" ;
526
526
527
527
/**
528
528
* Array of transformations to be applied to the overlay image. Supported transformations depends on the base/parent asset.
@@ -549,7 +549,7 @@ export interface VideoOverlay extends BaseOverlay {
549
549
* - Leading and trailing slashes are removed.
550
550
* - Remaining slashes within the path are replaced with `@@` when using plain text.
551
551
*/
552
- encoding : "auto" | "plain" | "base64" ;
552
+ encoding ? : "auto" | "plain" | "base64" ;
553
553
554
554
/**
555
555
* Array of transformation to be applied to the overlay video. Except `streamingResolutions`, all other video transformations are supported.
@@ -576,7 +576,7 @@ export interface SubtitleOverlay extends BaseOverlay {
576
576
* - Leading and trailing slashes are removed.
577
577
* - Remaining slashes within the path are replaced with `@@` when using plain text.
578
578
*/
579
- encoding : "auto" | "plain" | "base64" ;
579
+ encoding ? : "auto" | "plain" | "base64" ;
580
580
581
581
/**
582
582
* Control styling of the subtitle.
0 commit comments