@dynamic-labs/webview-messages 4.41.0 → 4.41.1

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,12 @@
1
1
 
2
+ ### [4.41.1](https://github.com/dynamic-labs/dynamic-auth/compare/v4.41.0...v4.41.1) (2025-10-30)
3
+
4
+
5
+ ### Bug Fixes
6
+
7
+ * aptos login with petra keyless accounts ([#9795](https://github.com/dynamic-labs/dynamic-auth/issues/9795)) ([99dc34b](https://github.com/dynamic-labs/dynamic-auth/commit/99dc34b95d1ec23d168c9e092e2d735b1d50a71d))
8
+ * backpack aptos login due to invalid public key ([#9806](https://github.com/dynamic-labs/dynamic-auth/issues/9806)) ([ec8b761](https://github.com/dynamic-labs/dynamic-auth/commit/ec8b76181acff7906fd92c77c2fca42ce52010ae))
9
+
2
10
  ## [4.41.0](https://github.com/dynamic-labs/dynamic-auth/compare/v4.40.2...v4.41.0) (2025-10-29)
3
11
 
4
12
 
package/package.cjs CHANGED
@@ -3,6 +3,6 @@
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
5
5
 
6
- var version = "4.41.0";
6
+ var version = "4.41.1";
7
7
 
8
8
  exports.version = version;
package/package.js CHANGED
@@ -1,4 +1,4 @@
1
1
  'use client'
2
- var version = "4.41.0";
2
+ var version = "4.41.1";
3
3
 
4
4
  export { version };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dynamic-labs/webview-messages",
3
- "version": "4.41.0",
3
+ "version": "4.41.1",
4
4
  "description": "A package to define messages for the webview-controller",
5
5
  "author": "Dynamic Labs, Inc.",
6
6
  "license": "MIT",
@@ -20,12 +20,12 @@
20
20
  "dependencies": {
21
21
  "@dynamic-labs/sdk-api-core": "0.0.813",
22
22
  "@dynamic-labs-sdk/client": "0.1.0-alpha.23",
23
- "@dynamic-labs/assert-package-version": "4.41.0",
24
- "@dynamic-labs/locale": "4.41.0",
25
- "@dynamic-labs/logger": "4.41.0",
26
- "@dynamic-labs/message-transport": "4.41.0",
27
- "@dynamic-labs/types": "4.41.0",
28
- "@dynamic-labs/webauthn": "4.41.0"
23
+ "@dynamic-labs/assert-package-version": "4.41.1",
24
+ "@dynamic-labs/locale": "4.41.1",
25
+ "@dynamic-labs/logger": "4.41.1",
26
+ "@dynamic-labs/message-transport": "4.41.1",
27
+ "@dynamic-labs/types": "4.41.1",
28
+ "@dynamic-labs/webauthn": "4.41.1"
29
29
  },
30
30
  "peerDependencies": {}
31
31
  }
@@ -1,6 +1,7 @@
1
1
  export type ImportPrivateKeyArgs = {
2
2
  privateKey: string;
3
3
  thresholdSignatureScheme?: string;
4
+ publicAddressCheck?: string;
4
5
  };
5
6
  export type ExportClientKeysharesArgs = {
6
7
  accountAddress: string;
@@ -14,6 +15,10 @@ export type DelegateKeySharesArgs = {
14
15
  accountAddress: string;
15
16
  password?: string;
16
17
  };
18
+ export type RevokeDelegationArgs = {
19
+ accountAddress: string;
20
+ password?: string;
21
+ };
17
22
  export type RefreshWalletAccountSharesArgs = {
18
23
  accountAddress: string;
19
24
  password?: string;
@@ -33,6 +38,7 @@ export type WaasMessages = {
33
38
  waas_exportClientKeyshares: (walletId: string, args: ExportClientKeysharesArgs) => Promise<void>;
34
39
  waas_backupKeySharesToGoogleDrive: (walletId: string, args: BackupKeySharesToGoogleDriveArgs) => Promise<void>;
35
40
  waas_delegateKeyShares: (walletId: string, args: DelegateKeySharesArgs) => Promise<void>;
41
+ waas_revokeDelegation: (walletId: string, args: RevokeDelegationArgs) => Promise<void>;
36
42
  waas_refreshWalletAccountShares: (walletId: string, args: RefreshWalletAccountSharesArgs) => Promise<void>;
37
43
  waas_updatePassword: (walletId: string, args: UpdatePasswordArgs) => Promise<void>;
38
44
  waas_signRawMessage: (walletId: string, args: SignRawMessageArgs) => Promise<string>;