@chevre/factory 4.390.0-alpha.1 → 4.390.0-alpha.3

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.
@@ -122,7 +122,7 @@ export interface ISellerMakesOffer extends Pick<OfferFactory.IOffer, 'typeOf' |
122
122
  availabilityStarts: Date;
123
123
  validFrom: Date;
124
124
  validThrough: Date;
125
- availableAtOrFrom?: IOfferAvailableAtOrFrom;
125
+ availableAtOrFrom?: IOfferAvailableAtOrFrom | IOfferAvailableAtOrFrom[];
126
126
  }
127
127
  export interface ISeller {
128
128
  typeOf: OrganizationType.Corporation;
package/lib/project.d.ts CHANGED
@@ -53,6 +53,10 @@ export interface ISubscription {
53
53
  * サブカタログ管理を利用するかどうか
54
54
  */
55
55
  useOfferCatalogItem?: boolean;
56
+ /**
57
+ * プロダクトの複数カタログ管理を利用するかどうか
58
+ */
59
+ useMultipleProductCatalogs?: boolean;
56
60
  }
57
61
  export type IHasMerchantReturnPolicy = Pick<IMerchantReturnPolicy, 'sameAs' | 'typeOf'> & {
58
62
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@chevre/factory",
3
- "version": "4.390.0-alpha.1",
3
+ "version": "4.390.0-alpha.3",
4
4
  "description": "Chevre Factory Library for Javascript",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",