@cosmicdrift/kumiko-bundled-features 0.83.0 → 0.84.0
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": "@cosmicdrift/kumiko-bundled-features",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.84.0",
|
|
4
4
|
"description": "Built-in features — tenant, user, auth, delivery. The stuff you'd rewrite anyway, already typed.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -85,11 +85,11 @@
|
|
|
85
85
|
"./step-dispatcher": "./src/step-dispatcher/index.ts"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@cosmicdrift/kumiko-dispatcher-live": "0.
|
|
89
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
90
|
-
"@cosmicdrift/kumiko-headless": "0.
|
|
91
|
-
"@cosmicdrift/kumiko-renderer": "0.
|
|
92
|
-
"@cosmicdrift/kumiko-renderer-web": "0.
|
|
88
|
+
"@cosmicdrift/kumiko-dispatcher-live": "0.84.0",
|
|
89
|
+
"@cosmicdrift/kumiko-framework": "0.84.0",
|
|
90
|
+
"@cosmicdrift/kumiko-headless": "0.84.0",
|
|
91
|
+
"@cosmicdrift/kumiko-renderer": "0.84.0",
|
|
92
|
+
"@cosmicdrift/kumiko-renderer-web": "0.84.0",
|
|
93
93
|
"@mollie/api-client": "^4.5.0",
|
|
94
94
|
"@node-rs/argon2": "^2.0.2",
|
|
95
95
|
"@types/nodemailer": "^8.0.0",
|
|
@@ -114,7 +114,7 @@ function ExportSection(): ReactNode {
|
|
|
114
114
|
};
|
|
115
115
|
|
|
116
116
|
const result = statusQuery.data;
|
|
117
|
-
const job = result
|
|
117
|
+
const job = result?.hasJob ? result.job : null;
|
|
118
118
|
const submitting = status.kind === "submitting";
|
|
119
119
|
const inProgress =
|
|
120
120
|
job?.status === EXPORT_JOB_STATUS.Pending || job?.status === EXPORT_JOB_STATUS.Running;
|