@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.
- package/lib/event/anyEvent.d.ts +1 -1
- package/lib/project.d.ts +4 -0
- package/package.json +1 -1
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -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
|
/**
|