@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.
- package/dist/sdk/types.d.ts +4 -2
- package/dist/services/types.d.ts +1 -0
- package/package.json +1 -1
package/dist/sdk/types.d.ts
CHANGED
|
@@ -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
|
|
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;
|
package/dist/services/types.d.ts
CHANGED