@portal-hq/provider 4.7.0 → 4.8.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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. package/types.d.ts +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@portal-hq/provider",
3
- "version": "4.7.0",
3
+ "version": "4.8.0",
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": "^4.7.0",
23
- "@portal-hq/utils": "^4.7.0",
22
+ "@portal-hq/connect": "^4.8.0",
23
+ "@portal-hq/utils": "^4.8.0",
24
24
  "@types/react-native-uuid": "^2.0.0",
25
25
  "react-native-uuid": "^2.0.3"
26
26
  },
@@ -32,5 +32,5 @@
32
32
  "ts-jest": "^29.0.3",
33
33
  "typescript": "^4.8.4"
34
34
  },
35
- "gitHead": "3125e96a72c384e33229138b63ff3791818b0833"
35
+ "gitHead": "c67b5068d5245eeab6b760ee01298d88965bf386"
36
36
  }
package/types.d.ts CHANGED
@@ -103,7 +103,7 @@ export interface ProviderOptions {
103
103
  // Required
104
104
  apiKey: string
105
105
  keychain: KeychainAdapter
106
- gatewayConfig: GatewayLike
106
+ gatewayConfig?: GatewayLike
107
107
 
108
108
  // Optional
109
109
  chainId?: string
@@ -146,7 +146,7 @@ export interface ProviderOptions {
146
146
  // Required
147
147
  apiKey: string
148
148
  keychain: KeychainAdapter
149
- gatewayConfig: GatewayLike
149
+ gatewayConfig?: GatewayLike
150
150
 
151
151
  // Optional
152
152
  autoApprove?: boolean