@dynamic-labs/types 4.9.8 → 4.9.9
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 +12 -0
- package/package.cjs +1 -1
- package/package.js +1 -1
- package/package.json +2 -2
- package/src/popupActions/PopupAction.d.ts +5 -0
- package/src/popupActions/index.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
|
|
2
|
+
### [4.9.9](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.8...v4.9.9) (2025-03-26)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fixes
|
|
6
|
+
|
|
7
|
+
* **global-wallet-client:** properly clean up the popup state when popup is closed ([#8379](https://github.com/dynamic-labs/dynamic-auth/issues/8379)) ([782963f](https://github.com/dynamic-labs/dynamic-auth/commit/782963f87fcb2658b921ff6cc6f22c63be9714fb))
|
|
8
|
+
* hanging promises when a starknet wallet is connected but locked ([#8376](https://github.com/dynamic-labs/dynamic-auth/issues/8376)) ([a753939](https://github.com/dynamic-labs/dynamic-auth/commit/a7539395d4653be49f000ae51d15347a176b5b6c))
|
|
9
|
+
* token balance list should respect sort from backend ([#8383](https://github.com/dynamic-labs/dynamic-auth/issues/8383)) ([1c3bef4](https://github.com/dynamic-labs/dynamic-auth/commit/1c3bef47dbfd319e2444368a4a503b0839b5ad4b))
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* add message auth code to global wallet ([#8354](https://github.com/dynamic-labs/dynamic-auth/issues/8354)) ([c847bf8](https://github.com/dynamic-labs/dynamic-auth/commit/c847bf8d66db54534348622255997f30f4309542))
|
|
13
|
+
|
|
2
14
|
### [4.9.8](https://github.com/dynamic-labs/dynamic-auth/compare/v4.9.7...v4.9.8) (2025-03-24)
|
|
3
15
|
|
|
4
16
|
|
package/package.cjs
CHANGED
package/package.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dynamic-labs/types",
|
|
3
|
-
"version": "4.9.
|
|
3
|
+
"version": "4.9.9",
|
|
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.644",
|
|
22
|
-
"@dynamic-labs/assert-package-version": "4.9.
|
|
22
|
+
"@dynamic-labs/assert-package-version": "4.9.9"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {}
|
|
25
25
|
}
|
|
@@ -10,6 +10,11 @@ export type IPopupActionErrorResponse = {
|
|
|
10
10
|
code?: number;
|
|
11
11
|
message: string;
|
|
12
12
|
};
|
|
13
|
+
export type IPopupActionDefinition = {
|
|
14
|
+
id: string;
|
|
15
|
+
name: string;
|
|
16
|
+
params: any;
|
|
17
|
+
};
|
|
13
18
|
export type GetPopupActionName<TPopupAction extends IPopupAction> = TPopupAction['name'];
|
|
14
19
|
export type GetPopupActionFuncArgs<TPopupAction extends IPopupAction> = Parameters<TPopupAction['func']>[0];
|
|
15
20
|
export type GetPopupActionResult<TPopupAction extends IPopupAction> = Awaited<ReturnType<TPopupAction['func']>>;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
export type { ConnectPopupAction, ConnectEncryptedData, ConnectPopupActionArgs, ConnectPopupActionResponse, } from './actions/ConnectPopupAction';
|
|
2
|
-
export type { IPopupAction, IPopupActionErrorResponse, IPopupActionSuccessResponse, GetPopupActionFuncArgs, GetPopupActionName, GetPopupActionResult, } from './PopupAction';
|
|
2
|
+
export type { IPopupAction, IPopupActionErrorResponse, IPopupActionSuccessResponse, GetPopupActionFuncArgs, GetPopupActionName, GetPopupActionResult, IPopupActionDefinition, } from './PopupAction';
|
|
3
3
|
export type { EthereumRequestPopupAction, EthereumRequestPopupActionArgs, EthereumRequestPopupActionResponse, } from './actions/EthereumRequestPopupAction';
|
|
4
4
|
export type { SolanaSignMessagePopupAction, SolanaSignTransactionPopupAction, SolanaSignAndSendTransactionPopupAction, } from './actions/SolanaPopupActions';
|