@chevre/domain 22.12.0-alpha.1 → 22.12.0-alpha.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.
@@ -184,7 +184,6 @@ interface IFindAuthorizeActionResult {
184
184
  * アクションスタータス
185
185
  */
186
186
  actionStatus: factory.actionStatusType;
187
- object?: Pick<factory.action.authorize.paymentMethod.any.IObject, 'paymentMethodId'>;
188
187
  /**
189
188
  * エラー
190
189
  */
@@ -636,10 +636,7 @@ function findAuthorizeAction(params) {
636
636
  if (((_b = authorizeAction.purpose) === null || _b === void 0 ? void 0 : _b.id) !== params.purpose.id) {
637
637
  throw new factory.errors.NotFound('Action');
638
638
  }
639
- const authorizeActionWithObject = yield repos.action.findById({ id: authorizeAction.id, typeOf: factory.actionType.AuthorizeAction }, ['object'], []);
640
- action = Object.assign({ id: authorizeAction.id, actionStatus: authorizeAction.actionStatus,
641
- // add object.paymentMethodId(2025-08-26~)
642
- object: { paymentMethodId: authorizeActionWithObject.object.paymentMethodId } }, (authorizeAction.error !== undefined)
639
+ action = Object.assign({ id: authorizeAction.id, actionStatus: authorizeAction.actionStatus }, (authorizeAction.error !== undefined)
643
640
  ? {
644
641
  error: (Array.isArray(authorizeAction.error))
645
642
  ? authorizeAction.error[0]
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "@chevre/factory": "4.397.0-alpha.0",
15
15
  "@cinerino/sdk": "12.0.0-alpha.1",
16
16
  "@motionpicture/coa-service": "9.6.0",
17
- "@motionpicture/gmo-service": "5.4.0-alpha.0",
17
+ "@motionpicture/gmo-service": "5.4.0-alpha.1",
18
18
  "@sendgrid/client": "8.1.4",
19
19
  "@surfrock/sdk": "1.4.0-alpha.1",
20
20
  "cdigit": "2.6.7",
@@ -115,5 +115,5 @@
115
115
  "postversion": "git push origin --tags",
116
116
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
117
117
  },
118
- "version": "22.12.0-alpha.1"
118
+ "version": "22.12.0-alpha.3"
119
119
  }