@inweb/client 25.3.25 → 25.4.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/dist/client.js CHANGED
@@ -2607,8 +2607,11 @@
2607
2607
  jobs.push((await result.extractGeometry(geometryType)).outputFormat);
2608
2608
  if (params.properties)
2609
2609
  jobs.push((await result.extractProperties()).outputFormat);
2610
- if (params.waitForDone && jobs.length > 0)
2611
- await result.waitForDone(jobs, true, params);
2610
+ if (jobs.length > 0)
2611
+ if (params.waitForDone)
2612
+ await result.waitForDone(jobs, true, params);
2613
+ else
2614
+ await result.checkout();
2612
2615
  await this.checkout();
2613
2616
  return result;
2614
2617
  }
@@ -3724,7 +3727,7 @@
3724
3727
  .then((data) => ({
3725
3728
  ...data,
3726
3729
  server: data.version,
3727
- client: "25.3.25",
3730
+ client: "25.4.0",
3728
3731
  }));
3729
3732
  }
3730
3733
  /**
@@ -4039,8 +4042,11 @@
4039
4042
  jobs.push((await result.extractGeometry(geometryType)).outputFormat);
4040
4043
  if (params.properties)
4041
4044
  jobs.push((await result.extractProperties()).outputFormat);
4042
- if (params.waitForDone && jobs.length > 0)
4043
- await result.waitForDone(jobs, true, params);
4045
+ if (jobs.length > 0)
4046
+ if (params.waitForDone)
4047
+ await result.waitForDone(jobs, true, params);
4048
+ else
4049
+ await result.checkout();
4044
4050
  return result;
4045
4051
  }
4046
4052
  /**
@@ -4401,7 +4407,7 @@
4401
4407
  }
4402
4408
 
4403
4409
  ///////////////////////////////////////////////////////////////////////////////
4404
- const version = "25.3.25";
4410
+ const version = "25.4.0";
4405
4411
 
4406
4412
  exports.Assembly = Assembly;
4407
4413
  exports.ClashTest = ClashTest;