bruce-models 6.0.2 → 6.0.3

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.
@@ -9995,7 +9995,6 @@
9995
9995
  /**
9996
9996
  * Requests to rebake metadata for a given Tileset.
9997
9997
  * Only supported for Assembly (MODEL) type at the moment.
9998
- * Returns if changes were made.
9999
9998
  * This will throw an error if no metadata exists and therefor cannot be rebaked.
10000
9999
  * @param params
10001
10000
  * @returns
@@ -10009,10 +10008,7 @@
10009
10008
  if (!api) {
10010
10009
  api = exports.ENVIRONMENT.Api().GetBruceApi();
10011
10010
  }
10012
- const data = yield api.POST(`v3/tileset/${tilesetId}/bakeMetadata`, exports.Api.PrepReqParams(reqParams));
10013
- return {
10014
- changed: Boolean(data === null || data === void 0 ? void 0 : data.Changed)
10015
- };
10011
+ return yield api.POST(`v3/tileset/${tilesetId}/bakeMetadata`, exports.Api.PrepReqParams(reqParams));
10016
10012
  });
10017
10013
  }
10018
10014
  Tileset.BakeMetadata = BakeMetadata;
@@ -15415,7 +15411,7 @@
15415
15411
  })(exports.Scenario || (exports.Scenario = {}));
15416
15412
 
15417
15413
  // This is updated with the package.json version on build.
15418
- const VERSION = "6.0.2";
15414
+ const VERSION = "6.0.3";
15419
15415
 
15420
15416
  exports.VERSION = VERSION;
15421
15417
  exports.AbstractApi = AbstractApi;