@getpara/core-sdk 2.0.0-alpha.6 → 2.0.0-alpha.8

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.
@@ -39,7 +39,7 @@ __export(constants_exports, {
39
39
  SHORT_POLLING_INTERVAL_MS: () => SHORT_POLLING_INTERVAL_MS
40
40
  });
41
41
  module.exports = __toCommonJS(constants_exports);
42
- const PARA_CORE_VERSION = "2.0.0-alpha.6";
42
+ const PARA_CORE_VERSION = "2.0.0-alpha.7";
43
43
  const PREFIX = "@CAPSULE/";
44
44
  const LOCAL_STORAGE_AUTH_INFO = `${PREFIX}authInfo`;
45
45
  const LOCAL_STORAGE_EMAIL = `${PREFIX}e-mail`;
package/dist/cjs/index.js CHANGED
@@ -34,6 +34,7 @@ __export(src_exports, {
34
34
  NON_ED25519: () => import_user_management_client.NON_ED25519,
35
35
  Network: () => import_user_management_client.Network,
36
36
  OAUTH_METHODS: () => import_user_management_client.OAUTH_METHODS,
37
+ OAuthMethod: () => import_user_management_client.OAuthMethod,
37
38
  OnRampAsset: () => import_user_management_client.OnRampAsset,
38
39
  OnRampMethod: () => import_types.OnRampMethod,
39
40
  OnRampProvider: () => import_user_management_client.OnRampProvider,
@@ -46,6 +47,8 @@ __export(src_exports, {
46
47
  STORAGE_PREFIX: () => import_constants.PREFIX,
47
48
  WALLET_SCHEMES: () => import_user_management_client.WALLET_SCHEMES,
48
49
  WALLET_TYPES: () => import_user_management_client.WALLET_TYPES,
50
+ WalletScheme: () => import_user_management_client.WalletScheme,
51
+ WalletType: () => import_user_management_client.WalletType,
49
52
  constructUrl: () => import_utils.constructUrl,
50
53
  decryptPrivateKey: () => import_utils2.decryptPrivateKey,
51
54
  decryptPrivateKeyAndDecryptShare: () => import_utils2.decryptPrivateKeyAndDecryptShare,
@@ -113,6 +116,7 @@ var src_default = import_ParaCore.ParaCore;
113
116
  NON_ED25519,
114
117
  Network,
115
118
  OAUTH_METHODS,
119
+ OAuthMethod,
116
120
  OnRampAsset,
117
121
  OnRampMethod,
118
122
  OnRampProvider,
@@ -125,6 +129,8 @@ var src_default = import_ParaCore.ParaCore;
125
129
  STORAGE_PREFIX,
126
130
  WALLET_SCHEMES,
127
131
  WALLET_TYPES,
132
+ WalletScheme,
133
+ WalletType,
128
134
  constructUrl,
129
135
  decryptPrivateKey,
130
136
  decryptPrivateKeyAndDecryptShare,
@@ -1,5 +1,5 @@
1
1
  import "./chunk-7B52C2XE.js";
2
- const PARA_CORE_VERSION = "2.0.0-alpha.6";
2
+ const PARA_CORE_VERSION = "2.0.0-alpha.7";
3
3
  const PREFIX = "@CAPSULE/";
4
4
  const LOCAL_STORAGE_AUTH_INFO = `${PREFIX}authInfo`;
5
5
  const LOCAL_STORAGE_EMAIL = `${PREFIX}e-mail`;
package/dist/esm/index.js CHANGED
@@ -4,10 +4,13 @@ import {
4
4
  AuthMethod,
5
5
  EmailTheme,
6
6
  Network,
7
+ WalletType,
8
+ WalletScheme,
7
9
  OnRampAsset,
8
10
  OnRampPurchaseType,
9
11
  OnRampProvider,
10
12
  OnRampPurchaseStatus,
13
+ OAuthMethod,
11
14
  NON_ED25519,
12
15
  PREGEN_IDENTIFIER_TYPES,
13
16
  WALLET_TYPES,
@@ -65,6 +68,7 @@ export {
65
68
  NON_ED25519,
66
69
  Network,
67
70
  OAUTH_METHODS,
71
+ OAuthMethod,
68
72
  OnRampAsset,
69
73
  OnRampMethod,
70
74
  OnRampProvider,
@@ -77,6 +81,8 @@ export {
77
81
  PREFIX as STORAGE_PREFIX,
78
82
  WALLET_SCHEMES,
79
83
  WALLET_TYPES,
84
+ WalletScheme,
85
+ WalletType,
80
86
  constructUrl,
81
87
  decryptPrivateKey,
82
88
  decryptPrivateKeyAndDecryptShare,
@@ -1,5 +1,5 @@
1
1
  import { ParaCore } from './ParaCore.js';
2
- export { type AuthInfo, type PrimaryAuthInfo, type VerifiedAuthInfo, AuthMethod, type AuthExtras, type CurrentWalletIds, EmailTheme, type PartnerEntity, type WalletEntity, Network, type TWalletType, type TWalletScheme, OnRampAsset, OnRampPurchaseType, OnRampProvider, OnRampPurchaseStatus, type OnRampConfig, type OnRampAllowedAssets, type OnRampPurchase, type TOAuthMethod, type SupportedWalletTypes, type TPregenIdentifierType, type PregenIds, NON_ED25519, PREGEN_IDENTIFIER_TYPES, WALLET_TYPES, WALLET_SCHEMES, OAUTH_METHODS, } from '@getpara/user-management-client';
2
+ export { type AuthInfo, type PrimaryAuthInfo, type VerifiedAuthInfo, AuthMethod, type AuthExtras, type CurrentWalletIds, EmailTheme, type PartnerEntity, type WalletEntity, Network, WalletType, type TWalletType, WalletScheme, type TWalletScheme, OnRampAsset, OnRampPurchaseType, OnRampProvider, OnRampPurchaseStatus, type OnRampConfig, type OnRampAllowedAssets, type OnRampPurchase, OAuthMethod, type TOAuthMethod, type SupportedWalletTypes, type TPregenIdentifierType, type PregenIds, NON_ED25519, PREGEN_IDENTIFIER_TYPES, WALLET_TYPES, WALLET_SCHEMES, OAUTH_METHODS, } from '@getpara/user-management-client';
3
3
  export { OnRampMethod, PopupType, PregenIdentifierType, RecoveryStatus, type AuthStateSignup, type AuthStateVerify, type AuthStateLogin, type AuthState, type OAuthResponse, type CoreAuthInfo, type ProviderAssetInfo, type SignatureRes, type FullSignatureRes, type SuccessfulSignatureRes, type DeniedSignatureRes, type DeniedSignatureResWithUrl, type OnRampAssetInfo, type Theme, type Wallet, type GetWalletBalanceParams, } from './types/index.js';
4
4
  export * from './types/coreApi.js';
5
5
  export * from './types/events.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/core-sdk",
3
- "version": "2.0.0-alpha.6",
3
+ "version": "2.0.0-alpha.8",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -10,7 +10,7 @@
10
10
  "@celo/utils": "^8.0.2",
11
11
  "@cosmjs/encoding": "^0.32.4",
12
12
  "@ethereumjs/util": "^9.1.0",
13
- "@getpara/user-management-client": "2.0.0-alpha.6",
13
+ "@getpara/user-management-client": "2.0.0-alpha.8",
14
14
  "@noble/hashes": "^1.5.0",
15
15
  "base64url": "^3.0.1",
16
16
  "libphonenumber-js": "1.11.2",
@@ -41,5 +41,5 @@
41
41
  "require": "./dist/cjs/index.js"
42
42
  }
43
43
  },
44
- "gitHead": "d3b01a8fb475c2af9bf255800bc10d05e011b2eb"
44
+ "gitHead": "ce208d0b9741e2efe1ab3d752571b65ea2e28a25"
45
45
  }