@keyringnetwork/keyring-connect-sdk 2.0.1 → 2.0.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/dist/types.d.ts CHANGED
@@ -105,7 +105,7 @@ export type ExtensionLaunchConfig = {
105
105
  access_token?: string;
106
106
  };
107
107
  };
108
- export type ExtensionStatus = "idle" | "mounted" | "proving" | "prove_success" | "error";
108
+ export type ExtensionStatus = "idle" | "mounted" | "proving" | "prove_error" | "prove_success" | "error";
109
109
  export type AttestationStatus = "onboarding_required" | "onboarding_pending" | "attestation_ready" | "non_compliant";
110
110
  export type CredentialStatus = "expired" | "valid" | "none";
111
111
  export type User = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keyringnetwork/keyring-connect-sdk",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "An SDK for interacting with Keyring Connect browser extension",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -123,7 +123,7 @@ function KeyringConnectButton() {
123
123
 
124
124
  #### Status Types
125
125
 
126
- - `ExtensionStatus`: Extension states (`idle`, `mounted`, `proving`, `prove_success`, `error`)
126
+ - `ExtensionStatus`: Extension states (`idle`, `mounted`, `proving`, `prove_error`, `prove_success`, `error`)
127
127
  - `AttestationStatus`: Off-chain verification status (`onboarding_required`, `onboarding_pending`, `attestation_ready`, `non_compliant`)
128
128
  - `CredentialStatus`: On-chain credential status (`expired`, `valid`, `none`)
129
129