@metamask/snaps-sdk 6.17.1 → 6.18.0
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 +13 -1
- package/dist/error-wrappers.d.cts +192 -192
- package/dist/error-wrappers.d.mts +192 -192
- package/dist/internals/error-wrappers.d.cts +12 -12
- package/dist/internals/error-wrappers.d.mts +12 -12
- package/dist/jsx/components/Box.cjs.map +1 -1
- package/dist/jsx/components/Box.d.cts +2 -0
- package/dist/jsx/components/Box.d.cts.map +1 -1
- package/dist/jsx/components/Box.d.mts +2 -0
- package/dist/jsx/components/Box.d.mts.map +1 -1
- package/dist/jsx/components/Box.mjs.map +1 -1
- package/dist/jsx/validation.cjs +1 -0
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +1 -0
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/caip.cjs.map +1 -1
- package/dist/types/caip.d.cts +6 -2
- package/dist/types/caip.d.cts.map +1 -1
- package/dist/types/caip.d.mts +6 -2
- package/dist/types/caip.d.mts.map +1 -1
- package/dist/types/caip.mjs.map +1 -1
- package/dist/types/handlers/name-lookup.cjs.map +1 -1
- package/dist/types/handlers/name-lookup.d.cts +3 -4
- package/dist/types/handlers/name-lookup.d.cts.map +1 -1
- package/dist/types/handlers/name-lookup.d.mts +3 -4
- package/dist/types/handlers/name-lookup.d.mts.map +1 -1
- package/dist/types/handlers/name-lookup.mjs.map +1 -1
- package/dist/types/handlers/transaction.cjs.map +1 -1
- package/dist/types/handlers/transaction.d.cts +3 -3
- package/dist/types/handlers/transaction.d.cts.map +1 -1
- package/dist/types/handlers/transaction.d.mts +3 -3
- package/dist/types/handlers/transaction.d.mts.map +1 -1
- package/dist/types/handlers/transaction.mjs.map +1 -1
- package/dist/types/methods/get-preferences.cjs.map +1 -1
- package/dist/types/methods/get-preferences.d.cts +14 -0
- package/dist/types/methods/get-preferences.d.cts.map +1 -1
- package/dist/types/methods/get-preferences.d.mts +14 -0
- package/dist/types/methods/get-preferences.d.mts.map +1 -1
- package/dist/types/methods/get-preferences.mjs.map +1 -1
- package/dist/types/permissions.cjs.map +1 -1
- package/dist/types/permissions.d.cts +2 -3
- package/dist/types/permissions.d.cts.map +1 -1
- package/dist/types/permissions.d.mts +2 -3
- package/dist/types/permissions.d.mts.map +1 -1
- package/dist/types/permissions.mjs.map +1 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.18.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add additional properties to `snap_getPreferences` ([#3093](https://github.com/MetaMask/snaps/pull/3093))
|
|
15
|
+
- Add `crossAlignment` to `Box` ([#3115](https://github.com/MetaMask/snaps/pull/3115))
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Bump MetaMask dependencies ([#3091](https://github.com/MetaMask/snaps/pull/3091), [#3057](https://github.com/MetaMask/snaps/pull/3057), [#3050](https://github.com/MetaMask/snaps/pull/3050))
|
|
20
|
+
|
|
10
21
|
## [6.17.1]
|
|
11
22
|
|
|
12
23
|
### Fixed
|
|
@@ -488,7 +499,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
488
499
|
|
|
489
500
|
- Initial release of this package.
|
|
490
501
|
|
|
491
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
502
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.18.0...HEAD
|
|
503
|
+
[6.18.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.17.1...@metamask/snaps-sdk@6.18.0
|
|
492
504
|
[6.17.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.17.0...@metamask/snaps-sdk@6.17.1
|
|
493
505
|
[6.17.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.16.0...@metamask/snaps-sdk@6.17.0
|
|
494
506
|
[6.16.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.15.0...@metamask/snaps-sdk@6.16.0
|