@dynamic-labs/types 4.0.0-alpha.50 → 4.0.0-alpha.52

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/CHANGELOG.md CHANGED
@@ -1,4 +1,14 @@
1
1
 
2
+ ## [4.0.0-alpha.52](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.51...v4.0.0-alpha.52) (2025-01-02)
3
+
4
+ ## [4.0.0-alpha.51](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.50...v4.0.0-alpha.51) (2024-12-30)
5
+
6
+
7
+ ### Bug Fixes
8
+
9
+ * changing copy of linking same wallet ([#7489](https://github.com/dynamic-labs/dynamic-auth/issues/7489)) ([e7d6b95](https://github.com/dynamic-labs/dynamic-auth/commit/e7d6b957043eaf8c06a4e8ef480ec9b027abdb5e))
10
+ * normalize user reject error from Rainbow and BitGet ([#7721](https://github.com/dynamic-labs/dynamic-auth/issues/7721)) ([78a2e41](https://github.com/dynamic-labs/dynamic-auth/commit/78a2e41e235743f0c652be746a8bee74d4e06629))
11
+
2
12
  ## [4.0.0-alpha.50](https://github.com/dynamic-labs/dynamic-auth/compare/v4.0.0-alpha.49...v4.0.0-alpha.50) (2024-12-28)
3
13
 
4
14
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.0.0-alpha.50";
6
+ var version = "4.0.0-alpha.52";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.0.0-alpha.50";
2
+ var version = "4.0.0-alpha.52";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/types",
3
- "version": "4.0.0-alpha.50",
3
+ "version": "4.0.0-alpha.52",
4
4
  "description": "A React SDK for implementing wallet web3 authentication and authorization to your website.",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  },
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.578",
22
- "@dynamic-labs/assert-package-version": "4.0.0-alpha.50"
22
+ "@dynamic-labs/assert-package-version": "4.0.0-alpha.52"
23
23
  },
24
24
  "peerDependencies": {}
25
25
  }
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Defines the connection between a requester (dapp) and the global
3
+ * wallet popup.
4
+ */
5
+ export type GlobalWalletConnection = {
6
+ sharedSecret: string;
7
+ expiresAt: number;
8
+ origin: string;
9
+ };
package/src/index.d.ts CHANGED
@@ -9,3 +9,4 @@ export * from './user';
9
9
  export * from './wallets';
10
10
  export * from './settings';
11
11
  export * from './popupActions';
12
+ export * from './globalWalletConnection';
@@ -1,6 +1,6 @@
1
1
  import { BaseWallet } from '../../wallets';
2
2
  export type ConnectEncryptedData = {
3
- network: string;
3
+ network: number;
4
4
  wallet: BaseWallet;
5
5
  };
6
6
  export type ConnectPopupActionArgs = {