@chevre/domain 28.0.0-alpha.1 → 28.0.0-alpha.2

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.
@@ -613,7 +613,9 @@ class OrderRepo {
613
613
  orderNumber: params.orderNumber,
614
614
  project: { id: params.project.id },
615
615
  inclusion: [
616
- 'project', 'typeOf', 'orderNumber', 'dateReturned',
616
+ 'project', 'typeOf', 'orderNumber',
617
+ 'orderStatus', // すでに変更済かどうか検証するので必要
618
+ 'dateReturned',
617
619
  'customer', 'returner', 'seller', 'price', 'priceCurrency', 'orderDate'
618
620
  ]
619
621
  });
package/package.json CHANGED
@@ -88,5 +88,5 @@
88
88
  "postversion": "git push origin --tags",
89
89
  "prepublishOnly": "npm run clean && npm run build"
90
90
  },
91
- "version": "28.0.0-alpha.1"
91
+ "version": "28.0.0-alpha.2"
92
92
  }