@rtbnext/core 2.0.0-alpha.1 → 2.0.0-alpha.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.
@@ -7,7 +7,7 @@ export class List extends Snapshot {
7
7
  uri;
8
8
  constructor(item) {
9
9
  if (!item || !item.uri) throw new Error('No valid list index item given');
10
- super('list');
10
+ super(`list/${item.uri}`);
11
11
  this.uri = item.uri;
12
12
  }
13
13
  // --- getter ---
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@rtbnext/core",
3
3
  "description": "Internal core package for the rtbnext project",
4
4
  "license": "MIT",
5
- "version": "2.0.0-alpha.1",
5
+ "version": "2.0.0-alpha.2",
6
6
  "author": {
7
7
  "name": "komed3 (Paul Köhler)",
8
8
  "email": "webmaster@komed3.de",