@chevre/factory 4.324.0-alpha.4 → 4.324.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.
@@ -53,6 +53,10 @@ export declare type ICustomerRemorseReturnFees = ReturnFeesEnumeration;
53
53
  export declare type ICustomerRemorseReturnFeesMovieTicket = ReturnFeesEnumeration.FreeReturn | ReturnFeesEnumeration.ReturnFeesCustomerResponsibility;
54
54
  export interface IMerchantReturnPolicy extends Pick<IThing, 'name' | 'url'> {
55
55
  typeOf: 'MerchantReturnPolicy';
56
+ /**
57
+ * 適用決済方法
58
+ */
59
+ applicablePaymentMethod?: string[];
56
60
  /**
57
61
  * The type of return fees if the product is returned due to customer remorse.
58
62
  */
package/lib/seller.d.ts CHANGED
@@ -8,7 +8,7 @@ import { IPropertyValue } from './propertyValue';
8
8
  import { IQuantitativeValue } from './quantitativeValue';
9
9
  import { SortType } from './sortType';
10
10
  import { UnitCode } from './unitCode';
11
- export declare type ISellerMerchantReturnPolicy = Pick<IMerchantReturnPolicy, 'itemCondition' | 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'url'> & {
11
+ export declare type ISellerMerchantReturnPolicy = Pick<IMerchantReturnPolicy, 'itemCondition' | 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'url' | 'applicablePaymentMethod'> & {
12
12
  restockingFee: IRestockingFee;
13
13
  };
14
14
  export declare type IHasMerchantReturnPolicy = ISellerMerchantReturnPolicy[];
@@ -140,7 +140,7 @@ export declare type IReturnPolicyItemCondition = IOfferItemCondition;
140
140
  /**
141
141
  * 取引に適用される返品ポリシー
142
142
  */
143
- export declare type IReturnPolicy = Pick<IMerchantReturnPolicy, 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'returnFees'> & {
143
+ export declare type IReturnPolicy = Pick<IMerchantReturnPolicy, 'typeOf' | 'merchantReturnDays' | 'restockingFee' | 'returnFees' | 'applicablePaymentMethod'> & {
144
144
  returnFees: ReturnFeesEnumeration;
145
145
  /**
146
146
  * 決済カードコードごとの着券取消実行有無
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.324.0-alpha.4",
3
+ "version": "4.324.0-alpha.5",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",