@estuary-ai/sdk 0.3.0 → 0.4.1

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/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) => {