rerobe-js-orm 4.0.5 → 4.0.6

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.
@@ -313,6 +313,9 @@ class ProductStateManager extends Base_1.default {
313
313
  if (status.includes(ProductStateManager.PRODUCT_STATES.listed)) {
314
314
  return this.state.toListed();
315
315
  }
316
+ if (status.includes(ProductStateManager.PRODUCT_STATES.availableInStore)) {
317
+ return this.state.toAvailableInStore();
318
+ }
316
319
  return this.state.toSold();
317
320
  }
318
321
  toLoading() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rerobe-js-orm",
3
- "version": "4.0.5",
3
+ "version": "4.0.6",
4
4
  "description": "ReRobe's Javascript ORM Framework",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",