@inweb/client 25.3.21 → 25.3.22
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/dist/client.js +4 -4
- package/dist/client.js.map +1 -1
- package/dist/client.min.js +1 -1
- package/dist/client.module.js +4 -6
- package/dist/client.module.js.map +1 -1
- package/package.json +2 -3
- package/src/Api/File.ts +2 -2
package/dist/client.js
CHANGED
|
@@ -2503,8 +2503,8 @@
|
|
|
2503
2503
|
const checkDone = () => this.checkout().then((file) => {
|
|
2504
2504
|
var _a;
|
|
2505
2505
|
const readyJobs = waitJobs.filter((job) => {
|
|
2506
|
-
const jobStatus = file.status[job] || {
|
|
2507
|
-
return ["none", "done", "failed"].includes(jobStatus.state);
|
|
2506
|
+
const jobStatus = file.status[job] || {};
|
|
2507
|
+
return ["none", "done", "failed"].includes(jobStatus.state || "none");
|
|
2508
2508
|
});
|
|
2509
2509
|
const ready = waitAll ? readyJobs.length === waitJobs.length : readyJobs.length > 0;
|
|
2510
2510
|
const cancel = (_a = params === null || params === void 0 ? void 0 : params.onCheckout) === null || _a === void 0 ? void 0 : _a.call(params, file, ready);
|
|
@@ -3716,7 +3716,7 @@
|
|
|
3716
3716
|
.then((data) => ({
|
|
3717
3717
|
...data,
|
|
3718
3718
|
server: data.version,
|
|
3719
|
-
client: "25.3.
|
|
3719
|
+
client: "25.3.22",
|
|
3720
3720
|
}));
|
|
3721
3721
|
}
|
|
3722
3722
|
/**
|
|
@@ -4393,7 +4393,7 @@
|
|
|
4393
4393
|
}
|
|
4394
4394
|
|
|
4395
4395
|
///////////////////////////////////////////////////////////////////////////////
|
|
4396
|
-
const version = "25.3.
|
|
4396
|
+
const version = "25.3.22";
|
|
4397
4397
|
|
|
4398
4398
|
exports.Assembly = Assembly;
|
|
4399
4399
|
exports.ClashTest = ClashTest;
|