@chevre/factory 4.394.0-alpha.5 → 4.394.0-alpha.6
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
CHANGED
|
@@ -64,10 +64,6 @@ export interface IRole {
|
|
|
64
64
|
typeOf: RoleType;
|
|
65
65
|
permissions: string[];
|
|
66
66
|
roleName: RoleName;
|
|
67
|
-
memberOf: {
|
|
68
|
-
typeOf: OrganizationType.Project;
|
|
69
|
-
id: string;
|
|
70
|
-
};
|
|
71
67
|
}
|
|
72
68
|
/**
|
|
73
69
|
* IAMロール検索条件
|
|
@@ -85,6 +81,16 @@ export interface IRoleSearchConditions {
|
|
|
85
81
|
permissions?: {
|
|
86
82
|
$eq?: string;
|
|
87
83
|
};
|
|
84
|
+
member?: {
|
|
85
|
+
typeOf: {
|
|
86
|
+
$eq?: string;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
89
|
+
memberOf?: {
|
|
90
|
+
typeOf: {
|
|
91
|
+
$eq?: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
88
94
|
}
|
|
89
95
|
export type IMemberType = PersonType | CreativeWorkType.WebApplication | CreativeWorkType.SoftwareApplication;
|
|
90
96
|
export type IMemberRole = Pick<IRole, 'typeOf' | 'roleName'>;
|