@chevre/factory 5.4.0-alpha.27 → 5.4.0-alpha.29
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.
|
@@ -118,11 +118,7 @@ export interface IAttributes extends Pick<EventFactory.IAttributes<EventType.Scr
|
|
|
118
118
|
* 吹替利用可能言語
|
|
119
119
|
*/
|
|
120
120
|
dubLanguage?: ILanguage;
|
|
121
|
-
|
|
122
|
-
* 上映方式
|
|
123
|
-
* discontinue ICOAKubun(2024-09-18~)
|
|
124
|
-
*/
|
|
125
|
-
videoFormat: IVideoFormat[];
|
|
121
|
+
videoFormat?: never;
|
|
126
122
|
/**
|
|
127
123
|
* 音響方式
|
|
128
124
|
*/
|
|
@@ -178,7 +174,7 @@ export type IOffers4create = Pick<ISingleOffer, 'unacceptedPaymentMethod'> & {
|
|
|
178
174
|
/**
|
|
179
175
|
* 施設コンテンツ作成パラメータ
|
|
180
176
|
*/
|
|
181
|
-
export type ICreateParams = Pick<IAttributes, '
|
|
177
|
+
export type ICreateParams = Pick<IAttributes, 'name' | 'duration' | 'endDate' | 'headline' | 'startDate' | 'additionalProperty' | 'kanaName' | 'description'> & {
|
|
182
178
|
subtitleLanguage?: Pick<ILanguage, 'name'>;
|
|
183
179
|
dubLanguage?: Pick<ILanguage, 'name'>;
|
|
184
180
|
location?: never;
|