@lifeready/core 1.0.16 → 1.0.17
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/bundles/lifeready-core.umd.js +19 -13
- package/bundles/lifeready-core.umd.js.map +1 -1
- package/bundles/lifeready-core.umd.min.js +1 -1
- package/bundles/lifeready-core.umd.min.js.map +1 -1
- package/esm2015/lib/api/types/lr-graphql.types.js +1 -1
- package/esm2015/lib/items2/item2.service.js +2 -2
- package/esm2015/lib/trusted-parties/tp-password-reset.gql.js +2 -1
- package/esm2015/lib/trusted-parties/trusted-party2.service.js +16 -13
- package/fesm2015/lifeready-core.js +11 -6
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +2 -0
- package/lib/trusted-parties/tp-password-reset.gql.d.ts +1 -0
- package/lib/trusted-parties/tp-password-reset.service.d.ts +1 -0
- package/lib/trusted-parties/trusted-party2.service.d.ts +6 -5
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -66,6 +66,8 @@ export interface DirectoryNode extends Node, TimeStamped {
|
|
|
66
66
|
childDirectoryLinks?: Connection<DirectoryLinkNode>;
|
|
67
67
|
parentDirectoryLinks?: Connection<DirectoryLinkNode>;
|
|
68
68
|
nParentDirectoryLinks?: DirectoryLinkNodeLrNList;
|
|
69
|
+
nChildDirectoryLinks?: DirectoryLinkNodeLrNList;
|
|
70
|
+
nChildFileLinks?: FileLinkNodeLrNList;
|
|
69
71
|
descendants?: Descendants;
|
|
70
72
|
accessRoles?: AccessRole[];
|
|
71
73
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { NgZone } from '@angular/core';
|
|
1
|
+
import { Injector, NgZone } from '@angular/core';
|
|
2
2
|
import { Item2Service } from '../items2/item2.service';
|
|
3
|
-
import {
|
|
3
|
+
import { LrMutation, LrService } from '../api/lr-graphql';
|
|
4
4
|
import { AccessRoleChoice, LrRelayIdInput } from '../api/types';
|
|
5
5
|
import { EncryptionService } from '../cryptography/encryption.service';
|
|
6
6
|
import { KeyFactoryService } from '../cryptography/key-factory.service';
|
|
@@ -18,15 +18,16 @@ export interface UnshareItemOptions {
|
|
|
18
18
|
itemId: string;
|
|
19
19
|
tpId: string;
|
|
20
20
|
}
|
|
21
|
-
export declare class TrustedParty2Service {
|
|
21
|
+
export declare class TrustedParty2Service extends LrService {
|
|
22
22
|
private ngZone;
|
|
23
|
+
private injector;
|
|
23
24
|
private keyGraph;
|
|
24
|
-
private lrGraphQL;
|
|
25
25
|
private item2Service;
|
|
26
26
|
private keyService;
|
|
27
27
|
private keyFactory;
|
|
28
28
|
private encryptionService;
|
|
29
|
-
constructor(ngZone: NgZone,
|
|
29
|
+
constructor(ngZone: NgZone, injector: Injector, keyGraph: KeyGraphService, item2Service: Item2Service, keyService: KeyService, keyFactory: KeyFactoryService, encryptionService: EncryptionService);
|
|
30
|
+
deleteTpExec(tpId: LrRelayIdInput): Promise<DeleteTpMutation>;
|
|
30
31
|
deleteTp(tpId: LrRelayIdInput): LrMutation<DeleteTpMutation, {
|
|
31
32
|
input: {
|
|
32
33
|
id: string;
|