@wix/export-async-job 1.0.3 → 1.0.5
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.5",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"type-bundles"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@wix/export-async-job_export-async-job": "1.0.
|
|
21
|
+
"@wix/export-async-job_export-async-job": "1.0.2"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"glob": "^10.4.1",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"build": "tsc -b tsconfig.json tsconfig.esm.json && npm run build:dts-bundles",
|
|
31
|
-
"build:dts-bundles": "test -f config/rollup-config.js && rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
31
|
+
"build:dts-bundles": "test -f config/rollup-config.js && NODE_OPTIONS=--max-old-space-size=8192 rollup --config config/rollup-config.js || echo 'Warning: config/rollup-config.js not found!'",
|
|
32
32
|
"test": ":"
|
|
33
33
|
},
|
|
34
34
|
"wix": {
|
|
@@ -42,5 +42,5 @@
|
|
|
42
42
|
"fqdn": ""
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
-
"falconPackageHash": "
|
|
45
|
+
"falconPackageHash": "d6022f7e18c9c11ce2d92165abc62c76f8391a81cd7e8612039d2d1e"
|
|
46
46
|
}
|
|
@@ -237,7 +237,7 @@ declare enum Status {
|
|
|
237
237
|
PROCESSING = "PROCESSING",
|
|
238
238
|
/** Job is finished. */
|
|
239
239
|
FINISHED = "FINISHED",
|
|
240
|
-
/** Job
|
|
240
|
+
/** Job has failed. */
|
|
241
241
|
FAILED = "FAILED"
|
|
242
242
|
}
|
|
243
243
|
interface CreateExportAsyncJobRequest {
|
|
@@ -739,6 +739,8 @@ interface Keyword {
|
|
|
739
739
|
term?: string;
|
|
740
740
|
/** Whether the keyword is the main focus keyword. */
|
|
741
741
|
isMain?: boolean;
|
|
742
|
+
/** Who added the keyword to the settings */
|
|
743
|
+
origin?: string | null;
|
|
742
744
|
}
|
|
743
745
|
interface Tag {
|
|
744
746
|
/**
|
|
@@ -237,7 +237,7 @@ declare enum Status {
|
|
|
237
237
|
PROCESSING = "PROCESSING",
|
|
238
238
|
/** Job is finished. */
|
|
239
239
|
FINISHED = "FINISHED",
|
|
240
|
-
/** Job
|
|
240
|
+
/** Job has failed. */
|
|
241
241
|
FAILED = "FAILED"
|
|
242
242
|
}
|
|
243
243
|
interface CreateExportAsyncJobRequest {
|
|
@@ -739,6 +739,8 @@ interface Keyword {
|
|
|
739
739
|
term?: string;
|
|
740
740
|
/** Whether the keyword is the main focus keyword. */
|
|
741
741
|
isMain?: boolean;
|
|
742
|
+
/** Who added the keyword to the settings */
|
|
743
|
+
origin?: string | null;
|
|
742
744
|
}
|
|
743
745
|
interface Tag {
|
|
744
746
|
/**
|
|
@@ -237,7 +237,7 @@ declare enum Status$1 {
|
|
|
237
237
|
PROCESSING = "PROCESSING",
|
|
238
238
|
/** Job is finished. */
|
|
239
239
|
FINISHED = "FINISHED",
|
|
240
|
-
/** Job
|
|
240
|
+
/** Job has failed. */
|
|
241
241
|
FAILED = "FAILED"
|
|
242
242
|
}
|
|
243
243
|
interface CreateExportAsyncJobRequest$1 {
|
|
@@ -569,7 +569,7 @@ declare enum Status {
|
|
|
569
569
|
PROCESSING = "PROCESSING",
|
|
570
570
|
/** Job is finished. */
|
|
571
571
|
FINISHED = "FINISHED",
|
|
572
|
-
/** Job
|
|
572
|
+
/** Job has failed. */
|
|
573
573
|
FAILED = "FAILED"
|
|
574
574
|
}
|
|
575
575
|
interface CreateExportAsyncJobRequest {
|