@wix/export-async-job 1.0.11 → 1.0.13
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/export-async-job",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.13",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -21,7 +21,7 @@
|
|
|
21
21
|
"type-bundles"
|
|
22
22
|
],
|
|
23
23
|
"dependencies": {
|
|
24
|
-
"@wix/export-async-job_export-async-job": "1.0.
|
|
24
|
+
"@wix/export-async-job_export-async-job": "1.0.9"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"glob": "^10.4.1",
|
|
@@ -46,5 +46,5 @@
|
|
|
46
46
|
"fqdn": ""
|
|
47
47
|
}
|
|
48
48
|
},
|
|
49
|
-
"falconPackageHash": "
|
|
49
|
+
"falconPackageHash": "0a9e6a99d555aa881af79fec69e2b443a1adf399be8aae1bf7431af9"
|
|
50
50
|
}
|
|
@@ -482,9 +482,9 @@ interface ExportAsyncJob {
|
|
|
482
482
|
data?: ExportAsyncJobData;
|
|
483
483
|
status?: Status;
|
|
484
484
|
/** @readonly */
|
|
485
|
-
createDate?: Date;
|
|
485
|
+
createDate?: Date | null;
|
|
486
486
|
/** @readonly */
|
|
487
|
-
updateDate?: Date;
|
|
487
|
+
updateDate?: Date | null;
|
|
488
488
|
}
|
|
489
489
|
interface ExportAsyncJobData {
|
|
490
490
|
/** original request data for the export */
|
|
@@ -891,12 +891,12 @@ interface Product {
|
|
|
891
891
|
* Date and time the product was last updated.
|
|
892
892
|
* @readonly
|
|
893
893
|
*/
|
|
894
|
-
lastUpdated?: Date;
|
|
894
|
+
lastUpdated?: Date | null;
|
|
895
895
|
/**
|
|
896
896
|
* Date and time the product was created.
|
|
897
897
|
* @readonly
|
|
898
898
|
*/
|
|
899
|
-
_createdDate?: Date;
|
|
899
|
+
_createdDate?: Date | null;
|
|
900
900
|
/** Custom SEO data for the product. */
|
|
901
901
|
seoData?: SeoSchema;
|
|
902
902
|
/** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
|
|
@@ -482,9 +482,9 @@ interface ExportAsyncJob {
|
|
|
482
482
|
data?: ExportAsyncJobData;
|
|
483
483
|
status?: Status;
|
|
484
484
|
/** @readonly */
|
|
485
|
-
createDate?: Date;
|
|
485
|
+
createDate?: Date | null;
|
|
486
486
|
/** @readonly */
|
|
487
|
-
updateDate?: Date;
|
|
487
|
+
updateDate?: Date | null;
|
|
488
488
|
}
|
|
489
489
|
interface ExportAsyncJobData {
|
|
490
490
|
/** original request data for the export */
|
|
@@ -891,12 +891,12 @@ interface Product {
|
|
|
891
891
|
* Date and time the product was last updated.
|
|
892
892
|
* @readonly
|
|
893
893
|
*/
|
|
894
|
-
lastUpdated?: Date;
|
|
894
|
+
lastUpdated?: Date | null;
|
|
895
895
|
/**
|
|
896
896
|
* Date and time the product was created.
|
|
897
897
|
* @readonly
|
|
898
898
|
*/
|
|
899
|
-
_createdDate?: Date;
|
|
899
|
+
_createdDate?: Date | null;
|
|
900
900
|
/** Custom SEO data for the product. */
|
|
901
901
|
seoData?: SeoSchema;
|
|
902
902
|
/** Product ribbon. Used to highlight relevant information about a product. For example, "Sale", "New Arrival", "Sold Out". */
|
|
@@ -4,9 +4,9 @@ interface ExportAsyncJob$1 {
|
|
|
4
4
|
data?: ExportAsyncJobData$1;
|
|
5
5
|
status?: Status$1;
|
|
6
6
|
/** @readonly */
|
|
7
|
-
createDate?: Date;
|
|
7
|
+
createDate?: Date | null;
|
|
8
8
|
/** @readonly */
|
|
9
|
-
updateDate?: Date;
|
|
9
|
+
updateDate?: Date | null;
|
|
10
10
|
}
|
|
11
11
|
interface ExportAsyncJobData$1 {
|
|
12
12
|
/** original request data for the export */
|
|
@@ -336,9 +336,9 @@ interface ExportAsyncJob {
|
|
|
336
336
|
data?: ExportAsyncJobData;
|
|
337
337
|
status?: Status;
|
|
338
338
|
/** @readonly */
|
|
339
|
-
createDate?: Date;
|
|
339
|
+
createDate?: Date | null;
|
|
340
340
|
/** @readonly */
|
|
341
|
-
updateDate?: Date;
|
|
341
|
+
updateDate?: Date | null;
|
|
342
342
|
}
|
|
343
343
|
interface ExportAsyncJobData {
|
|
344
344
|
/** original request data for the export */
|