@portal-hq/provider 3.0.0 → 3.0.2

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.
@@ -64,6 +64,7 @@ class MpcSigner {
64
64
  const signingShare = yield this.signingShare;
65
65
  const metadata = {
66
66
  clientPlatform: 'REACT_NATIVE',
67
+ isMultiBackupEnabled: this.featureFlags.isMultiBackupEnabled,
67
68
  mpcServerVersion: this.version,
68
69
  optimized: this.featureFlags.optimized,
69
70
  };
@@ -62,6 +62,7 @@ class MpcSigner {
62
62
  const signingShare = yield this.signingShare;
63
63
  const metadata = {
64
64
  clientPlatform: 'REACT_NATIVE',
65
+ isMultiBackupEnabled: this.featureFlags.isMultiBackupEnabled,
65
66
  mpcServerVersion: this.version,
66
67
  optimized: this.featureFlags.optimized,
67
68
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@portal-hq/provider",
3
- "version": "3.0.0",
3
+ "version": "3.0.2",
4
4
  "license": "MIT",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/esm/index",
@@ -19,8 +19,8 @@
19
19
  "test": "jest"
20
20
  },
21
21
  "dependencies": {
22
- "@portal-hq/connect": "^3.0.0",
23
- "@portal-hq/utils": "^3.0.0"
22
+ "@portal-hq/connect": "^3.0.2",
23
+ "@portal-hq/utils": "^3.0.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@babel/preset-typescript": "^7.18.6",
@@ -30,5 +30,5 @@
30
30
  "ts-jest": "^29.0.3",
31
31
  "typescript": "^4.8.4"
32
32
  },
33
- "gitHead": "1f49bc43f0778a40089e1d736fbb63eb952b6001"
33
+ "gitHead": "4df8790ada8d2e116dc5b30c94875f224bee0a70"
34
34
  }
@@ -75,6 +75,7 @@ class MpcSigner implements Signer {
75
75
 
76
76
  const metadata: PortalMobileMpcMetadata = {
77
77
  clientPlatform: 'REACT_NATIVE',
78
+ isMultiBackupEnabled: this.featureFlags.isMultiBackupEnabled,
78
79
  mpcServerVersion: this.version,
79
80
  optimized: this.featureFlags.optimized,
80
81
  }
package/types.d.ts CHANGED
@@ -35,6 +35,7 @@ export interface PortalMobileMpcMetadata {
35
35
  | 'PASSWORD'
36
36
  | 'UNKNOWN'
37
37
  clientPlatform: string
38
+ isMultiBackupEnabled?: boolean
38
39
  mpcServerVersion: string
39
40
  optimized: boolean
40
41
  }