We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 0c631c1 + a9c2183 commit fd1e51aCopy full SHA for fd1e51a
1 file changed
lib/TasksResource.ts
@@ -302,10 +302,15 @@ interface TaskThumbnail {
302
export interface TaskThumbnailData {
303
input: string | string[];
304
input_format?: string;
305
- output_format: 'png' | 'jpg';
+ output_format: 'png' | 'webp' | 'jpg';
306
+ width?: number;
307
+ height?: number;
308
+ fit?: 'max' | 'crop' | 'scale';
309
+ count?: number;
310
+ timestamp?: string;
311
+ filename?: string;
312
engine?: string;
313
engine_version?: string;
- filename?: string;
314
timeout?: number;
315
316
[option: string]: any;
@@ -440,6 +445,7 @@ export interface ExportS3Data {
440
445
cache_control?: string;
441
446
metadata?: Record<string, unknown>;
442
447
server_side_encryption?: string;
448
+ tagging?: Record<string, string>;
443
449
}
444
450
451
interface ExportAzureBlob {
0 commit comments