@ejfdelgado/ejflab-back 1.9.0 → 1.9.2

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": "@ejfdelgado/ejflab-back",
3
- "version": "1.9.0",
3
+ "version": "1.9.2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/ejfdelgado/ejflab-back.git"
@@ -18,7 +18,7 @@
18
18
  "license": "ISC",
19
19
  "private": false,
20
20
  "dependencies": {
21
- "@ejfdelgado/ejflab-common": "1.8.0",
21
+ "@ejfdelgado/ejflab-common": "1.8.3",
22
22
  "@google-cloud/compute": "^4.7.0",
23
23
  "@google-cloud/firestore": "^7.9.0",
24
24
  "@google-cloud/storage": "^7.11.3",
@@ -55,4 +55,4 @@
55
55
  "uuidv7": "^1.0.2",
56
56
  "wav-file-info": "^0.0.10"
57
57
  }
58
- }
58
+ }
@@ -25,7 +25,15 @@ export class LoadFlowChartProcessor extends GenericProcessor {
25
25
  }
26
26
 
27
27
  async execute(args) {
28
- let { names, conf, dataPath, dataVal, room, skipValidation } = args;
28
+ let {
29
+ names,
30
+ conf,
31
+ dataPath,
32
+ dataVal,
33
+ room,
34
+ skipValidation,
35
+ multiples
36
+ } = args;
29
37
  console.log(`LoadFlowChartProcessor at room ${room}...`);
30
38
  this.completePaths(names);
31
39
  this.completePaths(dataPath);
@@ -86,6 +94,7 @@ export class LoadFlowChartProcessor extends GenericProcessor {
86
94
  roomData.model.history = [];
87
95
  roomData.model.flowchart = flowchart;
88
96
  roomData.model.data = data;
97
+ roomData.model.multiples = multiples;
89
98
  roomData.model.version = 0;
90
99
  // So it will be capable to reload from this point
91
100
  roomData.model.request = Buffer.from(JSON.stringify(args), "utf8").toString("base64");