@chevre/factory 5.1.0-alpha.6 → 5.2.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.
package/lib/event/anyEvent.d.ts
CHANGED
|
@@ -175,7 +175,7 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType>, '
|
|
|
175
175
|
organizer: IOrganizer;
|
|
176
176
|
}
|
|
177
177
|
export type IMemberProgramTier4create = Pick<IMemberProgramTier, 'typeOf'>;
|
|
178
|
-
export type ISellerMakesOffer4create = Pick<ISellerMakesOffer, 'availabilityEnds' | 'availabilityStarts' | 'validFrom' | 'validThrough' | 'typeOf' | 'identifier'> & {
|
|
178
|
+
export type ISellerMakesOffer4create = Pick<ISellerMakesOffer, 'availabilityEnds' | 'availabilityStarts' | 'validFrom' | 'validThrough' | 'typeOf' | 'identifier' | 'offeredBy'> & {
|
|
179
179
|
availableAtOrFrom: Pick<IOfferAvailableAtOrFrom, 'id'>;
|
|
180
180
|
/**
|
|
181
181
|
* 有効なメンバープログラムティア条件
|
|
@@ -25,10 +25,7 @@ interface ISingleEventOffer extends Pick<IOffer, 'typeOf' | 'availabilityEnds' |
|
|
|
25
25
|
* いつまで承認可能か
|
|
26
26
|
*/
|
|
27
27
|
validThrough: Date;
|
|
28
|
-
|
|
29
|
-
* arrayは廃止済だが、sdkに互換性を維持するためにarray型を残す(2024-11-26~)
|
|
30
|
-
*/
|
|
31
|
-
availableAtOrFrom?: IOfferAvailableAtOrFrom | IOfferAvailableAtOrFrom[];
|
|
28
|
+
availableAtOrFrom: IOfferAvailableAtOrFrom;
|
|
32
29
|
validForMemberTier?: never;
|
|
33
30
|
/**
|
|
34
31
|
* A pointer to the organization or person making the offer.
|