Skip to content

JS SDK - v0.4.8

Compare
Choose a tag to compare
@himanshu-dixit himanshu-dixit released this 23 Dec 10:04
· 129 commits to master since this release
32e90bf

Changelog: v0.4.6 → v0.4.8

Fixes

  • Export Types from composio-core:
    Types are now explicitly exported for direct use, improving developer experience. Earlier they were inferred due to bundle changes.

  • Expose ConnectionRequest Class:
    The ConnectionRequest class is now exportable from composio-core.

    import { ConnectionRequest } from 'composio-core';
  • Optimized TS SDK Size:
    Reduced the uncompressed size of the TypeScript SDK by 80%, leading to faster downloads and better performance.

Breaking Changes (Minor)

  • API Key Initialization Update
    The syntax for API key initialization has been updated.

Old Syntax:

const composio = new Composio("{{YOUR_API_KEY}}");

New Syntax:

const composio = new Composio({ apiKey: "{{YOUR_API_KEY}}" });