@chevre/factory 11.0.0-alpha.1 → 11.0.0-alpha.2
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.
|
@@ -191,7 +191,17 @@ export type ICreateParams = Pick<IAttributes, 'name' | 'duration' | 'endDate' |
|
|
|
191
191
|
/**
|
|
192
192
|
* 検索条件
|
|
193
193
|
*/
|
|
194
|
-
export interface ISearchConditions extends Pick<IBaseSearchConditions, '
|
|
194
|
+
export interface ISearchConditions extends Pick<IBaseSearchConditions, 'endFrom' | 'endThrough' | 'id' | 'inSessionFrom' | 'inSessionThrough' | 'limit' | 'organizer' | 'page' | 'project' | 'sort' | 'startFrom' | 'startThrough'> {
|
|
195
|
+
additionalProperty?: {
|
|
196
|
+
$elemMatch?: {
|
|
197
|
+
name?: {
|
|
198
|
+
/**
|
|
199
|
+
* 一致する名称の追加特性がひとつでも存在する
|
|
200
|
+
*/
|
|
201
|
+
$eq?: string;
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
195
205
|
typeOf?: EventType.ScreeningEventSeries;
|
|
196
206
|
name?: string;
|
|
197
207
|
location?: {
|
|
@@ -365,7 +365,16 @@ export interface IOfferSearchConditions {
|
|
|
365
365
|
* イベント検索条件
|
|
366
366
|
*/
|
|
367
367
|
export interface ISearchConditions extends IBaseSearchConditions {
|
|
368
|
-
|
|
368
|
+
additionalProperty?: {
|
|
369
|
+
$elemMatch?: {
|
|
370
|
+
name?: {
|
|
371
|
+
/**
|
|
372
|
+
* 一致する名称の追加特性がひとつでも存在する
|
|
373
|
+
*/
|
|
374
|
+
$eq?: string;
|
|
375
|
+
};
|
|
376
|
+
};
|
|
377
|
+
};
|
|
369
378
|
/**
|
|
370
379
|
* イベントステータス
|
|
371
380
|
*/
|
package/lib/chevre/event.d.ts
CHANGED
|
@@ -91,16 +91,4 @@ export interface ISearchConditions {
|
|
|
91
91
|
* ISO 8601 date format
|
|
92
92
|
*/
|
|
93
93
|
endThrough?: Date;
|
|
94
|
-
additionalProperty?: {
|
|
95
|
-
$elemMatch?: {
|
|
96
|
-
name?: {
|
|
97
|
-
/**
|
|
98
|
-
* 一致する名称の追加特性がひとつでも存在する
|
|
99
|
-
*/
|
|
100
|
-
$eq?: string;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
};
|
|
104
|
-
typeOfIn?: never;
|
|
105
|
-
name?: never;
|
|
106
94
|
}
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { ActionStatusType } from '../actionStatusType';
|
|
2
1
|
import { IExtendId } from '../autoGenerated';
|
|
3
2
|
import { IClientUser } from '../clientUser';
|
|
4
3
|
import { CreativeWorkType } from '../creativeWorkType';
|
|
@@ -167,10 +166,4 @@ export interface ISearchConditions {
|
|
|
167
166
|
$eq?: string;
|
|
168
167
|
};
|
|
169
168
|
};
|
|
170
|
-
tasksExportAction?: {
|
|
171
|
-
actionStatus?: {
|
|
172
|
-
$eq?: ActionStatusType;
|
|
173
|
-
$in?: ActionStatusType[];
|
|
174
|
-
};
|
|
175
|
-
};
|
|
176
169
|
}
|