@dxos/tracing 0.1.58-main.f5feb2a → 0.1.58-main.f69fa2f

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.
Files changed (2) hide show
  1. package/package.json +10 -10
  2. package/src/tracing.test.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dxos/tracing",
3
- "version": "0.1.58-main.f5feb2a",
3
+ "version": "0.1.58-main.f69fa2f",
4
4
  "description": "Async utilities.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -16,15 +16,15 @@
16
16
  "src"
17
17
  ],
18
18
  "dependencies": {
19
- "@dxos/async": "0.1.58-main.f5feb2a",
20
- "@dxos/codec-protobuf": "0.1.58-main.f5feb2a",
21
- "@dxos/context": "0.1.58-main.f5feb2a",
22
- "@dxos/debug": "0.1.58-main.f5feb2a",
23
- "@dxos/invariant": "0.1.58-main.f5feb2a",
24
- "@dxos/log": "0.1.58-main.f5feb2a",
25
- "@dxos/node-std": "0.1.58-main.f5feb2a",
26
- "@dxos/protocols": "0.1.58-main.f5feb2a",
27
- "@dxos/util": "0.1.58-main.f5feb2a"
19
+ "@dxos/async": "0.1.58-main.f69fa2f",
20
+ "@dxos/codec-protobuf": "0.1.58-main.f69fa2f",
21
+ "@dxos/context": "0.1.58-main.f69fa2f",
22
+ "@dxos/debug": "0.1.58-main.f69fa2f",
23
+ "@dxos/invariant": "0.1.58-main.f69fa2f",
24
+ "@dxos/log": "0.1.58-main.f69fa2f",
25
+ "@dxos/node-std": "0.1.58-main.f69fa2f",
26
+ "@dxos/protocols": "0.1.58-main.f69fa2f",
27
+ "@dxos/util": "0.1.58-main.f69fa2f"
28
28
  },
29
29
  "devDependencies": {},
30
30
  "publishConfig": {
@@ -16,7 +16,7 @@ class FeedStore {
16
16
  private readonly _feeds = new Map<string, Feed>();
17
17
 
18
18
  @trace.info()
19
- get storageType() {
19
+ get dataStore() {
20
20
  return this._storage.type;
21
21
  }
22
22