@wix/media 1.0.106 → 1.0.107
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 +9 -8
- package/type-bundles/context.bundle.d.ts +258 -67
- package/type-bundles/index.bundle.d.ts +258 -67
- package/type-bundles/meta.bundle.d.ts +2 -10
|
@@ -1477,11 +1477,6 @@ interface ImageMedia$1 {
|
|
|
1477
1477
|
* @readonly
|
|
1478
1478
|
*/
|
|
1479
1479
|
caption?: string | null;
|
|
1480
|
-
/**
|
|
1481
|
-
* Optional, return true or false if the image has text, or empty for unknown
|
|
1482
|
-
* @readonly
|
|
1483
|
-
*/
|
|
1484
|
-
containsText?: boolean | null;
|
|
1485
1480
|
}
|
|
1486
1481
|
interface Image {
|
|
1487
1482
|
/** WixMedia image ID. */
|
|
@@ -2251,6 +2246,7 @@ interface Model3DNonNullableFields$1 {
|
|
|
2251
2246
|
}
|
|
2252
2247
|
interface OtherMediaNonNullableFields$1 {
|
|
2253
2248
|
id: string;
|
|
2249
|
+
url: string;
|
|
2254
2250
|
}
|
|
2255
2251
|
interface FileMediaNonNullableFields$1 {
|
|
2256
2252
|
image?: ImageMediaNonNullableFields$1;
|
|
@@ -2481,11 +2477,6 @@ interface ImageMedia {
|
|
|
2481
2477
|
* @readonly
|
|
2482
2478
|
*/
|
|
2483
2479
|
caption?: string | null;
|
|
2484
|
-
/**
|
|
2485
|
-
* Optional, return true or false if the image has text, or empty for unknown
|
|
2486
|
-
* @readonly
|
|
2487
|
-
*/
|
|
2488
|
-
containsText?: boolean | null;
|
|
2489
2480
|
}
|
|
2490
2481
|
interface Colors {
|
|
2491
2482
|
/** Main color of the image. */
|
|
@@ -3163,6 +3154,7 @@ interface Model3DNonNullableFields {
|
|
|
3163
3154
|
}
|
|
3164
3155
|
interface OtherMediaNonNullableFields {
|
|
3165
3156
|
_id: string;
|
|
3157
|
+
url: string;
|
|
3166
3158
|
}
|
|
3167
3159
|
interface FileMediaNonNullableFields {
|
|
3168
3160
|
image?: ImageMediaNonNullableFields;
|