@lifeready/core 1.1.5 → 1.1.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.
@@ -389,6 +389,7 @@ export interface TpAssemblyNode extends Node, TimeStamped {
389
389
  id?: ID;
390
390
  singleReject?: boolean;
391
391
  quorum?: number;
392
+ canMeetQuorum?: boolean;
392
393
  subjectKey?: KeyNode;
393
394
  subjectCipherData?: string;
394
395
  subjectCipherDataClearJson?: JSONObject;
@@ -60,3 +60,19 @@ export interface ReceiveScenarioClaimMutationResult {
60
60
  };
61
61
  }
62
62
  export declare const ReceiveScenarioClaimMutation: import("../_common/ast").TypedDocumentNode<ReceiveScenarioClaimMutationResult>;
63
+ export interface DebugExpireScenarioClaimMutationResult {
64
+ debugExpireScenarioClaim: {
65
+ scenarioClaim: {
66
+ id: string;
67
+ };
68
+ };
69
+ }
70
+ export declare const DebugExpireScenarioClaimMutation: import("../_common/ast").TypedDocumentNode<DebugExpireScenarioClaimMutationResult>;
71
+ export interface DebugExpireTpPasswordResetRequestMutationResult {
72
+ debugExpireTpPasswordResetRequest: {
73
+ passwordResetRequest: {
74
+ id: string;
75
+ };
76
+ };
77
+ }
78
+ export declare const DebugExpireTpPasswordResetRequestMutation: import("../_common/ast").TypedDocumentNode<DebugExpireTpPasswordResetRequestMutationResult>;
@@ -302,6 +302,12 @@ export declare class ScenarioService extends LrService {
302
302
  }[];
303
303
  };
304
304
  }>>;
305
+ debugExpireClaim(scenarioId: string): Promise<import("./scenario.gql").DebugExpireScenarioClaimMutationResult>;
306
+ debugExpireClaimMutation(scenarioId: string): Promise<LrMutation<import("./scenario.gql").DebugExpireScenarioClaimMutationResult, {
307
+ input: {
308
+ scenarioId: string;
309
+ };
310
+ }>>;
305
311
  private getScenario;
306
312
  private getSharedScenario;
307
313
  private getParticipantTpsKeys;
@@ -2,7 +2,7 @@ import { AccessRoleChoice, JSONObject } from '../api/types';
2
2
  import { CreateTpAssemblyInput, UpdateTpAssemblyInput } from '../tp-assembly/tp-assembly.types';
3
3
  export interface ParticipantOptions {
4
4
  tpId: string;
5
- sharedCipherDataClearJson: JSONObject;
5
+ sharedCipherDataClearJson?: JSONObject;
6
6
  }
7
7
  export interface CreateParticipantOptions extends ParticipantOptions {
8
8
  /** This is the TP.sharedKey used to wrap the approver shared key which will be created. */
@@ -103,4 +103,10 @@ export declare class TpPasswordResetService extends LrService {
103
103
  };
104
104
  };
105
105
  }>>;
106
+ debugExpireResetRequest(username: string): Promise<import("../scenario/scenario.gql").DebugExpireTpPasswordResetRequestMutationResult>;
107
+ debugExpireResetRequestMutation(username: string): Promise<LrMutation<import("../scenario/scenario.gql").DebugExpireTpPasswordResetRequestMutationResult, {
108
+ input: {
109
+ username: string;
110
+ };
111
+ }>>;
106
112
  }