@lifeready/core 5.0.6 → 5.0.8
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.
|
@@ -172,12 +172,16 @@ export interface ConfidentialResource {
|
|
|
172
172
|
isConfidential?: boolean;
|
|
173
173
|
method?: AccessRoleMethodChoice;
|
|
174
174
|
}
|
|
175
|
+
export interface InheritedRole {
|
|
176
|
+
role?: AccessRoleChoice;
|
|
177
|
+
source?: DirectoryNode;
|
|
178
|
+
}
|
|
175
179
|
export interface AccessRole {
|
|
176
180
|
issuer?: UserNode;
|
|
177
181
|
subject?: UserNode;
|
|
178
182
|
role?: AccessRoleChoice;
|
|
179
183
|
method?: AccessRoleMethodChoice;
|
|
180
|
-
|
|
184
|
+
inheritedRole?: InheritedRole;
|
|
181
185
|
tp?: TpNode;
|
|
182
186
|
isIssuer?: boolean;
|
|
183
187
|
}
|
|
@@ -266,6 +270,7 @@ export interface KeyExchangeNode extends Node, TimeStamped {
|
|
|
266
270
|
responderEmailAddress?: LrEmail;
|
|
267
271
|
}
|
|
268
272
|
export interface SharedItems {
|
|
273
|
+
descendants: Descendants;
|
|
269
274
|
directories?: Connection<DirectoryNode>;
|
|
270
275
|
files?: Connection<FileNode>;
|
|
271
276
|
}
|