@wix/media 1.0.110 → 1.0.112
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/package.json +6 -6
- package/type-bundles/context.bundle.d.ts +668 -228
- package/type-bundles/index.bundle.d.ts +668 -228
- package/type-bundles/meta.bundle.d.ts +16 -16
|
@@ -1714,6 +1714,14 @@ interface ExternalInfo$1 {
|
|
|
1714
1714
|
/** External IDs to pass in the [File Ready](https://dev.wix.com/api/rest/media/media-manager/files/file-ready-domain-event) or [File Failed](https://dev.wix.com/api/rest/media/media-manager/files/file-failed-domain-event) events. */
|
|
1715
1715
|
externalIds?: string[];
|
|
1716
1716
|
}
|
|
1717
|
+
interface ApplicationError$1 {
|
|
1718
|
+
/** Error code. */
|
|
1719
|
+
code?: string;
|
|
1720
|
+
/** Description of the error. */
|
|
1721
|
+
description?: string;
|
|
1722
|
+
/** Data related to the error. */
|
|
1723
|
+
data?: Record<string, any> | null;
|
|
1724
|
+
}
|
|
1717
1725
|
interface GenerateFilesDownloadUrlRequest$1 {
|
|
1718
1726
|
/**
|
|
1719
1727
|
* IDs of the files to download.
|
|
@@ -1984,14 +1992,6 @@ interface ItemMetadata$1 {
|
|
|
1984
1992
|
/** Details about the error in case of failure. */
|
|
1985
1993
|
error?: ApplicationError$1;
|
|
1986
1994
|
}
|
|
1987
|
-
interface ApplicationError$1 {
|
|
1988
|
-
/** Error code. */
|
|
1989
|
-
code?: string;
|
|
1990
|
-
/** Description of the error. */
|
|
1991
|
-
description?: string;
|
|
1992
|
-
/** Data related to the error. */
|
|
1993
|
-
data?: Record<string, any> | null;
|
|
1994
|
-
}
|
|
1995
1995
|
interface BulkActionMetadata$1 {
|
|
1996
1996
|
/** Number of items that were successfully processed. */
|
|
1997
1997
|
totalSuccesses?: number;
|
|
@@ -2644,6 +2644,14 @@ interface ExternalInfo {
|
|
|
2644
2644
|
/** External IDs to pass in the File Ready or File Failed events. */
|
|
2645
2645
|
externalIds?: string[];
|
|
2646
2646
|
}
|
|
2647
|
+
interface ApplicationError {
|
|
2648
|
+
/** Error code. */
|
|
2649
|
+
code?: string;
|
|
2650
|
+
/** Description of the error. */
|
|
2651
|
+
description?: string;
|
|
2652
|
+
/** Data related to the error. */
|
|
2653
|
+
data?: Record<string, any> | null;
|
|
2654
|
+
}
|
|
2647
2655
|
interface GenerateFilesDownloadUrlRequest {
|
|
2648
2656
|
/**
|
|
2649
2657
|
* IDs of the files to download.
|
|
@@ -2913,14 +2921,6 @@ interface ItemMetadata {
|
|
|
2913
2921
|
/** Details about the error in case of failure. */
|
|
2914
2922
|
error?: ApplicationError;
|
|
2915
2923
|
}
|
|
2916
|
-
interface ApplicationError {
|
|
2917
|
-
/** Error code. */
|
|
2918
|
-
code?: string;
|
|
2919
|
-
/** Description of the error. */
|
|
2920
|
-
description?: string;
|
|
2921
|
-
/** Data related to the error. */
|
|
2922
|
-
data?: Record<string, any> | null;
|
|
2923
|
-
}
|
|
2924
2924
|
interface BulkActionMetadata {
|
|
2925
2925
|
/** Number of items that were successfully processed. */
|
|
2926
2926
|
totalSuccesses?: number;
|