@chevre/domain 21.32.0-alpha.11 → 21.32.0-alpha.12

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.
@@ -104,6 +104,7 @@ function execute(task) {
104
104
  // タスク名の関数が定義されていなければ、TypeErrorとなる
105
105
  const { call } = yield Promise.resolve(`${`./task/${task.name}`}`).then(s => require(s));
106
106
  switch (task.name) {
107
+ case factory.taskName.AcceptCOAOffer:
107
108
  case factory.taskName.AuthorizePayment:
108
109
  case factory.taskName.CheckMovieTicket:
109
110
  case factory.taskName.PublishPaymentUrl:
package/package.json CHANGED
@@ -110,5 +110,5 @@
110
110
  "postversion": "git push origin --tags",
111
111
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
112
112
  },
113
- "version": "21.32.0-alpha.11"
113
+ "version": "21.32.0-alpha.12"
114
114
  }