Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

🔄 synced file(s) with circlefin/w3s-pw-web-sdk-internal #34

Merged
merged 3 commits into from
Sep 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ Enumerates the types of challenges supported.

```typescript
enum ChallengeType {
INITIALIZE,
SET_PIN,
RESTORE_PIN,
SET_SECURITY_QUESTIONS,
CREATE_WALLET,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@circle-fin/w3s-pw-web-sdk",
"version": "1.1.5",
"version": "1.1.6",
"description": "Javascript/Typescript SDK for Circle Programmable Wallets",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
Expand Down
1 change: 1 addition & 0 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import type { FirebaseOptions } from 'firebase/app'
* ChallengeType.
*/
export enum ChallengeType {
INITIALIZE = 'INITIALIZE',
SET_PIN = 'SET_PIN',
CHANGE_PIN = 'CHANGE_PIN',
RESTORE_PIN = 'RESTORE_PIN',
Expand Down