diff --git a/packages/effect-lens-next/src/Lens.ts b/packages/effect-lens-next/src/Lens.ts index 3dddf59..d1a7a5c 100644 --- a/packages/effect-lens-next/src/Lens.ts +++ b/packages/effect-lens-next/src/Lens.ts @@ -1,25 +1,8 @@ -import { - Array, - type Cause, - Chunk, - type Context, - Effect, - Function, - identity, - Option, - Pipeable, - Predicate, - PubSub, - Ref, - Semaphore, - Stream, - SubscriptionRef, - SynchronizedRef, -} from "effect" +import { Array, type Cause, Chunk, type Context, Effect, Function, identity, Option, Pipeable, Predicate, PubSub, Ref, Semaphore, Stream, SubscriptionRef, SynchronizedRef } from "effect" import * as View from "./View.js" -export const LensTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/Lens") +export const LensTypeId: unique symbol = Symbol.for("@effect-lens/Lens/Lens") export type LensTypeId = typeof LensTypeId /** diff --git a/packages/effect-lens-next/src/View.ts b/packages/effect-lens-next/src/View.ts index c6871db..27cd1d8 100644 --- a/packages/effect-lens-next/src/View.ts +++ b/packages/effect-lens-next/src/View.ts @@ -1,7 +1,7 @@ import { Array, type Cause, Chunk, Effect, Function, Iterable, Option, Pipeable, Predicate, type Result, type Schedule, Stream } from "effect" -export const ViewTypeId: unique symbol = Symbol.for("@effect-fc/Lens/v4/View") +export const ViewTypeId: unique symbol = Symbol.for("@effect-lens/View/View") export type ViewTypeId = typeof ViewTypeId export interface View extends Pipeable.Pipeable {