@chevre/factory 5.4.0-alpha.1 → 5.4.0-alpha.2
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.
|
@@ -152,7 +152,12 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Scr
|
|
|
152
152
|
export type IEvent = EventFactory.IEvent<IAttributes>;
|
|
153
153
|
export type IOffers4create = Pick<ISingleOffer, 'unacceptedPaymentMethod'> & {
|
|
154
154
|
typeOf?: never;
|
|
155
|
-
} | Pick<IAggregateOffer, 'typeOf'
|
|
155
|
+
} | Pick<IAggregateOffer, 'typeOf'> & {
|
|
156
|
+
unacceptedPaymentMethod?: never;
|
|
157
|
+
};
|
|
158
|
+
/**
|
|
159
|
+
* 施設コンテンツ作成パラメータ
|
|
160
|
+
*/
|
|
156
161
|
export type ICreateParams = Pick<IAttributes, 'typeOf' | 'name' | 'duration' | 'endDate' | 'headline' | 'startDate' | 'additionalProperty' | 'kanaName' | 'eventStatus' | 'description'> & {
|
|
157
162
|
subtitleLanguage?: Pick<ILanguage, 'name'>;
|
|
158
163
|
dubLanguage?: Pick<ILanguage, 'name'>;
|