@dxos/keys 0.8.4-main.a4bbb77 → 0.8.4-main.ae835ea

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": "@dxos/keys",
3
- "version": "0.8.4-main.a4bbb77",
3
+ "version": "0.8.4-main.ae835ea",
4
4
  "description": "Key utils and definitions.",
5
5
  "homepage": "https://dxos.org",
6
6
  "bugs": "https://github.com/dxos/dxos/issues",
@@ -27,9 +27,9 @@
27
27
  "dependencies": {
28
28
  "effect": "3.18.3",
29
29
  "ulidx": "^2.3.0",
30
- "@dxos/debug": "0.8.4-main.a4bbb77",
31
- "@dxos/invariant": "0.8.4-main.a4bbb77",
32
- "@dxos/node-std": "0.8.4-main.a4bbb77"
30
+ "@dxos/debug": "0.8.4-main.ae835ea",
31
+ "@dxos/invariant": "0.8.4-main.ae835ea",
32
+ "@dxos/node-std": "0.8.4-main.ae835ea"
33
33
  },
34
34
  "devDependencies": {
35
35
  "base32-decode": "^1.0.0",
package/src/dxn.ts CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  import type { InspectOptionsStylized, inspect } from 'node:util';
6
6
 
7
- import { Schema } from 'effect';
7
+ import * as Schema from 'effect/Schema';
8
8
 
9
9
  import { type DevtoolsFormatter, devtoolsFormatter, inspectCustom } from '@dxos/debug';
10
10
  import { assertArgument, invariant } from '@dxos/invariant';
package/src/object-id.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { Schema } from 'effect';
5
+ import * as Schema from 'effect/Schema';
6
6
  import { type PRNG, type ULIDFactory, monotonicFactory } from 'ulidx';
7
7
 
8
8
  // TODO(dmaretskyi): Make brand.
package/src/space-id.ts CHANGED
@@ -4,7 +4,7 @@
4
4
 
5
5
  import base32Decode from 'base32-decode';
6
6
  import base32Encode from 'base32-encode';
7
- import { Schema } from 'effect';
7
+ import * as Schema from 'effect/Schema';
8
8
 
9
9
  import { invariant } from '@dxos/invariant';
10
10