Skip to content

Commit

Permalink
v4.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
corbanbrook committed Oct 30, 2024
1 parent ef6f523 commit 2cf8a7f
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 4 deletions.
9 changes: 9 additions & 0 deletions packages/checkout/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @0xsequence/kit-connectors

## 4.4.2

### Patch Changes

- Allow useSignInEmail to get email for waas and universal wallets

- Updated dependencies []:
- @0xsequence/kit@4.4.2

## 4.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/checkout/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/kit-checkout",
"version": "4.4.1",
"version": "4.4.2",
"description": "Checkout UI for Sequence Kit",
"repository": "https://github.com/0xsequence/kit/tree/master/packages/checkout",
"author": "Horizon Blockchain Games",
Expand Down
6 changes: 6 additions & 0 deletions packages/kit/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @0xsequence/kit

## 4.4.2

### Patch Changes

- Allow useSignInEmail to get email for waas and universal wallets

## 4.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/kit",
"version": "4.4.1",
"version": "4.4.2",
"description": "Core package for Sequence Kit",
"keywords": [
"sequence",
Expand Down
6 changes: 5 additions & 1 deletion packages/kit/src/constants/localStorage.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import { Sign } from 'crypto'

const PREFIX = '@kit'
const SETTINGS = 'settings'
const THEME = 'theme'
Expand All @@ -11,6 +13,7 @@ const WAAS_APPLE_ID_TOKEN = 'waasAppleIdToken'
const WAAS_EMAIL_ID_TOKEN = 'waasEmailIdToken'
const WAAS_ACTIVE_LOGIN_TYPE = 'waasActiveLoginType'
const WAAS_SIGN_IN_EMAIL = 'waasSignInEmail'
const SIGN_IN_EMAIL = 'signInEmail'

// TODO: remove all of this.. we should not be storing these in local storage
export enum LocalStorageKey {
Expand All @@ -25,5 +28,6 @@ export enum LocalStorageKey {
WaasAppleIdToken = `${PREFIX}.${WAAS_APPLE_ID_TOKEN}`,
WaasActiveLoginType = `${PREFIX}.${WAAS_ACTIVE_LOGIN_TYPE}`,
WaasEmailIdToken = `${PREFIX}.${WAAS_EMAIL_ID_TOKEN}`,
WaasSignInEmail = `${PREFIX}.${WAAS_SIGN_IN_EMAIL}`
WaasSignInEmail = `${PREFIX}.${WAAS_SIGN_IN_EMAIL}`,
SignInEmail = `${PREFIX}.${SIGN_IN_EMAIL}`
}
9 changes: 9 additions & 0 deletions packages/wallet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @0xsequence/kit-wallet

## 4.4.2

### Patch Changes

- Allow useSignInEmail to get email for waas and universal wallets

- Updated dependencies []:
- @0xsequence/kit@4.4.2

## 4.4.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/wallet/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@0xsequence/kit-wallet",
"version": "4.4.1",
"version": "4.4.2",
"description": "Wallet UI for Sequence Kit",
"repository": "https://github.com/0xsequence/kit/tree/master/packages/wallet",
"author": "Horizon Blockchain Games",
Expand Down

0 comments on commit 2cf8a7f

Please sign in to comment.