@chevre/factory 4.343.0-alpha.5 → 4.344.0

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.
package/lib/product.d.ts CHANGED
@@ -239,7 +239,7 @@ export import IMinimizedTicketAddOn = UnitPriceOfferFactory.IAddOn4unitPriceOffe
239
239
  * プロダクトオファー
240
240
  */
241
241
  export interface ITicketOffer extends Pick<IBaseOffer, 'acceptedPaymentMethod' | // add(2023-11-15~)
242
- 'name' | 'description' | 'alternateName' | 'color' | 'typeOf' | 'id' | 'availability' | 'availableAtOrFrom' | 'category' | 'eligibleMembershipType' | 'eligibleSeatingType' | 'eligibleMonetaryAmount' | 'eligibleSubReservation' | 'eligibleQuantity' | 'offeredThrough' | 'priceCurrency' | 'validFrom' | 'validThrough' | 'validRateLimit' | 'additionalProperty'> {
242
+ 'name' | 'description' | 'alternateName' | 'color' | 'typeOf' | 'id' | 'availability' | 'category' | 'eligibleMembershipType' | 'eligibleSeatingType' | 'eligibleMonetaryAmount' | 'eligibleSubReservation' | 'eligibleQuantity' | 'offeredThrough' | 'priceCurrency' | 'validFrom' | 'validThrough' | 'validRateLimit' | 'additionalProperty'> {
243
243
  addOn?: IMinimizedTicketAddOn[];
244
244
  identifier: string;
245
245
  name: IOfferName;
@@ -150,6 +150,11 @@ export interface ISearchConditions {
150
150
  };
151
151
  };
152
152
  };
153
+ acceptedPaymentMethod?: {
154
+ identifier?: {
155
+ $in?: string[];
156
+ };
157
+ };
153
158
  availability?: {
154
159
  $eq?: IAvailability;
155
160
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.343.0-alpha.5",
3
+ "version": "4.344.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",