@wix/media 1.0.125 → 1.0.127
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/build/cjs/context.js +1 -0
- package/build/cjs/context.js.map +1 -0
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -0
- package/build/cjs/meta.js +1 -0
- package/build/cjs/meta.js.map +1 -0
- package/package.json +6 -6
- package/type-bundles/context.bundle.d.ts +565 -263
- package/type-bundles/index.bundle.d.ts +565 -263
- package/type-bundles/meta.bundle.d.ts +24 -24
|
@@ -16,12 +16,12 @@ interface EnterpriseCategory$1 {
|
|
|
16
16
|
* Date and time the category was created.
|
|
17
17
|
* @readonly
|
|
18
18
|
*/
|
|
19
|
-
createdDate?: Date;
|
|
19
|
+
createdDate?: Date | null;
|
|
20
20
|
/**
|
|
21
21
|
* Date and time the category was updated.
|
|
22
22
|
* @readonly
|
|
23
23
|
*/
|
|
24
|
-
updatedDate?: Date;
|
|
24
|
+
updatedDate?: Date | null;
|
|
25
25
|
}
|
|
26
26
|
declare enum PublishStatus$3 {
|
|
27
27
|
UNDEFINED = "UNDEFINED",
|
|
@@ -138,12 +138,12 @@ interface EnterpriseCategory {
|
|
|
138
138
|
* Date and time the category was created.
|
|
139
139
|
* @readonly
|
|
140
140
|
*/
|
|
141
|
-
_createdDate?: Date;
|
|
141
|
+
_createdDate?: Date | null;
|
|
142
142
|
/**
|
|
143
143
|
* Date and time the category was updated.
|
|
144
144
|
* @readonly
|
|
145
145
|
*/
|
|
146
|
-
_updatedDate?: Date;
|
|
146
|
+
_updatedDate?: Date | null;
|
|
147
147
|
}
|
|
148
148
|
declare enum PublishStatus$2 {
|
|
149
149
|
UNDEFINED = "UNDEFINED",
|
|
@@ -323,12 +323,12 @@ interface EnterpriseMediaItem$1 {
|
|
|
323
323
|
* Date and time the item was created.
|
|
324
324
|
* @readonly
|
|
325
325
|
*/
|
|
326
|
-
createdDate?: Date;
|
|
326
|
+
createdDate?: Date | null;
|
|
327
327
|
/**
|
|
328
328
|
* Date and time the item was updated.
|
|
329
329
|
* @readonly
|
|
330
330
|
*/
|
|
331
|
-
updatedDate?: Date;
|
|
331
|
+
updatedDate?: Date | null;
|
|
332
332
|
/**
|
|
333
333
|
* An internal id used with different wix media systems
|
|
334
334
|
* @readonly
|
|
@@ -457,7 +457,7 @@ interface Archive$3 {
|
|
|
457
457
|
* Archive URL expiration date (when relevant).
|
|
458
458
|
* @readonly
|
|
459
459
|
*/
|
|
460
|
-
urlExpirationDate?: Date;
|
|
460
|
+
urlExpirationDate?: Date | null;
|
|
461
461
|
/** Archive size in bytes. */
|
|
462
462
|
sizeInBytes?: string | null;
|
|
463
463
|
/** Archive filename. */
|
|
@@ -476,7 +476,7 @@ interface Model3D$3 {
|
|
|
476
476
|
* 3D URL expiration date (when relevant).
|
|
477
477
|
* @readonly
|
|
478
478
|
*/
|
|
479
|
-
urlExpirationDate?: Date;
|
|
479
|
+
urlExpirationDate?: Date | null;
|
|
480
480
|
/**
|
|
481
481
|
* 3D filename.
|
|
482
482
|
* @readonly
|
|
@@ -881,12 +881,12 @@ interface EnterpriseMediaItem {
|
|
|
881
881
|
* Date and time the item was created.
|
|
882
882
|
* @readonly
|
|
883
883
|
*/
|
|
884
|
-
_createdDate?: Date;
|
|
884
|
+
_createdDate?: Date | null;
|
|
885
885
|
/**
|
|
886
886
|
* Date and time the item was updated.
|
|
887
887
|
* @readonly
|
|
888
888
|
*/
|
|
889
|
-
_updatedDate?: Date;
|
|
889
|
+
_updatedDate?: Date | null;
|
|
890
890
|
/**
|
|
891
891
|
* An internal id used with different wix media systems
|
|
892
892
|
* @readonly
|
|
@@ -945,7 +945,7 @@ interface Archive$2 {
|
|
|
945
945
|
* Archive URL expiration date (when relevant).
|
|
946
946
|
* @readonly
|
|
947
947
|
*/
|
|
948
|
-
urlExpirationDate?: Date;
|
|
948
|
+
urlExpirationDate?: Date | null;
|
|
949
949
|
/** Archive size in bytes. */
|
|
950
950
|
sizeInBytes?: string | null;
|
|
951
951
|
/** Archive filename. */
|
|
@@ -964,7 +964,7 @@ interface Model3D$2 {
|
|
|
964
964
|
* 3D URL expiration date (when relevant).
|
|
965
965
|
* @readonly
|
|
966
966
|
*/
|
|
967
|
-
urlExpirationDate?: Date;
|
|
967
|
+
urlExpirationDate?: Date | null;
|
|
968
968
|
/**
|
|
969
969
|
* 3D filename.
|
|
970
970
|
* @readonly
|
|
@@ -1403,12 +1403,12 @@ interface FileDescriptor$1 {
|
|
|
1403
1403
|
* Date and time the file was created.
|
|
1404
1404
|
* @readonly
|
|
1405
1405
|
*/
|
|
1406
|
-
createdDate?: Date;
|
|
1406
|
+
createdDate?: Date | null;
|
|
1407
1407
|
/**
|
|
1408
1408
|
* Date and time the file was updated.
|
|
1409
1409
|
* @readonly
|
|
1410
1410
|
*/
|
|
1411
|
-
updatedDate?: Date;
|
|
1411
|
+
updatedDate?: Date | null;
|
|
1412
1412
|
/**
|
|
1413
1413
|
* The Wix site ID where the media file is stored.
|
|
1414
1414
|
* @readonly
|
|
@@ -1634,7 +1634,7 @@ interface Archive$1 {
|
|
|
1634
1634
|
* Archive URL expiration date (when relevant).
|
|
1635
1635
|
* @readonly
|
|
1636
1636
|
*/
|
|
1637
|
-
urlExpirationDate?: Date;
|
|
1637
|
+
urlExpirationDate?: Date | null;
|
|
1638
1638
|
/** Archive size in bytes. */
|
|
1639
1639
|
sizeInBytes?: string | null;
|
|
1640
1640
|
/** Archive filename. */
|
|
@@ -1653,7 +1653,7 @@ interface Model3D$1 {
|
|
|
1653
1653
|
* 3D URL expiration date (when relevant).
|
|
1654
1654
|
* @readonly
|
|
1655
1655
|
*/
|
|
1656
|
-
urlExpirationDate?: Date;
|
|
1656
|
+
urlExpirationDate?: Date | null;
|
|
1657
1657
|
/**
|
|
1658
1658
|
* 3D filename.
|
|
1659
1659
|
* @readonly
|
|
@@ -2403,12 +2403,12 @@ interface FileDescriptor {
|
|
|
2403
2403
|
* Date and time the file was created.
|
|
2404
2404
|
* @readonly
|
|
2405
2405
|
*/
|
|
2406
|
-
_createdDate?: Date;
|
|
2406
|
+
_createdDate?: Date | null;
|
|
2407
2407
|
/**
|
|
2408
2408
|
* Date and time the file was updated.
|
|
2409
2409
|
* @readonly
|
|
2410
2410
|
*/
|
|
2411
|
-
_updatedDate?: Date;
|
|
2411
|
+
_updatedDate?: Date | null;
|
|
2412
2412
|
/**
|
|
2413
2413
|
* The Wix site ID where the media file is stored.
|
|
2414
2414
|
* @readonly
|
|
@@ -2564,7 +2564,7 @@ interface Archive {
|
|
|
2564
2564
|
* Archive URL expiration date (when relevant).
|
|
2565
2565
|
* @readonly
|
|
2566
2566
|
*/
|
|
2567
|
-
urlExpirationDate?: Date;
|
|
2567
|
+
urlExpirationDate?: Date | null;
|
|
2568
2568
|
/** Archive size in bytes. */
|
|
2569
2569
|
sizeInBytes?: string | null;
|
|
2570
2570
|
/** Archive filename. */
|
|
@@ -2583,7 +2583,7 @@ interface Model3D {
|
|
|
2583
2583
|
* 3D URL expiration date (when relevant).
|
|
2584
2584
|
* @readonly
|
|
2585
2585
|
*/
|
|
2586
|
-
urlExpirationDate?: Date;
|
|
2586
|
+
urlExpirationDate?: Date | null;
|
|
2587
2587
|
/**
|
|
2588
2588
|
* 3D filename.
|
|
2589
2589
|
* @readonly
|
|
@@ -3305,12 +3305,12 @@ interface Folder$1 {
|
|
|
3305
3305
|
* Date the folder was created.
|
|
3306
3306
|
* @readonly
|
|
3307
3307
|
*/
|
|
3308
|
-
createdDate?: Date;
|
|
3308
|
+
createdDate?: Date | null;
|
|
3309
3309
|
/**
|
|
3310
3310
|
* Date the folder was updated.
|
|
3311
3311
|
* @readonly
|
|
3312
3312
|
*/
|
|
3313
|
-
updatedDate?: Date;
|
|
3313
|
+
updatedDate?: Date | null;
|
|
3314
3314
|
/**
|
|
3315
3315
|
* State of the folder.
|
|
3316
3316
|
* @readonly
|
|
@@ -3545,12 +3545,12 @@ interface Folder {
|
|
|
3545
3545
|
* Date the folder was created.
|
|
3546
3546
|
* @readonly
|
|
3547
3547
|
*/
|
|
3548
|
-
_createdDate?: Date;
|
|
3548
|
+
_createdDate?: Date | null;
|
|
3549
3549
|
/**
|
|
3550
3550
|
* Date the folder was updated.
|
|
3551
3551
|
* @readonly
|
|
3552
3552
|
*/
|
|
3553
|
-
_updatedDate?: Date;
|
|
3553
|
+
_updatedDate?: Date | null;
|
|
3554
3554
|
/**
|
|
3555
3555
|
* State of the folder.
|
|
3556
3556
|
* @readonly
|