@inweb/client 25.3.21 → 25.3.23

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 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] || { state: none };
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.21",
3719
+ client: "25.3.23",
3720
3720
  }));
3721
3721
  }
3722
3722
  /**
@@ -4393,7 +4393,7 @@
4393
4393
  }
4394
4394
 
4395
4395
  ///////////////////////////////////////////////////////////////////////////////
4396
- const version = "25.3.21";
4396
+ const version = "25.3.23";
4397
4397
 
4398
4398
  exports.Assembly = Assembly;
4399
4399
  exports.ClashTest = ClashTest;