@chevre/factory 4.183.0-alpha.3 → 4.183.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/factory/event/screeningEvent.d.ts +1 -2
- package/lib/factory/event/screeningEventSeries.d.ts +1 -1
- package/lib/factory/event.d.ts +3 -3
- package/lib/factory/place/movieTheater.d.ts +3 -3
- package/lib/factory/task/importEventCapacitiesFromCOA.d.ts +1 -1
- package/lib/factory/task/importEventsFromCOA.d.ts +1 -1
- package/package.json +1 -1
- package/CHANGELOG.md +0 -1437
package/lib/factory/event.d.ts
CHANGED
|
@@ -80,7 +80,7 @@ export interface IAttributes<T extends EventType> {
|
|
|
80
80
|
*/
|
|
81
81
|
startDate?: Date;
|
|
82
82
|
/**
|
|
83
|
-
*
|
|
83
|
+
* イベントで上演されるコンテンツ
|
|
84
84
|
*/
|
|
85
85
|
workPerformed?: CreativeWorkFactory.ICreativeWork;
|
|
86
86
|
additionalProperty?: IPropertyValue<string>[];
|
|
@@ -171,11 +171,11 @@ export interface ISearchConditions<T extends EventType> {
|
|
|
171
171
|
};
|
|
172
172
|
};
|
|
173
173
|
/**
|
|
174
|
-
* 親イベント(
|
|
174
|
+
* 親イベント(施設コンテンツ)が実施される場所の識別子リスト
|
|
175
175
|
*/
|
|
176
176
|
locationBranchCodes?: string[];
|
|
177
177
|
/**
|
|
178
|
-
*
|
|
178
|
+
* イベントで上演されるコンテンツコードリスト
|
|
179
179
|
*/
|
|
180
180
|
workPerformedIdentifiers?: string[];
|
|
181
181
|
};
|
|
@@ -7,7 +7,7 @@ import { IQuantitativeValue } from '../quantitativeValue';
|
|
|
7
7
|
import { UnitCode } from '../unitCode';
|
|
8
8
|
import { IPlace as IScreeningRoom } from './screeningRoom';
|
|
9
9
|
/**
|
|
10
|
-
*
|
|
10
|
+
* 施設に対するオファーインターフェース
|
|
11
11
|
*/
|
|
12
12
|
export interface IOffer extends OfferFactory.IOffer {
|
|
13
13
|
/**
|
|
@@ -38,7 +38,7 @@ export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
|
|
|
38
38
|
typeOf: PlaceType.MovieTheater;
|
|
39
39
|
id: string;
|
|
40
40
|
/**
|
|
41
|
-
*
|
|
41
|
+
* ルーム数
|
|
42
42
|
*/
|
|
43
43
|
screenCount: number;
|
|
44
44
|
/**
|
|
@@ -75,7 +75,7 @@ export interface IPlaceWithoutScreeningRoom extends PlaceFactory.IPlace {
|
|
|
75
75
|
parentOrganization?: IParentOrganization;
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
|
-
*
|
|
78
|
+
* 施設インターフェース
|
|
79
79
|
*/
|
|
80
80
|
export declare type IPlace = IPlaceWithoutScreeningRoom & {
|
|
81
81
|
/**
|