@chevre/factory 4.319.0 → 4.321.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.
|
@@ -240,6 +240,11 @@ export interface IAttributes extends AssetTransactionFactory.IAttributes<IStartP
|
|
|
240
240
|
*/
|
|
241
241
|
export declare type ITransaction = IExtendId<IAttributes>;
|
|
242
242
|
export interface IObjectSearchConditions {
|
|
243
|
+
provider?: {
|
|
244
|
+
id?: {
|
|
245
|
+
$eq?: string;
|
|
246
|
+
};
|
|
247
|
+
};
|
|
243
248
|
reservationFor?: {
|
|
244
249
|
id?: {
|
|
245
250
|
$eq?: string;
|
|
@@ -2,6 +2,7 @@ import { IAccountTitle } from '../accountTitle';
|
|
|
2
2
|
import { IExtendId } from '../autoGenerated';
|
|
3
3
|
import { ICategoryCode } from '../categoryCode';
|
|
4
4
|
import { CreativeWorkType } from '../creativeWorkType';
|
|
5
|
+
import { EventType } from '../eventType';
|
|
5
6
|
import { OrganizationType } from '../organizationType';
|
|
6
7
|
import { PlaceType } from '../placeType';
|
|
7
8
|
import { ProductType } from '../product';
|
|
@@ -9,8 +10,8 @@ import * as TaskFactory from '../task';
|
|
|
9
10
|
import { TaskName } from '../taskName';
|
|
10
11
|
export declare type AccountTitleType = IAccountTitle['typeOf'];
|
|
11
12
|
export declare type CategoryCodeType = ICategoryCode['typeOf'];
|
|
12
|
-
export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType;
|
|
13
|
-
export interface
|
|
13
|
+
export declare type IResourceTypeOf = AccountTitleType | CategoryCodeType | CreativeWorkType | EventType.ScreeningEventSeries | OrganizationType.Corporation | PlaceType.MovieTheater | ProductType;
|
|
14
|
+
export interface IData4common {
|
|
14
15
|
id: string[];
|
|
15
16
|
project: {
|
|
16
17
|
id: string;
|
|
@@ -20,6 +21,25 @@ export interface IData {
|
|
|
20
21
|
isDeleted?: boolean;
|
|
21
22
|
useInform: boolean;
|
|
22
23
|
}
|
|
24
|
+
export interface IData4screeningRoom {
|
|
25
|
+
/**
|
|
26
|
+
* ルームコード
|
|
27
|
+
*/
|
|
28
|
+
branchCode: string;
|
|
29
|
+
containedInPlace: {
|
|
30
|
+
/**
|
|
31
|
+
* 施設ID
|
|
32
|
+
*/
|
|
33
|
+
id: string;
|
|
34
|
+
};
|
|
35
|
+
project: {
|
|
36
|
+
id: string;
|
|
37
|
+
};
|
|
38
|
+
typeOf: PlaceType.ScreeningRoom;
|
|
39
|
+
isDeleted: boolean;
|
|
40
|
+
useInform: boolean;
|
|
41
|
+
}
|
|
42
|
+
export declare type IData = IData4common | IData4screeningRoom;
|
|
23
43
|
export interface IAttributes extends TaskFactory.IAttributes {
|
|
24
44
|
name: TaskName.OnResourceUpdated;
|
|
25
45
|
data: IData;
|