@getpara/react-native-wallet 1.0.2-dev.1 → 1.0.2-dev.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.
@@ -46,4 +46,6 @@ export declare class ParaMobile extends ParaCore {
46
46
  * @returns {Promise<Wallet[]>} An array of user wallets.
47
47
  */
48
48
  login(email?: string, phone?: string, countryCode?: CountryCallingCode): Promise<void>;
49
+ protected isPortal(): boolean;
50
+ protected isParaConnect(): boolean;
49
51
  }
@@ -238,4 +238,10 @@ export class ParaMobile extends ParaCore {
238
238
  yield this.setWallets(walletsToInsert);
239
239
  });
240
240
  }
241
+ isPortal() {
242
+ return false;
243
+ }
244
+ isParaConnect() {
245
+ return false;
246
+ }
241
247
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/react-native-wallet",
3
- "version": "1.0.2-dev.1",
3
+ "version": "1.0.2-dev.2",
4
4
  "description": "Para Wallet for React Native",
5
5
  "homepage": "https://getpara.com",
6
6
  "author": "Para Team <hello@getpara.com> (https://getpara.com)",
@@ -296,4 +296,12 @@ export class ParaMobile extends ParaCore {
296
296
 
297
297
  await this.setWallets(walletsToInsert);
298
298
  }
299
+
300
+ protected isPortal(): boolean {
301
+ return false;
302
+ }
303
+
304
+ protected isParaConnect(): boolean {
305
+ return false;
306
+ }
299
307
  }