@metamask/snaps-controllers 0.35.1-flask.1 → 0.35.2-flask.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -1
  2. package/package.json +4 -40
package/CHANGELOG.md CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6
6
 
7
7
  ## [Unreleased]
8
8
 
9
+ ## [0.35.2-flask.1]
10
+ ### Fixed
11
+ - Fix type issue introduced by [#1532](https://github.com/MetaMask/snaps/pull/1532) ([#1541](https://github.com/MetaMask/snaps/pull/1541))
12
+
9
13
  ## [0.35.1-flask.1]
10
14
  ### Changed
11
15
  - No changes this release.
@@ -538,7 +542,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
538
542
  ### Added
539
543
  - First semi-stable release.
540
544
 
541
- [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...HEAD
545
+ [Unreleased]: https://github.com/MetaMask/snaps/compare/v0.35.2-flask.1...HEAD
546
+ [0.35.2-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.1-flask.1...v0.35.2-flask.1
542
547
  [0.35.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.35.0-flask.1...v0.35.1-flask.1
543
548
  [0.35.0-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.1-flask.1...v0.35.0-flask.1
544
549
  [0.34.1-flask.1]: https://github.com/MetaMask/snaps/compare/v0.34.0-flask.1...v0.34.1-flask.1
package/package.json CHANGED
@@ -1,35 +1,12 @@
1
1
  {
2
2
  "name": "@metamask/snaps-controllers",
3
- "version": "0.35.1-flask.1",
3
+ "version": "0.35.2-flask.1",
4
4
  "description": "Controllers for MetaMask Snaps.",
5
5
  "repository": {
6
6
  "type": "git",
7
7
  "url": "https://github.com/MetaMask/snaps.git"
8
8
  },
9
9
  "sideEffects": false,
10
- "exports": {
11
- ".": {
12
- "import": "./dist/esm/index.js",
13
- "require": "./dist/cjs/index.js",
14
- "types": "./dist/types/index.d.ts"
15
- },
16
- "./dist/cjs/services": {
17
- "default": "./dist/cjs/services/index.js",
18
- "browser": "./dist/cjs/services/browser.js"
19
- },
20
- "./dist/esm/services": {
21
- "default": "./dist/esm/services/index.js",
22
- "browser": "./dist/esm/services/browser.js"
23
- },
24
- "./dist/cjs/*": {
25
- "require": "./dist/cjs/*.js",
26
- "types": "./dist/types/*.d.ts"
27
- },
28
- "./dist/esm/*": {
29
- "import": "./dist/esm/*.js",
30
- "types": "./dist/types/*.d.ts"
31
- }
32
- },
33
10
  "main": "./dist/cjs/index.js",
34
11
  "module": "./dist/esm/index.js",
35
12
  "browser": {
@@ -37,19 +14,6 @@
37
14
  "./dist/esm/services": "./dist/esm/services/browser.js"
38
15
  },
39
16
  "types": "./dist/types/index.d.ts",
40
- "typesVersions": {
41
- "*": {
42
- "*": [
43
- "./dist/types/*"
44
- ],
45
- "./dist/cjs/*": [
46
- "./dist/types/*"
47
- ],
48
- "./dist/esm/*": [
49
- "./dist/types/*"
50
- ]
51
- }
52
- },
53
17
  "files": [
54
18
  "dist/cjs/**",
55
19
  "dist/esm/**",
@@ -83,10 +47,10 @@
83
47
  "@metamask/object-multiplex": "^1.2.0",
84
48
  "@metamask/permission-controller": "^4.0.0",
85
49
  "@metamask/post-message-stream": "^6.1.2",
86
- "@metamask/rpc-methods": "^0.35.1-flask.1",
87
- "@metamask/snaps-execution-environments": "^0.35.1-flask.1",
50
+ "@metamask/rpc-methods": "^0.35.2-flask.1",
51
+ "@metamask/snaps-execution-environments": "^0.35.2-flask.1",
88
52
  "@metamask/snaps-registry": "^1.2.1",
89
- "@metamask/snaps-utils": "^0.35.1-flask.1",
53
+ "@metamask/snaps-utils": "^0.35.2-flask.1",
90
54
  "@metamask/utils": "^6.0.1",
91
55
  "@xstate/fsm": "^2.0.0",
92
56
  "concat-stream": "^2.0.0",