@lifeready/core 8.0.11 → 8.0.12
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 -20
- 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/_common/exceptions.js +4 -1
- package/esm2015/lib/_common/index.js +3 -0
- package/esm2015/lib/_common/kc-lodash.js +11 -0
- package/esm2015/lib/api/lr-graphql/lr-graphql.service.js +2 -2
- package/esm2015/lib/api/lr-graphql/lr-merged-mutation.js +2 -2
- package/esm2015/lib/api/lr-graphql/lr-mutation.js +2 -2
- package/esm2015/lib/api/types/lr-graphql.types.js +1 -1
- package/esm2015/lib/auth/auth.service.js +12 -5
- package/esm2015/lib/key/key-graph.service.js +5 -5
- package/esm2015/lib/profile/profile-details.service.js +5 -5
- package/esm2015/lib/scenario/scenario.service.js +3 -1
- package/esm2015/lib/scenario/scenario.types.js +1 -1
- package/fesm2015/lifeready-core.js +32 -16
- package/fesm2015/lifeready-core.js.map +1 -1
- package/lib/_common/exceptions.d.ts +1 -0
- package/lib/_common/index.d.ts +2 -0
- package/lib/_common/kc-lodash.d.ts +5 -0
- package/lib/api/types/lr-graphql.types.d.ts +1 -0
- package/lib/scenario/scenario.service.d.ts +3 -0
- package/lib/scenario/scenario.types.d.ts +2 -0
- package/lifeready-core.metadata.json +1 -1
- package/package.json +1 -1
|
@@ -558,6 +558,7 @@ export interface ScenarioNode extends Node, TimeStamped {
|
|
|
558
558
|
claim?: ScenarioClaimNode;
|
|
559
559
|
assemblyState?: ScenarioAssemblyState;
|
|
560
560
|
latestClaim?: ScenarioLatestClaim;
|
|
561
|
+
inactiveSeconds?: number;
|
|
561
562
|
}
|
|
562
563
|
export interface ScenarioClaimNode extends Node, TimeStamped {
|
|
563
564
|
claimant?: ScenarioClaimantNode;
|
|
@@ -25,6 +25,7 @@ export declare class ScenarioService extends LrService {
|
|
|
25
25
|
createScenarioMutation(options: CreateScenarioOptions): Promise<LrMutation<import("./scenario.gql").CreateScenarioMutationResult, {
|
|
26
26
|
input: {
|
|
27
27
|
enabled: boolean;
|
|
28
|
+
inactiveSeconds: number;
|
|
28
29
|
createAssembly: {
|
|
29
30
|
singleReject: boolean;
|
|
30
31
|
quorum: number;
|
|
@@ -112,6 +113,7 @@ export declare class ScenarioService extends LrService {
|
|
|
112
113
|
input: {
|
|
113
114
|
scenarioId: string;
|
|
114
115
|
enabled: boolean;
|
|
116
|
+
inactiveSeconds: number;
|
|
115
117
|
updateAssembly: {
|
|
116
118
|
singleReject: boolean;
|
|
117
119
|
quorum: number;
|
|
@@ -322,6 +324,7 @@ export declare class ScenarioService extends LrService {
|
|
|
322
324
|
input: {
|
|
323
325
|
scenarioId: string;
|
|
324
326
|
enabled: boolean;
|
|
327
|
+
inactiveSeconds: number;
|
|
325
328
|
updateAssembly: {
|
|
326
329
|
singleReject: boolean;
|
|
327
330
|
quorum: number;
|
|
@@ -41,6 +41,7 @@ export declare type CreateClaimantOptions = CreateParticipantOptions;
|
|
|
41
41
|
export declare type UpdateClaimantOptions = UpdateParticipantOptions;
|
|
42
42
|
export interface CreateScenarioOptions {
|
|
43
43
|
enabled: boolean;
|
|
44
|
+
inactiveSeconds?: number;
|
|
44
45
|
createAssembly?: CreateTpAssemblyInput;
|
|
45
46
|
createReceivers?: CreateReceiverOptions[];
|
|
46
47
|
createClaimants?: CreateClaimantOptions[];
|
|
@@ -48,6 +49,7 @@ export interface CreateScenarioOptions {
|
|
|
48
49
|
export interface UpdateScenarioOptions {
|
|
49
50
|
scenarioId: string;
|
|
50
51
|
enabled: boolean;
|
|
52
|
+
inactiveSeconds?: number;
|
|
51
53
|
updateAssembly?: UpdateTpAssemblyInput;
|
|
52
54
|
createReceivers?: CreateReceiverOptions[];
|
|
53
55
|
updateReceivers?: UpdateReceiverOptions[];
|