@wix/media 1.0.91 → 1.0.92
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 +3 -3
- package/type-bundles/index.bundle.d.ts +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/media",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.92",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@wix/media_enterprise-media-categories": "1.0.23",
|
|
22
22
|
"@wix/media_enterprise-media-items": "1.0.26",
|
|
23
|
-
"@wix/media_files": "1.0.
|
|
23
|
+
"@wix/media_files": "1.0.29",
|
|
24
24
|
"@wix/media_folders": "1.0.26"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"fqdn": ""
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "1576f684529638fa50dc7730cc4f863507cec680ef703648dd95f267"
|
|
50
50
|
}
|
|
@@ -1920,23 +1920,6 @@ interface GetFileDescriptorsResponse {
|
|
|
1920
1920
|
/** Information about the requested files. */
|
|
1921
1921
|
files?: FileDescriptor[];
|
|
1922
1922
|
}
|
|
1923
|
-
interface UpdateFileRequest {
|
|
1924
|
-
/** ID or Wix media URL of the file to update. */
|
|
1925
|
-
fileId?: string;
|
|
1926
|
-
/** File name that appears in the Media Manager. */
|
|
1927
|
-
displayName?: string | null;
|
|
1928
|
-
/**
|
|
1929
|
-
* ID of the file's parent folder. <br />
|
|
1930
|
-
* Default: `media-root`.
|
|
1931
|
-
*/
|
|
1932
|
-
parentFolderId?: string | null;
|
|
1933
|
-
/** Labels assigned to media files that describe and categorize them. Provided by the user, or generated by [Google Vision API](https://cloud.google.com/vision/docs/drag-and-drop) for images. */
|
|
1934
|
-
labels?: string[] | null;
|
|
1935
|
-
}
|
|
1936
|
-
interface UpdateFileResponse {
|
|
1937
|
-
/** Information about the updated file. */
|
|
1938
|
-
file?: FileDescriptor;
|
|
1939
|
-
}
|
|
1940
1923
|
interface UpdateFileDescriptorRequest {
|
|
1941
1924
|
/** The file to update. */
|
|
1942
1925
|
file: FileDescriptor;
|
|
@@ -2303,6 +2286,23 @@ interface ListDeletedFilesResponse {
|
|
|
2303
2286
|
/** The next cursor if it exists. */
|
|
2304
2287
|
nextCursor?: PagingMetadataV2$1;
|
|
2305
2288
|
}
|
|
2289
|
+
interface UpdateFileRequest {
|
|
2290
|
+
/** ID or Wix media URL of the file to update. */
|
|
2291
|
+
fileId?: string;
|
|
2292
|
+
/** File name that appears in the Media Manager. */
|
|
2293
|
+
displayName?: string | null;
|
|
2294
|
+
/**
|
|
2295
|
+
* ID of the file's parent folder. <br />
|
|
2296
|
+
* Default: `media-root`.
|
|
2297
|
+
*/
|
|
2298
|
+
parentFolderId?: string | null;
|
|
2299
|
+
/** Labels assigned to media files that describe and categorize them. Provided by the user, or generated by [Google Vision API](https://cloud.google.com/vision/docs/drag-and-drop) for images. */
|
|
2300
|
+
labels?: string[] | null;
|
|
2301
|
+
}
|
|
2302
|
+
interface UpdateFileResponse {
|
|
2303
|
+
/** Information about the updated file. */
|
|
2304
|
+
file?: FileDescriptor;
|
|
2305
|
+
}
|
|
2306
2306
|
interface DomainEvent$1 extends DomainEventBodyOneOf$1 {
|
|
2307
2307
|
createdEvent?: EntityCreatedEvent$1;
|
|
2308
2308
|
updatedEvent?: EntityUpdatedEvent$1;
|