@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.
- package/bundles/lifeready-core.umd.js +44 -4
- 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/scenario/scenario.gql.js +19 -1
- package/esm2015/lib/scenario/scenario.service.js +20 -5
- package/esm2015/lib/scenario/scenario.types.js +1 -1
- package/esm2015/lib/tp-password-reset/tp-password-reset.service.js +19 -1
- package/fesm2015/lifeready-core.js +53 -3
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/api/types/lr-graphql.types.d.ts +1 -0
- package/lib/scenario/scenario.gql.d.ts +16 -0
- package/lib/scenario/scenario.service.d.ts +6 -0
- package/lib/scenario/scenario.types.d.ts +1 -1
- package/lib/tp-password-reset/tp-password-reset.service.d.ts +6 -0
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
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
|
}
|