blob: f5e0e2e2b02a5080d02c28569f644279987a412f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
export interface MediaItem {
id: string;
description: string;
productUrl: string;
baseUrl: string;
mimeType: string;
mediaMetadata: {
creationTime: string;
width: string;
height: string;
};
filename: string;
}
export interface NewMediaItemResult {
uploadToken: string;
status: { code: number; message: string };
mediaItem: MediaItem;
}
export type MediaItemCreationResult = { newMediaItemResults: NewMediaItemResult[] };
|