@chevre/domain 21.2.0-alpha.70 → 21.2.0-alpha.71

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.
@@ -213,8 +213,7 @@ function processPlaceOrder(params) {
213
213
  orderDate: new Date()
214
214
  }
215
215
  },
216
- potentialActions: params.potentialActions,
217
- saveAuthorizeActions: true
216
+ potentialActions: params.potentialActions
218
217
  })(repos);
219
218
  });
220
219
  }
@@ -57,7 +57,6 @@ export type IConfirmParams = factory.transaction.placeOrder.IConfirmParams & {
57
57
  result: {
58
58
  order: IResultOrderParams;
59
59
  };
60
- saveAuthorizeActions: boolean;
61
60
  };
62
61
  /**
63
62
  * 注文取引を確定する
@@ -130,7 +130,7 @@ function confirm(params) {
130
130
  typeOf: transaction.typeOf,
131
131
  id: transaction.id,
132
132
  // 保管有無を設定化(2023-05-16~)
133
- authorizeActions: (params.saveAuthorizeActions) ? authorizeActions : [],
133
+ authorizeActions: [],
134
134
  result: result,
135
135
  potentialActions: potentialActions
136
136
  });
package/package.json CHANGED
@@ -117,5 +117,5 @@
117
117
  "postversion": "git push origin --tags",
118
118
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
119
119
  },
120
- "version": "21.2.0-alpha.70"
120
+ "version": "21.2.0-alpha.71"
121
121
  }