Skip to content

Commit 2222831

Browse files
update doc (#201)
1 parent c865b18 commit 2222831

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

docs/typescript.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,17 +11,17 @@ A TypeScript library to synchronize Stripe data into a PostgreSQL database, desi
1111
## Installation
1212

1313
```sh
14-
npm install @stripe-experiment/sync stripe
14+
npm install @stripe/sync-engine
1515
# or
16-
pnpm add @stripe-experiment/sync stripe
16+
pnpm add @stripe/sync-engine
1717
# or
18-
yarn add @stripe-experiment/sync stripe
18+
yarn add @stripe/sync-engine
1919
```
2020

2121
## Usage
2222

2323
```ts
24-
import { StripeSync } from '@stripe-experiment/sync'
24+
import { StripeSync } from '@stripe/sync-engine'
2525

2626
const sync = new StripeSync({
2727
poolConfig: {
@@ -107,7 +107,7 @@ The library will create and manage a `stripe` schema in your PostgreSQL database
107107
Migrations are included in the `db/migrations` directory. You can run them using the provided `runMigrations` function:
108108

109109
```ts
110-
import { runMigrations } from '@stripe-experiment/sync'
110+
import { runMigrations } from '@stripe/sync-engine'
111111

112112
await runMigrations({ databaseUrl: 'postgres://...' })
113113
```

0 commit comments

Comments
 (0)