@dxos/effect 0.8.0 → 0.8.1-main.303c73a

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/src/index.ts CHANGED
@@ -2,12 +2,6 @@
2
2
  // Copyright 2020 DXOS.org
3
3
  //
4
4
 
5
- import { AST, JSONSchema, Schema as S } from '@effect/schema';
6
- import type * as Types from 'effect/Types';
7
-
8
- // TODO(dmaretskyi): Remove re-exports.
9
- export { AST, JSONSchema, S, Types };
10
-
11
5
  export * from './ast';
12
6
  export * from './jsonPath';
13
7
  export * from './url';
package/src/jsonPath.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Copyright 2025 DXOS.org
3
3
  //
4
4
 
5
- import { Schema as S } from '@effect/schema';
5
+ import { Schema as S } from 'effect';
6
6
  import { isSome } from 'effect/Option';
7
7
 
8
8
  import { invariant } from '@dxos/invariant';
package/src/url.test.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { Schema as S } from '@effect/schema';
5
+ import { Schema as S } from 'effect';
6
6
  import { describe, expect, test } from 'vitest';
7
7
 
8
8
  import { ParamKeyAnnotation, UrlParser } from './url';
package/src/url.ts CHANGED
@@ -2,8 +2,7 @@
2
2
  // Copyright 2024 DXOS.org
3
3
  //
4
4
 
5
- import { AST, type Schema as S } from '@effect/schema';
6
- import { Option, pipe } from 'effect';
5
+ import { SchemaAST as AST, type Schema as S, Option, pipe } from 'effect';
7
6
 
8
7
  import { decamelize } from '@dxos/util';
9
8