@chevre/domain 22.6.0-alpha.11 → 22.6.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.
@@ -96,7 +96,9 @@ function reservedSeatsAvailable(params) {
96
96
  function aggregateOfferByEvent(params) {
97
97
  return (repos) => __awaiter(this, void 0, void 0, function* () {
98
98
  var _a;
99
- const availableOffers = yield (0, findEventOffers_1.findEventOffers)(params)(repos);
99
+ let availableOffers = yield (0, findEventOffers_1.findEventOffers)(params)(repos);
100
+ // 集計対象のオファーにフィルター(2024-11-09~)
101
+ availableOffers = availableOffers.filter(({ settings }) => (settings === null || settings === void 0 ? void 0 : settings.includedInAggregateReservation) === true);
100
102
  // オファーごとの予約集計
101
103
  const offersWithAggregateReservation = [];
102
104
  for (const o of availableOffers) {
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "dependencies": {
12
12
  "@aws-sdk/client-cognito-identity-provider": "3.600.0",
13
13
  "@aws-sdk/credential-providers": "3.600.0",
14
- "@chevre/factory": "4.389.0-alpha.8",
14
+ "@chevre/factory": "4.389.0-alpha.9",
15
15
  "@cinerino/sdk": "10.16.0-alpha.7",
16
16
  "@motionpicture/coa-service": "9.5.0",
17
17
  "@motionpicture/gmo-service": "5.3.0",
@@ -108,5 +108,5 @@
108
108
  "postversion": "git push origin --tags",
109
109
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
110
110
  },
111
- "version": "22.6.0-alpha.11"
111
+ "version": "22.6.0-alpha.12"
112
112
  }