@chevre/factory 4.343.0-alpha.4 → 4.343.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.
@@ -32,10 +32,18 @@ export interface IItemListElementAsAggregateOffer {
32
32
  }
33
33
  export type IItemListElement = IItemListElementAsOfferCatalog | IItemListElementAsAggregateOffer;
34
34
  export interface IReletedOfferPriceSpecification {
35
+ /**
36
+ * 適用決済カード条件
37
+ * 複数の場合、全条件を満たすオファーのみが対象
38
+ */
35
39
  appliesToMovieTicket?: Pick<IAppliesToMovieTicket, 'serviceOutput'>[];
36
40
  }
37
41
  export interface IRelatedOffer {
38
42
  typeOf: OfferType.Offer;
43
+ /**
44
+ * 対象オファーの価格仕様条件
45
+ * 適用決済カード条件無しの場合、存在しない
46
+ */
39
47
  priceSpecification?: IReletedOfferPriceSpecification;
40
48
  }
41
49
  /**
@@ -105,6 +105,7 @@ export interface IPriceSpecificationSearchConditions {
105
105
  */
106
106
  typeOf?: {
107
107
  $eq?: string;
108
+ $all?: string[];
108
109
  $nin?: string[];
109
110
  };
110
111
  };
@@ -149,6 +150,11 @@ export interface ISearchConditions {
149
150
  };
150
151
  };
151
152
  };
153
+ acceptedPaymentMethod?: {
154
+ identifier?: {
155
+ $in?: string[];
156
+ };
157
+ };
152
158
  availability?: {
153
159
  $eq?: IAvailability;
154
160
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.343.0-alpha.4",
3
+ "version": "4.343.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",