@chevre/factory 4.313.0-alpha.30 → 4.313.0-alpha.31
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.
|
@@ -163,7 +163,7 @@ export declare type ICOAOffer = COA.factory.reserve.IUpdReserveTicket & {
|
|
|
163
163
|
};
|
|
164
164
|
export declare type IWorkPerformed = ScreeningEventSeriesFactory.IWorkPerformed;
|
|
165
165
|
export import ILocation = AnyEventFactory.ILocation;
|
|
166
|
-
export declare type ISuperEvent =
|
|
166
|
+
export declare type ISuperEvent = Pick<ScreeningEventSeriesFactory.IEvent, 'typeOf' | 'id' | 'videoFormat' | 'soundFormat' | 'workPerformed' | 'location' | 'kanaName' | 'name' | 'additionalProperty' | 'startDate' | 'endDate' | 'description' | 'headline' | 'dubLanguage' | 'subtitleLanguage' | 'identifier' | 'alternativeHeadline' | 'duration' | 'coaInfo'>;
|
|
167
167
|
export import IName = AnyEventFactory.IName;
|
|
168
168
|
/**
|
|
169
169
|
* イベント属性
|
|
@@ -8,14 +8,15 @@ import { OfferType } from '../offerType';
|
|
|
8
8
|
import { OrganizationType } from '../organizationType';
|
|
9
9
|
import { PlaceType } from '../placeType';
|
|
10
10
|
import { PriceCurrency } from '../priceCurrency';
|
|
11
|
-
import { IProject } from '../project';
|
|
12
11
|
/**
|
|
13
12
|
* 施設コンテンツに対するオファー
|
|
14
13
|
*/
|
|
15
14
|
export interface IOffer {
|
|
16
|
-
project: Pick<IProject, 'id' | 'typeOf'>;
|
|
17
15
|
typeOf: OfferType.Offer;
|
|
18
16
|
priceCurrency: PriceCurrency.JPY;
|
|
17
|
+
/**
|
|
18
|
+
* 利用不可決済方法区分
|
|
19
|
+
*/
|
|
19
20
|
unacceptedPaymentMethod?: string[];
|
|
20
21
|
}
|
|
21
22
|
export interface IVideoFormat {
|