@estuary-ai/sdk 0.3.0 → 0.4.0
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/LICENSE +21 -21
- package/README.md +25 -0
- package/dist/index.d.mts +17 -0
- package/dist/index.d.ts +17 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +70 -70
package/dist/index.mjs
CHANGED
|
@@ -30878,6 +30878,9 @@ var SocketManager = class extends TypedEventEmitter {
|
|
|
30878
30878
|
} else if (this.config.apiKey) {
|
|
30879
30879
|
authPayload.api_key = this.config.apiKey;
|
|
30880
30880
|
}
|
|
30881
|
+
if (this.config.capabilities) {
|
|
30882
|
+
authPayload.capabilities = { version: "1", ...this.config.capabilities };
|
|
30883
|
+
}
|
|
30881
30884
|
this.socket.emit("authenticate", authPayload);
|
|
30882
30885
|
};
|
|
30883
30886
|
const onSessionInfo = (data) => {
|