@opexa/portal-sdk 0.0.83 → 0.0.84

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.
@@ -761,7 +761,7 @@ export interface SendVerificationCodeMutationVariables {
761
761
  recipient: string;
762
762
  };
763
763
  }
764
- export type SendVerificationCodeError__Next = 'NotReadyToSendVerficationCodeError' | 'AccountNotFound';
764
+ export type SendVerificationCodeError__Next = 'NotReadyToSendVerficationCodeError' | 'RateLimitExceededError' | 'AccountNotFoundError';
765
765
  export interface SendVerificationCodeInput__Next {
766
766
  channel: 'SMS' | 'EMAIL';
767
767
  recipient: string;
@@ -905,8 +905,8 @@ export type CreateSessionMutation = {
905
905
  refreshToken?: never;
906
906
  authenticator: Authenticator;
907
907
  };
908
- export type CreateSessionError = 'AccountNotFound' | 'AccountBlacklisted';
909
- export type RefreshSessionError = 'InvalidToken' | 'AccountBlacklisted' | 'SessionExpired';
908
+ export type CreateSessionError = 'AccountNotFoundError' | 'AccountBlacklistedError';
909
+ export type RefreshSessionError = 'InvalidTokenError' | 'AccountBlacklistedError' | 'SessionExpiredError';
910
910
  export interface RefreshSessionMutation {
911
911
  accessToken: string;
912
912
  refreshToken: string;
@@ -917,7 +917,7 @@ export interface SecurityQuestionAuthenticateInput {
917
917
  secretAnswer: string;
918
918
  }
919
919
  export type AuthenticateInput = SecurityQuestionAuthenticateInput;
920
- export type AuthenticateError = 'InvalidTokenOrSecretAnswer';
920
+ export type AuthenticateError = 'InvalidTokenOrSecretAnswerError';
921
921
  export interface AuthenticateMutation {
922
922
  session: Session;
923
923
  accessToken: string;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.0.83",
4
+ "version": "0.0.84",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "typings": "dist/index.d.ts",