@getpara/server-sdk 2.0.0-alpha.13 → 2.0.0-alpha.14

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.
@@ -66,6 +66,11 @@ class Para extends import_core_sdk.default {
66
66
  getPlatformUtils() {
67
67
  return new import_ServerUtils.ServerUtils();
68
68
  }
69
+ isPasskeySupported() {
70
+ return __async(this, null, function* () {
71
+ return false;
72
+ });
73
+ }
69
74
  /**
70
75
  * Claims a pregenerated wallet.
71
76
  *
@@ -17,6 +17,9 @@ class Para extends ParaCore {
17
17
  getPlatformUtils() {
18
18
  return new ServerUtils();
19
19
  }
20
+ async isPasskeySupported() {
21
+ return false;
22
+ }
20
23
  /**
21
24
  * Claims a pregenerated wallet.
22
25
  *
@@ -2,6 +2,7 @@ import ParaCore, { PlatformUtils, ConstructorOpts, Environment, CoreMethodParams
2
2
  export declare class Para extends ParaCore {
3
3
  constructor(env: Environment, apiKey?: string, opts?: ConstructorOpts);
4
4
  protected getPlatformUtils(): PlatformUtils;
5
+ isPasskeySupported(): Promise<boolean>;
5
6
  /**
6
7
  * Claims a pregenerated wallet.
7
8
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@getpara/server-sdk",
3
- "version": "2.0.0-alpha.13",
3
+ "version": "2.0.0-alpha.14",
4
4
  "main": "dist/cjs/index.js",
5
5
  "module": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -9,8 +9,8 @@
9
9
  "wasm_exec.js"
10
10
  ],
11
11
  "dependencies": {
12
- "@getpara/core-sdk": "2.0.0-alpha.13",
13
- "@getpara/user-management-client": "2.0.0-alpha.13",
12
+ "@getpara/core-sdk": "2.0.0-alpha.14",
13
+ "@getpara/user-management-client": "2.0.0-alpha.14",
14
14
  "@sentry/node": "^9.1.0",
15
15
  "uuid": "^11.1.0",
16
16
  "ws": "^8.14.2"
@@ -31,5 +31,5 @@
31
31
  "dist",
32
32
  "package.json"
33
33
  ],
34
- "gitHead": "fbd9384b1b3fb8577f9d6c323d4e41d0de1ac83b"
34
+ "gitHead": "03898846281bf37536a6ed12dede119e6171ad45"
35
35
  }