@or-sdk/idw 1.2.0-beta.1388.0 → 1.2.0-beta.1389.0

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/dist/cjs/idw.js CHANGED
@@ -113,7 +113,7 @@ var IDW = (function (_super) {
113
113
  graph: constants_1.GRAPH_NAME,
114
114
  query: "CREATE ".concat(channels_1.startUpChannels.map(function (_a) {
115
115
  var id = _a.id, name = _a.name, icon = _a.icon;
116
- return "(:CHANNEL {id: '".concat(id, "', name; '").concat(name, "', icon: '").concat(icon, "'})");
116
+ return "(:CHANNEL {id: '".concat(id, "', name: '").concat(name, "', icon: '").concat(icon, "'})");
117
117
  }).join(', ')),
118
118
  params: {},
119
119
  })];
package/dist/esm/idw.js CHANGED
@@ -50,7 +50,7 @@ export class IDW extends Base {
50
50
  yield this.graphApi.query({
51
51
  graph: GRAPH_NAME,
52
52
  query: `CREATE ${startUpChannels.map(({ id, name, icon }) => {
53
- return `(:CHANNEL {id: '${id}', name; '${name}', icon: '${icon}'})`;
53
+ return `(:CHANNEL {id: '${id}', name: '${name}', icon: '${icon}'})`;
54
54
  }).join(', ')}`,
55
55
  params: {},
56
56
  });
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.2.0-beta.1388.0",
2
+ "version": "1.2.0-beta.1389.0",
3
3
  "name": "@or-sdk/idw",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
package/src/idw.ts CHANGED
@@ -71,7 +71,7 @@ export class IDW extends Base {
71
71
  await this.graphApi.query({
72
72
  graph: GRAPH_NAME,
73
73
  query: `CREATE ${startUpChannels.map(({ id, name, icon }) => {
74
- return `(:CHANNEL {id: '${id}', name; '${name}', icon: '${icon}'})`;
74
+ return `(:CHANNEL {id: '${id}', name: '${name}', icon: '${icon}'})`;
75
75
  }).join(', ')}`,
76
76
  params: {},
77
77
  });