@mediaclip/designer-api 14.0.0-beta.25632 → 14.0.0-beta.25634
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/designer-api.d.ts +11 -11
- package/package.json +1 -1
package/designer-api.d.ts
CHANGED
|
@@ -41,7 +41,7 @@ export class AutofillSourceSet extends RemoteObject {
|
|
|
41
41
|
|
|
42
42
|
export class AutofillSource extends RemoteObject {
|
|
43
43
|
sets:AutofillSourceSet[];
|
|
44
|
-
options
|
|
44
|
+
options?:AutofillOption[];
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
export class AutofillData {
|
|
@@ -186,13 +186,13 @@ export class Album extends Category<IPhotoNode> implements IPhotoNode {
|
|
|
186
186
|
|
|
187
187
|
export interface IPhoto {
|
|
188
188
|
filename:string;
|
|
189
|
-
originalFilename
|
|
189
|
+
originalFilename?:string;
|
|
190
190
|
urlThumb:string;
|
|
191
191
|
}
|
|
192
192
|
|
|
193
193
|
export class UploadingPhoto implements IPhoto, IPhotoNode {
|
|
194
194
|
filename:string;
|
|
195
|
-
originalFilename
|
|
195
|
+
originalFilename?:string;
|
|
196
196
|
uploadId:string;
|
|
197
197
|
urlThumb:string;
|
|
198
198
|
}
|
|
@@ -224,16 +224,16 @@ export class Photo extends Item implements IPhotoNode, IImageItem, IPhoto {
|
|
|
224
224
|
filename:string;
|
|
225
225
|
width:number;
|
|
226
226
|
height:number;
|
|
227
|
-
urlWeb
|
|
227
|
+
urlWeb?:string;
|
|
228
228
|
urlThumb:string;
|
|
229
|
-
autoCrops
|
|
230
|
-
dateTaken
|
|
231
|
-
filtersUrlWeb
|
|
229
|
+
autoCrops?:AutoCrop[];
|
|
230
|
+
dateTaken?:string;
|
|
231
|
+
filtersUrlWeb?:string;
|
|
232
232
|
local:boolean;
|
|
233
|
-
originalFilename
|
|
233
|
+
originalFilename?:string;
|
|
234
234
|
partial:boolean;
|
|
235
|
-
versions
|
|
236
|
-
metadata
|
|
235
|
+
versions?:PhotoVersion[];
|
|
236
|
+
metadata?:[];
|
|
237
237
|
}
|
|
238
238
|
|
|
239
239
|
export class PhotoSource extends Album {
|
|
@@ -255,7 +255,7 @@ export class ImageSize extends Size {
|
|
|
255
255
|
}
|
|
256
256
|
|
|
257
257
|
export class PendingPhoto {
|
|
258
|
-
originalFilename
|
|
258
|
+
originalFilename?:string;
|
|
259
259
|
urlThumb:string;
|
|
260
260
|
get:() => Promise<{
|
|
261
261
|
filename:string;
|