From d1aae839a33e0fd0e284282dd8aeb899ab3d89ab Mon Sep 17 00:00:00 2001 From: Scott Tolinski Date: Sun, 18 Aug 2024 12:07:37 -0600 Subject: [PATCH] Update README.md to use '@electric-sql/client' (#1539) Was giving this a whirl today and noticed this small issue. --- packages/typescript-client/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/typescript-client/README.md b/packages/typescript-client/README.md index 32358de4cb..e4829da5e4 100644 --- a/packages/typescript-client/README.md +++ b/packages/typescript-client/README.md @@ -46,7 +46,7 @@ The client exports a `ShapeStream` class for getting updates to shapes on a row- ### `ShapeStream` ```tsx -import { ShapeStream } from 'electric-sql' +import { ShapeStream } from '@electric-sql/client' // Passes subscribers rows as they're inserted, updated, or deleted const stream = new ShapeStream({ @@ -61,7 +61,7 @@ stream.subscribe(messages => { ### `Shape` ```tsx -import { ShapeStream, Shape } from 'electric-sql' +import { ShapeStream, Shape } from '@electric-sql/client' const stream = new ShapeStream({ url: `${BASE_URL}/v1/shape/foo`,