@opexa/portal-sdk 0.0.130 → 0.0.132

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.
@@ -1,4 +1,3 @@
1
- import { TurnoverRequirementType } from '../services';
2
1
  import { OperationResult } from '../utils/types';
3
2
  import type * as Internal from '../services';
4
3
  type WithCursor<T> = T & {
@@ -197,6 +196,7 @@ export interface UpdateAccountInput {
197
196
  secretQuestion?: SecretQuestion;
198
197
  secretAnswer?: string;
199
198
  dateOfBirth?: Date | string;
199
+ branchCode?: string;
200
200
  }
201
201
  export type UpdateAccountError = UnionAlias<Internal.UpdateMemberAccountError>;
202
202
  export type UpdateAccountReturn = OperationResult<UpdateAccountError>;
@@ -654,6 +654,7 @@ export interface Promo {
654
654
  dateTimeCreated: Date;
655
655
  dateTimeLastUpdated: Date;
656
656
  }
657
+ export type TurnoverRequirementType = UnionAlias<Internal.TurnoverRequirementType>;
657
658
  export interface SpotBonusPromo {
658
659
  id: string;
659
660
  name: string;
@@ -846,7 +847,8 @@ export interface UnreadMessagesCountInput extends Internal.UnreadMessagesCountQu
846
847
  }
847
848
  export type UnreadMessagesCountReturn = OperationResult<never, number>;
848
849
  export type ClaimRewardReturn = OperationResult<ClaimRewardError>;
849
- export type OnboardingStatusReturn = OperationResult<never, Internal.OnboardingStatus>;
850
+ export type OnboardingStatus = UnionAlias<Internal.OnboardingStatus>;
851
+ export type OnboardingStatusReturn = OperationResult<never, OnboardingStatus>;
850
852
  export type OnboardingPlayerExperience = UnionAlias<Internal.OnboardingPlayerExperience>;
851
853
  export interface CompleteOnboardingInput {
852
854
  playerExperience: OnboardingPlayerExperience;
@@ -834,6 +834,7 @@ export interface UpdateMemberAccountMutationVariables {
834
834
  secretQuestion?: SecretQuestion;
835
835
  secretAnswer?: string;
836
836
  birthDay?: string;
837
+ branchCode?: string;
837
838
  };
838
839
  };
839
840
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opexa/portal-sdk",
3
3
  "type": "module",
4
- "version": "0.0.130",
4
+ "version": "0.0.132",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
7
7
  "typings": "dist/index.d.ts",