@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 +1 -1
- package/package.json +1 -1
- package/readme.md +1 -1
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
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
|
|