@taquito/beacon-wallet 21.0.0-beta.1 → 21.0.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/dist/lib/errors.js
CHANGED
|
@@ -17,7 +17,7 @@ class BeaconWalletNotInitialized extends core_1.PermissionDeniedError {
|
|
|
17
17
|
exports.BeaconWalletNotInitialized = BeaconWalletNotInitialized;
|
|
18
18
|
/**
|
|
19
19
|
* @category Error
|
|
20
|
-
* @description Error that indicates missing required
|
|
20
|
+
* @description Error that indicates missing required permission scopes
|
|
21
21
|
*/
|
|
22
22
|
class MissingRequiredScopes extends core_1.PermissionDeniedError {
|
|
23
23
|
constructor(requiredScopes) {
|
package/dist/lib/version.js
CHANGED
|
@@ -3,6 +3,6 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
3
3
|
exports.VERSION = void 0;
|
|
4
4
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
5
5
|
exports.VERSION = {
|
|
6
|
-
"commitHash": "
|
|
7
|
-
"version": "21.0.0
|
|
6
|
+
"commitHash": "8f78637e9787ae942916332501f41b35d6b98f2d",
|
|
7
|
+
"version": "21.0.0"
|
|
8
8
|
};
|
|
@@ -50,7 +50,7 @@ class BeaconWalletNotInitialized extends PermissionDeniedError {
|
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
52
|
* @category Error
|
|
53
|
-
* @description Error that indicates missing required
|
|
53
|
+
* @description Error that indicates missing required permission scopes
|
|
54
54
|
*/
|
|
55
55
|
class MissingRequiredScopes extends PermissionDeniedError {
|
|
56
56
|
constructor(requiredScopes) {
|
|
@@ -63,8 +63,8 @@ class MissingRequiredScopes extends PermissionDeniedError {
|
|
|
63
63
|
|
|
64
64
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
65
65
|
const VERSION = {
|
|
66
|
-
"commitHash": "
|
|
67
|
-
"version": "21.0.0
|
|
66
|
+
"commitHash": "8f78637e9787ae942916332501f41b35d6b98f2d",
|
|
67
|
+
"version": "21.0.0"
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
/**
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
}
|
|
51
51
|
/**
|
|
52
52
|
* @category Error
|
|
53
|
-
* @description Error that indicates missing required
|
|
53
|
+
* @description Error that indicates missing required permission scopes
|
|
54
54
|
*/
|
|
55
55
|
class MissingRequiredScopes extends core.PermissionDeniedError {
|
|
56
56
|
constructor(requiredScopes) {
|
|
@@ -63,8 +63,8 @@
|
|
|
63
63
|
|
|
64
64
|
// IMPORTANT: THIS FILE IS AUTO GENERATED! DO NOT MANUALLY EDIT OR CHECKIN!
|
|
65
65
|
const VERSION = {
|
|
66
|
-
"commitHash": "
|
|
67
|
-
"version": "21.0.0
|
|
66
|
+
"commitHash": "8f78637e9787ae942916332501f41b35d6b98f2d",
|
|
67
|
+
"version": "21.0.0"
|
|
68
68
|
};
|
|
69
69
|
|
|
70
70
|
/**
|
package/dist/types/errors.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ export declare class BeaconWalletNotInitialized extends PermissionDeniedError {
|
|
|
9
9
|
}
|
|
10
10
|
/**
|
|
11
11
|
* @category Error
|
|
12
|
-
* @description Error that indicates missing required
|
|
12
|
+
* @description Error that indicates missing required permission scopes
|
|
13
13
|
*/
|
|
14
14
|
export declare class MissingRequiredScopes extends PermissionDeniedError {
|
|
15
15
|
readonly requiredScopes: PermissionScope[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taquito/beacon-wallet",
|
|
3
|
-
"version": "21.0.0
|
|
3
|
+
"version": "21.0.0",
|
|
4
4
|
"description": "Beacon wallet provider",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"tezos",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "Apache-2.0",
|
|
26
26
|
"engines": {
|
|
27
|
-
"node": ">=
|
|
27
|
+
"node": ">=18"
|
|
28
28
|
},
|
|
29
29
|
"scripts": {
|
|
30
30
|
"test": "jest --coverage",
|
|
@@ -67,17 +67,16 @@
|
|
|
67
67
|
]
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@airgap/beacon-dapp": "^4.3.
|
|
71
|
-
"@
|
|
72
|
-
"@taquito/
|
|
73
|
-
"@taquito/taquito": "^21.0.0-beta.1",
|
|
70
|
+
"@airgap/beacon-dapp": "^4.3.2-beta.0",
|
|
71
|
+
"@taquito/core": "^21.0.0",
|
|
72
|
+
"@taquito/taquito": "^21.0.0",
|
|
74
73
|
"@testing-library/react": "^16.0.1"
|
|
75
74
|
},
|
|
76
75
|
"devDependencies": {
|
|
77
76
|
"@types/bluebird": "^3.5.42",
|
|
78
77
|
"@types/chrome": "0.0.269",
|
|
79
78
|
"@types/jest": "^29.5.12",
|
|
80
|
-
"@types/node": "^
|
|
79
|
+
"@types/node": "^18",
|
|
81
80
|
"@types/ws": "^8.5.12",
|
|
82
81
|
"@typescript-eslint/eslint-plugin": "^6.21.0",
|
|
83
82
|
"@typescript-eslint/parser": "^6.21.0",
|
|
@@ -105,5 +104,5 @@
|
|
|
105
104
|
"webpack": "^5.94.0",
|
|
106
105
|
"webpack-cli": "^5.1.4"
|
|
107
106
|
},
|
|
108
|
-
"gitHead": "
|
|
107
|
+
"gitHead": "655216b13995860187b1a1baf3c87e90b4fd69cb"
|
|
109
108
|
}
|