@chevre/domain 21.2.0-alpha.101 → 21.2.0-alpha.102

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.
@@ -768,7 +768,7 @@ function updateEvent4ttts(params) {
768
768
  }
769
769
  // アクション完了
770
770
  yield repos.action.complete({ typeOf: action.typeOf, id: action.id, result: {} });
771
- yield (0, offer_1.onEventChanged)({ event, isNew: false })({
771
+ yield (0, offer_1.onEventChanged)({ event, isNew: false, useInform: true })({
772
772
  event: repos.event,
773
773
  project: repos.project,
774
774
  task: repos.task
@@ -206,7 +206,10 @@ function createInformTasks(params) {
206
206
  const events4inform = yield repos.event.search({
207
207
  id: { $in: params.ids },
208
208
  typeOf: params.typeOf
209
- }, { aggregateOffer: 0, aggregateReservation: 0, remainingAttendeeCapacity: 0, checkInCount: 0, attendeeCount: 0 });
209
+ }, {
210
+ aggregateEntranceGate: 0, aggregateOffer: 0, aggregateReservation: 0,
211
+ remainingAttendeeCapacity: 0, checkInCount: 0, attendeeCount: 0
212
+ });
210
213
  if (events4inform.length > 0) {
211
214
  const taskRunsAt = new Date();
212
215
  const informTasks = [];
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.101"
120
+ "version": "21.2.0-alpha.102"
121
121
  }