@diory/client-js 0.2.0-rc7 → 0.2.0-rc9

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.
@@ -20,7 +20,6 @@ class DioryClient {
20
20
  this.diograph.resetDiograph();
21
21
  await this.getDiograph();
22
22
  this.focusDiory({ id: '/' });
23
- await this.generateDiograph();
24
23
  return this.room;
25
24
  };
26
25
  this.focusDiory = (dioryObject) => {
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@diory/client-js",
3
- "version": "0.2.0-rc7",
3
+ "version": "0.2.0-rc9",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "author": "Olli-Pekka Pohjola <op@diory.me>, Jouni Alanen <jouni@diory.me>",
7
7
  "license": "MIT",
8
8
  "dependencies": {
9
9
  "@diograph/diograph": "0.3.0-rc14",
10
- "@diograph/folder-generator": "^0.3.0-rc1",
10
+ "@diograph/folder-generator": "^0.3.0-rc3",
11
11
  "@diory/diosphere-js": "0.2.6-rc2",
12
12
  "path-browserify": "^1.0.1",
13
13
  "uuid": "8.3.2"
@@ -39,8 +39,6 @@ class DioryClient implements IDioryClient {
39
39
  await this.getDiograph()
40
40
  this.focusDiory({ id: '/' })
41
41
 
42
- await this.generateDiograph()
43
-
44
42
  return this.room
45
43
  }
46
44