@chevre/factory 4.268.0-alpha.4 → 4.268.0-alpha.5
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.
|
@@ -374,8 +374,32 @@ export interface IOfferSearchConditions {
|
|
|
374
374
|
* イベント検索条件
|
|
375
375
|
*/
|
|
376
376
|
export interface ISearchConditions extends EventFactory.ISearchConditions<EventType.ScreeningEvent> {
|
|
377
|
+
location?: {
|
|
378
|
+
/**
|
|
379
|
+
* ルームコード
|
|
380
|
+
*/
|
|
381
|
+
branchCode?: {
|
|
382
|
+
$eq?: string;
|
|
383
|
+
};
|
|
384
|
+
};
|
|
377
385
|
/**
|
|
378
386
|
* 販売情報
|
|
379
387
|
*/
|
|
380
388
|
offers?: IOfferSearchConditions;
|
|
389
|
+
superEvent?: {
|
|
390
|
+
ids?: string[];
|
|
391
|
+
location?: {
|
|
392
|
+
id?: {
|
|
393
|
+
$eq?: string;
|
|
394
|
+
};
|
|
395
|
+
};
|
|
396
|
+
/**
|
|
397
|
+
* 施設コンテンツの施設コードリスト
|
|
398
|
+
*/
|
|
399
|
+
locationBranchCodes?: string[];
|
|
400
|
+
/**
|
|
401
|
+
* 施設コンテンツのコンテンツコードリスト
|
|
402
|
+
*/
|
|
403
|
+
workPerformedIdentifiers?: string[];
|
|
404
|
+
};
|
|
381
405
|
}
|
|
@@ -162,6 +162,21 @@ export declare type ISortOrder = EventFactory.ISortOrder;
|
|
|
162
162
|
*/
|
|
163
163
|
export interface ISearchConditions extends EventFactory.ISearchConditions<EventType.ScreeningEventSeries> {
|
|
164
164
|
sort?: ISortOrder;
|
|
165
|
+
location?: {
|
|
166
|
+
branchCode?: {
|
|
167
|
+
$eq?: string;
|
|
168
|
+
};
|
|
169
|
+
/**
|
|
170
|
+
* 施設コードリスト
|
|
171
|
+
*/
|
|
172
|
+
branchCodes?: string[];
|
|
173
|
+
/**
|
|
174
|
+
* 施設ID
|
|
175
|
+
*/
|
|
176
|
+
id?: {
|
|
177
|
+
$eq?: string;
|
|
178
|
+
};
|
|
179
|
+
};
|
|
165
180
|
videoFormat?: {
|
|
166
181
|
typeOf?: {
|
|
167
182
|
$eq?: string;
|
package/lib/event.d.ts
CHANGED
|
@@ -142,31 +142,6 @@ export interface ISearchConditions<T extends EventType> {
|
|
|
142
142
|
* イベントステータス
|
|
143
143
|
*/
|
|
144
144
|
eventStatuses?: EventStatusType[];
|
|
145
|
-
location?: {
|
|
146
|
-
branchCode?: {
|
|
147
|
-
$eq?: string;
|
|
148
|
-
};
|
|
149
|
-
/**
|
|
150
|
-
* 場所の識別子リスト
|
|
151
|
-
*/
|
|
152
|
-
branchCodes?: string[];
|
|
153
|
-
};
|
|
154
|
-
superEvent?: {
|
|
155
|
-
ids?: string[];
|
|
156
|
-
location?: {
|
|
157
|
-
id?: {
|
|
158
|
-
$eq?: string;
|
|
159
|
-
};
|
|
160
|
-
};
|
|
161
|
-
/**
|
|
162
|
-
* 親イベント(施設コンテンツ)が実施される場所の識別子リスト
|
|
163
|
-
*/
|
|
164
|
-
locationBranchCodes?: string[];
|
|
165
|
-
/**
|
|
166
|
-
* イベントで上演されるコンテンツコードリスト
|
|
167
|
-
*/
|
|
168
|
-
workPerformedIdentifiers?: string[];
|
|
169
|
-
};
|
|
170
145
|
hasOfferCatalog?: {
|
|
171
146
|
id?: {
|
|
172
147
|
$eq?: string;
|