@chevre/factory 4.354.0-alpha.0 → 4.354.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.
|
@@ -35,7 +35,7 @@ export interface INoteDigitalDocument extends Pick<CreativeWorkFactory.ICreative
|
|
|
35
35
|
* ソート条件
|
|
36
36
|
*/
|
|
37
37
|
export interface ISortOrder {
|
|
38
|
-
|
|
38
|
+
identifier?: SortType;
|
|
39
39
|
}
|
|
40
40
|
/**
|
|
41
41
|
* 検索条件
|
|
@@ -44,6 +44,9 @@ export interface ISearchConditions {
|
|
|
44
44
|
limit?: number;
|
|
45
45
|
page?: number;
|
|
46
46
|
sort?: ISortOrder;
|
|
47
|
+
id?: {
|
|
48
|
+
$in?: string[];
|
|
49
|
+
};
|
|
47
50
|
project?: {
|
|
48
51
|
id?: {
|
|
49
52
|
$eq?: string;
|
|
@@ -61,5 +64,6 @@ export interface ISearchConditions {
|
|
|
61
64
|
};
|
|
62
65
|
identifier?: {
|
|
63
66
|
$eq?: string;
|
|
67
|
+
$in?: string[];
|
|
64
68
|
};
|
|
65
69
|
}
|
|
@@ -13,7 +13,7 @@ import { TaskName } from '../taskName';
|
|
|
13
13
|
export type AccountTitleType = IAccountTitle['typeOf'];
|
|
14
14
|
export type CategoryCodeType = ICategoryCode['typeOf'];
|
|
15
15
|
export type OfferCatalogType = IOfferCatalog['typeOf'];
|
|
16
|
-
export type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType | OfferCatalogType | OfferType.AggregateOffer;
|
|
16
|
+
export type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType.Movie | CreativeWorkType.NoteDigitalDocument | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType | OfferCatalogType | OfferType.AggregateOffer;
|
|
17
17
|
export interface IData4common {
|
|
18
18
|
id: string[];
|
|
19
19
|
project: {
|