@metamask/snaps-sdk 6.22.1 → 6.24.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 +21 -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/types/handlers/client-request.cjs +3 -0
- package/dist/types/handlers/client-request.cjs.map +1 -0
- package/dist/types/handlers/client-request.d.cts +16 -0
- package/dist/types/handlers/client-request.d.cts.map +1 -0
- package/dist/types/handlers/client-request.d.mts +16 -0
- package/dist/types/handlers/client-request.d.mts.map +1 -0
- package/dist/types/handlers/client-request.mjs +2 -0
- package/dist/types/handlers/client-request.mjs.map +1 -0
- package/dist/types/handlers/index.cjs.map +1 -1
- package/dist/types/handlers/index.d.cts +1 -0
- package/dist/types/handlers/index.d.cts.map +1 -1
- package/dist/types/handlers/index.d.mts +1 -0
- package/dist/types/handlers/index.d.mts.map +1 -1
- package/dist/types/handlers/index.mjs.map +1 -1
- package/dist/types/methods/get-preferences.cjs.map +1 -1
- package/dist/types/methods/get-preferences.d.cts +2 -0
- package/dist/types/methods/get-preferences.d.cts.map +1 -1
- package/dist/types/methods/get-preferences.d.mts +2 -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/methods/index.cjs.map +1 -1
- package/dist/types/methods/index.d.cts +1 -0
- package/dist/types/methods/index.d.cts.map +1 -1
- package/dist/types/methods/index.d.mts +1 -0
- package/dist/types/methods/index.d.mts.map +1 -1
- package/dist/types/methods/index.mjs.map +1 -1
- package/dist/types/methods/methods.cjs.map +1 -1
- package/dist/types/methods/methods.d.cts +2 -0
- package/dist/types/methods/methods.d.cts.map +1 -1
- package/dist/types/methods/methods.d.mts +2 -0
- package/dist/types/methods/methods.d.mts.map +1 -1
- package/dist/types/methods/methods.mjs.map +1 -1
- package/dist/types/methods/track-event.cjs +3 -0
- package/dist/types/methods/track-event.cjs.map +1 -0
- package/dist/types/methods/track-event.d.cts +21 -0
- package/dist/types/methods/track-event.d.cts.map +1 -0
- package/dist/types/methods/track-event.d.mts +21 -0
- package/dist/types/methods/track-event.d.mts.map +1 -0
- package/dist/types/methods/track-event.mjs +2 -0
- package/dist/types/methods/track-event.mjs.map +1 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.24.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add support for SIP-31 `onClientRequest` handler ([#3394](https://github.com/MetaMask/snaps/pull/3394))
|
|
15
|
+
- This adds the corresponding `OnClientRequestHandler` type.
|
|
16
|
+
- Add `showTestnets` to `snap_getPreferences` ([#3395](https://github.com/MetaMask/snaps/pull/3395))
|
|
17
|
+
|
|
18
|
+
## [6.23.0]
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
|
|
22
|
+
- Add `snap_trackEvent` method ([#3375](https://github.com/MetaMask/snaps/pull/3375))
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- Bump `@metamask/providers` from `22.0.1` to `22.1.0` ([#3363](https://github.com/MetaMask/snaps/pull/3363))
|
|
27
|
+
|
|
10
28
|
## [6.22.1]
|
|
11
29
|
|
|
12
30
|
### Fixed
|
|
@@ -553,7 +571,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
553
571
|
|
|
554
572
|
- Initial release of this package.
|
|
555
573
|
|
|
556
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
574
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.24.0...HEAD
|
|
575
|
+
[6.24.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.23.0...@metamask/snaps-sdk@6.24.0
|
|
576
|
+
[6.23.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.22.1...@metamask/snaps-sdk@6.23.0
|
|
557
577
|
[6.22.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.22.0...@metamask/snaps-sdk@6.22.1
|
|
558
578
|
[6.22.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.21.0...@metamask/snaps-sdk@6.22.0
|
|
559
579
|
[6.21.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.20.0...@metamask/snaps-sdk@6.21.0
|