@chevre/factory 4.283.0 → 4.284.0-alpha.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.
@@ -56,6 +56,9 @@ export interface IAddOnItemOffered extends Pick<IProduct, 'typeOf' | 'id' | 'nam
56
56
  export interface IAddOn4unitPriceOffer extends Pick<IAddOn, 'typeOf' | 'priceCurrency'> {
57
57
  itemOffered: IAddOnItemOffered;
58
58
  }
59
+ export interface ISettings {
60
+ ignoreCategoryCodeChargeSpec?: boolean;
61
+ }
59
62
  /**
60
63
  * 単価オファー
61
64
  */
@@ -72,6 +75,7 @@ export interface IUnitPriceOffer extends Pick<IOffer, 'project' | 'typeOf' | 'pr
72
75
  addOn?: IAddOn4unitPriceOffer[];
73
76
  typeOf: OfferType.Offer;
74
77
  hasMerchantReturnPolicy?: IHasMerchantReturnPolicy;
78
+ settings?: ISettings;
75
79
  }
76
80
  /**
77
81
  * ソート条件
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.283.0",
3
+ "version": "4.284.0-alpha.0",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",