@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.
@@ -17,6 +17,7 @@ export declare class KcError {
17
17
  private _type;
18
18
  code?: string;
19
19
  source?: string;
20
+ data?: any;
20
21
  message: string;
21
22
  debug?: {
22
23
  locations: {
@@ -0,0 +1,2 @@
1
+ import * as lodash from './kc-lodash';
2
+ export { lodash };
@@ -0,0 +1,5 @@
1
+ import cloneDeep from 'lodash/cloneDeep';
2
+ import isEqual from 'lodash/isEqual';
3
+ import keyBy from 'lodash/keyBy';
4
+ import omit from 'lodash/omit';
5
+ export { cloneDeep, isEqual, keyBy, omit };
@@ -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[];