@bytexbyte/ike-app-api 1.0.32 → 1.0.34

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.
@@ -90,7 +90,7 @@ export declare type SignInPhoneOTP = (provider: 'phone-otp', form: {
90
90
  id: string;
91
91
  idVerified: Date | null;
92
92
  } | {
93
- error: 'Authentication error.' | 'Field(s) cannot be empty.' | 'Invalid OTP code.';
93
+ error: 'Authentication error.' | 'Field(s) cannot be empty.' | 'OTP incorrect';
94
94
  }>;
95
95
  export declare type SignInPhoneBiometrics = (provider: 'phone-biometrics', form: {
96
96
  publicKey: string;
@@ -17,7 +17,7 @@ declare class IKEAppRsaApi extends BxBApi {
17
17
  signedToken: number[];
18
18
  tokenId: string;
19
19
  }): Promise<{
20
- verified: boolean;
20
+ isVerified: boolean;
21
21
  } | {
22
22
  error: 'tokenId is required' | 'Invalid token';
23
23
  }>;
@@ -25,7 +25,7 @@ declare class IKEAppRsaApi extends BxBApi {
25
25
  encryptedToken: number[];
26
26
  tokenId: string;
27
27
  }): Promise<{
28
- verified: boolean;
28
+ isVerified: boolean;
29
29
  } | {
30
30
  error: 'tokenId is required' | 'Invalid token' | 'Decryption failed';
31
31
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bytexbyte/ike-app-api",
3
- "version": "1.0.32",
3
+ "version": "1.0.34",
4
4
  "description": "app api",
5
5
  "main": "lib/index.js",
6
6
  "types": "lib/index.d.ts",