Skip to content

ssx/v2.1.0

Latest
Compare
Choose a tag to compare
@skgbafa skgbafa released this 28 Jul 12:42
· 10 commits to main since this release
956d9fa

2.1.0

Minor Changes

  • c942c3c: This adds the Credentials Modules, which allows developers to fetch credentials issued on SpruceKit Credential Issuer.
    This module requires Storage Module, so you must enable both to make it work.

    const ssx = SSX({
      modules: {
        storage: true,
        credentials: true,
      },
    });
    
    await ssx.signIn();
    
    const { data } = ssx.credentials.list();