@chevre/factory 4.316.0-alpha.3 → 4.316.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.
- package/lib/iam.d.ts +13 -1
- package/lib/task/createEvent.d.ts +4 -0
- package/package.json +1 -1
package/lib/iam.d.ts
CHANGED
|
@@ -32,7 +32,7 @@ export interface IRoleSearchConditions {
|
|
|
32
32
|
};
|
|
33
33
|
}
|
|
34
34
|
export declare type IMemberType = PersonType | CreativeWorkType.WebApplication;
|
|
35
|
-
export declare type IMemberHasRole = Pick<IRole, 'typeOf' | '
|
|
35
|
+
export declare type IMemberHasRole = Pick<IRole, 'typeOf' | 'roleName'>[];
|
|
36
36
|
export interface IMemberOfRole {
|
|
37
37
|
typeOf: IMemberType;
|
|
38
38
|
id: string;
|
|
@@ -40,6 +40,10 @@ export interface IMemberOfRole {
|
|
|
40
40
|
name?: string;
|
|
41
41
|
username?: string;
|
|
42
42
|
hasRole: IMemberHasRole;
|
|
43
|
+
memberOf: {
|
|
44
|
+
typeOf: OrganizationType.Project;
|
|
45
|
+
id: string;
|
|
46
|
+
};
|
|
43
47
|
}
|
|
44
48
|
export interface IMember {
|
|
45
49
|
typeOf: RoleType;
|
|
@@ -83,5 +87,13 @@ export interface ISearchConditions {
|
|
|
83
87
|
typeOf?: {
|
|
84
88
|
$eq?: string;
|
|
85
89
|
};
|
|
90
|
+
memberOf?: {
|
|
91
|
+
id?: {
|
|
92
|
+
$eq?: string;
|
|
93
|
+
};
|
|
94
|
+
typeOf?: {
|
|
95
|
+
$eq?: OrganizationType.Project;
|
|
96
|
+
};
|
|
97
|
+
};
|
|
86
98
|
};
|
|
87
99
|
}
|
|
@@ -8,6 +8,10 @@ import { TaskName } from '../taskName';
|
|
|
8
8
|
export declare type IActionObject = IScreeningEventAttributes[] | IScreeningEventSeriesAttributes[];
|
|
9
9
|
export interface IActionInstrument {
|
|
10
10
|
createScreeningEventSeriesIfNotExistByWorkPerformed: boolean;
|
|
11
|
+
/**
|
|
12
|
+
* 全施設に施設コンテンツを作成するかどうか
|
|
13
|
+
*/
|
|
14
|
+
createScreeningEventSeriesOnAllLocation?: boolean;
|
|
11
15
|
}
|
|
12
16
|
export declare type IData = IActionAttributes<ActionType.CreateAction, IActionObject, any> & {
|
|
13
17
|
instrument: IActionInstrument;
|