@chevre/factory 4.269.0-alpha.0 → 4.269.0-alpha.1
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.
|
@@ -16,12 +16,20 @@ export interface IData {
|
|
|
16
16
|
* 仕入れ期間through
|
|
17
17
|
*/
|
|
18
18
|
importThrough: Date;
|
|
19
|
+
/**
|
|
20
|
+
* 施設を保管するかどうか
|
|
21
|
+
*/
|
|
22
|
+
saveMovieTheater: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* 施設コンテンツを保管するかどうか
|
|
25
|
+
*/
|
|
26
|
+
saveScreeningEventSeries: boolean;
|
|
19
27
|
}
|
|
20
28
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
21
29
|
name: TaskName.ImportEventsFromCOA;
|
|
22
30
|
data: IData;
|
|
23
31
|
}
|
|
24
32
|
/**
|
|
25
|
-
*
|
|
33
|
+
* イベントインポートタスク
|
|
26
34
|
*/
|
|
27
35
|
export declare type ITask = IExtendId<IAttributes>;
|