@chevre/domain 20.7.0-alpha.4 → 20.7.0-alpha.5

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.
@@ -50,16 +50,17 @@ function validateAcceptedOffers(params) {
50
50
  throw new factory.errors.NotFound('ticketCode of unitPriceOffer');
51
51
  }
52
52
  const surfrockChargePriceSpec = {
53
- typeOf: factory.priceSpecificationType.MovieTicketTypeChargeSpecification,
54
- price: 0,
55
- priceCurrency: factory.priceCurrency.JPY,
56
- valueAddedTaxIncluded: true,
57
53
  appliesToMovieTicket: {
58
54
  typeOf: factory.service.paymentService.PaymentServiceType.MovieTicket,
59
55
  serviceOutput: { typeOf: MENBERSHIP_COUPON_PAYMENT_METHOD_TYPE },
60
56
  serviceType
61
57
  },
62
- appliesToVideoFormat: 'Default'
58
+ appliesToVideoFormat: 'Default',
59
+ name,
60
+ price: 0,
61
+ priceCurrency: factory.priceCurrency.JPY,
62
+ typeOf: factory.priceSpecificationType.MovieTicketTypeChargeSpecification,
63
+ valueAddedTaxIncluded: true
63
64
  };
64
65
  // priceComponentに追加
65
66
  priceSpecification.priceComponent = priceSpecification.priceComponent.map((component) => {
package/package.json CHANGED
@@ -120,5 +120,5 @@
120
120
  "postversion": "git push origin --tags",
121
121
  "prepublishOnly": "npm run clean && npm run build && npm test && npm run doc"
122
122
  },
123
- "version": "20.7.0-alpha.4"
123
+ "version": "20.7.0-alpha.5"
124
124
  }