@kadoa/node-sdk 0.23.0 → 0.24.2
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/README.md +2 -0
- package/dist/browser/index.global.js +8 -8
- package/dist/browser/index.global.js.map +1 -1
- package/dist/index.d.mts +61 -15
- package/dist/index.d.ts +61 -15
- package/dist/index.js +259 -76
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +259 -76
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -339,6 +339,8 @@ const extraction = await client.extract({
|
|
|
339
339
|
.create();
|
|
340
340
|
```
|
|
341
341
|
|
|
342
|
+
The SDK automatically reconnects when the realtime service drains a socket during deploys. If the server provides `_cursor` values, the client resumes with `lastCursor` on the replacement subscribe and suppresses overlapping duplicate deliveries by `event.id`.
|
|
343
|
+
|
|
342
344
|
**Connection control:**
|
|
343
345
|
|
|
344
346
|
```typescript
|