@chevre/domain 25.2.0-alpha.15 → 25.2.0-alpha.16

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.
@@ -248,7 +248,7 @@ class OrderInTransactionRepo extends acceptedOfferInReserve_1.AcceptedOfferInRes
248
248
  const { identifier } = params;
249
249
  const doc = await this.orderModel.findOne({
250
250
  identifier: { $eq: identifier },
251
- typeOf: { $eq: factory_1.factory.transactionType.PlaceOrder },
251
+ // typeOf: { $eq: factory.transactionType.PlaceOrder }, // 取引確定の冪等性確保のためtypeOfを検証しない
252
252
  }, { confirmationNumber: 1 })
253
253
  .lean()
254
254
  .exec();
package/package.json CHANGED
@@ -91,5 +91,5 @@
91
91
  "postversion": "git push origin --tags",
92
92
  "prepublishOnly": "npm run clean && npm run build"
93
93
  },
94
- "version": "25.2.0-alpha.15"
94
+ "version": "25.2.0-alpha.16"
95
95
  }