robbyson-frontend-library 1.0.122 → 1.0.124

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "robbyson-frontend-library",
3
- "version": "1.0.122",
3
+ "version": "1.0.124",
4
4
  "description": "Robbyson frontend Library",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT",
@@ -50,12 +50,9 @@ export interface ITreeRepository {
50
50
  }: TreeDTO.IInsertSimulationTreeDTO): Promise<TreeSaveSimulatorModel>;
51
51
  callSimulationProcess({
52
52
  body,
53
- }: TreeDTO.ICallSimulationProcessTreeDTO): Promise<{
54
- simulation_id: string;
55
- }>;
56
- completeSimulation({
57
- _id,
58
- }: TreeDTO.ICompleteSimulationTreeDTO): Promise<TreeSimulatorGraphModel>;
53
+ }: TreeDTO.ICallSimulationProcessTreeDTO): Promise<
54
+ TreeSimulatorGraphModel
55
+ >;
59
56
  confirmateSimulation({
60
57
  body,
61
58
  }: TreeDTO.IConfirmateSimulationTreeDTO): Promise<TreeSimulatorGraphModel>;
@@ -79,9 +79,6 @@ export interface ITreeService {
79
79
  detailsTree: TreeDetailModel
80
80
  ): Promise<TreeSaveSimulatorModel>;
81
81
  callSimulationProcess(params: TreeSaveSimulatorModel): Promise<void>;
82
- completeSimulation(
83
- params: TreeDTO.ICompleteSimulationTreeDTO
84
- ): Promise<void>;
85
82
  saveSimulation(simulationName: string): Promise<TreeSaveSimulatorModel>;
86
83
  getRecoveredTree(): Promise<TreeGetSimulatorModel["data"]>;
87
84
  getSimulatedResults(
@@ -116,4 +113,5 @@ export interface ITreeService {
116
113
  type: string | string[],
117
114
  order: boolean | "asc" | "desc" | undefined
118
115
  ): TreeTableModel[];
116
+ setIsLoadingSimulation(isLoading: boolean): void;
119
117
  }
@@ -89,7 +89,8 @@ export interface ITreeApp {
89
89
  hit: number;
90
90
  };
91
91
  simulationDataTree?: {
92
- data: {};
92
+ data: {}
93
+ i?: string;
93
94
  };
94
95
  };
95
96
  recoveredSimulation: {