@chevre/factory 4.386.0-alpha.7 → 4.386.0-alpha.8
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 +2 -1
- package/package.json +1 -1
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -110,11 +110,12 @@ export interface IItemOffered {
|
|
|
110
110
|
availableChannel: ReservationFactory.IServiceChannel;
|
|
111
111
|
}
|
|
112
112
|
export type IOfferedThrough = IWebAPIService<WebAPIIdentifier.Chevre>;
|
|
113
|
-
export interface ISellerMakesOffer extends Pick<OfferFactory.IOffer, 'typeOf' | '
|
|
113
|
+
export interface ISellerMakesOffer extends Pick<OfferFactory.IOffer, 'typeOf' | 'availabilityEnds' | 'availabilityStarts' | 'validFrom' | 'validThrough'> {
|
|
114
114
|
availabilityEnds: Date;
|
|
115
115
|
availabilityStarts: Date;
|
|
116
116
|
validFrom: Date;
|
|
117
117
|
validThrough: Date;
|
|
118
|
+
availableAtOrFrom?: OfferFactory.IAvailableAtOrFrom[] | OfferFactory.IAvailableAtOrFrom;
|
|
118
119
|
}
|
|
119
120
|
export interface ISeller {
|
|
120
121
|
typeOf: OrganizationType.Corporation;
|