@getpara/user-management-client 2.0.0-alpha.26 → 2.0.0-alpha.27

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.
@@ -87,7 +87,8 @@ const EVM_WALLETS = [
87
87
  "OKX",
88
88
  "HAHA",
89
89
  "BACKPACK",
90
- "PHANTOM"
90
+ "PHANTOM",
91
+ "VALORA"
91
92
  ];
92
93
  const SOLANA_WALLETS = ["PHANTOM", "GLOW", "BACKPACK", "SOLFLARE"];
93
94
  const COSMOS_WALLETS = ["KEPLR", "LEAP", "COSMOSTATION"];
@@ -55,7 +55,8 @@ const EVM_WALLETS = [
55
55
  "OKX",
56
56
  "HAHA",
57
57
  "BACKPACK",
58
- "PHANTOM"
58
+ "PHANTOM",
59
+ "VALORA"
59
60
  ];
60
61
  const SOLANA_WALLETS = ["PHANTOM", "GLOW", "BACKPACK", "SOLFLARE"];
61
62
  const COSMOS_WALLETS = ["KEPLR", "LEAP", "COSMOSTATION"];
@@ -71,8 +71,8 @@ export type SupportedWalletTypes = {
71
71
  type: TWalletType;
72
72
  optional?: boolean;
73
73
  }[];
74
- export declare const EVM_WALLETS: readonly ["METAMASK", "RAINBOW", "COINBASE", "WALLETCONNECT", "ZERION", "SAFE", "RABBY", "OKX", "HAHA", "BACKPACK", "PHANTOM"];
74
+ export declare const EVM_WALLETS: readonly ["METAMASK", "RAINBOW", "COINBASE", "WALLETCONNECT", "ZERION", "SAFE", "RABBY", "OKX", "HAHA", "BACKPACK", "PHANTOM", "VALORA"];
75
75
  export declare const SOLANA_WALLETS: readonly ["PHANTOM", "GLOW", "BACKPACK", "SOLFLARE"];
76
76
  export declare const COSMOS_WALLETS: readonly ["KEPLR", "LEAP", "COSMOSTATION"];
77
- export declare const EXTERNAL_WALLET_TYPES: readonly ("METAMASK" | "RAINBOW" | "COINBASE" | "WALLETCONNECT" | "ZERION" | "SAFE" | "RABBY" | "OKX" | "HAHA" | "BACKPACK" | "PHANTOM" | "GLOW" | "SOLFLARE" | "KEPLR" | "LEAP" | "COSMOSTATION")[];
77
+ export declare const EXTERNAL_WALLET_TYPES: readonly ("METAMASK" | "RAINBOW" | "COINBASE" | "WALLETCONNECT" | "ZERION" | "SAFE" | "RABBY" | "OKX" | "HAHA" | "BACKPACK" | "PHANTOM" | "VALORA" | "GLOW" | "SOLFLARE" | "KEPLR" | "LEAP" | "COSMOSTATION")[];
78
78
  export type TExternalWallet = (typeof EXTERNAL_WALLET_TYPES)[number];
package/package.json CHANGED
@@ -1,30 +1,13 @@
1
1
  {
2
2
  "name": "@getpara/user-management-client",
3
- "version": "2.0.0-alpha.26",
4
- "main": "dist/cjs/index.js",
5
- "module": "dist/esm/index.js",
6
- "types": "dist/types/index.d.ts",
7
- "typings": "dist/types/index.d.ts",
8
- "sideEffects": false,
9
- "scripts": {
10
- "build": "rm -rf dist && node ./scripts/build.mjs && yarn build:types",
11
- "old-build": "yarn build:cjs && yarn build:esm && yarn build:types",
12
- "build:cjs": "rm -rf dist/cjs && tsc --module commonjs --outDir dist/cjs && printf '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
13
- "build:esm": "rm -rf dist/esm && tsc --module es6 --outDir dist/esm && printf '{\"type\":\"module\",\"sideEffects\":false}' > dist/esm/package.json",
14
- "build:types": "rm -rf dist/types && tsc --module es6 --declarationDir dist/types --emitDeclarationOnly --declaration",
15
- "test": "vitest run --coverage"
16
- },
3
+ "version": "2.0.0-alpha.27",
17
4
  "dependencies": {
18
5
  "axios": "^1.8.4",
19
- "libphonenumber-js": "1.11.2"
6
+ "libphonenumber-js": "^1.11.7"
20
7
  },
21
8
  "devDependencies": {
22
- "typescript": "^5.0.4"
9
+ "typescript": "^5.8.3"
23
10
  },
24
- "files": [
25
- "dist",
26
- "package.json"
27
- ],
28
11
  "exports": {
29
12
  ".": {
30
13
  "types": "./dist/types/index.d.ts",
@@ -32,5 +15,22 @@
32
15
  "require": "./dist/cjs/index.js"
33
16
  }
34
17
  },
35
- "gitHead": "c97be88dd7414041f25d6f4b9758ea26dcfb2694"
18
+ "files": [
19
+ "dist",
20
+ "package.json"
21
+ ],
22
+ "gitHead": "a54f63445995abd13220eda3d63809728e4b5f7e",
23
+ "main": "dist/cjs/index.js",
24
+ "module": "dist/esm/index.js",
25
+ "scripts": {
26
+ "build": "rm -rf dist && node ./scripts/build.mjs && yarn build:types",
27
+ "build:cjs": "rm -rf dist/cjs && tsc --module commonjs --outDir dist/cjs && printf '{\"type\":\"commonjs\"}' > dist/cjs/package.json",
28
+ "build:esm": "rm -rf dist/esm && tsc --module es6 --outDir dist/esm && printf '{\"type\":\"module\",\"sideEffects\":false}' > dist/esm/package.json",
29
+ "build:types": "rm -rf dist/types && tsc --module es6 --declarationDir dist/types --emitDeclarationOnly --declaration",
30
+ "old-build": "yarn build:cjs && yarn build:esm && yarn build:types",
31
+ "test": "vitest run --coverage"
32
+ },
33
+ "sideEffects": false,
34
+ "types": "dist/types/index.d.ts",
35
+ "typings": "dist/types/index.d.ts"
36
36
  }