@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.
@@ -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
  }
@@ -158,6 +158,7 @@ export interface TpPasswordResetQueryResult {
158
158
  assembly: {
159
159
  singleReject: boolean;
160
160
  quorum: number;
161
+ canMeetQuorum: boolean;
161
162
  subjectCipherData: string;
162
163
  subjectCipherDataClearJson: any;
163
164
  subjectKey: {
@@ -54,6 +54,7 @@ export declare class TpPasswordResetService extends LrService {
54
54
  assembly: {
55
55
  singleReject: boolean;
56
56
  quorum: number;
57
+ canMeetQuorum: boolean;
57
58
  subjectCipherData: string;
58
59
  subjectCipherDataClearJson: any;
59
60
  subjectKey: {
@@ -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 { LrGraphQLService, LrMutation } from '../api/lr-graphql';
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, keyGraph: KeyGraphService, lrGraphQL: LrGraphQLService, item2Service: Item2Service, keyService: KeyService, keyFactory: KeyFactoryService, encryptionService: EncryptionService);
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;