@opexa/portal-sdk 0.59.43 → 0.59.45
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/chunk-IX2MIQGU.js +6232 -0
- package/dist/chunk-IX2MIQGU.js.map +1 -0
- package/dist/index.cjs +89 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +113 -2233
- package/dist/index.d.ts +113 -2233
- package/dist/index.js +52 -6195
- package/dist/index.js.map +1 -1
- package/dist/services/index.cjs +6243 -0
- package/dist/services/index.cjs.map +1 -0
- package/dist/services/index.d.cts +315 -0
- package/dist/services/index.d.ts +315 -0
- package/dist/services/index.js +3 -0
- package/dist/services/index.js.map +1 -0
- package/dist/types-DvDyLFZr.d.cts +4538 -0
- package/dist/types-DvDyLFZr.d.ts +4538 -0
- package/package.json +17 -1
|
@@ -0,0 +1,4538 @@
|
|
|
1
|
+
type GenericObject = Record<string, any>;
|
|
2
|
+
type Assign<Target, Source> = Omit<Target, keyof Source> & Source;
|
|
3
|
+
type Alias<T> = T & {
|
|
4
|
+
_?: never;
|
|
5
|
+
};
|
|
6
|
+
type HttpError = /* 400 */ 'HttpBadRequest' | /* 401 */ 'HttpUnauthorized' | /* 403 */ 'HttpForbidden' | /* 404 */ 'HttpNotFound' | /* 408 */ 'HttpRequestTimeout' | /* 429 */ 'HttpTooManyRequests' | /* 500 */ 'HttpInternalServerError';
|
|
7
|
+
type OperationError<T extends string = string> = {
|
|
8
|
+
name: T;
|
|
9
|
+
message: string;
|
|
10
|
+
};
|
|
11
|
+
type OperationResult<Error extends string = never, Data = never> = [
|
|
12
|
+
Data
|
|
13
|
+
] extends [never] ? {
|
|
14
|
+
ok: false;
|
|
15
|
+
data?: never;
|
|
16
|
+
error: [Error] extends [never] ? OperationError<HttpError | 'UnknownError'> : OperationError<Error> | OperationError<HttpError | 'UnknownError'>;
|
|
17
|
+
} | {
|
|
18
|
+
ok: true;
|
|
19
|
+
data?: never;
|
|
20
|
+
error?: never;
|
|
21
|
+
} : {
|
|
22
|
+
ok: false;
|
|
23
|
+
data?: never;
|
|
24
|
+
error: [Error] extends [never] ? OperationError<HttpError | 'UnknownError'> : OperationError<Error> | OperationError<HttpError | 'UnknownError'>;
|
|
25
|
+
} | {
|
|
26
|
+
ok: true;
|
|
27
|
+
data: Data;
|
|
28
|
+
error?: never;
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
type ModifiableKey = 'mode' | 'cache' | 'signal' | 'headers' | 'integrity' | 'keepalive' | 'credentials';
|
|
32
|
+
type Modifiable = {
|
|
33
|
+
[K in ModifiableKey]: Request[K];
|
|
34
|
+
};
|
|
35
|
+
interface ModifiedRequest extends Readonly<Omit<Request, ModifiableKey>>, Modifiable {
|
|
36
|
+
}
|
|
37
|
+
type GraphQLClientMiddleware = (request: ModifiedRequest) => ModifiedRequest | Promise<ModifiedRequest>;
|
|
38
|
+
interface GraphQLClientFetchOptions extends Omit<RequestInit, 'body' | 'method'> {
|
|
39
|
+
}
|
|
40
|
+
interface GraphQLClientConfig {
|
|
41
|
+
fetch?: typeof globalThis.fetch | null;
|
|
42
|
+
fetchOptions?: GraphQLClientFetchOptions;
|
|
43
|
+
middlewares?: GraphQLClientMiddleware[];
|
|
44
|
+
}
|
|
45
|
+
type Getter<T> = () => T;
|
|
46
|
+
declare class GraphQLClient {
|
|
47
|
+
private url;
|
|
48
|
+
private config;
|
|
49
|
+
constructor(url: string, config?: Getter<GraphQLClientConfig> | GraphQLClientConfig);
|
|
50
|
+
request<Data, Variables extends GenericObject = GenericObject>(query: string, variables?: Variables, userOptions?: GraphQLClientFetchOptions): Promise<OperationResult<never, Data>>;
|
|
51
|
+
/** Single file upload */
|
|
52
|
+
upload<Data, Variables extends GenericObject = GenericObject>(query: string, variables: Variables, options?: GraphQLClientFetchOptions): Promise<OperationResult<never, Data>>;
|
|
53
|
+
private exec;
|
|
54
|
+
private runMiddlewares;
|
|
55
|
+
private createUploadBody;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
type ID = Alias<string>;
|
|
59
|
+
type Decimal = Alias<string>;
|
|
60
|
+
type DateString = Alias<string>;
|
|
61
|
+
type Html = Alias<string>;
|
|
62
|
+
interface Edge<T> {
|
|
63
|
+
cursor: string;
|
|
64
|
+
node: T;
|
|
65
|
+
}
|
|
66
|
+
interface PageInfo {
|
|
67
|
+
hasNextPage: boolean;
|
|
68
|
+
endCursor?: string | null;
|
|
69
|
+
}
|
|
70
|
+
interface PaginatedQueryResult$1<T> {
|
|
71
|
+
edges: Edge<T>[];
|
|
72
|
+
pageInfo: PageInfo;
|
|
73
|
+
totalCount: number;
|
|
74
|
+
}
|
|
75
|
+
type PaginatedQuery<Key extends string, T> = Record<Key, PaginatedQueryResult$1<T>>;
|
|
76
|
+
interface ObjectIdFilterField {
|
|
77
|
+
equal?: string;
|
|
78
|
+
notEqual?: string;
|
|
79
|
+
in?: string[];
|
|
80
|
+
notIn?: string[];
|
|
81
|
+
}
|
|
82
|
+
interface StringFilterField {
|
|
83
|
+
equal?: string;
|
|
84
|
+
notEqual?: string;
|
|
85
|
+
in?: string[];
|
|
86
|
+
notIn?: string[];
|
|
87
|
+
}
|
|
88
|
+
interface NumberFilterField {
|
|
89
|
+
equal?: number;
|
|
90
|
+
notEqual?: number;
|
|
91
|
+
in?: number[];
|
|
92
|
+
notIn?: number[];
|
|
93
|
+
lesserThan?: number;
|
|
94
|
+
lesserThanOrEqual?: number;
|
|
95
|
+
greaterThan?: number;
|
|
96
|
+
greaterThanOrEqual?: number;
|
|
97
|
+
}
|
|
98
|
+
interface BooleanFilterField {
|
|
99
|
+
equal?: boolean;
|
|
100
|
+
notEqual?: boolean;
|
|
101
|
+
in?: boolean[];
|
|
102
|
+
notIn?: boolean[];
|
|
103
|
+
}
|
|
104
|
+
interface DateFilterField {
|
|
105
|
+
equal?: Date | string;
|
|
106
|
+
notEqual?: Date | string;
|
|
107
|
+
in?: Date | string[];
|
|
108
|
+
notIn?: Date | string[];
|
|
109
|
+
lesserThan?: Date | string;
|
|
110
|
+
lesserThanOrEqual?: Date | string;
|
|
111
|
+
greaterThan?: Date | string;
|
|
112
|
+
greaterThanOrEqual?: Date | string;
|
|
113
|
+
}
|
|
114
|
+
interface EnumFilterField<T> {
|
|
115
|
+
equal?: T;
|
|
116
|
+
notEqual?: T;
|
|
117
|
+
in?: T[];
|
|
118
|
+
notIn?: T[];
|
|
119
|
+
}
|
|
120
|
+
type SortOrder = 'ASC' | 'DESC';
|
|
121
|
+
type FileStatus = 'UPLOADING' | 'READY' | 'FAILED' | 'DELETED';
|
|
122
|
+
interface File$1 {
|
|
123
|
+
id: string;
|
|
124
|
+
url?: string;
|
|
125
|
+
status: FileStatus;
|
|
126
|
+
}
|
|
127
|
+
interface FileQuery {
|
|
128
|
+
node?: File$1 | null;
|
|
129
|
+
}
|
|
130
|
+
interface FileQueryVariables {
|
|
131
|
+
id: string;
|
|
132
|
+
}
|
|
133
|
+
type UploadPrivateImageFileError = 'FileFormatNotSupportedError' | 'FileNameTooLongError' | 'FileSizeTooBigError';
|
|
134
|
+
interface UploadPrivateImageFileMutation {
|
|
135
|
+
uploadPrivateImageFile?: null | {
|
|
136
|
+
__typename: UploadPrivateImageFileError;
|
|
137
|
+
};
|
|
138
|
+
}
|
|
139
|
+
interface UploadPrivateImageFileMutationVariables {
|
|
140
|
+
input: {
|
|
141
|
+
id: string;
|
|
142
|
+
file: globalThis.File;
|
|
143
|
+
};
|
|
144
|
+
}
|
|
145
|
+
type AnnouncementType$1 = 'RELEASE' | 'SCHEDULED_MAINTENANCE';
|
|
146
|
+
type AnnouncementStatus$1 = 'ACTIVE' | 'INACTIVE';
|
|
147
|
+
type AnnouncementVisibility = 'MEMBER' | 'OPERATOR' | 'GLOBAL';
|
|
148
|
+
interface Announcement$1 {
|
|
149
|
+
id: string;
|
|
150
|
+
type: AnnouncementType$1;
|
|
151
|
+
title: string;
|
|
152
|
+
status: AnnouncementStatus$1;
|
|
153
|
+
message: Html;
|
|
154
|
+
activationStartDateTime: DateString;
|
|
155
|
+
activationEndDateTime: DateString;
|
|
156
|
+
dateTimeCreated: DateString;
|
|
157
|
+
dateTimeLastUpdated: DateString;
|
|
158
|
+
}
|
|
159
|
+
interface AnnouncementsQuery extends PaginatedQuery<'announcements', Announcement$1> {
|
|
160
|
+
}
|
|
161
|
+
interface AnnouncementsQueryVariables {
|
|
162
|
+
first?: number;
|
|
163
|
+
after?: string;
|
|
164
|
+
filter?: {
|
|
165
|
+
type?: EnumFilterField<AnnouncementType$1>;
|
|
166
|
+
visibility?: EnumFilterField<AnnouncementVisibility>;
|
|
167
|
+
activationStartDateTime?: DateFilterField;
|
|
168
|
+
activationEndDateTime?: DateFilterField;
|
|
169
|
+
};
|
|
170
|
+
}
|
|
171
|
+
type GameType$1 = 'SLOTS' | 'SPORTS' | 'FISHING' | 'BINGO' | 'LIVE' | 'GAMES' | 'TABLE' | 'SPECIALTY' | 'NUMERICAL' | 'NUMERIC' | 'ARCADE';
|
|
172
|
+
type GameProvider$1 = 'JILI' | 'JILI_BINGO' | 'PGSOFT' | 'FACHAI' | 'BTI' | 'DG' | 'PLAYTECH' | 'E2E' | 'ONEAPI_EVOLUTION' | 'EVOLUTION' | 'EVOLUTION_NETENT' | 'EVOLUTION_REDTIGER' | 'EVOLUTION_TAP_A_ROO' | 'MEGABALL' | 'MEGA2SPIN' | 'DARWIN' | 'RTG' | 'DRBINGO' | 'HOLLYWOODTV' | 'CQ9' | 'JDB' | 'HABANERO' | 'DIGITAIN' | 'SPINIX' | 'JOKER' | 'HACKSAW' | 'EVOLUTIONNETENT' | 'JDBGTF' | 'JDBSPRIBE' | 'MICROGAMING' | 'RELAXGAMING' | 'EVOPLAY' | 'BOOONGO' | 'BGAMING' | 'KINGMAKER' | 'KINGMIDAS' | 'YELLOWBAT' | 'ETENGJUE' | 'SABA' | 'PRAGMATICPLAY' | 'SPRIBE' | 'EZUGI' | 'ALIZE' | 'NO_LIMIT_CITY' | 'BIG_TIME_GAMING' | 'SAGAMING' | 'ONEAPI_SPADEGAMING' | 'JK8' | 'TEST' | 'RUBYPLAY' | 'ORTIZ' | 'ONEAPI_SUPERBULLGAMING' | 'SIMPLEPLAY';
|
|
173
|
+
type GameStatus = 'ACTIVE' | 'INACTIVE';
|
|
174
|
+
type GameTag$1 = 'HOT' | 'hot' | 'NEW' | 'new' | 'TOP' | 'top' | 'POPULAR' | 'popular' | 'VIRTUAL' | 'virtual' | (string & {});
|
|
175
|
+
interface Game$1 {
|
|
176
|
+
id: string;
|
|
177
|
+
game: string;
|
|
178
|
+
name: string;
|
|
179
|
+
type: GameType$1;
|
|
180
|
+
provider: GameProvider$1;
|
|
181
|
+
tags?: GameTag$1[];
|
|
182
|
+
rank: Decimal;
|
|
183
|
+
site: string;
|
|
184
|
+
image: string;
|
|
185
|
+
cursor: string;
|
|
186
|
+
status: GameStatus;
|
|
187
|
+
platform: string;
|
|
188
|
+
reference: string;
|
|
189
|
+
customImage?: string;
|
|
190
|
+
dateTimeCreated: DateString;
|
|
191
|
+
dateTimeLastUpdated: DateString;
|
|
192
|
+
favorite: boolean;
|
|
193
|
+
}
|
|
194
|
+
interface WalletGame$1 {
|
|
195
|
+
id: string;
|
|
196
|
+
name: string;
|
|
197
|
+
type: GameType$1;
|
|
198
|
+
provider: GameProvider$1;
|
|
199
|
+
favorite: boolean;
|
|
200
|
+
}
|
|
201
|
+
interface GameQueryVariables {
|
|
202
|
+
id: string;
|
|
203
|
+
}
|
|
204
|
+
interface GameQuery {
|
|
205
|
+
data?: Game$1 | null;
|
|
206
|
+
}
|
|
207
|
+
interface GamesQueryVariables {
|
|
208
|
+
after?: string;
|
|
209
|
+
first?: number;
|
|
210
|
+
search?: string;
|
|
211
|
+
filter?: {
|
|
212
|
+
tags?: EnumFilterField<GameTag$1>;
|
|
213
|
+
type?: EnumFilterField<GameType$1>;
|
|
214
|
+
provider?: EnumFilterField<GameProvider$1>;
|
|
215
|
+
reference?: ObjectIdFilterField;
|
|
216
|
+
};
|
|
217
|
+
sort?: SortOrder;
|
|
218
|
+
}
|
|
219
|
+
interface WalletGamesQueryVariables {
|
|
220
|
+
after?: string;
|
|
221
|
+
first?: number;
|
|
222
|
+
filter?: {
|
|
223
|
+
type?: EnumFilterField<GameType$1>;
|
|
224
|
+
provider?: EnumFilterField<GameProvider$1>;
|
|
225
|
+
name?: StringFilterField;
|
|
226
|
+
id?: ObjectIdFilterField;
|
|
227
|
+
};
|
|
228
|
+
}
|
|
229
|
+
interface GamesQueryVariables__Next {
|
|
230
|
+
after?: string;
|
|
231
|
+
first?: number;
|
|
232
|
+
search?: string;
|
|
233
|
+
filter?: {
|
|
234
|
+
tags?: EnumFilterField<GameTag$1>;
|
|
235
|
+
type?: EnumFilterField<GameType$1>;
|
|
236
|
+
provider?: EnumFilterField<GameProvider$1>;
|
|
237
|
+
reference?: ObjectIdFilterField;
|
|
238
|
+
};
|
|
239
|
+
sort?: {
|
|
240
|
+
order: SortOrder;
|
|
241
|
+
context: string;
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
interface GamesQuery {
|
|
245
|
+
data: Game$1[];
|
|
246
|
+
next?: string | null;
|
|
247
|
+
totalCount?: number | null;
|
|
248
|
+
}
|
|
249
|
+
interface WalletGamesQuery extends PaginatedQuery<'games', WalletGame$1> {
|
|
250
|
+
}
|
|
251
|
+
interface RecommendedGame {
|
|
252
|
+
id: string;
|
|
253
|
+
}
|
|
254
|
+
interface RecommendedGamesQuery {
|
|
255
|
+
recommendedGames: RecommendedGame[];
|
|
256
|
+
}
|
|
257
|
+
type GameSessionStatus$1 = 'PENDING' | 'STARTING' | 'READY' | 'ENDED' | 'CANCELLED';
|
|
258
|
+
interface GameSessionLaunchOptions$1 {
|
|
259
|
+
token?: string | null;
|
|
260
|
+
[x: string]: unknown;
|
|
261
|
+
}
|
|
262
|
+
type GameSession$1<Legacy extends boolean = false> = [Legacy] extends [
|
|
263
|
+
true
|
|
264
|
+
] ? {
|
|
265
|
+
id: string;
|
|
266
|
+
game: {
|
|
267
|
+
id: string;
|
|
268
|
+
};
|
|
269
|
+
status: GameSessionStatus$1;
|
|
270
|
+
launchUrl?: string | null;
|
|
271
|
+
launchOptions?: GameSessionLaunchOptions$1 | null;
|
|
272
|
+
} : {
|
|
273
|
+
id: string;
|
|
274
|
+
game: string;
|
|
275
|
+
status: GameSessionStatus$1;
|
|
276
|
+
launchOptions?: GameSessionLaunchOptions$1 | null;
|
|
277
|
+
launchUrl?: string | null;
|
|
278
|
+
};
|
|
279
|
+
interface GameSessionQuery<Legacy extends boolean = false> {
|
|
280
|
+
node?: GameSession$1<Legacy> | null;
|
|
281
|
+
}
|
|
282
|
+
interface GameSessionQueryVariables {
|
|
283
|
+
id: string;
|
|
284
|
+
}
|
|
285
|
+
type CreateGameSessionError$1 = 'GameDoesNotExistError' | 'GameProviderNotEnabledError' | 'GameTypeNotEnabledError';
|
|
286
|
+
interface CreateGameSessionMutation {
|
|
287
|
+
createGameSession?: null | {
|
|
288
|
+
__typename: CreateGameSessionError$1;
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
interface CreateGameSessionMutationVariables {
|
|
292
|
+
input: {
|
|
293
|
+
id: string;
|
|
294
|
+
game: string;
|
|
295
|
+
homepageUrl?: string;
|
|
296
|
+
};
|
|
297
|
+
}
|
|
298
|
+
type EndGameSessionError = 'GameSessionDoesNotExistError' | 'GameSessionAlreadyClosedError' | 'GameProviderError';
|
|
299
|
+
type EndGameSessionMutation<Legacy extends boolean = false> = [
|
|
300
|
+
Legacy
|
|
301
|
+
] extends [true] ? {
|
|
302
|
+
endGameSession?: null | {
|
|
303
|
+
__typename: EndGameSessionError;
|
|
304
|
+
};
|
|
305
|
+
} : {
|
|
306
|
+
endGameSession: boolean;
|
|
307
|
+
};
|
|
308
|
+
interface EndGameSessionMutationVariables {
|
|
309
|
+
input: {
|
|
310
|
+
id: string;
|
|
311
|
+
};
|
|
312
|
+
}
|
|
313
|
+
type BetRecordStatus$1 = 'STARTED' | 'SETTLED' | 'CANCELLED';
|
|
314
|
+
interface BetRecordMetadata {
|
|
315
|
+
odds?: string | null;
|
|
316
|
+
}
|
|
317
|
+
interface BetRecord$1 {
|
|
318
|
+
id: string;
|
|
319
|
+
game: {
|
|
320
|
+
id: string;
|
|
321
|
+
};
|
|
322
|
+
odds?: string;
|
|
323
|
+
status: BetRecordStatus$1;
|
|
324
|
+
serialCode: string;
|
|
325
|
+
vendorRoundId?: string | null;
|
|
326
|
+
bet: Decimal;
|
|
327
|
+
payout: Decimal;
|
|
328
|
+
validBet: Decimal;
|
|
329
|
+
jackpotContribution: Decimal;
|
|
330
|
+
jackpotPayout: Decimal;
|
|
331
|
+
winloss?: Decimal | null;
|
|
332
|
+
dateTimeSettled?: DateString | null;
|
|
333
|
+
dateTimeCreated: DateString;
|
|
334
|
+
dateTimeLastUpdated: DateString;
|
|
335
|
+
betContent?: string | null;
|
|
336
|
+
contestName?: string | null;
|
|
337
|
+
externalCategory?: string | null;
|
|
338
|
+
metadata?: BetRecordMetadata | null;
|
|
339
|
+
freeBetDrop?: FreeBetDrop$1;
|
|
340
|
+
freeBetPayout?: Decimal | null;
|
|
341
|
+
}
|
|
342
|
+
interface BetRecordsQuery {
|
|
343
|
+
member: PaginatedQuery<'betRecords', BetRecord$1>;
|
|
344
|
+
}
|
|
345
|
+
interface BetRecordsQueryVariables {
|
|
346
|
+
first?: number;
|
|
347
|
+
after?: string;
|
|
348
|
+
sort?: SortOrder;
|
|
349
|
+
filter?: {
|
|
350
|
+
game__type?: EnumFilterField<GameType$1>;
|
|
351
|
+
game__provider?: EnumFilterField<GameProvider$1>;
|
|
352
|
+
serialCode?: StringFilterField;
|
|
353
|
+
dateTimeCreated?: DateFilterField;
|
|
354
|
+
vendorRoundId?: StringFilterField;
|
|
355
|
+
status?: EnumFilterField<BetRecordStatus$1>;
|
|
356
|
+
freeBetDrop?: ObjectIdFilterField;
|
|
357
|
+
};
|
|
358
|
+
startDateTime?: DateFilterField;
|
|
359
|
+
endDateTime?: DateFilterField;
|
|
360
|
+
}
|
|
361
|
+
interface LatestBetRecord$1 {
|
|
362
|
+
id: string;
|
|
363
|
+
member: {
|
|
364
|
+
name: string;
|
|
365
|
+
};
|
|
366
|
+
game: {
|
|
367
|
+
id: string;
|
|
368
|
+
};
|
|
369
|
+
bet: Decimal;
|
|
370
|
+
payout: Decimal;
|
|
371
|
+
validBet: Decimal;
|
|
372
|
+
dateTimeSettled: DateString;
|
|
373
|
+
dateTimeCreated: DateString;
|
|
374
|
+
}
|
|
375
|
+
interface LatestBetRecordsQuery {
|
|
376
|
+
latestBetRecords: LatestBetRecord$1[];
|
|
377
|
+
}
|
|
378
|
+
type DepositType$1 = 'BANK' | 'GCASH' | 'MANUAL' | 'MAYA' | 'MAYA_APP' | 'QR_PH' | 'ONLINE_BANK' | 'MANUAL_BANK' | 'MANUAL_UPI' | 'AIO_GCASH' | 'AIO_PAY_MAYA' | 'AIO_GRAB_PAY' | 'AIO_PALAWAN_PAY' | 'GCASH_WEBPAY' | 'MAYA_WEBPAY' | 'TEST';
|
|
379
|
+
type DepositStatus$1 = 'PENDING' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'CONFIRMED' | 'CANCELLED' | 'FAILED';
|
|
380
|
+
type KnownDepositError$1 = 'INSUFFICIENT_BALANCE' | 'DEPOSIT_CREATION_REQUEST_FAILED' | 'DEPOSIT_EXECUTION_REQUEST_FAILED' | 'REQUEST_SESSION_EXPIRED' | 'REQUEST_TIMEOUT' | 'SYSTEM_CANCELLATION' | 'UNEXPECTED_ERROR' | 'FAILED_TO_PROCESS_PAYMENT' | 'MINIMUM_DEPOSIT_AMOUNT_NOT_MET' | 'UNTOUCHED';
|
|
381
|
+
type VoucherType$1 = 'BUILTIN' | 'LAZADA';
|
|
382
|
+
interface DepositRecord$1 {
|
|
383
|
+
id: string;
|
|
384
|
+
type: DepositType$1;
|
|
385
|
+
status: DepositStatus$1;
|
|
386
|
+
amount: Decimal;
|
|
387
|
+
netAmount: Decimal;
|
|
388
|
+
fee: Decimal;
|
|
389
|
+
reference?: string | null;
|
|
390
|
+
deposit: string;
|
|
391
|
+
depositNumber: string;
|
|
392
|
+
dateTimeCreated: DateString;
|
|
393
|
+
dateTimeLastUpdated: DateString;
|
|
394
|
+
error?: KnownDepositError$1 | (string & {});
|
|
395
|
+
}
|
|
396
|
+
interface DepositRecordsQuery {
|
|
397
|
+
member: PaginatedQuery<'depositRecords', DepositRecord$1>;
|
|
398
|
+
}
|
|
399
|
+
interface DepositRecordsQueryVariables {
|
|
400
|
+
first?: number;
|
|
401
|
+
after?: string;
|
|
402
|
+
filter?: {
|
|
403
|
+
id?: ObjectIdFilterField;
|
|
404
|
+
type?: EnumFilterField<DepositType$1>;
|
|
405
|
+
status?: EnumFilterField<DepositStatus$1>;
|
|
406
|
+
deposit?: ObjectIdFilterField;
|
|
407
|
+
depositNumber?: StringFilterField;
|
|
408
|
+
reference?: StringFilterField;
|
|
409
|
+
dateTimeCreated?: DateFilterField;
|
|
410
|
+
dateTimeLastUpdated?: DateFilterField;
|
|
411
|
+
};
|
|
412
|
+
}
|
|
413
|
+
type CreateDepositError$1 = 'DepositPromoMaximumAmountExceededError' | 'DepositPromoMinimumAmountNotMetError' | 'MaximumDepositAmountExceededError' | 'MinimumDepositAmountNotMetError' | 'MinimumFirstDepositAmountNotMetError' | 'PromoNotEnabledError' | 'WalletDoesNotExistError' | 'ReCAPTCHAVerificationFailedError' | 'UPIReferenceNotAvailableError' | 'GCashDirectApiRequestError';
|
|
414
|
+
type CreateTestDepositError = 'DepositPromoMaximumAmountExceededError' | 'DepositPromoMinimumAmountNotMetError' | 'MaximumDepositAmountExceededError' | 'MinimumDepositAmountNotMetError' | 'MinimumFirstDepositAmountNotMetError' | 'PromoNotEnabledError' | 'WalletDoesNotExistError';
|
|
415
|
+
type RedeemVoucherError = 'InvalidVoucherError' | 'VoucherAlreadyRedeemedError' | 'ExpiredVoucherError';
|
|
416
|
+
interface RedeemVoucherMutation {
|
|
417
|
+
redeemVoucher?: null | {
|
|
418
|
+
__typename: RedeemVoucherError;
|
|
419
|
+
};
|
|
420
|
+
}
|
|
421
|
+
interface CreateGCashDepositMutation {
|
|
422
|
+
createGCashDeposit?: null | {
|
|
423
|
+
__typename: CreateDepositError$1;
|
|
424
|
+
};
|
|
425
|
+
}
|
|
426
|
+
interface CreateGCashDepositMutationVariables {
|
|
427
|
+
input: {
|
|
428
|
+
id: string;
|
|
429
|
+
amount: Decimal;
|
|
430
|
+
promo?: string;
|
|
431
|
+
};
|
|
432
|
+
reCAPTCHAResponse?: string;
|
|
433
|
+
}
|
|
434
|
+
interface CreateGCashWebpayDepositMutation {
|
|
435
|
+
createGCashWebpayDeposit?: null | {
|
|
436
|
+
__typename: CreateDepositError$1;
|
|
437
|
+
};
|
|
438
|
+
}
|
|
439
|
+
interface CreateGCashWebpayDepositMutationVariables {
|
|
440
|
+
input: {
|
|
441
|
+
id: string;
|
|
442
|
+
amount: Decimal;
|
|
443
|
+
promo?: string;
|
|
444
|
+
successRedirectionUrl?: string;
|
|
445
|
+
cancelRedirectionUrl?: string;
|
|
446
|
+
};
|
|
447
|
+
reCAPTCHAResponse?: string;
|
|
448
|
+
}
|
|
449
|
+
interface CreateMayaWebpayDepositMutation {
|
|
450
|
+
createMayaWebpayDeposit?: null | {
|
|
451
|
+
__typename: CreateDepositError$1;
|
|
452
|
+
};
|
|
453
|
+
}
|
|
454
|
+
interface CreateMayaWebpayDepositMutationVariables {
|
|
455
|
+
input: {
|
|
456
|
+
id: string;
|
|
457
|
+
amount: string;
|
|
458
|
+
promo?: string;
|
|
459
|
+
redirectUrl: string;
|
|
460
|
+
};
|
|
461
|
+
reCAPTCHAResponse?: string;
|
|
462
|
+
}
|
|
463
|
+
interface CreateMayaDepositMutation {
|
|
464
|
+
createMayaDeposit?: null | {
|
|
465
|
+
__typename: CreateDepositError$1;
|
|
466
|
+
};
|
|
467
|
+
}
|
|
468
|
+
interface RedeemVoucherMutationVariables {
|
|
469
|
+
input: {
|
|
470
|
+
type: VoucherType$1;
|
|
471
|
+
code: string;
|
|
472
|
+
};
|
|
473
|
+
}
|
|
474
|
+
interface CreateMayaDepositMutationVariables {
|
|
475
|
+
input: {
|
|
476
|
+
id: string;
|
|
477
|
+
amount: Decimal;
|
|
478
|
+
promo?: string;
|
|
479
|
+
};
|
|
480
|
+
reCAPTCHAResponse?: string;
|
|
481
|
+
}
|
|
482
|
+
interface CreateTestDepositMutation {
|
|
483
|
+
createTestDeposit?: null | {
|
|
484
|
+
__typename: CreateTestDepositError;
|
|
485
|
+
};
|
|
486
|
+
}
|
|
487
|
+
interface CreateTestDepositMutationVariables {
|
|
488
|
+
input: {
|
|
489
|
+
id: string;
|
|
490
|
+
amount: Decimal;
|
|
491
|
+
promo?: string;
|
|
492
|
+
};
|
|
493
|
+
}
|
|
494
|
+
interface CreateAIOQRPHDepositMutation {
|
|
495
|
+
createAIOQRPHDeposit?: null | {
|
|
496
|
+
__typename: CreateDepositError$1;
|
|
497
|
+
};
|
|
498
|
+
}
|
|
499
|
+
interface CreateAiOGCashDepositMutation {
|
|
500
|
+
createAiOGCashDeposit?: null | {
|
|
501
|
+
__typename: CreateDepositError$1;
|
|
502
|
+
};
|
|
503
|
+
}
|
|
504
|
+
interface CreateAiOPayMayaDepositMutation {
|
|
505
|
+
createAiOPayMayaDeposit?: null | {
|
|
506
|
+
__typename: CreateDepositError$1;
|
|
507
|
+
};
|
|
508
|
+
}
|
|
509
|
+
interface CreateAiOGrabPayDepositMutation {
|
|
510
|
+
createAiOGrabPayDeposit?: null | {
|
|
511
|
+
__typename: CreateDepositError$1;
|
|
512
|
+
};
|
|
513
|
+
}
|
|
514
|
+
interface CreateAiOPalawanPayDepositMutation {
|
|
515
|
+
createAiOPalawanPayDeposit?: null | {
|
|
516
|
+
__typename: CreateDepositError$1;
|
|
517
|
+
};
|
|
518
|
+
}
|
|
519
|
+
interface CreateAIOOnlineBankDepositMutation {
|
|
520
|
+
createAIOOnlineBankDeposit?: null | {
|
|
521
|
+
__typename: CreateDepositError$1;
|
|
522
|
+
};
|
|
523
|
+
}
|
|
524
|
+
interface CreateManualBankDepositMutation {
|
|
525
|
+
createManualBankDeposit?: null | {
|
|
526
|
+
__typename: CreateDepositError$1;
|
|
527
|
+
};
|
|
528
|
+
}
|
|
529
|
+
interface CreateManualBankDepositMutation {
|
|
530
|
+
createManualBankDeposit?: null | {
|
|
531
|
+
__typename: CreateDepositError$1;
|
|
532
|
+
};
|
|
533
|
+
}
|
|
534
|
+
interface CreateManualUPIDepositMutation {
|
|
535
|
+
createManualUPIDeposit?: null | {
|
|
536
|
+
__typename: CreateDepositError$1;
|
|
537
|
+
};
|
|
538
|
+
}
|
|
539
|
+
interface CreateManualUPIDepositMutation {
|
|
540
|
+
createManualUPIDeposit?: null | {
|
|
541
|
+
__typename: CreateDepositError$1;
|
|
542
|
+
};
|
|
543
|
+
}
|
|
544
|
+
interface CreateAiOGCcashDepositMutationVariables {
|
|
545
|
+
input: {
|
|
546
|
+
id: string;
|
|
547
|
+
amount: Decimal;
|
|
548
|
+
promo?: string;
|
|
549
|
+
redirectUrl?: string;
|
|
550
|
+
};
|
|
551
|
+
reCAPTCHAResponse?: string;
|
|
552
|
+
}
|
|
553
|
+
interface CreateAiOPayMayaDepositMutationVariables {
|
|
554
|
+
input: {
|
|
555
|
+
id: string;
|
|
556
|
+
amount: Decimal;
|
|
557
|
+
promo?: string;
|
|
558
|
+
redirectUrl?: string;
|
|
559
|
+
};
|
|
560
|
+
reCAPTCHAResponse?: string;
|
|
561
|
+
}
|
|
562
|
+
interface CreateAiOGrabPayDepositMutationVariables {
|
|
563
|
+
input: {
|
|
564
|
+
id: string;
|
|
565
|
+
amount: Decimal;
|
|
566
|
+
promo?: string;
|
|
567
|
+
redirectUrl?: string;
|
|
568
|
+
};
|
|
569
|
+
reCAPTCHAResponse?: string;
|
|
570
|
+
}
|
|
571
|
+
interface CreateAiOPalawanPayDepositMutationVariables {
|
|
572
|
+
input: {
|
|
573
|
+
id: string;
|
|
574
|
+
amount: Decimal;
|
|
575
|
+
promo?: string;
|
|
576
|
+
redirectUrl?: string;
|
|
577
|
+
};
|
|
578
|
+
reCAPTCHAResponse?: string;
|
|
579
|
+
}
|
|
580
|
+
interface CreateAIOQRPHDepositMutationVariables {
|
|
581
|
+
input: {
|
|
582
|
+
id: string;
|
|
583
|
+
amount: Decimal;
|
|
584
|
+
promo?: string;
|
|
585
|
+
};
|
|
586
|
+
reCAPTCHAResponse?: string;
|
|
587
|
+
}
|
|
588
|
+
interface CreateAIOOnlineBankDepositMutationVariables {
|
|
589
|
+
input: {
|
|
590
|
+
id: string;
|
|
591
|
+
amount: Decimal;
|
|
592
|
+
promo?: string;
|
|
593
|
+
};
|
|
594
|
+
reCAPTCHAResponse?: string;
|
|
595
|
+
}
|
|
596
|
+
interface CreateManualBankDeposiMutationVariables {
|
|
597
|
+
input: {
|
|
598
|
+
id: string;
|
|
599
|
+
amount: Decimal;
|
|
600
|
+
referenceImage: string;
|
|
601
|
+
promo?: string;
|
|
602
|
+
};
|
|
603
|
+
reCAPTCHAResponse?: string;
|
|
604
|
+
}
|
|
605
|
+
interface CreateManualBankDepositMutationVariables {
|
|
606
|
+
input: {
|
|
607
|
+
id: string;
|
|
608
|
+
amount: Decimal;
|
|
609
|
+
reference: string;
|
|
610
|
+
promo?: string;
|
|
611
|
+
};
|
|
612
|
+
reCAPTCHAResponse?: string;
|
|
613
|
+
}
|
|
614
|
+
interface CreateManualUPIDepositMutationVariables {
|
|
615
|
+
input: {
|
|
616
|
+
id: string;
|
|
617
|
+
amount: Decimal;
|
|
618
|
+
reference: string;
|
|
619
|
+
referenceImage: string;
|
|
620
|
+
promo?: string;
|
|
621
|
+
};
|
|
622
|
+
reCAPTCHAResponse?: string;
|
|
623
|
+
}
|
|
624
|
+
interface CreateMayaAppDepositMutation {
|
|
625
|
+
createMayaAppDeposit?: null | {
|
|
626
|
+
__typename: CreateDepositError$1;
|
|
627
|
+
};
|
|
628
|
+
}
|
|
629
|
+
interface CreateMayaAppDepositMutationVariables {
|
|
630
|
+
input: {
|
|
631
|
+
id: string;
|
|
632
|
+
amount: Decimal;
|
|
633
|
+
promo?: string;
|
|
634
|
+
};
|
|
635
|
+
reCAPTCHAResponse?: string;
|
|
636
|
+
}
|
|
637
|
+
interface Deposit$1 {
|
|
638
|
+
id: string;
|
|
639
|
+
type: DepositType$1;
|
|
640
|
+
status: DepositStatus$1;
|
|
641
|
+
vca?: string | null;
|
|
642
|
+
qrCode?: string | null;
|
|
643
|
+
checkoutUrl?: string;
|
|
644
|
+
error?: KnownDepositError$1;
|
|
645
|
+
}
|
|
646
|
+
interface DepositQuery {
|
|
647
|
+
node?: Deposit$1 | null;
|
|
648
|
+
}
|
|
649
|
+
interface DepositQueryVariables {
|
|
650
|
+
id: string;
|
|
651
|
+
}
|
|
652
|
+
interface DepositsCountQuery {
|
|
653
|
+
member: {
|
|
654
|
+
depositsCount: number;
|
|
655
|
+
};
|
|
656
|
+
}
|
|
657
|
+
interface TouchGCashDepositMutation {
|
|
658
|
+
touchGCashDeposit: boolean;
|
|
659
|
+
}
|
|
660
|
+
interface TouchGCashDepositMutationVariables {
|
|
661
|
+
input: {
|
|
662
|
+
id: string;
|
|
663
|
+
};
|
|
664
|
+
}
|
|
665
|
+
interface TouchQrphDepositMutation {
|
|
666
|
+
touchQRPHDeposit: boolean;
|
|
667
|
+
}
|
|
668
|
+
interface TouchQrphDepositMutationVariables {
|
|
669
|
+
input: {
|
|
670
|
+
id: string;
|
|
671
|
+
};
|
|
672
|
+
}
|
|
673
|
+
interface CreateManualUpiDepositMutation {
|
|
674
|
+
createManualUPIDeposit?: null | {
|
|
675
|
+
__typename: CreateDepositError$1;
|
|
676
|
+
};
|
|
677
|
+
}
|
|
678
|
+
interface CreateManualUpiDepositMutationVariables {
|
|
679
|
+
input: {
|
|
680
|
+
id: string;
|
|
681
|
+
amount: Decimal;
|
|
682
|
+
reference: string;
|
|
683
|
+
promo?: string;
|
|
684
|
+
};
|
|
685
|
+
reCAPTCHAResponse?: string;
|
|
686
|
+
}
|
|
687
|
+
type Bank$1 = 'AUBKPHMM' | 'MBTCPHMM' | 'BNORPHMM' | 'MKRUPHM1';
|
|
688
|
+
type WithdrawalType$1 = 'MANUAL' | 'BANK' | 'GCASH' | 'MAYA_APP' | 'INSTAPAY' | 'MANUAL_UPI' | 'MANUAL_BANK' | 'GCASH_WEBPAY' | 'PISO_PAY_REMITTANCE' | 'GCASH_STANDARD_CASH_IN' | 'CABINET_WITHDRAWAL';
|
|
689
|
+
type WithdrawalStatus$1 = 'PENDING' | 'ACCEPTED' | 'APPROVED' | 'REJECTED' | 'CONFIRMED' | 'CANCELLED' | 'FAILED' | 'VOIDED';
|
|
690
|
+
type WithdrawalError$1 = 'WITHDRAWAL_CREATION_REQUEST_FAILED' | 'WITHDRAWAL_EXECUTION_REQUEST_FAILED' | 'REQUEST_SESSION_EXPIRED' | 'REQUEST_TIMEOUT' | 'SYSTEM_CANCELLATION' | 'UNEXPECTED_ERROR' | 'DAILY_PURCHASE_OR_DEPOSIT_LIMIT_EXCEEDED' | 'WITHDRAWAL_ACCOUNT_EMPTY' | 'FAILED_TO_PROCESS_PAYMENT';
|
|
691
|
+
interface WithdrawalRecord$1 {
|
|
692
|
+
id: string;
|
|
693
|
+
type: WithdrawalType$1;
|
|
694
|
+
fee: Decimal;
|
|
695
|
+
amount: Decimal;
|
|
696
|
+
netAmount: Decimal;
|
|
697
|
+
status: WithdrawalStatus$1;
|
|
698
|
+
reference?: string | null;
|
|
699
|
+
accountName?: string | null;
|
|
700
|
+
withdrawalNumber: string;
|
|
701
|
+
bank?: Bank$1 | null;
|
|
702
|
+
bankName?: string | null;
|
|
703
|
+
error?: WithdrawalError$1 | null;
|
|
704
|
+
recipientMobileNumber?: string | null;
|
|
705
|
+
dateTimeConfirmed?: DateString | null;
|
|
706
|
+
dateTimeCreated: DateString;
|
|
707
|
+
dateTimeLastUpdated: DateString;
|
|
708
|
+
serialCode: string;
|
|
709
|
+
}
|
|
710
|
+
interface WithdrawalRecordsQuery {
|
|
711
|
+
member: PaginatedQuery<'withdrawalRecords', WithdrawalRecord$1>;
|
|
712
|
+
}
|
|
713
|
+
interface WithdrawalRecordsQueryVariables {
|
|
714
|
+
first?: number;
|
|
715
|
+
after?: string;
|
|
716
|
+
filter?: {
|
|
717
|
+
id?: ObjectIdFilterField;
|
|
718
|
+
type?: EnumFilterField<WithdrawalType$1>;
|
|
719
|
+
status?: EnumFilterField<WithdrawalStatus$1>;
|
|
720
|
+
reference?: StringFilterField;
|
|
721
|
+
withdrawal?: ObjectIdFilterField;
|
|
722
|
+
withdrawalNumber?: StringFilterField;
|
|
723
|
+
dateTimeCreated?: DateFilterField;
|
|
724
|
+
dateTimeLastUpdated?: DateFilterField;
|
|
725
|
+
};
|
|
726
|
+
}
|
|
727
|
+
type CreateWithdrawalError$1 = 'AccountNotVerifiedError' | 'InvalidTransactionPasswordError' | 'InvalidWithdrawalAmountError' | 'MobileNumberNotVerifiedError' | 'NotEnoughBalanceError' | 'WithdrawalDailyLimitExceededError' | 'ReCAPTCHAVerificationFailedError' | 'WalletDoesNotExistError' | 'TurnoverRequirementNotYetFulfilledError' | 'InsufficientFundsError' | 'PlatformDoesNotExistError' | 'FirstDepositRequiredError';
|
|
728
|
+
interface CreateGCashWithdrawalMutation {
|
|
729
|
+
createGCashWithdrawal?: null | {
|
|
730
|
+
__typename: CreateWithdrawalError$1;
|
|
731
|
+
};
|
|
732
|
+
}
|
|
733
|
+
interface CreateGCashWithdrawalMutationVariables {
|
|
734
|
+
input: {
|
|
735
|
+
id: string;
|
|
736
|
+
amount: Decimal;
|
|
737
|
+
transactionPassword: string;
|
|
738
|
+
recipientMobileNumber: string;
|
|
739
|
+
};
|
|
740
|
+
reCAPTCHAResponse?: string;
|
|
741
|
+
}
|
|
742
|
+
interface CreateGCashStandardCashInWithdrawalMutation {
|
|
743
|
+
createGCashStandardCashInWithdrawal?: null | {
|
|
744
|
+
__typename: CreateWithdrawalError$1;
|
|
745
|
+
};
|
|
746
|
+
}
|
|
747
|
+
interface CreateGCashStandardCashInWithdrawalMutationVariables {
|
|
748
|
+
input: {
|
|
749
|
+
id: string;
|
|
750
|
+
amount: Decimal;
|
|
751
|
+
transactionPassword: string;
|
|
752
|
+
recipientMobileNumber: string;
|
|
753
|
+
};
|
|
754
|
+
reCAPTCHAResponse?: string;
|
|
755
|
+
}
|
|
756
|
+
interface CreateMayaWithdrawalMutation {
|
|
757
|
+
createMayaWithdrawal?: null | {
|
|
758
|
+
__typename: CreateWithdrawalError$1;
|
|
759
|
+
};
|
|
760
|
+
}
|
|
761
|
+
interface CreateMayaWithdrawalMutationVariables {
|
|
762
|
+
input: {
|
|
763
|
+
id: string;
|
|
764
|
+
amount: Decimal;
|
|
765
|
+
accountNumber: string;
|
|
766
|
+
};
|
|
767
|
+
transactionPassword: string;
|
|
768
|
+
reCAPTCHAResponse?: string;
|
|
769
|
+
}
|
|
770
|
+
interface CreateMayaAppWithdrawalMutation {
|
|
771
|
+
createMayaAppWithdrawal?: null | {
|
|
772
|
+
__typename: CreateWithdrawalError$1;
|
|
773
|
+
};
|
|
774
|
+
}
|
|
775
|
+
interface CreateMayaAppWithdrawalMutationVariables {
|
|
776
|
+
input: {
|
|
777
|
+
id: string;
|
|
778
|
+
amount: Decimal;
|
|
779
|
+
transactionPassword: string;
|
|
780
|
+
};
|
|
781
|
+
reCAPTCHAResponse?: string;
|
|
782
|
+
}
|
|
783
|
+
interface CreateBankWithdrawalMutation {
|
|
784
|
+
createBankWithdrawal?: null | {
|
|
785
|
+
__typename: CreateWithdrawalError$1;
|
|
786
|
+
};
|
|
787
|
+
}
|
|
788
|
+
interface CreateBankWithdrawalMutationVariables {
|
|
789
|
+
input: {
|
|
790
|
+
id: string;
|
|
791
|
+
amount: Decimal;
|
|
792
|
+
transactionPassword: string;
|
|
793
|
+
};
|
|
794
|
+
reCAPTCHAResponse?: string;
|
|
795
|
+
}
|
|
796
|
+
interface CreateAIOInstapayWithdrawalMutationVariables {
|
|
797
|
+
input: {
|
|
798
|
+
id: string;
|
|
799
|
+
amount: Decimal;
|
|
800
|
+
bankCode: string;
|
|
801
|
+
accountNumber: string;
|
|
802
|
+
accountName: string;
|
|
803
|
+
transactionPassword: string;
|
|
804
|
+
};
|
|
805
|
+
reCAPTCHAResponse?: string;
|
|
806
|
+
}
|
|
807
|
+
interface CreateAIOInstapayWithdrawalNextMutationVariables {
|
|
808
|
+
input: {
|
|
809
|
+
id: string;
|
|
810
|
+
amount: Decimal;
|
|
811
|
+
bankCode: string;
|
|
812
|
+
accountNumber: string;
|
|
813
|
+
accountName: string;
|
|
814
|
+
transactionPassword: string;
|
|
815
|
+
};
|
|
816
|
+
reCAPTCHAResponse?: string;
|
|
817
|
+
}
|
|
818
|
+
interface CreateAIOInstapayWithdrawalMutation {
|
|
819
|
+
createAIOInstapayWithdrawal?: null | {
|
|
820
|
+
__typename: CreateWithdrawalError$1;
|
|
821
|
+
};
|
|
822
|
+
}
|
|
823
|
+
interface CreateAIOInstapayWithdrawalNextMutation {
|
|
824
|
+
createAIOInstapayWithdrawal_next?: null | {
|
|
825
|
+
__typename: CreateWithdrawalError$1;
|
|
826
|
+
};
|
|
827
|
+
}
|
|
828
|
+
interface CreateManualUpiWithdrawalMutation {
|
|
829
|
+
createManualUpiWithdrawal?: null | {
|
|
830
|
+
__typename: CreateWithdrawalError$1;
|
|
831
|
+
};
|
|
832
|
+
}
|
|
833
|
+
interface CreateManualUpiWithdrawalMutationVariables {
|
|
834
|
+
input: {
|
|
835
|
+
id: string;
|
|
836
|
+
amount: Decimal;
|
|
837
|
+
upiId: string;
|
|
838
|
+
};
|
|
839
|
+
reCAPTCHAResponse?: string;
|
|
840
|
+
}
|
|
841
|
+
interface CreateManualBankWithdrawalMutation {
|
|
842
|
+
createManualBankWithdrawal?: null | {
|
|
843
|
+
__typename: CreateWithdrawalError$1;
|
|
844
|
+
};
|
|
845
|
+
}
|
|
846
|
+
interface CreateManualBankWithdrawalMutationVariables {
|
|
847
|
+
input: {
|
|
848
|
+
id: string;
|
|
849
|
+
amount: Decimal;
|
|
850
|
+
bankIFSCCode: string;
|
|
851
|
+
bankAccountNumber: string;
|
|
852
|
+
bankAccountName: string;
|
|
853
|
+
promo?: string;
|
|
854
|
+
};
|
|
855
|
+
reCAPTCHAResponse?: string;
|
|
856
|
+
}
|
|
857
|
+
interface CreateCabinetWithdrawalMutation {
|
|
858
|
+
createCabinetWithdrawal?: null | {
|
|
859
|
+
__typename: CreateWithdrawalError$1;
|
|
860
|
+
};
|
|
861
|
+
}
|
|
862
|
+
interface CreateCabinetWithdrawalMutationVariables {
|
|
863
|
+
input: {
|
|
864
|
+
id: string;
|
|
865
|
+
amount: Decimal;
|
|
866
|
+
};
|
|
867
|
+
}
|
|
868
|
+
interface InstapayBank$1 {
|
|
869
|
+
id: string;
|
|
870
|
+
name: string;
|
|
871
|
+
code: string;
|
|
872
|
+
}
|
|
873
|
+
interface InstapayBankListQuery {
|
|
874
|
+
instapayBankList: InstapayBank$1[];
|
|
875
|
+
}
|
|
876
|
+
interface RemainingDailyWithdrawalsCountQuery {
|
|
877
|
+
remainingDailyWithdrawalsCount: number;
|
|
878
|
+
}
|
|
879
|
+
type PromoType$1 = 'DEPOSIT' | 'GENERIC' | 'SPOT_BONUS' | 'REGISTRATION';
|
|
880
|
+
type PromoStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DISABLED' | 'EXPIRED';
|
|
881
|
+
interface Promo$1 {
|
|
882
|
+
id: string;
|
|
883
|
+
type: PromoType$1;
|
|
884
|
+
name: string;
|
|
885
|
+
banner: File$1;
|
|
886
|
+
status: PromoStatus$1;
|
|
887
|
+
description: Html;
|
|
888
|
+
minimumBonusAmount?: string | null;
|
|
889
|
+
maximumBonusAmount?: string | null;
|
|
890
|
+
minimumDepositAmount?: string | null;
|
|
891
|
+
turnoverRequirementContributionPercentagePerGameProvider?: JSON;
|
|
892
|
+
maximumDepositAmount?: string | null;
|
|
893
|
+
activationStartDateTime: DateString;
|
|
894
|
+
activationEndDateTime: DateString;
|
|
895
|
+
depositBonusAmountPercentage?: string | null;
|
|
896
|
+
dateTimeCreated: DateString;
|
|
897
|
+
dateTimeLastUpdated: DateString;
|
|
898
|
+
}
|
|
899
|
+
interface PromosQuery {
|
|
900
|
+
promos: Promo$1[];
|
|
901
|
+
}
|
|
902
|
+
interface AvailablePromosQuery {
|
|
903
|
+
availablePromos: Promo$1[];
|
|
904
|
+
}
|
|
905
|
+
interface AvailablePromosQueryVariables {
|
|
906
|
+
filter?: {
|
|
907
|
+
type?: EnumFilterField<PromoType$1>;
|
|
908
|
+
};
|
|
909
|
+
}
|
|
910
|
+
type CashbackStatus$1 = 'ACTIVE' | 'INACTIVE';
|
|
911
|
+
interface Cashback$1 {
|
|
912
|
+
id: string;
|
|
913
|
+
name: string;
|
|
914
|
+
banner: File$1;
|
|
915
|
+
status: CashbackStatus$1;
|
|
916
|
+
minimumCashback: Decimal;
|
|
917
|
+
maximumMonthlyCashback?: Decimal | null;
|
|
918
|
+
description: Html;
|
|
919
|
+
activationStartDateTime: DateString;
|
|
920
|
+
activationEndDateTime: DateString;
|
|
921
|
+
turnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
922
|
+
dateTimeCreated: DateString;
|
|
923
|
+
dateTimeLastUpdated: DateString;
|
|
924
|
+
}
|
|
925
|
+
interface CashbacksQuery {
|
|
926
|
+
cashbacks: Cashback$1[];
|
|
927
|
+
}
|
|
928
|
+
type ClaimSpotBonusError = 'InvalidPromoCodeError' | 'MaximumBonusesCountLimitExceededError' | 'SpotBonusAlreadyClaimedError';
|
|
929
|
+
interface ClaimSpotBonusMutationVariables {
|
|
930
|
+
code: string;
|
|
931
|
+
}
|
|
932
|
+
interface ClaimSpotBonusMutation {
|
|
933
|
+
claimSpotBonus: null | {
|
|
934
|
+
__typename: ClaimSpotBonusError;
|
|
935
|
+
};
|
|
936
|
+
}
|
|
937
|
+
interface PromoByCodeQueryVariables {
|
|
938
|
+
code: string;
|
|
939
|
+
}
|
|
940
|
+
type TurnoverRequirementType$1 = 'BONUS' | 'DEPOSIT_PLUS_BONUS';
|
|
941
|
+
interface SpotBonusPromo$1 {
|
|
942
|
+
id: string;
|
|
943
|
+
name: string;
|
|
944
|
+
type: PromoType$1;
|
|
945
|
+
status: PromoStatus$1;
|
|
946
|
+
daysToClear: number;
|
|
947
|
+
zeroOutThreshold: Decimal;
|
|
948
|
+
turnoverRequirementMultiplier: number;
|
|
949
|
+
turnoverRequirementType?: TurnoverRequirementType$1;
|
|
950
|
+
minimumTicketOddFactorPerSportsGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
951
|
+
turnoverRequirementContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
952
|
+
bonusAmount?: Decimal;
|
|
953
|
+
enabledGameProviders: GameProvider$1[];
|
|
954
|
+
activationStartDateTime?: DateString;
|
|
955
|
+
activationEndDateTime?: DateString;
|
|
956
|
+
banner?: {
|
|
957
|
+
id: string;
|
|
958
|
+
url?: string;
|
|
959
|
+
};
|
|
960
|
+
description?: string;
|
|
961
|
+
dateTimeCreated: DateString;
|
|
962
|
+
dateTimeLastUpdated: DateString;
|
|
963
|
+
dateTimeClosed?: DateString;
|
|
964
|
+
totalBonus: Decimal;
|
|
965
|
+
totalDeposit: Decimal;
|
|
966
|
+
totalBonusBalance: Decimal;
|
|
967
|
+
totalBet: Decimal;
|
|
968
|
+
totalBonusCashedOut: Decimal;
|
|
969
|
+
bonusesCount: number;
|
|
970
|
+
closedBonusesCount: number;
|
|
971
|
+
closedBonusesCountPercentage: Decimal;
|
|
972
|
+
activeBonusesCount: number;
|
|
973
|
+
clearedBonusesCount: number;
|
|
974
|
+
zeroedOutBonusesCount: number;
|
|
975
|
+
cancelledBonusesCount: number;
|
|
976
|
+
expiredBonusesCount: number;
|
|
977
|
+
code: string;
|
|
978
|
+
maximumBonusesCountLimit: number;
|
|
979
|
+
}
|
|
980
|
+
interface PromoByCodeQuery {
|
|
981
|
+
promoByCode: SpotBonusPromo$1;
|
|
982
|
+
}
|
|
983
|
+
interface Bonus$1 {
|
|
984
|
+
id: string;
|
|
985
|
+
promo: Promo$1;
|
|
986
|
+
deposit?: Omit<DepositRecord$1, 'id' | 'deposit' | 'depositNumber'> | null;
|
|
987
|
+
amount: Decimal;
|
|
988
|
+
balance: Decimal;
|
|
989
|
+
turnoverRequirement: Decimal;
|
|
990
|
+
currentTurnoverRequirementContribution: Decimal;
|
|
991
|
+
currentTurnoverRequirementContributionPercentage: Decimal;
|
|
992
|
+
turnoverRequirementContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
993
|
+
enabledGameProviders: GameProvider$1[];
|
|
994
|
+
expiration: DateString;
|
|
995
|
+
dateTimeCreated: DateString;
|
|
996
|
+
dateTimeLastUpdated: DateString;
|
|
997
|
+
}
|
|
998
|
+
interface BonusQuery {
|
|
999
|
+
bonus?: Bonus$1 | null;
|
|
1000
|
+
}
|
|
1001
|
+
interface BonusesQuery {
|
|
1002
|
+
bonuses?: Bonus$1[] | null;
|
|
1003
|
+
}
|
|
1004
|
+
interface CashbackBonus$1 {
|
|
1005
|
+
id: string;
|
|
1006
|
+
balance: Decimal;
|
|
1007
|
+
total: string;
|
|
1008
|
+
cashback: Cashback$1;
|
|
1009
|
+
dateTimeCreated: DateString;
|
|
1010
|
+
dateTimeLastUpdated: DateString;
|
|
1011
|
+
}
|
|
1012
|
+
interface CabinetSiteMachine$1 {
|
|
1013
|
+
id: string;
|
|
1014
|
+
name: string;
|
|
1015
|
+
fingerprint: string;
|
|
1016
|
+
status: CabinetSiteMachineStatus$1;
|
|
1017
|
+
dateTimeCreated: string;
|
|
1018
|
+
}
|
|
1019
|
+
interface CashbackBonusesQuery {
|
|
1020
|
+
cashbackBonuses: CashbackBonus$1[];
|
|
1021
|
+
}
|
|
1022
|
+
type ClaimCashbackBonusError$1 = 'CashbackBonusDoesNotExistError';
|
|
1023
|
+
interface ClaimCashbackBonusMutation {
|
|
1024
|
+
claimCashbackBonus?: null | {
|
|
1025
|
+
__typename: ClaimCashbackBonusError$1;
|
|
1026
|
+
};
|
|
1027
|
+
}
|
|
1028
|
+
interface ClaimCashbackBonusMutationVariables {
|
|
1029
|
+
input: {
|
|
1030
|
+
id: string;
|
|
1031
|
+
};
|
|
1032
|
+
}
|
|
1033
|
+
type ClaimRebateError$1 = 'RebateDoesNotExistError' | 'RebateNotClaimableError';
|
|
1034
|
+
interface ClaimRebateMutation {
|
|
1035
|
+
claimRebate?: null | {
|
|
1036
|
+
__typename: ClaimRebateError$1;
|
|
1037
|
+
};
|
|
1038
|
+
}
|
|
1039
|
+
interface ClaimRebateMutationVariables {
|
|
1040
|
+
input: {
|
|
1041
|
+
id: string;
|
|
1042
|
+
};
|
|
1043
|
+
}
|
|
1044
|
+
type TransactionType$1 = 'DEPOSIT' | 'PAYOUT' | 'WITHDRAWAL_REFUND' | 'TRANSFER_IN' | 'WITHDRAWAL' | 'BET' | 'TRANSFER_OUT' | 'ROLLBACK' | 'BET_REFUND' | 'PAYOUT_REFUND' | 'CASHBACK_BONUS' | 'BONUS' | 'POINTS_TO_CASH_CONVERSION' | 'BONUS_PAYOUT' | 'BONUS_BET' | 'BONUS_CLEARED' | 'BONUS_CREATED' | 'BONUS_ZEROED_OUT' | 'BONUS_CANCELLED';
|
|
1045
|
+
interface TransactionRecord$1 {
|
|
1046
|
+
id: string;
|
|
1047
|
+
type: TransactionType$1;
|
|
1048
|
+
amount: Decimal;
|
|
1049
|
+
content?: string | null;
|
|
1050
|
+
currentBalance: Decimal;
|
|
1051
|
+
currentBonusBalance: Decimal;
|
|
1052
|
+
referenceNumber: string;
|
|
1053
|
+
dateTimeCreated: DateString;
|
|
1054
|
+
}
|
|
1055
|
+
interface TransactionRecordsQuery {
|
|
1056
|
+
member: PaginatedQuery<'transactionRecords', TransactionRecord$1>;
|
|
1057
|
+
}
|
|
1058
|
+
interface TransactionRecordsQueryVariables {
|
|
1059
|
+
first?: number;
|
|
1060
|
+
after?: string;
|
|
1061
|
+
filter?: {
|
|
1062
|
+
referenceNumber?: StringFilterField;
|
|
1063
|
+
type?: EnumFilterField<TransactionType$1>;
|
|
1064
|
+
dateTimeCreated?: DateFilterField;
|
|
1065
|
+
};
|
|
1066
|
+
}
|
|
1067
|
+
/**
|
|
1068
|
+
* - `PHP` - Philippine Peso
|
|
1069
|
+
* - `USD` - United States Dollar
|
|
1070
|
+
* - `INR` - Indian Rupee
|
|
1071
|
+
* - `MYR` - Malaysian Ringgit
|
|
1072
|
+
* - `IDR` - Indonesian Rupiah
|
|
1073
|
+
*/
|
|
1074
|
+
type Currency$1 = 'PHP' | 'USD' | 'INR' | 'MYR' | 'IDR';
|
|
1075
|
+
interface Wallet$1 {
|
|
1076
|
+
id: string;
|
|
1077
|
+
balance: Decimal;
|
|
1078
|
+
turnoverRequirement?: Decimal;
|
|
1079
|
+
}
|
|
1080
|
+
interface WalletQuery {
|
|
1081
|
+
wallet?: Wallet$1 | null;
|
|
1082
|
+
}
|
|
1083
|
+
interface MemberWalletAccount$1 {
|
|
1084
|
+
id: string;
|
|
1085
|
+
depositsCount: Decimal;
|
|
1086
|
+
dailyTotalBet: Decimal;
|
|
1087
|
+
monthlyTotalBet: Decimal;
|
|
1088
|
+
dailyTotalDeposit: Decimal;
|
|
1089
|
+
monthlyTotalDeposit: Decimal;
|
|
1090
|
+
}
|
|
1091
|
+
interface MemberWalletQuery {
|
|
1092
|
+
self: MemberWalletAccount$1;
|
|
1093
|
+
}
|
|
1094
|
+
interface PointsWallet$1 {
|
|
1095
|
+
id: string;
|
|
1096
|
+
points: Decimal;
|
|
1097
|
+
account: string;
|
|
1098
|
+
dateTimeCreated: DateString;
|
|
1099
|
+
}
|
|
1100
|
+
interface PointsWalletQuery {
|
|
1101
|
+
pointsWallet?: PointsWallet$1 | null;
|
|
1102
|
+
}
|
|
1103
|
+
interface RedeemPointsToCashMutationVariables {
|
|
1104
|
+
input: {
|
|
1105
|
+
amount: Decimal;
|
|
1106
|
+
};
|
|
1107
|
+
}
|
|
1108
|
+
type RedeemPointsToCashError = 'InsufficientPointsError' | 'PointsNotDivisibleBy100Error';
|
|
1109
|
+
interface RedeemPointsToCashMutation {
|
|
1110
|
+
redeemPointsToCash?: null | {
|
|
1111
|
+
__typename: RedeemPointsToCashError;
|
|
1112
|
+
};
|
|
1113
|
+
}
|
|
1114
|
+
type PointsWalletTransactionType$1 = 'TURNOVER_COMMISSION' | 'POINTS_TO_CASH_CONVERSION';
|
|
1115
|
+
interface PointsWalletTransaction$1 {
|
|
1116
|
+
id: string;
|
|
1117
|
+
type: PointsWalletTransactionType$1;
|
|
1118
|
+
amount: Decimal;
|
|
1119
|
+
balance: Decimal;
|
|
1120
|
+
dateTimeCreated: DateString;
|
|
1121
|
+
}
|
|
1122
|
+
interface PointsWalletTransactionsQueryVariables {
|
|
1123
|
+
first?: number;
|
|
1124
|
+
after?: string;
|
|
1125
|
+
filter?: {
|
|
1126
|
+
type?: EnumFilterField<PointsWalletTransactionType$1>;
|
|
1127
|
+
};
|
|
1128
|
+
}
|
|
1129
|
+
interface AchievementPointsHistoryRecord$1 {
|
|
1130
|
+
id: string;
|
|
1131
|
+
type: AchievementType$1;
|
|
1132
|
+
points: Decimal;
|
|
1133
|
+
dateTimeCreated: DateString;
|
|
1134
|
+
}
|
|
1135
|
+
interface AchievementPointsHistoryRecordQueryVariables {
|
|
1136
|
+
first?: number;
|
|
1137
|
+
after?: string;
|
|
1138
|
+
filter?: {
|
|
1139
|
+
type?: EnumFilterField<AchievementType$1>;
|
|
1140
|
+
};
|
|
1141
|
+
}
|
|
1142
|
+
interface PointsWalletTransactionsQuery {
|
|
1143
|
+
member: PaginatedQuery<'pointsWalletTransactions', PointsWalletTransaction$1>;
|
|
1144
|
+
}
|
|
1145
|
+
type RebateStatus$1 = 'ACTIVE' | 'INACTIVE' | 'SETTLED' | 'CLAIMED' | 'CANCELLED' | 'EXPIRED';
|
|
1146
|
+
type RebateCursor$1 = 'DATE_TIME_CREATED' | 'END_DATE_TIME';
|
|
1147
|
+
type RebateType$1 = 'LOSS' | 'TURNOVER';
|
|
1148
|
+
interface RebateSettingsPerMemberLevel$1 {
|
|
1149
|
+
level: number;
|
|
1150
|
+
percentage: Decimal;
|
|
1151
|
+
}
|
|
1152
|
+
interface RebateProgram$1 {
|
|
1153
|
+
id: string;
|
|
1154
|
+
banner?: {
|
|
1155
|
+
id: string;
|
|
1156
|
+
url?: string;
|
|
1157
|
+
};
|
|
1158
|
+
description: string;
|
|
1159
|
+
name: string;
|
|
1160
|
+
rebatePercentage?: Decimal | null;
|
|
1161
|
+
rebateSettingsPerMemberLevel?: RebateSettingsPerMemberLevel$1[] | null;
|
|
1162
|
+
type: RebateType$1;
|
|
1163
|
+
dateTimeCreated?: DateString;
|
|
1164
|
+
}
|
|
1165
|
+
interface Rebate$1 {
|
|
1166
|
+
id: string;
|
|
1167
|
+
rebateProgram: RebateProgram$1;
|
|
1168
|
+
amount: Decimal;
|
|
1169
|
+
percentage?: Decimal | null;
|
|
1170
|
+
status: RebateStatus$1;
|
|
1171
|
+
expirationDateTime?: DateString;
|
|
1172
|
+
dateTimeClaimed?: DateString;
|
|
1173
|
+
dateTimeExpired?: DateString;
|
|
1174
|
+
startDateTime?: DateString;
|
|
1175
|
+
endDateTime?: DateString;
|
|
1176
|
+
dateTimeCreated?: DateString;
|
|
1177
|
+
}
|
|
1178
|
+
interface MemberRebatesQueryVariables {
|
|
1179
|
+
first?: number;
|
|
1180
|
+
after?: string;
|
|
1181
|
+
filter?: {
|
|
1182
|
+
id?: ObjectIdFilterField;
|
|
1183
|
+
rebateProgram?: ObjectIdFilterField;
|
|
1184
|
+
member?: ObjectIdFilterField;
|
|
1185
|
+
status?: EnumFilterField<RebateStatus$1>;
|
|
1186
|
+
startDateTime?: DateFilterField;
|
|
1187
|
+
endDateTime?: DateFilterField;
|
|
1188
|
+
dateTimeSettled?: DateFilterField;
|
|
1189
|
+
dateTimeClaimed?: DateFilterField;
|
|
1190
|
+
dateTimeCancelled?: DateFilterField;
|
|
1191
|
+
dateTimeExpired?: DateFilterField;
|
|
1192
|
+
};
|
|
1193
|
+
sort?: {
|
|
1194
|
+
cursor: RebateCursor$1;
|
|
1195
|
+
order: SortOrder;
|
|
1196
|
+
};
|
|
1197
|
+
}
|
|
1198
|
+
interface MemberRebatesQuery {
|
|
1199
|
+
member: PaginatedQuery<'rebates', Rebate$1>;
|
|
1200
|
+
}
|
|
1201
|
+
interface MemberRebateContributionPerGameCategory$1 {
|
|
1202
|
+
gameProvider: GameProvider$1;
|
|
1203
|
+
gameType: GameType$1;
|
|
1204
|
+
percentage: Decimal;
|
|
1205
|
+
loss?: Decimal | null;
|
|
1206
|
+
turnover?: Decimal | null;
|
|
1207
|
+
rebate: Decimal;
|
|
1208
|
+
}
|
|
1209
|
+
interface MemberRebateContributionPerGame$1 {
|
|
1210
|
+
game: {
|
|
1211
|
+
id: string;
|
|
1212
|
+
name: string;
|
|
1213
|
+
};
|
|
1214
|
+
percentage: Decimal;
|
|
1215
|
+
loss?: Decimal | null;
|
|
1216
|
+
turnover?: Decimal | null;
|
|
1217
|
+
rebate: Decimal;
|
|
1218
|
+
}
|
|
1219
|
+
interface MemberRebateContribution$1 {
|
|
1220
|
+
id: string;
|
|
1221
|
+
rebatesPerGameCategory: MemberRebateContributionPerGameCategory$1[];
|
|
1222
|
+
rebatesPerGame: MemberRebateContributionPerGame$1[];
|
|
1223
|
+
}
|
|
1224
|
+
interface MemberRebateContributionQueryVariables extends MemberRebatesQueryVariables {
|
|
1225
|
+
}
|
|
1226
|
+
interface MemberRebateContributionQuery {
|
|
1227
|
+
member: PaginatedQuery<'rebates', MemberRebateContribution$1>;
|
|
1228
|
+
}
|
|
1229
|
+
interface AchievementPointsHistoryRecordQuery extends PaginatedQuery<'achievementPointsHistoryRecords', AchievementPointsHistoryRecord$1> {
|
|
1230
|
+
}
|
|
1231
|
+
type MemberAccountStatus = 'ACTIVE' | 'DISABLED' | 'BLACKLISTED' | 'SUSPENDED' | 'VERIFICATION_LOCKED';
|
|
1232
|
+
type MemberAccountVerificationStatus = 'UNVERIFIED' | 'PENDING' | 'VERIFIED';
|
|
1233
|
+
type MemberVerificationStatus = 'PENDING' | 'APPROVED' | 'REJECTED' | 'VERIFIED' | 'UNVERIFIED' | 'CREATED';
|
|
1234
|
+
interface Agent$1 {
|
|
1235
|
+
code: string;
|
|
1236
|
+
}
|
|
1237
|
+
interface GigRewardsQuestDetails$1 {
|
|
1238
|
+
gigUserId: string;
|
|
1239
|
+
}
|
|
1240
|
+
interface MemberAccount {
|
|
1241
|
+
id: string;
|
|
1242
|
+
name: string;
|
|
1243
|
+
status: MemberAccountStatus;
|
|
1244
|
+
realName?: string | null;
|
|
1245
|
+
nickName?: string | null;
|
|
1246
|
+
birthDay?: DateString | null;
|
|
1247
|
+
validId?: string | null;
|
|
1248
|
+
emailAddress?: string | null;
|
|
1249
|
+
mobileNumber?: string | null;
|
|
1250
|
+
verified: boolean;
|
|
1251
|
+
verificationStatus: MemberAccountVerificationStatus;
|
|
1252
|
+
mobileNumberVerified?: boolean | null;
|
|
1253
|
+
mobileNumberVerificationRequired?: boolean | null;
|
|
1254
|
+
transactionPassword: boolean;
|
|
1255
|
+
secretAnswerSubmitted?: boolean | null;
|
|
1256
|
+
dateTimeCreated: DateString;
|
|
1257
|
+
dateTimeLastUpdated: DateString;
|
|
1258
|
+
currentMonthlyAchievementPoints?: number;
|
|
1259
|
+
achievementPointsLevelUpProgressPercentage?: number;
|
|
1260
|
+
currentUniqueGamesCount?: number;
|
|
1261
|
+
currentNewGamesCount?: number;
|
|
1262
|
+
currentAchievements?: Array<AchievementType$1>;
|
|
1263
|
+
currentBetsCount?: number;
|
|
1264
|
+
currentActiveDaysCount?: number;
|
|
1265
|
+
dateTimeLastLeveledUp: DateString;
|
|
1266
|
+
currentMonthlyTurnover?: number;
|
|
1267
|
+
turnoverLevelUpProgressPercentage?: number;
|
|
1268
|
+
googleId?: string;
|
|
1269
|
+
facebookId?: string;
|
|
1270
|
+
domain?: string;
|
|
1271
|
+
branchCode?: string;
|
|
1272
|
+
agent?: Agent$1 | null;
|
|
1273
|
+
partition?: number | null;
|
|
1274
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1275
|
+
bonusBlocked?: boolean | null;
|
|
1276
|
+
dailyBetLimit?: Decimal | null;
|
|
1277
|
+
monthlyBetLimit?: Decimal | null;
|
|
1278
|
+
dailyDepositLimit?: Decimal | null;
|
|
1279
|
+
monthlyDepositLimit?: Decimal | null;
|
|
1280
|
+
newDailyBetLimit?: Decimal | null;
|
|
1281
|
+
newMonthlyBetLimit?: Decimal | null;
|
|
1282
|
+
newDailyDepositLimit?: Decimal | null;
|
|
1283
|
+
newMonthlyDepositLimit?: Decimal | null;
|
|
1284
|
+
}
|
|
1285
|
+
interface Member {
|
|
1286
|
+
level?: number;
|
|
1287
|
+
dateTimeLastActive?: DateString;
|
|
1288
|
+
}
|
|
1289
|
+
interface MemberQuery {
|
|
1290
|
+
member: Member;
|
|
1291
|
+
}
|
|
1292
|
+
interface MemberAccountQuery {
|
|
1293
|
+
memberAccount: MemberAccount;
|
|
1294
|
+
}
|
|
1295
|
+
interface MemberWithCellxpertDetailsQueryVariables {
|
|
1296
|
+
id?: string | null;
|
|
1297
|
+
}
|
|
1298
|
+
interface MemberWithCellxpertDetailsQuery {
|
|
1299
|
+
node?: {
|
|
1300
|
+
id: string;
|
|
1301
|
+
cellxpertDetails?: {
|
|
1302
|
+
cxd?: string | null;
|
|
1303
|
+
dateTimeLastUpdated?: string | null;
|
|
1304
|
+
} | null;
|
|
1305
|
+
} | null;
|
|
1306
|
+
}
|
|
1307
|
+
interface MemberVerification {
|
|
1308
|
+
id: string;
|
|
1309
|
+
status: MemberVerificationStatus;
|
|
1310
|
+
address: string;
|
|
1311
|
+
permanentAddress: string;
|
|
1312
|
+
sourceOfIncome: string;
|
|
1313
|
+
natureOfWork: string | null;
|
|
1314
|
+
nationality: string;
|
|
1315
|
+
placeOfBirth: string;
|
|
1316
|
+
idFrontImage: File$1 | null;
|
|
1317
|
+
selfieImage: File$1 | null;
|
|
1318
|
+
}
|
|
1319
|
+
interface MemberVerificationQuery {
|
|
1320
|
+
memberAccount: {
|
|
1321
|
+
verification?: MemberVerification | null;
|
|
1322
|
+
};
|
|
1323
|
+
}
|
|
1324
|
+
type RegisterMemberAccountError = 'AccountNameNotAvailableError' | 'InvalidPlatformError' | 'InvalidReCAPTCHAResponseError' | 'InvalidSMSVerificationCodeError' | 'MinimumAgeRequirementError' | 'MobileNumberNotAvailableError' | 'ReCAPTCHAVerificationFailedError' | 'EmailAddressNotAvailableError' | 'InvalidAgentCodeError' | 'InvalidMobileNumberVerificationCodeError';
|
|
1325
|
+
interface RegisterMemberAccountMutation {
|
|
1326
|
+
registerMemberAccount?: null | {
|
|
1327
|
+
__typename: RegisterMemberAccountError;
|
|
1328
|
+
};
|
|
1329
|
+
}
|
|
1330
|
+
interface RegisterMemberAccountByNameMutation {
|
|
1331
|
+
registerMemberAccountByName?: null | {
|
|
1332
|
+
__typename: RegisterMemberAccountError;
|
|
1333
|
+
};
|
|
1334
|
+
}
|
|
1335
|
+
interface RegisterMemberAccountMutationVariables {
|
|
1336
|
+
input: {
|
|
1337
|
+
id: string;
|
|
1338
|
+
name: string;
|
|
1339
|
+
password: string;
|
|
1340
|
+
mobileNumber: string;
|
|
1341
|
+
birthDay: string;
|
|
1342
|
+
domain?: string;
|
|
1343
|
+
btag?: string;
|
|
1344
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1345
|
+
};
|
|
1346
|
+
referralCode?: string;
|
|
1347
|
+
verificationCode?: string;
|
|
1348
|
+
reCAPTCHAResponse?: string;
|
|
1349
|
+
}
|
|
1350
|
+
interface RegisterMemberAccountByNameMutationVariables {
|
|
1351
|
+
input: {
|
|
1352
|
+
id: string;
|
|
1353
|
+
name: string;
|
|
1354
|
+
password: string;
|
|
1355
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1356
|
+
};
|
|
1357
|
+
reCAPTCHAResponse?: string;
|
|
1358
|
+
}
|
|
1359
|
+
interface RegisterMemberAccountViaMobileMutation {
|
|
1360
|
+
registerMemberAccountViaMobile?: null | {
|
|
1361
|
+
__typename: RegisterMemberAccountError;
|
|
1362
|
+
};
|
|
1363
|
+
}
|
|
1364
|
+
interface RegisterMemberAccountViaMobileMutationVariables {
|
|
1365
|
+
input: {
|
|
1366
|
+
id: string;
|
|
1367
|
+
mobileNumber: string;
|
|
1368
|
+
realName?: string;
|
|
1369
|
+
birthDay?: string;
|
|
1370
|
+
branchCode?: string;
|
|
1371
|
+
agentCode?: string;
|
|
1372
|
+
domain?: string;
|
|
1373
|
+
btag?: string;
|
|
1374
|
+
cellxpertCxd?: string;
|
|
1375
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1376
|
+
};
|
|
1377
|
+
referralCode?: string;
|
|
1378
|
+
verificationCode?: string;
|
|
1379
|
+
reCAPTCHAResponse?: string;
|
|
1380
|
+
testPass?: string;
|
|
1381
|
+
}
|
|
1382
|
+
interface RegisterAgentAccountMutationVariables {
|
|
1383
|
+
input: {
|
|
1384
|
+
name: string;
|
|
1385
|
+
firstName: string;
|
|
1386
|
+
lastName: string;
|
|
1387
|
+
mobileNumber: string;
|
|
1388
|
+
emailAddress: string;
|
|
1389
|
+
customProperties?: {
|
|
1390
|
+
key: string;
|
|
1391
|
+
value: string;
|
|
1392
|
+
}[];
|
|
1393
|
+
};
|
|
1394
|
+
}
|
|
1395
|
+
type RegisterAgentAccountError$1 = string;
|
|
1396
|
+
interface RegisterAgentAccountMutation {
|
|
1397
|
+
registerAgentAccount?: null | {
|
|
1398
|
+
__typename: RegisterAgentAccountError$1;
|
|
1399
|
+
};
|
|
1400
|
+
}
|
|
1401
|
+
interface RegisterMemberAccountMutationVariables__Next {
|
|
1402
|
+
input: {
|
|
1403
|
+
id: string;
|
|
1404
|
+
name: string;
|
|
1405
|
+
password: string;
|
|
1406
|
+
mobileNumber?: string;
|
|
1407
|
+
domain?: string;
|
|
1408
|
+
btag?: string;
|
|
1409
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1410
|
+
};
|
|
1411
|
+
reCAPTCHAResponse?: string;
|
|
1412
|
+
}
|
|
1413
|
+
interface RegisterMayaMemberAccountMutationVariables {
|
|
1414
|
+
input: {
|
|
1415
|
+
name: string;
|
|
1416
|
+
password: string;
|
|
1417
|
+
domain?: string;
|
|
1418
|
+
};
|
|
1419
|
+
}
|
|
1420
|
+
type RegisterMayaMemberAccountError = 'AccountNameNotAvailableError';
|
|
1421
|
+
interface RegisterMayaMemberAccountMutation {
|
|
1422
|
+
registerMayaMemberAccount?: null | {
|
|
1423
|
+
__typename: RegisterMayaMemberAccountError;
|
|
1424
|
+
};
|
|
1425
|
+
}
|
|
1426
|
+
type UpdateMemberAccountError = 'AccountNameNotAvailableError' | 'EmailAddressNotAvailableError' | 'InvalidTransactionPasswordError' | 'MobileNumberNotAvailableError' | 'NickNameNotAvailableError' | 'RealNameAlreadySetError' | 'ValidIdAlreadySetError';
|
|
1427
|
+
interface UpdateMemberAccountMutation {
|
|
1428
|
+
updateMemberAccount?: null | {
|
|
1429
|
+
__typename: UpdateMemberAccountError;
|
|
1430
|
+
};
|
|
1431
|
+
}
|
|
1432
|
+
type SecretQuestion$1 = 'FIRST_PET' | 'FIRST_CAR' | 'FIRST_SCHOOL' | 'FAVORITE_BOOK' | 'FAVORITE_TEACHER' | 'BEST_CHILDHOOD_FRIEND' | 'BIRTH_PLACE' | 'MOTHERS_MAIDEN_NAME' | 'PARENTS_MET_CITY' | 'FAVORITE_MOVIE';
|
|
1433
|
+
interface UpdateMemberAccountMutationVariables {
|
|
1434
|
+
input: {
|
|
1435
|
+
id: string;
|
|
1436
|
+
data: {
|
|
1437
|
+
name?: string;
|
|
1438
|
+
password?: string;
|
|
1439
|
+
emailAddress?: string;
|
|
1440
|
+
mobileNumber?: string;
|
|
1441
|
+
realName?: string;
|
|
1442
|
+
nickName?: string;
|
|
1443
|
+
transactionPassword?: string;
|
|
1444
|
+
validId?: string;
|
|
1445
|
+
mobileNumberVerificationRequired?: boolean;
|
|
1446
|
+
secretQuestion?: SecretQuestion$1;
|
|
1447
|
+
secretAnswer?: string;
|
|
1448
|
+
birthDay?: string;
|
|
1449
|
+
branchCode?: string;
|
|
1450
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1451
|
+
};
|
|
1452
|
+
};
|
|
1453
|
+
}
|
|
1454
|
+
type ResetPasswordError$1 = 'AccountNotFoundError' | 'InvalidVerificationCodeError';
|
|
1455
|
+
interface ResetPasswordMutation {
|
|
1456
|
+
resetPassword?: null | {
|
|
1457
|
+
__typename: ResetPasswordError$1;
|
|
1458
|
+
};
|
|
1459
|
+
}
|
|
1460
|
+
interface ResetPasswordMutationVariables {
|
|
1461
|
+
input: {
|
|
1462
|
+
mobileNumber: string;
|
|
1463
|
+
newPassword: string;
|
|
1464
|
+
};
|
|
1465
|
+
verificationCode: string;
|
|
1466
|
+
}
|
|
1467
|
+
type AchievementType$1 = 'DIVERSE_DEBUT' | 'VARIETY_VIRTUOSO' | 'MASTER_OF_DIVERSITY' | 'CURIOUS_NEWCOMER' | 'TRAILBLAZER' | 'INNOVATION_ICON' | 'RAPID_ROLLER' | 'WHIRLWIND_WAGERER' | 'BETTING_BONANZA' | 'STEADY_STRATEGIST' | 'CONSISTENT_CONTENDER' | 'LEGENDARY_LOYALIST';
|
|
1468
|
+
interface AchievementSettingsQueryVariables {
|
|
1469
|
+
type: AchievementType$1;
|
|
1470
|
+
}
|
|
1471
|
+
interface DeleteMemberAccountMutation {
|
|
1472
|
+
deleteMemberAccount: boolean;
|
|
1473
|
+
}
|
|
1474
|
+
interface DeleteMemberAccountMutationVariables {
|
|
1475
|
+
input: {
|
|
1476
|
+
id: string;
|
|
1477
|
+
};
|
|
1478
|
+
}
|
|
1479
|
+
interface UpdateDailyBetLimitMutation {
|
|
1480
|
+
updateDailyBetLimit: boolean;
|
|
1481
|
+
}
|
|
1482
|
+
interface UpdateDailyBetLimitMutationVariables {
|
|
1483
|
+
input: {
|
|
1484
|
+
dailyBetLimit: Decimal;
|
|
1485
|
+
};
|
|
1486
|
+
}
|
|
1487
|
+
interface UpdateMonthlyBetLimitMutation {
|
|
1488
|
+
updateMonthlyBetLimit: boolean;
|
|
1489
|
+
}
|
|
1490
|
+
interface UpdateMonthlyBetLimitMutationVariables {
|
|
1491
|
+
input: {
|
|
1492
|
+
monthlyBetLimit: Decimal;
|
|
1493
|
+
};
|
|
1494
|
+
}
|
|
1495
|
+
interface UpdateDailyDepositLimitMutation {
|
|
1496
|
+
updateDailyDepositLimit: boolean;
|
|
1497
|
+
}
|
|
1498
|
+
interface UpdateDailyDepositLimitMutationVariables {
|
|
1499
|
+
input: {
|
|
1500
|
+
dailyDepositLimit: Decimal;
|
|
1501
|
+
};
|
|
1502
|
+
}
|
|
1503
|
+
interface UpdateMonthlyDepositLimitMutation {
|
|
1504
|
+
updateMonthlyDepositLimit: boolean;
|
|
1505
|
+
}
|
|
1506
|
+
interface UpdateMonthlyDepositLimitMutationVariables {
|
|
1507
|
+
input: {
|
|
1508
|
+
monthlyDepositLimit: Decimal;
|
|
1509
|
+
};
|
|
1510
|
+
}
|
|
1511
|
+
interface UnlinkGoogleMutation {
|
|
1512
|
+
unlinkGoogle: boolean;
|
|
1513
|
+
}
|
|
1514
|
+
interface UnlinkGoogleMutationVariables {
|
|
1515
|
+
input: {
|
|
1516
|
+
id: string;
|
|
1517
|
+
};
|
|
1518
|
+
}
|
|
1519
|
+
/** @deprecated */
|
|
1520
|
+
interface SendVerificationCodeInput {
|
|
1521
|
+
channel: 'SMS' | 'EMAIL';
|
|
1522
|
+
recipient: string;
|
|
1523
|
+
}
|
|
1524
|
+
/** @deprecated */
|
|
1525
|
+
type SendVerificationCodeError$1 = 'InvalidPlatformError' | 'NotReadyToSendVerficationCodeError';
|
|
1526
|
+
/** @deprecated */
|
|
1527
|
+
interface SendVerificationCodeMutation {
|
|
1528
|
+
sendVerificationCode?: null | {
|
|
1529
|
+
__typename: SendVerificationCodeError$1;
|
|
1530
|
+
};
|
|
1531
|
+
}
|
|
1532
|
+
/** @deprecated */
|
|
1533
|
+
interface SendVerificationCodeMutationVariables {
|
|
1534
|
+
input: {
|
|
1535
|
+
channel: 'SMS' | 'EMAIL';
|
|
1536
|
+
recipient: string;
|
|
1537
|
+
};
|
|
1538
|
+
}
|
|
1539
|
+
type SendVerificationCodeError__Next$1 = 'NotReadyToSendVerficationCodeError' | 'RateLimitExceededError' | 'AccountNotFoundError';
|
|
1540
|
+
interface SendVerificationCodeInput__Next$1 {
|
|
1541
|
+
channel: 'SMS' | 'EMAIL';
|
|
1542
|
+
recipient: string;
|
|
1543
|
+
verificationType?: 'MEMBER';
|
|
1544
|
+
}
|
|
1545
|
+
type VerifyMobileNumberError$1 = 'InvalidSMSVerificationCodeError' | 'MobileNumberAlreadyVerifiedError';
|
|
1546
|
+
interface VerifyMobileNumberMutation {
|
|
1547
|
+
verifyMobileNumber?: null | {
|
|
1548
|
+
__typename: VerifyMobileNumberError$1;
|
|
1549
|
+
};
|
|
1550
|
+
}
|
|
1551
|
+
interface VerifyMobileNumberMutationVariables {
|
|
1552
|
+
input: {
|
|
1553
|
+
verificationCode: string;
|
|
1554
|
+
};
|
|
1555
|
+
}
|
|
1556
|
+
type CreateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyExistsError' | 'MemberVerificationAlreadyApprovedError' | 'AccountNotFoundError';
|
|
1557
|
+
interface CreateMemberVerificationMutation {
|
|
1558
|
+
createMemberVerification?: null | {
|
|
1559
|
+
__typename: CreateMemberVerificationError;
|
|
1560
|
+
};
|
|
1561
|
+
}
|
|
1562
|
+
interface CreateMemberVerificationMutationVariables {
|
|
1563
|
+
input: {
|
|
1564
|
+
id: string;
|
|
1565
|
+
idFrontImage: string;
|
|
1566
|
+
selfieImage: string;
|
|
1567
|
+
address: string;
|
|
1568
|
+
permanentAddress: string;
|
|
1569
|
+
sourceOfIncome: string;
|
|
1570
|
+
natureOfWork: string;
|
|
1571
|
+
nationality: string;
|
|
1572
|
+
placeOfBirth: string;
|
|
1573
|
+
};
|
|
1574
|
+
}
|
|
1575
|
+
interface CreateMemberVerificationNextMutation {
|
|
1576
|
+
createMemberVerification_next?: null | {
|
|
1577
|
+
__typename: CreateMemberVerificationError;
|
|
1578
|
+
};
|
|
1579
|
+
}
|
|
1580
|
+
interface CreateMemberVerificationNextMutationVariables {
|
|
1581
|
+
input: {
|
|
1582
|
+
id: string;
|
|
1583
|
+
idFrontImage?: string;
|
|
1584
|
+
selfieImage?: string;
|
|
1585
|
+
address?: string;
|
|
1586
|
+
permanentAddress?: string;
|
|
1587
|
+
sourceOfIncome?: string;
|
|
1588
|
+
natureOfWork?: string;
|
|
1589
|
+
nationality?: string;
|
|
1590
|
+
placeOfBirth?: string;
|
|
1591
|
+
};
|
|
1592
|
+
}
|
|
1593
|
+
type UpdateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyApprovedError' | 'MemberVerificationDoesNotExistError';
|
|
1594
|
+
type SubmitMemberVerificationError$1 = 'VerificationDataIncompleteError' | 'MemberVerificationDoesNotExistError' | 'MemberVerificationAlreadyApprovedError';
|
|
1595
|
+
interface UpdateMemberVerificationMutation {
|
|
1596
|
+
updateMemberVerification?: null | {
|
|
1597
|
+
__typename: UpdateMemberVerificationError;
|
|
1598
|
+
};
|
|
1599
|
+
}
|
|
1600
|
+
interface UpdateMemberVerificationMutationVariables {
|
|
1601
|
+
input: {
|
|
1602
|
+
id: string;
|
|
1603
|
+
data: {
|
|
1604
|
+
idFrontImage?: string;
|
|
1605
|
+
selfieImage?: string;
|
|
1606
|
+
address?: string;
|
|
1607
|
+
permanentAddress?: string;
|
|
1608
|
+
sourceOfIncome?: string;
|
|
1609
|
+
natureOfWork?: string;
|
|
1610
|
+
nationality?: string;
|
|
1611
|
+
placeOfBirth?: string;
|
|
1612
|
+
};
|
|
1613
|
+
};
|
|
1614
|
+
}
|
|
1615
|
+
interface UpdateMemberVerificationNextMutation {
|
|
1616
|
+
updateMemberVerification_next?: null | {
|
|
1617
|
+
__typename: UpdateMemberVerificationError;
|
|
1618
|
+
};
|
|
1619
|
+
}
|
|
1620
|
+
interface UpdateMemberVerificationNextMutationVariables {
|
|
1621
|
+
input: {
|
|
1622
|
+
id: string;
|
|
1623
|
+
data: {
|
|
1624
|
+
idFrontImage?: string;
|
|
1625
|
+
selfieImage?: string;
|
|
1626
|
+
address?: string;
|
|
1627
|
+
permanentAddress?: string;
|
|
1628
|
+
sourceOfIncome?: string;
|
|
1629
|
+
natureOfWork?: string;
|
|
1630
|
+
nationality?: string;
|
|
1631
|
+
placeOfBirth?: string;
|
|
1632
|
+
};
|
|
1633
|
+
};
|
|
1634
|
+
}
|
|
1635
|
+
interface SubmitMemberVerificationMutation {
|
|
1636
|
+
submitMemberVerification?: null | {
|
|
1637
|
+
__typename: SubmitMemberVerificationError$1;
|
|
1638
|
+
};
|
|
1639
|
+
}
|
|
1640
|
+
interface SubmitMemberVerificationMutationVariables {
|
|
1641
|
+
input: {
|
|
1642
|
+
id: string;
|
|
1643
|
+
};
|
|
1644
|
+
}
|
|
1645
|
+
interface ProfileCompletion$1 {
|
|
1646
|
+
completionPercentage?: Decimal | null;
|
|
1647
|
+
personalInformation?: boolean | null;
|
|
1648
|
+
accountVerification?: boolean | null;
|
|
1649
|
+
mobileNumberVerification?: boolean | null;
|
|
1650
|
+
transactionPassword?: boolean | null;
|
|
1651
|
+
accountPassword?: boolean | null;
|
|
1652
|
+
}
|
|
1653
|
+
interface ProfileCompletionQuery {
|
|
1654
|
+
profileCompletion: ProfileCompletion$1;
|
|
1655
|
+
}
|
|
1656
|
+
interface RegisterMemberAccountByMobileNumberMutationVariables {
|
|
1657
|
+
input: {
|
|
1658
|
+
id: string;
|
|
1659
|
+
mobileNumber: string;
|
|
1660
|
+
password: string;
|
|
1661
|
+
realName: string;
|
|
1662
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1663
|
+
};
|
|
1664
|
+
mobileNumberVerificationCode: string;
|
|
1665
|
+
testPass?: boolean;
|
|
1666
|
+
reCAPTCHAResponse?: string;
|
|
1667
|
+
}
|
|
1668
|
+
interface RegisterMemberAccountByMobileNumberMutation {
|
|
1669
|
+
registerMemberAccountByMobileNumber?: null | {
|
|
1670
|
+
__typename: RegisterMemberAccountError;
|
|
1671
|
+
};
|
|
1672
|
+
}
|
|
1673
|
+
interface RegisterMemberAccountByMobileNumberMutationVariables__Next {
|
|
1674
|
+
input: {
|
|
1675
|
+
id: string;
|
|
1676
|
+
mobileNumber: string;
|
|
1677
|
+
mobileNumberVerificationCode: string;
|
|
1678
|
+
emailAddress?: string;
|
|
1679
|
+
branchCode?: string;
|
|
1680
|
+
agentCode?: string;
|
|
1681
|
+
cellxpertCxd?: string;
|
|
1682
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
|
|
1683
|
+
};
|
|
1684
|
+
referralCode?: string;
|
|
1685
|
+
}
|
|
1686
|
+
interface RegisterMemberAccountByMobileNumberMutation__Next {
|
|
1687
|
+
registerMemberAccountByMobileNumber?: null | {
|
|
1688
|
+
__typename: RegisterMemberAccountError;
|
|
1689
|
+
};
|
|
1690
|
+
}
|
|
1691
|
+
interface DepositGatewaySettings {
|
|
1692
|
+
minimumAmount: string;
|
|
1693
|
+
maximumAmount: string;
|
|
1694
|
+
webEnabled: boolean;
|
|
1695
|
+
mobileWebEnabled: boolean;
|
|
1696
|
+
androidEnabled: boolean;
|
|
1697
|
+
iosEnabled: boolean;
|
|
1698
|
+
bankAccountName?: string;
|
|
1699
|
+
bankAccountNumber?: string;
|
|
1700
|
+
bankIFSCCode?: string;
|
|
1701
|
+
upiId?: string;
|
|
1702
|
+
upiQRCode?: File$1;
|
|
1703
|
+
}
|
|
1704
|
+
interface WithdrawalGatewaySettings {
|
|
1705
|
+
minimumAmount: Decimal;
|
|
1706
|
+
maximumAmount: Decimal;
|
|
1707
|
+
webEnabled: boolean;
|
|
1708
|
+
mobileWebEnabled: boolean;
|
|
1709
|
+
androidEnabled: boolean;
|
|
1710
|
+
iosEnabled: boolean;
|
|
1711
|
+
}
|
|
1712
|
+
interface MemberLevelSetting$1 {
|
|
1713
|
+
enabled: boolean;
|
|
1714
|
+
name: string;
|
|
1715
|
+
achievementPointsRequirement: number;
|
|
1716
|
+
turnoverRequirement: number;
|
|
1717
|
+
bonusAmount: number;
|
|
1718
|
+
bonusTurnoverRequirement: number;
|
|
1719
|
+
}
|
|
1720
|
+
interface MemberLevelSettings$1 {
|
|
1721
|
+
memberLevelSettings__1: MemberLevelSetting$1;
|
|
1722
|
+
memberLevelSettings__2: MemberLevelSetting$1;
|
|
1723
|
+
memberLevelSettings__3: MemberLevelSetting$1;
|
|
1724
|
+
memberLevelSettings__4: MemberLevelSetting$1;
|
|
1725
|
+
memberLevelSettings__5: MemberLevelSetting$1;
|
|
1726
|
+
memberLevelSettings__6: MemberLevelSetting$1;
|
|
1727
|
+
memberLevelSettings__7: MemberLevelSetting$1;
|
|
1728
|
+
memberLevelSettings__8: MemberLevelSetting$1;
|
|
1729
|
+
memberLevelSettings__9: MemberLevelSetting$1;
|
|
1730
|
+
memberLevelSettings__10: MemberLevelSetting$1;
|
|
1731
|
+
memberLevelSettings__11: MemberLevelSetting$1;
|
|
1732
|
+
memberLevelSettings__12: MemberLevelSetting$1;
|
|
1733
|
+
memberLevelSettings__13: MemberLevelSetting$1;
|
|
1734
|
+
memberLevelSettings__14: MemberLevelSetting$1;
|
|
1735
|
+
memberLevelSettings__15: MemberLevelSetting$1;
|
|
1736
|
+
memberLevelSettings__16: MemberLevelSetting$1;
|
|
1737
|
+
memberLevelSettings__17: MemberLevelSetting$1;
|
|
1738
|
+
memberLevelSettings__18: MemberLevelSetting$1;
|
|
1739
|
+
memberLevelSettings__19: MemberLevelSetting$1;
|
|
1740
|
+
memberLevelSettings__20: MemberLevelSetting$1;
|
|
1741
|
+
}
|
|
1742
|
+
interface GeneralMemberLevelSettings$1 {
|
|
1743
|
+
generalMemberLevelSettings: {
|
|
1744
|
+
enabled: boolean;
|
|
1745
|
+
};
|
|
1746
|
+
}
|
|
1747
|
+
type MemberLevelSettingsQuery = MemberLevelSettings$1;
|
|
1748
|
+
type GeneralMemberLevelSettingsQuery = GeneralMemberLevelSettings$1;
|
|
1749
|
+
/** @deprecated */
|
|
1750
|
+
interface Platform$1 {
|
|
1751
|
+
currency: Currency$1;
|
|
1752
|
+
timezone: string;
|
|
1753
|
+
restrictWithdrawalsToVerifiedMembers: boolean;
|
|
1754
|
+
minimumFirstDepositAmount: Decimal;
|
|
1755
|
+
memberLevelSettings?: MemberLevelSettings$1;
|
|
1756
|
+
bankDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1757
|
+
gcashDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1758
|
+
gcashWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1759
|
+
aioGcashDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1760
|
+
aioPayMayaDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1761
|
+
aioGrabPayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1762
|
+
aioPalawanPayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1763
|
+
mayaDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1764
|
+
mayaAppDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1765
|
+
mayaWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1766
|
+
onlineBankDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1767
|
+
qrphDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1768
|
+
manualBankDepositGatewaySettings: DepositGatewaySettings | null;
|
|
1769
|
+
manualUPIDepositGatewaySettings: DepositGatewaySettings | null;
|
|
1770
|
+
bankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1771
|
+
gcashWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1772
|
+
gcashStandardCashInWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1773
|
+
mayaWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1774
|
+
mayaAppWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1775
|
+
instapayWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1776
|
+
manualBankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1777
|
+
manualUPIWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1778
|
+
pointsClubSettings?: PointsClubSettings$1 | null;
|
|
1779
|
+
}
|
|
1780
|
+
/** @deprecated */
|
|
1781
|
+
type PlatformQuery = Platform$1;
|
|
1782
|
+
interface Platform__Next$1 {
|
|
1783
|
+
currency: Currency$1;
|
|
1784
|
+
timezone: string;
|
|
1785
|
+
}
|
|
1786
|
+
type PlatformQuery__Next = Platform__Next$1;
|
|
1787
|
+
interface PaymentSettings$1 {
|
|
1788
|
+
restrictWithdrawalsToVerifiedMembers: boolean;
|
|
1789
|
+
minimumFirstDepositAmount: Decimal;
|
|
1790
|
+
bankDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1791
|
+
gcashDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1792
|
+
gcashWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1793
|
+
aioGcashDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1794
|
+
aioPayMayaDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1795
|
+
aioGrabPayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1796
|
+
aioPalawanPayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1797
|
+
mayaDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1798
|
+
mayaAppDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1799
|
+
mayaWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1800
|
+
onlineBankDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1801
|
+
qrphDepositGatewaySettings?: DepositGatewaySettings | null;
|
|
1802
|
+
manualBankDepositGatewaySettings: DepositGatewaySettings | null;
|
|
1803
|
+
manualUPIDepositGatewaySettings: DepositGatewaySettings | null;
|
|
1804
|
+
bankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1805
|
+
gcashWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1806
|
+
gcashStandardCashInWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1807
|
+
mayaWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1808
|
+
mayaAppWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1809
|
+
instapayWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1810
|
+
manualBankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1811
|
+
manualUPIWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
|
|
1812
|
+
}
|
|
1813
|
+
type PaymentSettingsQuery = PaymentSettings$1;
|
|
1814
|
+
type LoginChannel$1 = 'IOS' | 'ANDROID' | 'WEB_DESKTOP' | 'WEB_ANDROID';
|
|
1815
|
+
interface Session$1 {
|
|
1816
|
+
id: string;
|
|
1817
|
+
dateTimeCreated: DateString;
|
|
1818
|
+
}
|
|
1819
|
+
type CreateSessionInput = {
|
|
1820
|
+
type: 'NAME_AND_PASSWORD';
|
|
1821
|
+
name: string;
|
|
1822
|
+
password: string;
|
|
1823
|
+
mobileNumber?: never;
|
|
1824
|
+
verificationCode?: never;
|
|
1825
|
+
sessionId?: never;
|
|
1826
|
+
token?: never;
|
|
1827
|
+
reCAPTCHAResponse?: string;
|
|
1828
|
+
testPass?: string;
|
|
1829
|
+
channel?: LoginChannel$1;
|
|
1830
|
+
} | {
|
|
1831
|
+
type: 'MOBILE_NUMBER';
|
|
1832
|
+
name?: never;
|
|
1833
|
+
password?: never;
|
|
1834
|
+
mobileNumber: string;
|
|
1835
|
+
verificationCode: string;
|
|
1836
|
+
sessionId?: never;
|
|
1837
|
+
token?: never;
|
|
1838
|
+
reCAPTCHAResponse?: string;
|
|
1839
|
+
testPass?: string;
|
|
1840
|
+
channel?: LoginChannel$1;
|
|
1841
|
+
} | {
|
|
1842
|
+
type: 'MAYA';
|
|
1843
|
+
name?: never;
|
|
1844
|
+
password?: never;
|
|
1845
|
+
mobileNumber?: never;
|
|
1846
|
+
verificationCode?: never;
|
|
1847
|
+
sessionId: string;
|
|
1848
|
+
token?: never;
|
|
1849
|
+
reCAPTCHAResponse?: string;
|
|
1850
|
+
testPass?: string;
|
|
1851
|
+
channel?: LoginChannel$1;
|
|
1852
|
+
} | {
|
|
1853
|
+
type: 'SOCIALS';
|
|
1854
|
+
name?: never;
|
|
1855
|
+
password?: never;
|
|
1856
|
+
mobileNumber?: never;
|
|
1857
|
+
verificationCode?: never;
|
|
1858
|
+
sessionId?: never;
|
|
1859
|
+
token: string;
|
|
1860
|
+
reCAPTCHAResponse?: string;
|
|
1861
|
+
testPass?: string;
|
|
1862
|
+
channel?: LoginChannel$1;
|
|
1863
|
+
} | {
|
|
1864
|
+
type: 'CABINET';
|
|
1865
|
+
name?: never;
|
|
1866
|
+
password?: never;
|
|
1867
|
+
mobileNumber?: never;
|
|
1868
|
+
verificationCode?: never;
|
|
1869
|
+
sessionId?: never;
|
|
1870
|
+
token: string;
|
|
1871
|
+
reCAPTCHAResponse?: string;
|
|
1872
|
+
testPass?: string;
|
|
1873
|
+
channel?: LoginChannel$1;
|
|
1874
|
+
} | {
|
|
1875
|
+
type: 'SINGLE_USE_TOKEN';
|
|
1876
|
+
name?: never;
|
|
1877
|
+
password?: never;
|
|
1878
|
+
mobileNumber?: never;
|
|
1879
|
+
verificationCode?: never;
|
|
1880
|
+
sessionId?: never;
|
|
1881
|
+
token: string;
|
|
1882
|
+
reCAPTCHAResponse?: never;
|
|
1883
|
+
testPass?: string;
|
|
1884
|
+
channel?: LoginChannel$1;
|
|
1885
|
+
};
|
|
1886
|
+
type Authenticator$1 = {
|
|
1887
|
+
type: 'SECURITY_QUESTION';
|
|
1888
|
+
token: string;
|
|
1889
|
+
secretQuestion: SecretQuestion$1;
|
|
1890
|
+
};
|
|
1891
|
+
type CreateSessionMutation = {
|
|
1892
|
+
session: Session$1;
|
|
1893
|
+
accessToken: string;
|
|
1894
|
+
refreshToken: string;
|
|
1895
|
+
authenticator?: never;
|
|
1896
|
+
} | {
|
|
1897
|
+
session: Session$1;
|
|
1898
|
+
accessToken?: never;
|
|
1899
|
+
refreshToken?: never;
|
|
1900
|
+
authenticator: Authenticator$1;
|
|
1901
|
+
};
|
|
1902
|
+
type CreateSessionError = 'AccountNotFoundError' | 'AccountBlacklistedError' | 'InvalidReCAPTCHAResponseError' | 'AccountSuspendedError';
|
|
1903
|
+
type RefreshSessionError$1 = 'InvalidTokenError' | 'AccountBlacklistedError' | 'AccountSuspendedError' | 'SessionExpiredError' | 'VerificationLockedError';
|
|
1904
|
+
interface RefreshSessionMutation {
|
|
1905
|
+
accessToken: string;
|
|
1906
|
+
refreshToken: string;
|
|
1907
|
+
}
|
|
1908
|
+
interface SecurityQuestionAuthenticateInput$1 {
|
|
1909
|
+
type: 'SECURITY_QUESTION';
|
|
1910
|
+
token: string;
|
|
1911
|
+
secretAnswer: string;
|
|
1912
|
+
channel?: LoginChannel$1;
|
|
1913
|
+
}
|
|
1914
|
+
type AuthenticateInput$1 = SecurityQuestionAuthenticateInput$1;
|
|
1915
|
+
type AuthenticateError$1 = 'InvalidTokenOrSecretAnswerError';
|
|
1916
|
+
interface AuthenticateMutation {
|
|
1917
|
+
session: Session$1;
|
|
1918
|
+
accessToken: string;
|
|
1919
|
+
refreshToken: string;
|
|
1920
|
+
}
|
|
1921
|
+
interface MayaSession {
|
|
1922
|
+
id: string;
|
|
1923
|
+
member?: string;
|
|
1924
|
+
dateTimeCreated: DateString;
|
|
1925
|
+
}
|
|
1926
|
+
interface MayaSessionQuery {
|
|
1927
|
+
mayaSession?: MayaSession | null;
|
|
1928
|
+
}
|
|
1929
|
+
interface MayaSessionQueryVariables {
|
|
1930
|
+
id: string;
|
|
1931
|
+
}
|
|
1932
|
+
interface ValidateMayaSessionMutation {
|
|
1933
|
+
validateMayaSession: boolean;
|
|
1934
|
+
}
|
|
1935
|
+
type CreateSingleUseTokenError$1 = 'InvalidTokenError';
|
|
1936
|
+
interface CreateSingleUseTokenMutation {
|
|
1937
|
+
token: string;
|
|
1938
|
+
}
|
|
1939
|
+
interface TextField$1 {
|
|
1940
|
+
id: string;
|
|
1941
|
+
type: 'text';
|
|
1942
|
+
label: string;
|
|
1943
|
+
value?: string;
|
|
1944
|
+
default?: string;
|
|
1945
|
+
required?: true;
|
|
1946
|
+
pattern?: 'url' | 'email' | (string & {});
|
|
1947
|
+
minLength?: number;
|
|
1948
|
+
maxLength?: number;
|
|
1949
|
+
placeholder?: string;
|
|
1950
|
+
}
|
|
1951
|
+
interface RichTextField$1 {
|
|
1952
|
+
id: string;
|
|
1953
|
+
type: 'rich_text';
|
|
1954
|
+
label: string;
|
|
1955
|
+
value?: string;
|
|
1956
|
+
default?: string;
|
|
1957
|
+
required?: true;
|
|
1958
|
+
placeholder?: string;
|
|
1959
|
+
}
|
|
1960
|
+
interface ImageField$1 {
|
|
1961
|
+
id: string;
|
|
1962
|
+
type: 'image';
|
|
1963
|
+
label: string;
|
|
1964
|
+
value?: string;
|
|
1965
|
+
default?: string;
|
|
1966
|
+
required?: boolean;
|
|
1967
|
+
width?: number;
|
|
1968
|
+
height?: number;
|
|
1969
|
+
minWidth?: number;
|
|
1970
|
+
minHeight?: number;
|
|
1971
|
+
maxWidth?: number;
|
|
1972
|
+
maxHeight?: number;
|
|
1973
|
+
}
|
|
1974
|
+
interface SelectField$1 {
|
|
1975
|
+
id: string;
|
|
1976
|
+
type: 'select';
|
|
1977
|
+
label: string;
|
|
1978
|
+
value?: string;
|
|
1979
|
+
default?: string;
|
|
1980
|
+
options: string[];
|
|
1981
|
+
required?: boolean;
|
|
1982
|
+
}
|
|
1983
|
+
interface MultiSelectField$1 {
|
|
1984
|
+
id: string;
|
|
1985
|
+
type: 'multi_select';
|
|
1986
|
+
label: string;
|
|
1987
|
+
value?: string[];
|
|
1988
|
+
default?: string[];
|
|
1989
|
+
options: string[];
|
|
1990
|
+
required?: boolean;
|
|
1991
|
+
}
|
|
1992
|
+
interface ToggleField$1 {
|
|
1993
|
+
id: string;
|
|
1994
|
+
type: 'toggle';
|
|
1995
|
+
label: string;
|
|
1996
|
+
value?: boolean;
|
|
1997
|
+
default?: boolean;
|
|
1998
|
+
}
|
|
1999
|
+
interface CompoundField$1 {
|
|
2000
|
+
id: string;
|
|
2001
|
+
type: 'compound';
|
|
2002
|
+
fields: (TextField$1 | ImageField$1 | RichTextField$1 | SelectField$1 | MultiSelectField$1 | ToggleField$1 | CompoundField$1)[];
|
|
2003
|
+
value?: any;
|
|
2004
|
+
default?: any;
|
|
2005
|
+
multiple?: boolean;
|
|
2006
|
+
}
|
|
2007
|
+
type Field$1 = TextField$1 | ImageField$1 | SelectField$1 | MultiSelectField$1 | ToggleField$1 | RichTextField$1 | CompoundField$1;
|
|
2008
|
+
type FieldType$1 = Field$1['type'];
|
|
2009
|
+
interface SiteConfig {
|
|
2010
|
+
name: string;
|
|
2011
|
+
logo: string;
|
|
2012
|
+
fields: Field$1[];
|
|
2013
|
+
}
|
|
2014
|
+
interface Site$1 {
|
|
2015
|
+
id: string;
|
|
2016
|
+
name: string;
|
|
2017
|
+
logo?: string | null;
|
|
2018
|
+
config: SiteConfig;
|
|
2019
|
+
}
|
|
2020
|
+
interface SiteQuery {
|
|
2021
|
+
data: Site$1;
|
|
2022
|
+
}
|
|
2023
|
+
type ActivityRecordType$1 = 'REGISTRATION' | 'LOGIN' | 'DEPOSIT' | 'WITHDRAWAL' | 'BET' | 'CASHBACK_BONUS' | 'BONUS' | 'FIRST_DEPOSIT';
|
|
2024
|
+
interface ActivityRecord$1 {
|
|
2025
|
+
id: string;
|
|
2026
|
+
type: ActivityRecordType$1;
|
|
2027
|
+
domain?: string | null;
|
|
2028
|
+
amount?: Decimal | null;
|
|
2029
|
+
details: Html;
|
|
2030
|
+
dateTimeCreated: DateString;
|
|
2031
|
+
}
|
|
2032
|
+
interface ActivityRecordsQuery {
|
|
2033
|
+
member: PaginatedQuery<'activityRecords', ActivityRecord$1>;
|
|
2034
|
+
}
|
|
2035
|
+
interface ActivityRecordsQueryVariables {
|
|
2036
|
+
first?: number;
|
|
2037
|
+
after?: string;
|
|
2038
|
+
filter?: {
|
|
2039
|
+
type?: EnumFilterField<ActivityRecordType$1>;
|
|
2040
|
+
dateTimeCreated?: DateFilterField;
|
|
2041
|
+
};
|
|
2042
|
+
}
|
|
2043
|
+
interface ReferralCodeQuery {
|
|
2044
|
+
referralCode?: string | null;
|
|
2045
|
+
}
|
|
2046
|
+
interface UpdateReferralCodeMutationVariables {
|
|
2047
|
+
input: {
|
|
2048
|
+
code: string;
|
|
2049
|
+
};
|
|
2050
|
+
}
|
|
2051
|
+
type UpdateReferralCodeError$1 = 'ReferralCodeNotAvailableError';
|
|
2052
|
+
interface UpdateReferralCodeMutation {
|
|
2053
|
+
updateReferralCode?: null | {
|
|
2054
|
+
__typename: UpdateReferralCodeError$1;
|
|
2055
|
+
};
|
|
2056
|
+
}
|
|
2057
|
+
interface Referral$1 {
|
|
2058
|
+
id: string;
|
|
2059
|
+
upline: {
|
|
2060
|
+
id: string;
|
|
2061
|
+
name: string;
|
|
2062
|
+
realName: string;
|
|
2063
|
+
};
|
|
2064
|
+
downline: {
|
|
2065
|
+
id: string;
|
|
2066
|
+
name: string;
|
|
2067
|
+
realName: string;
|
|
2068
|
+
};
|
|
2069
|
+
level: number;
|
|
2070
|
+
turnover: Decimal;
|
|
2071
|
+
commission: Decimal;
|
|
2072
|
+
dateTimeCreated: DateString;
|
|
2073
|
+
qualified: boolean;
|
|
2074
|
+
}
|
|
2075
|
+
interface ReferralsQuery {
|
|
2076
|
+
member: PaginatedQuery<'referrals', Referral$1>;
|
|
2077
|
+
}
|
|
2078
|
+
interface ReferralsQueryVariables {
|
|
2079
|
+
first?: number;
|
|
2080
|
+
after?: string;
|
|
2081
|
+
filter?: {
|
|
2082
|
+
level?: NumberFilterField;
|
|
2083
|
+
upline?: ObjectIdFilterField;
|
|
2084
|
+
downline?: ObjectIdFilterField;
|
|
2085
|
+
};
|
|
2086
|
+
}
|
|
2087
|
+
interface ReferralCommission$1 {
|
|
2088
|
+
id: string;
|
|
2089
|
+
commission: Decimal;
|
|
2090
|
+
referralCode: string;
|
|
2091
|
+
referralsCount: number;
|
|
2092
|
+
level1Commission: Decimal;
|
|
2093
|
+
level2Commission: Decimal;
|
|
2094
|
+
level3Commission: Decimal;
|
|
2095
|
+
level1ReferralsCount: number;
|
|
2096
|
+
level2ReferralsCount: number;
|
|
2097
|
+
level3ReferralsCount: number;
|
|
2098
|
+
dateTimeCreated: DateString;
|
|
2099
|
+
dateTimeLastUpdated: DateString;
|
|
2100
|
+
}
|
|
2101
|
+
interface ReferralCommissionQuery {
|
|
2102
|
+
member: {
|
|
2103
|
+
referralCommission?: ReferralCommission$1 | null;
|
|
2104
|
+
};
|
|
2105
|
+
}
|
|
2106
|
+
interface UplinesByNameQueryVariables {
|
|
2107
|
+
search: string;
|
|
2108
|
+
first?: number;
|
|
2109
|
+
}
|
|
2110
|
+
interface DownlinesByNameQueryVariables {
|
|
2111
|
+
search: string;
|
|
2112
|
+
first?: number;
|
|
2113
|
+
}
|
|
2114
|
+
interface UplinesByNameQuery {
|
|
2115
|
+
uplinesByName: Referral$1[];
|
|
2116
|
+
}
|
|
2117
|
+
interface DownlinesByNameQuery {
|
|
2118
|
+
downlinesByName: Referral$1[];
|
|
2119
|
+
}
|
|
2120
|
+
interface PointsClubSettings$1 {
|
|
2121
|
+
multiplier: Decimal;
|
|
2122
|
+
}
|
|
2123
|
+
interface PointsClubSettingsQuery {
|
|
2124
|
+
pointsClubSettings?: PointsClubSettings$1 | null;
|
|
2125
|
+
}
|
|
2126
|
+
interface AchievementSettings$1 {
|
|
2127
|
+
enabled: boolean;
|
|
2128
|
+
points: number;
|
|
2129
|
+
uniqueGamesCount: number;
|
|
2130
|
+
newGamesCount: number;
|
|
2131
|
+
betsCount: number;
|
|
2132
|
+
activeDaysCount: number;
|
|
2133
|
+
}
|
|
2134
|
+
interface AchievementSettingsResponse$1 {
|
|
2135
|
+
diverseDebut: AchievementSettings$1;
|
|
2136
|
+
varietyVirtuoso: AchievementSettings$1;
|
|
2137
|
+
masterOfDiversity: AchievementSettings$1;
|
|
2138
|
+
curiousNewcomer: AchievementSettings$1;
|
|
2139
|
+
trailblazer: AchievementSettings$1;
|
|
2140
|
+
innovationIcon: AchievementSettings$1;
|
|
2141
|
+
rapidRoller: AchievementSettings$1;
|
|
2142
|
+
whirlwindWagerer: AchievementSettings$1;
|
|
2143
|
+
bettingBonanza: AchievementSettings$1;
|
|
2144
|
+
steadyStrategist: AchievementSettings$1;
|
|
2145
|
+
consistentContender: AchievementSettings$1;
|
|
2146
|
+
legendaryLoyalist: AchievementSettings$1;
|
|
2147
|
+
}
|
|
2148
|
+
type AchievementSettingsQuery = AchievementSettingsResponse$1;
|
|
2149
|
+
interface MessageAction$1 {
|
|
2150
|
+
name: string;
|
|
2151
|
+
url: string;
|
|
2152
|
+
}
|
|
2153
|
+
type MessageIcon$1 = 'MESSAGE' | 'CHECK' | 'CELEBRATE' | 'ALERT';
|
|
2154
|
+
type MessageType$1 = 'TOURNAMENT_PAYOUT' | 'IMAGE' | 'TEXT' | 'REJECTION';
|
|
2155
|
+
interface Message$1 {
|
|
2156
|
+
id: string;
|
|
2157
|
+
icon: MessageIcon$1;
|
|
2158
|
+
/** @deprecated use `Message.icon` */
|
|
2159
|
+
logo: MessageIcon$1;
|
|
2160
|
+
title: string;
|
|
2161
|
+
popup: boolean;
|
|
2162
|
+
force: boolean;
|
|
2163
|
+
image?: string;
|
|
2164
|
+
content: string;
|
|
2165
|
+
actions: MessageAction$1[];
|
|
2166
|
+
markedAsRead: boolean;
|
|
2167
|
+
dateTimeCreated: DateString;
|
|
2168
|
+
type: MessageType$1;
|
|
2169
|
+
metadata: {
|
|
2170
|
+
tournament: {
|
|
2171
|
+
id: string;
|
|
2172
|
+
name: string;
|
|
2173
|
+
};
|
|
2174
|
+
payout: {
|
|
2175
|
+
id: string;
|
|
2176
|
+
amount: Decimal;
|
|
2177
|
+
};
|
|
2178
|
+
} | null;
|
|
2179
|
+
}
|
|
2180
|
+
interface MessagesQueryVariables {
|
|
2181
|
+
first?: number;
|
|
2182
|
+
after?: string;
|
|
2183
|
+
filter?: {
|
|
2184
|
+
popup?: BooleanFilterField;
|
|
2185
|
+
markedAsRead?: BooleanFilterField;
|
|
2186
|
+
};
|
|
2187
|
+
}
|
|
2188
|
+
interface MessagesQuery extends PaginatedQuery<'messages', Message$1> {
|
|
2189
|
+
}
|
|
2190
|
+
interface MarkMessageAsReadMutation {
|
|
2191
|
+
markMessageAsRead: boolean;
|
|
2192
|
+
}
|
|
2193
|
+
interface MarkMessageAsReadMutationVariables {
|
|
2194
|
+
id: string;
|
|
2195
|
+
}
|
|
2196
|
+
/** @deprecated */
|
|
2197
|
+
interface MarkAllMessageAsReadMutation {
|
|
2198
|
+
markAllMessageAsRead: boolean;
|
|
2199
|
+
}
|
|
2200
|
+
interface MarkAllMessagesAsReadMutation {
|
|
2201
|
+
markAllMessagesAsRead: boolean;
|
|
2202
|
+
}
|
|
2203
|
+
interface UnreadMessagesCountQuery {
|
|
2204
|
+
messages: {
|
|
2205
|
+
totalCount: number;
|
|
2206
|
+
};
|
|
2207
|
+
}
|
|
2208
|
+
interface UnreadMessagesCountQueryVariables {
|
|
2209
|
+
filter?: {
|
|
2210
|
+
popup?: BooleanFilterField;
|
|
2211
|
+
};
|
|
2212
|
+
}
|
|
2213
|
+
interface ClaimRewardMutationVariables {
|
|
2214
|
+
id: string;
|
|
2215
|
+
}
|
|
2216
|
+
interface ClaimRewardMutation {
|
|
2217
|
+
claimReward?: null | {
|
|
2218
|
+
__typename: ClaimRewardError$1;
|
|
2219
|
+
};
|
|
2220
|
+
}
|
|
2221
|
+
type ClaimRewardError$1 = 'RewardAlreadyClaimedError' | 'RewardAlreadyExpiredError';
|
|
2222
|
+
interface CheckInDailyQuestQueryVariables {
|
|
2223
|
+
input: {
|
|
2224
|
+
id: string;
|
|
2225
|
+
};
|
|
2226
|
+
}
|
|
2227
|
+
type OnboardingStatus$1 = 'PENDING' | 'SKIPPED' | 'COMPLETED';
|
|
2228
|
+
type OnboardingPlayerExperience$1 = 'ROOKIE' | 'VETERAN';
|
|
2229
|
+
interface OnboardingStatusQuery {
|
|
2230
|
+
onboardingStatus: OnboardingStatus$1;
|
|
2231
|
+
}
|
|
2232
|
+
interface CompleteOnboardingMutationVariables {
|
|
2233
|
+
input: {
|
|
2234
|
+
playerExperience: OnboardingPlayerExperience$1;
|
|
2235
|
+
favoriteGameTypes: GameType$1[];
|
|
2236
|
+
};
|
|
2237
|
+
}
|
|
2238
|
+
interface CompleteOnboardingMutation {
|
|
2239
|
+
completeOnboarding: boolean;
|
|
2240
|
+
}
|
|
2241
|
+
interface SkipOnboardingMutation {
|
|
2242
|
+
skipOnboarding: boolean;
|
|
2243
|
+
}
|
|
2244
|
+
type QuestType$1 = 'WAGERING' | 'DAILY_CHECKIN' | 'ONBOARDING' | 'JOURNEY';
|
|
2245
|
+
type QuestStatus$1 = 'IN_PROGRESS' | 'COMPLETED' | 'FAILED' | 'ACTIVE';
|
|
2246
|
+
type QuestProgramStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
2247
|
+
interface QuestProgram$1 {
|
|
2248
|
+
type: QuestType$1;
|
|
2249
|
+
name: string;
|
|
2250
|
+
description: string;
|
|
2251
|
+
stages: WageringQuestStageSettings$1[];
|
|
2252
|
+
status: QuestProgramStatus$1;
|
|
2253
|
+
}
|
|
2254
|
+
type JourneyQuestMilestoneType$1 = 'REGISTRATION' | 'ACCOUNT_VERIFICATION' | 'FIRST_DEPOSIT' | 'IOS_FIRST_LOGIN' | 'ANDROID_FIRST_LOGIN' | 'LINK_FACEBOOK_ACCOUNT' | 'LINK_GOOGLE_ACCOUNT' | 'CUSTOM' | 'CUSTOM_LINK';
|
|
2255
|
+
interface JourneyQuestMilestone$1 {
|
|
2256
|
+
id: string;
|
|
2257
|
+
type: JourneyQuestMilestoneType$1;
|
|
2258
|
+
name: string;
|
|
2259
|
+
bonusAmount: Decimal;
|
|
2260
|
+
cleared: boolean;
|
|
2261
|
+
description: string;
|
|
2262
|
+
link?: string;
|
|
2263
|
+
}
|
|
2264
|
+
interface WageringQuestStage$1 {
|
|
2265
|
+
targetTurnover: Decimal;
|
|
2266
|
+
bonusTurnoverRequirementMultiplier: number;
|
|
2267
|
+
bonusAmount: Decimal;
|
|
2268
|
+
cleared: boolean;
|
|
2269
|
+
dateTimeCleared: DateString;
|
|
2270
|
+
turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
|
|
2271
|
+
}
|
|
2272
|
+
interface WageringQuestStageSettings$1 {
|
|
2273
|
+
targetTurnover: number;
|
|
2274
|
+
bonusTurnoverRequirementMultiplier: number;
|
|
2275
|
+
bonusAmount: number;
|
|
2276
|
+
}
|
|
2277
|
+
type MemberStatus$1 = 'ACTIVE' | 'BLACKLISTED' | 'SUSPENDED';
|
|
2278
|
+
interface Quest$1 {
|
|
2279
|
+
id: string;
|
|
2280
|
+
name: string;
|
|
2281
|
+
description: string;
|
|
2282
|
+
program: QuestProgram$1;
|
|
2283
|
+
status: QuestStatus$1;
|
|
2284
|
+
progressPercentage: Decimal;
|
|
2285
|
+
turnover: Decimal;
|
|
2286
|
+
type: QuestType$1;
|
|
2287
|
+
bonus: Decimal;
|
|
2288
|
+
endDateTime: DateString;
|
|
2289
|
+
dateTimeCreated: DateString;
|
|
2290
|
+
lastCheckInDate?: DateString;
|
|
2291
|
+
startDateTime?: DateString;
|
|
2292
|
+
checkInStreak?: number;
|
|
2293
|
+
thirdDayBonusAmount?: Decimal;
|
|
2294
|
+
sixthDayBonusAmount?: Decimal;
|
|
2295
|
+
seventhDayBonusAmount?: Decimal;
|
|
2296
|
+
targetTurnover?: Decimal;
|
|
2297
|
+
daysToClear?: Decimal;
|
|
2298
|
+
bonusAmount?: Decimal;
|
|
2299
|
+
firstDepositCompleted?: boolean;
|
|
2300
|
+
accountVerificationCompleted?: boolean;
|
|
2301
|
+
milestones?: JourneyQuestMilestone$1[];
|
|
2302
|
+
stage?: number;
|
|
2303
|
+
dateTimeCompleted?: DateString;
|
|
2304
|
+
turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
|
|
2305
|
+
}
|
|
2306
|
+
interface AvailableQuestsQuery {
|
|
2307
|
+
availableQuests: Quest$1[];
|
|
2308
|
+
}
|
|
2309
|
+
interface CheckInDailyQuestMutation {
|
|
2310
|
+
checkInDailyQuest: boolean;
|
|
2311
|
+
}
|
|
2312
|
+
interface TopWin$1 {
|
|
2313
|
+
id: string;
|
|
2314
|
+
game: {
|
|
2315
|
+
id: string;
|
|
2316
|
+
};
|
|
2317
|
+
member: {
|
|
2318
|
+
id: string;
|
|
2319
|
+
name: string;
|
|
2320
|
+
};
|
|
2321
|
+
multiplier: Decimal;
|
|
2322
|
+
payout: Decimal;
|
|
2323
|
+
}
|
|
2324
|
+
interface TopWinsQuery {
|
|
2325
|
+
topWins: TopWin$1[];
|
|
2326
|
+
}
|
|
2327
|
+
interface TopWinsNextQuery {
|
|
2328
|
+
_topWins: TopWin$1[];
|
|
2329
|
+
}
|
|
2330
|
+
type JackpotStatus$1 = 'ACTIVE' | 'CLOSING' | 'DISABLED';
|
|
2331
|
+
type JackpotCursor = 'POOL';
|
|
2332
|
+
type JackpotPayoutCursor = 'AMOUNT';
|
|
2333
|
+
interface JackpotsQueryVariables {
|
|
2334
|
+
after?: string;
|
|
2335
|
+
first?: number;
|
|
2336
|
+
filter?: {
|
|
2337
|
+
id?: ObjectIdFilterField;
|
|
2338
|
+
name?: StringFilterField;
|
|
2339
|
+
status?: EnumFilterField<JackpotStatus$1>;
|
|
2340
|
+
drawing?: BooleanFilterField;
|
|
2341
|
+
deleted?: BooleanFilterField;
|
|
2342
|
+
};
|
|
2343
|
+
sort?: {
|
|
2344
|
+
order: SortOrder;
|
|
2345
|
+
cursor: JackpotCursor;
|
|
2346
|
+
};
|
|
2347
|
+
}
|
|
2348
|
+
interface _JackpotsQueryVariables {
|
|
2349
|
+
after?: string;
|
|
2350
|
+
first?: number;
|
|
2351
|
+
filter?: {
|
|
2352
|
+
id?: ObjectIdFilterField;
|
|
2353
|
+
name?: StringFilterField;
|
|
2354
|
+
status?: EnumFilterField<JackpotStatus$1>;
|
|
2355
|
+
drawing?: BooleanFilterField;
|
|
2356
|
+
deleted?: BooleanFilterField;
|
|
2357
|
+
memberGroup?: ObjectIdFilterField;
|
|
2358
|
+
};
|
|
2359
|
+
sort?: {
|
|
2360
|
+
order: SortOrder;
|
|
2361
|
+
cursor: JackpotCursor;
|
|
2362
|
+
};
|
|
2363
|
+
}
|
|
2364
|
+
interface JackpotPayoutsQueryVariables {
|
|
2365
|
+
after?: string;
|
|
2366
|
+
first?: number;
|
|
2367
|
+
filter?: {
|
|
2368
|
+
id?: ObjectIdFilterField;
|
|
2369
|
+
member?: ObjectIdFilterField;
|
|
2370
|
+
jackpot?: ObjectIdFilterField;
|
|
2371
|
+
dateTimeCreated?: DateFilterField;
|
|
2372
|
+
};
|
|
2373
|
+
sort?: {
|
|
2374
|
+
order: SortOrder;
|
|
2375
|
+
cursor: JackpotPayoutCursor;
|
|
2376
|
+
};
|
|
2377
|
+
}
|
|
2378
|
+
interface Jackpot$1 {
|
|
2379
|
+
id: string;
|
|
2380
|
+
name: string;
|
|
2381
|
+
pool: Decimal;
|
|
2382
|
+
description: string;
|
|
2383
|
+
status: JackpotStatus$1;
|
|
2384
|
+
minimumJackpotPoolDrawingLimit: Decimal;
|
|
2385
|
+
maximumJackpotPoolLimit: Decimal;
|
|
2386
|
+
drawing: boolean;
|
|
2387
|
+
minimumMultiplier: Decimal;
|
|
2388
|
+
minimumBet: Decimal;
|
|
2389
|
+
jackpotPayoutPercentage: Decimal;
|
|
2390
|
+
jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
2391
|
+
totalPayout: Decimal;
|
|
2392
|
+
}
|
|
2393
|
+
interface _Jackpot {
|
|
2394
|
+
id: string;
|
|
2395
|
+
name: string;
|
|
2396
|
+
pool: Decimal;
|
|
2397
|
+
description: string;
|
|
2398
|
+
status: JackpotStatus$1;
|
|
2399
|
+
minimumJackpotPoolDrawingLimit: Decimal;
|
|
2400
|
+
maximumJackpotPoolLimit: Decimal;
|
|
2401
|
+
drawing: boolean;
|
|
2402
|
+
minimumMultiplier: Decimal;
|
|
2403
|
+
minimumBet: Decimal;
|
|
2404
|
+
jackpotPayoutPercentage: Decimal;
|
|
2405
|
+
jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
|
|
2406
|
+
totalPayout: Decimal;
|
|
2407
|
+
}
|
|
2408
|
+
interface JackpotsQuery extends PaginatedQuery<'jackpots', Jackpot$1> {
|
|
2409
|
+
}
|
|
2410
|
+
interface _JackpotsQuery extends PaginatedQuery<'_jackpots', Jackpot$1> {
|
|
2411
|
+
}
|
|
2412
|
+
interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
|
|
2413
|
+
}
|
|
2414
|
+
interface JackpotsIdsQuery extends PaginatedQuery<'jackpots', {
|
|
2415
|
+
id: string;
|
|
2416
|
+
}> {
|
|
2417
|
+
}
|
|
2418
|
+
interface JackpotPayout$1 {
|
|
2419
|
+
id: string;
|
|
2420
|
+
member: {
|
|
2421
|
+
id: string;
|
|
2422
|
+
name: string;
|
|
2423
|
+
};
|
|
2424
|
+
jackpot: {
|
|
2425
|
+
id: string;
|
|
2426
|
+
name: string;
|
|
2427
|
+
};
|
|
2428
|
+
multiplier: Decimal;
|
|
2429
|
+
bet: Decimal;
|
|
2430
|
+
amount: Decimal;
|
|
2431
|
+
dateTimeCreated: DateString;
|
|
2432
|
+
game: {
|
|
2433
|
+
provider: GameProvider$1;
|
|
2434
|
+
};
|
|
2435
|
+
}
|
|
2436
|
+
interface JackpotPayoutsQuery extends PaginatedQuery<'jackpotPayouts', JackpotPayout$1> {
|
|
2437
|
+
}
|
|
2438
|
+
type FCMDeviceType$1 = 'IOS' | 'ANDROID';
|
|
2439
|
+
type FirebaseCloudMessagingDeviceType$1 = 'IOS' | 'ANDROID' | 'WEB';
|
|
2440
|
+
interface RegisterFCMDeviceMutationVariables {
|
|
2441
|
+
input: {
|
|
2442
|
+
type: FCMDeviceType$1;
|
|
2443
|
+
token: string;
|
|
2444
|
+
};
|
|
2445
|
+
}
|
|
2446
|
+
interface RegisterFCMDeviceMutation {
|
|
2447
|
+
registerFCMDevice: boolean;
|
|
2448
|
+
}
|
|
2449
|
+
interface UnregisterFCMDeviceMutationVariables {
|
|
2450
|
+
input: {
|
|
2451
|
+
type: Array<FCMDeviceType$1>;
|
|
2452
|
+
token?: string;
|
|
2453
|
+
};
|
|
2454
|
+
}
|
|
2455
|
+
interface UnregisterFCMDeviceMutation {
|
|
2456
|
+
unregisterFCMDevice: boolean;
|
|
2457
|
+
}
|
|
2458
|
+
interface LinkFirebaseCloudMessagingDeviceMutationVariables {
|
|
2459
|
+
input: {
|
|
2460
|
+
token: string;
|
|
2461
|
+
type: FirebaseCloudMessagingDeviceType$1;
|
|
2462
|
+
};
|
|
2463
|
+
}
|
|
2464
|
+
interface LinkFirebaseCloudMessagingDeviceMutation {
|
|
2465
|
+
linkFirebaseCloudMessagingDevice: boolean;
|
|
2466
|
+
}
|
|
2467
|
+
interface UnlinkFirebaseCloudMessagingDeviceMutationVariables {
|
|
2468
|
+
input: {
|
|
2469
|
+
token?: string;
|
|
2470
|
+
};
|
|
2471
|
+
}
|
|
2472
|
+
interface UnlinkFirebaseCloudMessagingDeviceMutation {
|
|
2473
|
+
unlinkFirebaseCloudMessagingDevice: boolean;
|
|
2474
|
+
}
|
|
2475
|
+
interface MarkGameAsFavoriteMutation {
|
|
2476
|
+
markGameAsFavorite: boolean;
|
|
2477
|
+
}
|
|
2478
|
+
interface MarkGameAsFavoriteMutationVariables {
|
|
2479
|
+
input: {
|
|
2480
|
+
id: string;
|
|
2481
|
+
};
|
|
2482
|
+
}
|
|
2483
|
+
interface UnmarkGameAsFavoriteMutation {
|
|
2484
|
+
unmarkGameAsFavorite: boolean;
|
|
2485
|
+
}
|
|
2486
|
+
interface UnmarkGameAsFavoriteMutationVariables {
|
|
2487
|
+
input: {
|
|
2488
|
+
id: string;
|
|
2489
|
+
};
|
|
2490
|
+
}
|
|
2491
|
+
interface FavoriteGame {
|
|
2492
|
+
id: string;
|
|
2493
|
+
}
|
|
2494
|
+
interface FavoriteGamesQuery {
|
|
2495
|
+
favoriteGames: FavoriteGame[];
|
|
2496
|
+
}
|
|
2497
|
+
type TransactionPasswordNotSetError = 'TransactionPasswordNotSetError';
|
|
2498
|
+
type UPIReferenceNotAvailableError = 'UPIReferenceNotAvailableError';
|
|
2499
|
+
interface GoogleClientIdQuery {
|
|
2500
|
+
googleClientId?: string | null;
|
|
2501
|
+
}
|
|
2502
|
+
type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
2503
|
+
type TournamentType$1 = 'MULTIPLIER' | 'WAGERING';
|
|
2504
|
+
type TournamentFrequency$1 = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
2505
|
+
type TournamentMode$1 = 'ONE_TIME' | 'RECURRING';
|
|
2506
|
+
interface TournamentsQueryVariables {
|
|
2507
|
+
after?: string;
|
|
2508
|
+
first?: number;
|
|
2509
|
+
filter?: {
|
|
2510
|
+
id?: ObjectIdFilterField;
|
|
2511
|
+
type?: EnumFilterField<TournamentType$1>;
|
|
2512
|
+
status?: EnumFilterField<TournamentStatus$1>;
|
|
2513
|
+
activationStartDateTime?: DateFilterField;
|
|
2514
|
+
activationEndDateTime?: DateFilterField;
|
|
2515
|
+
};
|
|
2516
|
+
currentAfter?: string;
|
|
2517
|
+
currentFirst?: number;
|
|
2518
|
+
previousAfter?: string;
|
|
2519
|
+
previousFirst?: number;
|
|
2520
|
+
}
|
|
2521
|
+
type TournamentsIdsQueryVariables = Pick<TournamentsQueryVariables, 'first' | 'after' | 'filter'>;
|
|
2522
|
+
interface TournamentLeaderboard$1 {
|
|
2523
|
+
id: string;
|
|
2524
|
+
username: string;
|
|
2525
|
+
multiplier: Decimal;
|
|
2526
|
+
dateTimeCreated: string;
|
|
2527
|
+
prize?: string;
|
|
2528
|
+
game?: {
|
|
2529
|
+
id: string;
|
|
2530
|
+
name: string;
|
|
2531
|
+
provider: GameProvider$1;
|
|
2532
|
+
external: string;
|
|
2533
|
+
type: GameType$1;
|
|
2534
|
+
};
|
|
2535
|
+
}
|
|
2536
|
+
interface TournamentPayout$1 {
|
|
2537
|
+
id: string;
|
|
2538
|
+
amount: Decimal;
|
|
2539
|
+
member: {
|
|
2540
|
+
id: string;
|
|
2541
|
+
name: string;
|
|
2542
|
+
};
|
|
2543
|
+
}
|
|
2544
|
+
interface Tournament$1 extends PaginatedQuery<'currentLeaderboard', TournamentLeaderboard$1> {
|
|
2545
|
+
}
|
|
2546
|
+
interface Tournament$1 extends PaginatedQuery<'previousLeaderboard', TournamentLeaderboard$1> {
|
|
2547
|
+
}
|
|
2548
|
+
interface Tournament$1 {
|
|
2549
|
+
id: string;
|
|
2550
|
+
type: TournamentType$1;
|
|
2551
|
+
name: string;
|
|
2552
|
+
winnersCount: Decimal;
|
|
2553
|
+
status: TournamentStatus$1;
|
|
2554
|
+
description: string;
|
|
2555
|
+
activationStartDateTime: DateString;
|
|
2556
|
+
activationEndDateTime: DateString;
|
|
2557
|
+
topPayouts: TournamentPayout$1[];
|
|
2558
|
+
enabledGameProviders: GameProvider$1[];
|
|
2559
|
+
frequency: TournamentFrequency$1;
|
|
2560
|
+
mode: TournamentMode$1;
|
|
2561
|
+
mobileBanner: {
|
|
2562
|
+
id: string;
|
|
2563
|
+
url: string;
|
|
2564
|
+
mimeType: string;
|
|
2565
|
+
};
|
|
2566
|
+
webBanner: {
|
|
2567
|
+
id: string;
|
|
2568
|
+
url: string;
|
|
2569
|
+
mimeType: string;
|
|
2570
|
+
};
|
|
2571
|
+
rewardSettings: Partial<Record<string, string>>;
|
|
2572
|
+
}
|
|
2573
|
+
interface TournamentsQuery extends PaginatedQuery<'tournaments', Tournament$1> {
|
|
2574
|
+
}
|
|
2575
|
+
interface TournamentsIdsQuery extends PaginatedQuery<'tournaments', {
|
|
2576
|
+
id: string;
|
|
2577
|
+
}> {
|
|
2578
|
+
}
|
|
2579
|
+
interface MemberAchievement$1 {
|
|
2580
|
+
member: {
|
|
2581
|
+
achievements: {
|
|
2582
|
+
type: string;
|
|
2583
|
+
count: number;
|
|
2584
|
+
}[];
|
|
2585
|
+
level: number;
|
|
2586
|
+
};
|
|
2587
|
+
}
|
|
2588
|
+
type MemberAchievementsQuery = MemberAchievement$1;
|
|
2589
|
+
interface RequireFirstDepositQuery {
|
|
2590
|
+
requireFirstDeposit: boolean;
|
|
2591
|
+
}
|
|
2592
|
+
type CabinetSiteMachineStatus$1 = 'ENABLED' | 'DISABLED';
|
|
2593
|
+
interface MemberCabinetSiteMachineQuery {
|
|
2594
|
+
memberCabinetSiteMachine: {
|
|
2595
|
+
id: string;
|
|
2596
|
+
name: string;
|
|
2597
|
+
fingerprint: string;
|
|
2598
|
+
balance: number;
|
|
2599
|
+
status: CabinetSiteMachineStatus$1;
|
|
2600
|
+
dateTimeCreated: string;
|
|
2601
|
+
} | null;
|
|
2602
|
+
}
|
|
2603
|
+
interface CabinetWithdrawal {
|
|
2604
|
+
id: string;
|
|
2605
|
+
account: string;
|
|
2606
|
+
type: WithdrawalType$1;
|
|
2607
|
+
reference?: string;
|
|
2608
|
+
amount: Decimal;
|
|
2609
|
+
fee: Decimal;
|
|
2610
|
+
netAmount: Decimal;
|
|
2611
|
+
status: WithdrawalStatus$1;
|
|
2612
|
+
dateTimeCreated?: DateString;
|
|
2613
|
+
dateTimeLastUpdated?: DateString;
|
|
2614
|
+
remarks?: DateString;
|
|
2615
|
+
accountName: string;
|
|
2616
|
+
accountNumber: string;
|
|
2617
|
+
error?: WithdrawalError$1;
|
|
2618
|
+
}
|
|
2619
|
+
interface CabinetWithdrawalQuery {
|
|
2620
|
+
node?: CabinetWithdrawal | null;
|
|
2621
|
+
}
|
|
2622
|
+
interface CabinetWithdrawalQueryVariables {
|
|
2623
|
+
id: string;
|
|
2624
|
+
}
|
|
2625
|
+
interface CabinetWithdrawalQueryVariables {
|
|
2626
|
+
id: string;
|
|
2627
|
+
}
|
|
2628
|
+
type MemberVerificationRequestStatus$1 = 'PENDING' | 'PENDING_MANUAL_APPROVAL' | 'APPROVED' | 'REJECTED';
|
|
2629
|
+
interface MemberVerificationRequest$1 {
|
|
2630
|
+
id: string;
|
|
2631
|
+
firstName?: string | null;
|
|
2632
|
+
lastName?: string | null;
|
|
2633
|
+
dateOfBirth?: DateString | null;
|
|
2634
|
+
idFrontImage?: {
|
|
2635
|
+
id: string;
|
|
2636
|
+
url: string;
|
|
2637
|
+
} | null;
|
|
2638
|
+
selfieImage?: {
|
|
2639
|
+
id: string;
|
|
2640
|
+
url: string;
|
|
2641
|
+
} | null;
|
|
2642
|
+
permanentAddress?: string | null;
|
|
2643
|
+
currentAddress?: string | null;
|
|
2644
|
+
sourceOfIncome?: string | null;
|
|
2645
|
+
natureOfWork?: string | null;
|
|
2646
|
+
nationality?: string | null;
|
|
2647
|
+
placeOfBirth?: string | null;
|
|
2648
|
+
status: MemberVerificationRequestStatus$1;
|
|
2649
|
+
basicDetailsSubmitted: boolean;
|
|
2650
|
+
basicDetailsVerified: boolean;
|
|
2651
|
+
imageDetailsSubmitted: boolean;
|
|
2652
|
+
pendingManualImageDetailsVerification: boolean;
|
|
2653
|
+
imageDetailsVerified: boolean;
|
|
2654
|
+
personalDetailsSubmitted: boolean;
|
|
2655
|
+
remarks?: string | null;
|
|
2656
|
+
dateTimeCreated: DateString;
|
|
2657
|
+
dateTimeLastUpdated: DateString;
|
|
2658
|
+
dateTimeApproved?: DateString | null;
|
|
2659
|
+
dateTimeRejected?: DateString | null;
|
|
2660
|
+
}
|
|
2661
|
+
interface MemberVerificationRequestQuery {
|
|
2662
|
+
memberVerificationRequest?: MemberVerificationRequest$1 | null;
|
|
2663
|
+
}
|
|
2664
|
+
interface MemberVerificationRequestByIdQueryVariables {
|
|
2665
|
+
id: string;
|
|
2666
|
+
}
|
|
2667
|
+
interface MemberVerificationRequestByIdQuery {
|
|
2668
|
+
node?: MemberVerificationRequest$1 | null;
|
|
2669
|
+
}
|
|
2670
|
+
interface SubmitMemberVerificationRequestBasicDetailsMutationVariables {
|
|
2671
|
+
input: {
|
|
2672
|
+
firstName: string;
|
|
2673
|
+
lastName: string;
|
|
2674
|
+
dateOfBirth: DateString;
|
|
2675
|
+
};
|
|
2676
|
+
}
|
|
2677
|
+
interface SubmitMemberVerificationRequestBasicDetailsMutation {
|
|
2678
|
+
submitMemberVerificationRequestBasicDetails: boolean;
|
|
2679
|
+
}
|
|
2680
|
+
interface SubmitMemberVerificationRequestImageDetailsMutationVariables {
|
|
2681
|
+
input: {
|
|
2682
|
+
idFrontImage: string;
|
|
2683
|
+
selfieImage?: string | null;
|
|
2684
|
+
};
|
|
2685
|
+
}
|
|
2686
|
+
interface SubmitMemberVerificationRequestImageDetailsMutation {
|
|
2687
|
+
submitMemberVerificationRequestImageDetails: boolean;
|
|
2688
|
+
}
|
|
2689
|
+
interface SubmitMemberVerificationRequestPersonalDetailsMutationVariables {
|
|
2690
|
+
input: {
|
|
2691
|
+
permanentAddress: string;
|
|
2692
|
+
currentAddress: string;
|
|
2693
|
+
sourceOfIncome: string;
|
|
2694
|
+
natureOfWork: string;
|
|
2695
|
+
nationality: string;
|
|
2696
|
+
placeOfBirth: string;
|
|
2697
|
+
};
|
|
2698
|
+
}
|
|
2699
|
+
interface SubmitMemberVerificationRequestPersonalDetailsMutation {
|
|
2700
|
+
submitMemberVerificationRequestPersonalDetails: boolean;
|
|
2701
|
+
}
|
|
2702
|
+
interface MemberVerificationRequestAutomaticApprovalEnabledQuery {
|
|
2703
|
+
memberVerificationRequestAutomaticApprovalEnabled: boolean;
|
|
2704
|
+
}
|
|
2705
|
+
type FreeBetDropStatus$1 = 'ACTIVE' | 'EXPIRED' | 'COMPLETED' | 'INACTIVE' | 'CANCELLED';
|
|
2706
|
+
interface CancelFreeBetDropMutation {
|
|
2707
|
+
cancelFreeBetDrop: boolean;
|
|
2708
|
+
}
|
|
2709
|
+
interface CancelFreeBetDropMutationVariables {
|
|
2710
|
+
input: {
|
|
2711
|
+
id: string;
|
|
2712
|
+
};
|
|
2713
|
+
}
|
|
2714
|
+
interface FreeBetDropsQueryVariables {
|
|
2715
|
+
first?: number;
|
|
2716
|
+
after?: string;
|
|
2717
|
+
filter?: {
|
|
2718
|
+
id?: ObjectIdFilterField;
|
|
2719
|
+
name?: StringFilterField;
|
|
2720
|
+
memberGroup?: ObjectIdFilterField;
|
|
2721
|
+
status?: EnumFilterField<FreeBetDropStatus$1>;
|
|
2722
|
+
games?: ObjectIdFilterField;
|
|
2723
|
+
promo?: ObjectIdFilterField;
|
|
2724
|
+
gameProvider?: EnumFilterField<GameProvider$1>;
|
|
2725
|
+
};
|
|
2726
|
+
}
|
|
2727
|
+
interface MemberFreeBetDropsQueryVariables {
|
|
2728
|
+
first?: number;
|
|
2729
|
+
after?: string;
|
|
2730
|
+
filter?: {
|
|
2731
|
+
id?: ObjectIdFilterField;
|
|
2732
|
+
name?: StringFilterField;
|
|
2733
|
+
memberGroup?: ObjectIdFilterField;
|
|
2734
|
+
status?: EnumFilterField<FreeBetDropStatus$1>;
|
|
2735
|
+
games?: ObjectIdFilterField;
|
|
2736
|
+
promo?: ObjectIdFilterField;
|
|
2737
|
+
gameProvider?: EnumFilterField<GameProvider$1>;
|
|
2738
|
+
serialCode?: StringFilterField;
|
|
2739
|
+
};
|
|
2740
|
+
}
|
|
2741
|
+
interface FreeBetDrop$1 {
|
|
2742
|
+
id: string;
|
|
2743
|
+
name: string;
|
|
2744
|
+
description: string;
|
|
2745
|
+
gameProvider: GameProvider$1;
|
|
2746
|
+
games?: {
|
|
2747
|
+
id: string;
|
|
2748
|
+
name: string;
|
|
2749
|
+
provider: GameProvider$1;
|
|
2750
|
+
}[];
|
|
2751
|
+
bets: number;
|
|
2752
|
+
betValue: Decimal;
|
|
2753
|
+
status: FreeBetDropStatus$1;
|
|
2754
|
+
activationDateTime: DateString;
|
|
2755
|
+
expirationDateTime: DateString;
|
|
2756
|
+
dateTimeCreated: DateString;
|
|
2757
|
+
dateTimeCompleted?: DateString;
|
|
2758
|
+
dateTimeLastUpdated: DateString;
|
|
2759
|
+
payout: Decimal;
|
|
2760
|
+
remainingBets: number;
|
|
2761
|
+
}
|
|
2762
|
+
interface MemberFreeBetDropBetRecord$1 {
|
|
2763
|
+
game: {
|
|
2764
|
+
id: string;
|
|
2765
|
+
name: string;
|
|
2766
|
+
};
|
|
2767
|
+
dateTimeCreated: DateString;
|
|
2768
|
+
payout: Decimal;
|
|
2769
|
+
freeBetDrop: {
|
|
2770
|
+
remainingBets: number;
|
|
2771
|
+
};
|
|
2772
|
+
}
|
|
2773
|
+
interface MemberFreeBetDrop$1 {
|
|
2774
|
+
id: string;
|
|
2775
|
+
name: string;
|
|
2776
|
+
description: string;
|
|
2777
|
+
games?: {
|
|
2778
|
+
id: string;
|
|
2779
|
+
name: string;
|
|
2780
|
+
provider: GameProvider$1;
|
|
2781
|
+
}[];
|
|
2782
|
+
bets: number;
|
|
2783
|
+
betValue: Decimal;
|
|
2784
|
+
status: FreeBetDropStatus$1;
|
|
2785
|
+
activationDateTime: DateString;
|
|
2786
|
+
expirationDateTime: DateString;
|
|
2787
|
+
dateTimeCreated: DateString;
|
|
2788
|
+
dateTimeCompleted?: DateString;
|
|
2789
|
+
dateTimeLastUpdated: DateString;
|
|
2790
|
+
payout: Decimal;
|
|
2791
|
+
remainingBets: number;
|
|
2792
|
+
gameProvider: GameProvider$1;
|
|
2793
|
+
serialCode: string;
|
|
2794
|
+
}
|
|
2795
|
+
type MemberFreeBetDropsQuery = {
|
|
2796
|
+
member: PaginatedQuery<'freeBetDrops', MemberFreeBetDrop$1>;
|
|
2797
|
+
};
|
|
2798
|
+
interface FreeBetDropsQuery extends PaginatedQuery<'freeBetDrops', FreeBetDrop$1> {
|
|
2799
|
+
}
|
|
2800
|
+
|
|
2801
|
+
type Environment = 'production' | 'development' | 'staging';
|
|
2802
|
+
type WithCursor<T> = T & {
|
|
2803
|
+
cursor: string;
|
|
2804
|
+
};
|
|
2805
|
+
type PaginatedQueryResult<K extends string, T> = Record<K, Array<WithCursor<T>>> & ({
|
|
2806
|
+
totalCount: number;
|
|
2807
|
+
hasNextPage: false;
|
|
2808
|
+
endCursor?: never;
|
|
2809
|
+
} | {
|
|
2810
|
+
totalCount: number;
|
|
2811
|
+
hasNextPage: true;
|
|
2812
|
+
endCursor: string;
|
|
2813
|
+
});
|
|
2814
|
+
type UnionAlias<T extends string, K extends T = T> = Extract<T, K>;
|
|
2815
|
+
type LoginChannel = UnionAlias<LoginChannel$1>;
|
|
2816
|
+
type SecretQuestion = UnionAlias<SecretQuestion$1>;
|
|
2817
|
+
interface SecurityQuestionAuthenticator {
|
|
2818
|
+
type: 'SECURITY_QUESTION';
|
|
2819
|
+
token: string;
|
|
2820
|
+
secretQuestion: SecretQuestion;
|
|
2821
|
+
channel?: LoginChannel;
|
|
2822
|
+
}
|
|
2823
|
+
type Authenticator = SecurityQuestionAuthenticator;
|
|
2824
|
+
interface NameAndPasswordSignInInput {
|
|
2825
|
+
type: 'NAME_AND_PASSWORD';
|
|
2826
|
+
name: string;
|
|
2827
|
+
password: string;
|
|
2828
|
+
reCAPTCHAResponse?: string;
|
|
2829
|
+
testPass?: string;
|
|
2830
|
+
channel?: LoginChannel;
|
|
2831
|
+
}
|
|
2832
|
+
/**
|
|
2833
|
+
* @deprecated use `type: "SOCIAL"`
|
|
2834
|
+
*/
|
|
2835
|
+
interface TokenSignInInput {
|
|
2836
|
+
type: 'TOKEN';
|
|
2837
|
+
token: string;
|
|
2838
|
+
channel?: LoginChannel;
|
|
2839
|
+
}
|
|
2840
|
+
interface SocialsSignInInput {
|
|
2841
|
+
type: 'SOCIALS';
|
|
2842
|
+
token: string;
|
|
2843
|
+
channel?: LoginChannel;
|
|
2844
|
+
}
|
|
2845
|
+
interface CabinetSignInInput {
|
|
2846
|
+
type: 'CABINET';
|
|
2847
|
+
token: string;
|
|
2848
|
+
channel?: LoginChannel;
|
|
2849
|
+
}
|
|
2850
|
+
interface MobileNumberSignInInput {
|
|
2851
|
+
type: 'MOBILE_NUMBER';
|
|
2852
|
+
mobileNumber: string;
|
|
2853
|
+
verificationCode: string;
|
|
2854
|
+
reCAPTCHAResponse?: string;
|
|
2855
|
+
testPass?: string;
|
|
2856
|
+
channel?: LoginChannel;
|
|
2857
|
+
}
|
|
2858
|
+
interface MayaSignInInput {
|
|
2859
|
+
type: 'MAYA';
|
|
2860
|
+
sessionId: string;
|
|
2861
|
+
channel?: LoginChannel;
|
|
2862
|
+
}
|
|
2863
|
+
interface SingleUseTokenSignInInput {
|
|
2864
|
+
type: 'SINGLE_USE_TOKEN';
|
|
2865
|
+
token: string;
|
|
2866
|
+
channel?: LoginChannel;
|
|
2867
|
+
}
|
|
2868
|
+
type MayaSignInReturn = OperationResult<SignInError>;
|
|
2869
|
+
type MobileNumberSignInReturn = OperationResult<SignInError>;
|
|
2870
|
+
/** @deprecated use `SocialsSignInReturn` */
|
|
2871
|
+
type TokenSignInReturn = OperationResult<SignInError>;
|
|
2872
|
+
type SocialsSignInReturn = OperationResult<SignInError>;
|
|
2873
|
+
type CabinetSignInReturn = OperationResult<SignInError>;
|
|
2874
|
+
type SingleUseTokenSignInReturn = OperationResult<SignInError>;
|
|
2875
|
+
type NameAndPasswordSignInReturn = OperationResult<SignInError, {
|
|
2876
|
+
'2FAEnabled': true;
|
|
2877
|
+
authenticator: Authenticator;
|
|
2878
|
+
} | {
|
|
2879
|
+
'2FAEnabled': false;
|
|
2880
|
+
authenticator?: never;
|
|
2881
|
+
}>;
|
|
2882
|
+
type SignInInput = NameAndPasswordSignInInput | MobileNumberSignInInput | MayaSignInInput | TokenSignInInput | SocialsSignInInput | CabinetSignInInput | SingleUseTokenSignInInput;
|
|
2883
|
+
type SignInError = UnionAlias<CreateSessionError>;
|
|
2884
|
+
type SignInReturn = NameAndPasswordSignInReturn | MobileNumberSignInReturn | MayaSignInReturn | TokenSignInReturn | SocialsSignInReturn | CabinetSignInReturn | SingleUseTokenSignInReturn;
|
|
2885
|
+
type RefreshSessionError = UnionAlias<RefreshSessionError$1>;
|
|
2886
|
+
interface SecurityQuestionAuthenticateInput extends SecurityQuestionAuthenticateInput$1 {
|
|
2887
|
+
}
|
|
2888
|
+
type AuthenticateInput = SecurityQuestionAuthenticateInput;
|
|
2889
|
+
type AuthenticateError = UnionAlias<AuthenticateError$1>;
|
|
2890
|
+
type AuthenticateReturn = OperationResult<AuthenticateError>;
|
|
2891
|
+
interface Session {
|
|
2892
|
+
id: string;
|
|
2893
|
+
maya: boolean;
|
|
2894
|
+
cabinet: boolean;
|
|
2895
|
+
accessToken: string;
|
|
2896
|
+
refreshToken: string;
|
|
2897
|
+
dateTimeCreated: Date;
|
|
2898
|
+
}
|
|
2899
|
+
type SessionError = UnionAlias<RefreshSessionError>;
|
|
2900
|
+
type SessionReturn = OperationResult<SessionError, Session | null>;
|
|
2901
|
+
interface WatchSessionInput {
|
|
2902
|
+
interval?: number;
|
|
2903
|
+
onInvalid: () => void | Promise<void>;
|
|
2904
|
+
}
|
|
2905
|
+
type ValidateMayaSessionReturn = OperationResult;
|
|
2906
|
+
interface CreateSingleUseTokenInput {
|
|
2907
|
+
ttl?: string | number;
|
|
2908
|
+
}
|
|
2909
|
+
type CreateSingleUseTokenError = UnionAlias<CreateSingleUseTokenError$1>;
|
|
2910
|
+
type CreateSingleUseTokenReturn = OperationResult<CreateSingleUseTokenError, string>;
|
|
2911
|
+
type File = {
|
|
2912
|
+
id: string;
|
|
2913
|
+
url?: never;
|
|
2914
|
+
status: 'UPLOADING' | 'FAILED';
|
|
2915
|
+
} | {
|
|
2916
|
+
id: string;
|
|
2917
|
+
url: string;
|
|
2918
|
+
status: 'READY';
|
|
2919
|
+
} | {
|
|
2920
|
+
id: string;
|
|
2921
|
+
url?: string;
|
|
2922
|
+
status: 'DELETED';
|
|
2923
|
+
};
|
|
2924
|
+
type FileReturn = OperationResult<never, File | null>;
|
|
2925
|
+
interface UploadImageFileInput {
|
|
2926
|
+
id?: string;
|
|
2927
|
+
file: globalThis.File;
|
|
2928
|
+
}
|
|
2929
|
+
type UploadImageFileError = UnionAlias<UploadPrivateImageFileError>;
|
|
2930
|
+
type UploadImageFileReturn = OperationResult<UploadImageFileError, {
|
|
2931
|
+
id: string;
|
|
2932
|
+
}>;
|
|
2933
|
+
type AccountStatus = UnionAlias<MemberAccountStatus>;
|
|
2934
|
+
type AccountVerificationStatus = MemberAccountVerificationStatus;
|
|
2935
|
+
interface Agent {
|
|
2936
|
+
code: string;
|
|
2937
|
+
}
|
|
2938
|
+
interface GigRewardsQuestDetails {
|
|
2939
|
+
gigUserId: string;
|
|
2940
|
+
}
|
|
2941
|
+
interface Account {
|
|
2942
|
+
id: string;
|
|
2943
|
+
name: string;
|
|
2944
|
+
status: AccountStatus;
|
|
2945
|
+
realName?: string;
|
|
2946
|
+
nickName?: string;
|
|
2947
|
+
dateOfBirth?: Date;
|
|
2948
|
+
validId?: string;
|
|
2949
|
+
emailAddress?: string;
|
|
2950
|
+
mobileNumber?: string;
|
|
2951
|
+
verified: boolean;
|
|
2952
|
+
verificationStatus: AccountVerificationStatus;
|
|
2953
|
+
mobileNumberVerified: boolean;
|
|
2954
|
+
mobileNumberVerificationRequired: boolean;
|
|
2955
|
+
transactionPassword: boolean;
|
|
2956
|
+
secretAnswerSubmitted: boolean;
|
|
2957
|
+
dateTimeCreated: Date;
|
|
2958
|
+
dateTimeLastUpdated: Date;
|
|
2959
|
+
currentMonthlyAchievementPoints?: number;
|
|
2960
|
+
achievementPointsLevelUpProgressPercentage?: number;
|
|
2961
|
+
currentUniqueGamesCount?: number;
|
|
2962
|
+
currentNewGamesCount?: number;
|
|
2963
|
+
currentAchievements?: Array<AchievementType>;
|
|
2964
|
+
currentBetsCount?: number;
|
|
2965
|
+
currentActiveDaysCount?: number;
|
|
2966
|
+
dateTimeLastLeveledUp?: Date;
|
|
2967
|
+
currentMonthlyTurnover?: number;
|
|
2968
|
+
turnoverLevelUpProgressPercentage?: number;
|
|
2969
|
+
googleId?: string;
|
|
2970
|
+
domain?: string | null;
|
|
2971
|
+
branchCode?: string;
|
|
2972
|
+
agent?: Agent | null;
|
|
2973
|
+
level: number;
|
|
2974
|
+
partition?: number | null;
|
|
2975
|
+
dateTimeLastActive?: Date;
|
|
2976
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
2977
|
+
bonusBlocked: boolean;
|
|
2978
|
+
dailyBetLimit?: number;
|
|
2979
|
+
monthlyBetLimit?: number;
|
|
2980
|
+
dailyDepositLimit?: number;
|
|
2981
|
+
monthlyDepositLimit?: number;
|
|
2982
|
+
newDailyBetLimit?: number;
|
|
2983
|
+
newMonthlyBetLimit?: number;
|
|
2984
|
+
newDailyDepositLimit?: number;
|
|
2985
|
+
newMonthlyDepositLimit?: number;
|
|
2986
|
+
}
|
|
2987
|
+
type AccountReturn = OperationResult<never, Account>;
|
|
2988
|
+
interface CellxpertDetails {
|
|
2989
|
+
cxd?: string | null;
|
|
2990
|
+
dateTimeLastUpdated?: string | null;
|
|
2991
|
+
}
|
|
2992
|
+
interface MemberWithCellxpertDetails {
|
|
2993
|
+
id: string;
|
|
2994
|
+
cellxpertDetails?: CellxpertDetails | null;
|
|
2995
|
+
}
|
|
2996
|
+
type MemberWithCellxpertDetailsReturn = OperationResult<never, MemberWithCellxpertDetails | null>;
|
|
2997
|
+
type VerificationDetailsStatus = UnionAlias<MemberVerificationStatus>;
|
|
2998
|
+
interface VerificationDetails {
|
|
2999
|
+
id: string;
|
|
3000
|
+
status: VerificationDetailsStatus;
|
|
3001
|
+
address: string;
|
|
3002
|
+
permanentAddress: string | null;
|
|
3003
|
+
sourceOfIncome: string;
|
|
3004
|
+
natureOfWork: string | null;
|
|
3005
|
+
nationality: string;
|
|
3006
|
+
placeOfBirth: string;
|
|
3007
|
+
idFrontImage: File | null;
|
|
3008
|
+
selfieImage: File | null;
|
|
3009
|
+
}
|
|
3010
|
+
type VerificationDetailsReturn = OperationResult<never, VerificationDetails | null>;
|
|
3011
|
+
interface ProfileCompletion {
|
|
3012
|
+
completionPercentage: number;
|
|
3013
|
+
personalInformation: boolean;
|
|
3014
|
+
accountVerification: boolean;
|
|
3015
|
+
mobileNumberVerification: boolean;
|
|
3016
|
+
transactionPassword: boolean;
|
|
3017
|
+
accountPassword: boolean;
|
|
3018
|
+
}
|
|
3019
|
+
type ProfileCompletionReturn = OperationResult<never, ProfileCompletion>;
|
|
3020
|
+
interface CreateAccountInput {
|
|
3021
|
+
id?: string;
|
|
3022
|
+
name: string;
|
|
3023
|
+
password: string;
|
|
3024
|
+
mobileNumber: string;
|
|
3025
|
+
dateOfBirth: Date | string;
|
|
3026
|
+
domain?: string;
|
|
3027
|
+
btag?: string;
|
|
3028
|
+
referralCode?: string;
|
|
3029
|
+
verificationCode?: string;
|
|
3030
|
+
reCAPTCHAResponse?: string;
|
|
3031
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3032
|
+
}
|
|
3033
|
+
interface NameAndPasswordCreateAccountInput {
|
|
3034
|
+
type: 'NAME_AND_PASSWORD';
|
|
3035
|
+
id?: string;
|
|
3036
|
+
name: string;
|
|
3037
|
+
password: string;
|
|
3038
|
+
mobileNumber?: string | undefined;
|
|
3039
|
+
btag?: string;
|
|
3040
|
+
domain?: string;
|
|
3041
|
+
reCAPTCHAResponse?: string;
|
|
3042
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3043
|
+
}
|
|
3044
|
+
interface MobileNumberCreateAccountInput {
|
|
3045
|
+
type: 'MOBILE_NUMBER';
|
|
3046
|
+
id?: string;
|
|
3047
|
+
mobileNumber: string;
|
|
3048
|
+
realName?: string;
|
|
3049
|
+
dateOfBirth?: string;
|
|
3050
|
+
branchCode?: string;
|
|
3051
|
+
agentCode?: string;
|
|
3052
|
+
btag?: string;
|
|
3053
|
+
domain?: string;
|
|
3054
|
+
referralCode?: string;
|
|
3055
|
+
verificationCode?: string;
|
|
3056
|
+
reCAPTCHAResponse?: string;
|
|
3057
|
+
testPass?: string;
|
|
3058
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3059
|
+
}
|
|
3060
|
+
interface MobileNumberInrCreateAccountInput {
|
|
3061
|
+
type: 'MOBILE_NUMBER_INR';
|
|
3062
|
+
id?: string;
|
|
3063
|
+
mobileNumber: string;
|
|
3064
|
+
password: string;
|
|
3065
|
+
realName: string;
|
|
3066
|
+
mobileVerificationCode: string;
|
|
3067
|
+
btag?: string;
|
|
3068
|
+
domain?: string;
|
|
3069
|
+
referralCode?: string;
|
|
3070
|
+
verificationCode?: string;
|
|
3071
|
+
reCAPTCHAResponse?: string;
|
|
3072
|
+
testPass?: boolean;
|
|
3073
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3074
|
+
}
|
|
3075
|
+
interface NameCreateAccountInput {
|
|
3076
|
+
type: 'NAME';
|
|
3077
|
+
id?: string;
|
|
3078
|
+
name: string;
|
|
3079
|
+
password: string;
|
|
3080
|
+
reCAPTCHAResponse?: string;
|
|
3081
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3082
|
+
}
|
|
3083
|
+
interface MobileNumberCreateAccountInput__next {
|
|
3084
|
+
type: 'MOBILE_NUMBER[NEXT]';
|
|
3085
|
+
id?: string;
|
|
3086
|
+
mobileNumber: string;
|
|
3087
|
+
mobileNumberVerificationCode: string;
|
|
3088
|
+
emailAddress?: string;
|
|
3089
|
+
branchCode?: string;
|
|
3090
|
+
agentCode?: string;
|
|
3091
|
+
reCAPTCHAResponse?: string;
|
|
3092
|
+
testPass?: boolean;
|
|
3093
|
+
fingerprint?: string;
|
|
3094
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3095
|
+
referralCode?: string;
|
|
3096
|
+
}
|
|
3097
|
+
type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
|
|
3098
|
+
type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
|
|
3099
|
+
type CreateAccountReturn = OperationResult<CreateAccountError, {
|
|
3100
|
+
id: string;
|
|
3101
|
+
}>;
|
|
3102
|
+
interface RegisterMayaAccountInput {
|
|
3103
|
+
name: string;
|
|
3104
|
+
password: string;
|
|
3105
|
+
domain?: string;
|
|
3106
|
+
}
|
|
3107
|
+
type RegisterMayaAccountError = UnionAlias<RegisterMayaMemberAccountError>;
|
|
3108
|
+
type RegisterMayaAccountReturn = OperationResult<RegisterMayaAccountError>;
|
|
3109
|
+
interface RegisterAgentAccountInput {
|
|
3110
|
+
name: string;
|
|
3111
|
+
firstName: string;
|
|
3112
|
+
lastName: string;
|
|
3113
|
+
mobileNumber: string;
|
|
3114
|
+
emailAddress: string;
|
|
3115
|
+
customProperties?: {
|
|
3116
|
+
key: string;
|
|
3117
|
+
value: string;
|
|
3118
|
+
}[];
|
|
3119
|
+
}
|
|
3120
|
+
type RegisterAgentAccountError = UnionAlias<RegisterAgentAccountError$1>;
|
|
3121
|
+
type RegisterAgentAccountReturn = OperationResult<RegisterAgentAccountError>;
|
|
3122
|
+
interface UpdateAccountInput {
|
|
3123
|
+
name?: string;
|
|
3124
|
+
password?: string;
|
|
3125
|
+
emailAddress?: string;
|
|
3126
|
+
mobileNumber?: string;
|
|
3127
|
+
realName?: string;
|
|
3128
|
+
nickName?: string;
|
|
3129
|
+
validId?: string;
|
|
3130
|
+
transactionPassword?: string;
|
|
3131
|
+
secretQuestion?: SecretQuestion;
|
|
3132
|
+
secretAnswer?: string;
|
|
3133
|
+
dateOfBirth?: Date | string;
|
|
3134
|
+
branchCode?: string;
|
|
3135
|
+
gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
|
|
3136
|
+
}
|
|
3137
|
+
type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
|
|
3138
|
+
type UpdateAccountReturn = OperationResult<UpdateAccountError>;
|
|
3139
|
+
type DeleteAccountReturn = OperationResult;
|
|
3140
|
+
interface UpdateDailyBetLimitInput {
|
|
3141
|
+
dailyBetLimit: number;
|
|
3142
|
+
}
|
|
3143
|
+
interface UpdateMonthlyBetLimitInput {
|
|
3144
|
+
monthlyBetLimit: number;
|
|
3145
|
+
}
|
|
3146
|
+
interface UpdateDailyDepositLimitInput {
|
|
3147
|
+
dailyDepositLimit: number;
|
|
3148
|
+
}
|
|
3149
|
+
interface UpdateMonthlyDepositLimitInput {
|
|
3150
|
+
monthlyDepositLimit: number;
|
|
3151
|
+
}
|
|
3152
|
+
type UpdateAccountLimitReturn = OperationResult;
|
|
3153
|
+
interface ResetPasswordInput {
|
|
3154
|
+
mobileNumber: string;
|
|
3155
|
+
newPassword: string;
|
|
3156
|
+
verificationCode: string;
|
|
3157
|
+
}
|
|
3158
|
+
type ResetPasswordError = UnionAlias<ResetPasswordError$1>;
|
|
3159
|
+
type ResetPasswordReturn = OperationResult<ResetPasswordError>;
|
|
3160
|
+
interface SubmitVerificationDetailsInput {
|
|
3161
|
+
id?: string;
|
|
3162
|
+
idFrontImage: string;
|
|
3163
|
+
selfieImage: string;
|
|
3164
|
+
address: string;
|
|
3165
|
+
permanentAddress: string;
|
|
3166
|
+
sourceOfIncome: string;
|
|
3167
|
+
natureOfWork: string;
|
|
3168
|
+
nationality: string;
|
|
3169
|
+
placeOfBirth: string;
|
|
3170
|
+
}
|
|
3171
|
+
interface SubmitVerificationDetailsInputNext {
|
|
3172
|
+
id?: string;
|
|
3173
|
+
idFrontImage?: string;
|
|
3174
|
+
selfieImage?: string;
|
|
3175
|
+
address?: string;
|
|
3176
|
+
permanentAddress?: string;
|
|
3177
|
+
sourceOfIncome?: string;
|
|
3178
|
+
natureOfWork?: string;
|
|
3179
|
+
nationality?: string;
|
|
3180
|
+
placeOfBirth?: string;
|
|
3181
|
+
}
|
|
3182
|
+
type SubmitVerificationError = UnionAlias<CreateMemberVerificationError>;
|
|
3183
|
+
type SubmitVerificationDetailsReturn = OperationResult<SubmitVerificationError, {
|
|
3184
|
+
id: string;
|
|
3185
|
+
}>;
|
|
3186
|
+
type SubmitMemberVerificationError = UnionAlias<SubmitMemberVerificationError$1>;
|
|
3187
|
+
type SubmitMemberVerificationReturn = OperationResult<SubmitMemberVerificationError, {
|
|
3188
|
+
id: string;
|
|
3189
|
+
}>;
|
|
3190
|
+
interface UpdateVerificationDetailsInput extends Partial<Omit<SubmitVerificationDetailsInput, 'id'>> {
|
|
3191
|
+
}
|
|
3192
|
+
type UpdateVerificationError = UnionAlias<UpdateMemberVerificationError>;
|
|
3193
|
+
type UpdateVerificationDetailsReturn = OperationResult<UpdateVerificationError>;
|
|
3194
|
+
/** @deprecated */
|
|
3195
|
+
type SendVerificationCodeError = UnionAlias<SendVerificationCodeError$1>;
|
|
3196
|
+
/** @deprecated */
|
|
3197
|
+
type SendVerificationCodeReturn = OperationResult<SendVerificationCodeError>;
|
|
3198
|
+
interface SendSmsVerificationCodeInput {
|
|
3199
|
+
type: 'SMS';
|
|
3200
|
+
mobileNumber: string;
|
|
3201
|
+
strict?: boolean;
|
|
3202
|
+
}
|
|
3203
|
+
interface SendEmailVerificationCodeInput {
|
|
3204
|
+
type: 'EMAIL';
|
|
3205
|
+
emailAddress: string;
|
|
3206
|
+
strict?: boolean;
|
|
3207
|
+
}
|
|
3208
|
+
type SendVerificationCodeInput__Next = SendSmsVerificationCodeInput | SendEmailVerificationCodeInput;
|
|
3209
|
+
type SendVerificationCodeError__Next = UnionAlias<SendVerificationCodeError__Next$1>;
|
|
3210
|
+
type SendVerificationCodeReturn__Next = OperationResult<SendVerificationCodeError__Next>;
|
|
3211
|
+
type VerifyMobileNumberError = UnionAlias<VerifyMobileNumberError$1>;
|
|
3212
|
+
type VerifyMobileNumberReturn = OperationResult<VerifyMobileNumberError>;
|
|
3213
|
+
type Currency = UnionAlias<Currency$1>;
|
|
3214
|
+
interface Wallet {
|
|
3215
|
+
id: string;
|
|
3216
|
+
balance: number;
|
|
3217
|
+
turnoverRequirement?: number | null;
|
|
3218
|
+
}
|
|
3219
|
+
type WalletReturn = OperationResult<never, Wallet | null>;
|
|
3220
|
+
interface MemberWalletAccount {
|
|
3221
|
+
id: string;
|
|
3222
|
+
dailyTotalBet: number;
|
|
3223
|
+
monthlyTotalBet: number;
|
|
3224
|
+
dailyTotalDeposit: number;
|
|
3225
|
+
monthlyTotalDeposit: number;
|
|
3226
|
+
}
|
|
3227
|
+
type MemberWalletAccountReturn = OperationResult<never, MemberWalletAccount | null>;
|
|
3228
|
+
interface PointsWallet {
|
|
3229
|
+
id: string;
|
|
3230
|
+
points: number;
|
|
3231
|
+
account: string;
|
|
3232
|
+
dateTimeCreated: Date;
|
|
3233
|
+
}
|
|
3234
|
+
type PointsWalletReturn = OperationResult<never, PointsWallet | null>;
|
|
3235
|
+
interface RedeemPointsInput {
|
|
3236
|
+
type: 'CASH';
|
|
3237
|
+
amount: number;
|
|
3238
|
+
}
|
|
3239
|
+
interface AchievementSettings {
|
|
3240
|
+
enabled: boolean;
|
|
3241
|
+
points: number;
|
|
3242
|
+
uniqueGamesCount: number;
|
|
3243
|
+
newGamesCount: number;
|
|
3244
|
+
betsCount: number;
|
|
3245
|
+
activeDaysCount: number;
|
|
3246
|
+
}
|
|
3247
|
+
interface AchievementSettingsResponse {
|
|
3248
|
+
diverseDebut: AchievementSettings;
|
|
3249
|
+
varietyVirtuoso: AchievementSettings;
|
|
3250
|
+
masterOfDiversity: AchievementSettings;
|
|
3251
|
+
curiousNewcomer: AchievementSettings;
|
|
3252
|
+
trailblazer: AchievementSettings;
|
|
3253
|
+
innovationIcon: AchievementSettings;
|
|
3254
|
+
rapidRoller: AchievementSettings;
|
|
3255
|
+
whirlwindWagerer: AchievementSettings;
|
|
3256
|
+
bettingBonanza: AchievementSettings;
|
|
3257
|
+
steadyStrategist: AchievementSettings;
|
|
3258
|
+
consistentContender: AchievementSettings;
|
|
3259
|
+
legendaryLoyalist: AchievementSettings;
|
|
3260
|
+
}
|
|
3261
|
+
type RedeemPointsError = UnionAlias<RedeemPointsToCashError>;
|
|
3262
|
+
type RedeemPointsReturn = OperationResult<RedeemPointsError>;
|
|
3263
|
+
type PointsWalletTransactionType = UnionAlias<PointsWalletTransactionType$1>;
|
|
3264
|
+
interface PointsWalletTransaction {
|
|
3265
|
+
id: string;
|
|
3266
|
+
type: PointsWalletTransactionType;
|
|
3267
|
+
amount: number;
|
|
3268
|
+
balance: number;
|
|
3269
|
+
dateTimeCreated: Date;
|
|
3270
|
+
}
|
|
3271
|
+
interface PointsWalletTransactionsInput extends PointsWalletTransactionsQueryVariables {
|
|
3272
|
+
}
|
|
3273
|
+
interface AchievementPointsHistoryRecordInput extends AchievementPointsHistoryRecordQueryVariables {
|
|
3274
|
+
}
|
|
3275
|
+
type PointsWalletTransactionsReturn = OperationResult<never, PaginatedQueryResult<'pointsWalletTransactions', PointsWalletTransaction>>;
|
|
3276
|
+
type AchievementPointsHistoryRecordReturn = OperationResult<never, PaginatedQueryResult<'achievementPointsHistoryRecords', AchievementPointsHistoryRecord>>;
|
|
3277
|
+
type MemberAchievementReturn = OperationResult<never, MemberAchievement | null>;
|
|
3278
|
+
interface MemberAchievement {
|
|
3279
|
+
member: {
|
|
3280
|
+
achievements: {
|
|
3281
|
+
type: string;
|
|
3282
|
+
count: number;
|
|
3283
|
+
}[];
|
|
3284
|
+
level: number;
|
|
3285
|
+
};
|
|
3286
|
+
}
|
|
3287
|
+
type RebateStatus = UnionAlias<RebateStatus$1>;
|
|
3288
|
+
type RebateCursor = UnionAlias<RebateCursor$1>;
|
|
3289
|
+
type RebateType = UnionAlias<RebateType$1>;
|
|
3290
|
+
interface RebateSettingsPerMemberLevel {
|
|
3291
|
+
level: number;
|
|
3292
|
+
percentage: number;
|
|
3293
|
+
}
|
|
3294
|
+
interface RebateProgram {
|
|
3295
|
+
id: string;
|
|
3296
|
+
banner?: {
|
|
3297
|
+
id: string;
|
|
3298
|
+
url?: string;
|
|
3299
|
+
};
|
|
3300
|
+
description: string;
|
|
3301
|
+
name: string;
|
|
3302
|
+
rebatePercentage?: number;
|
|
3303
|
+
rebateSettingsPerMemberLevel?: RebateSettingsPerMemberLevel[];
|
|
3304
|
+
type: RebateType;
|
|
3305
|
+
dateTimeCreated?: Date;
|
|
3306
|
+
}
|
|
3307
|
+
interface Rebate {
|
|
3308
|
+
id: string;
|
|
3309
|
+
rebateProgram: RebateProgram;
|
|
3310
|
+
amount: number;
|
|
3311
|
+
percentage?: number;
|
|
3312
|
+
status: RebateStatus;
|
|
3313
|
+
expirationDateTime?: Date;
|
|
3314
|
+
dateTimeClaimed?: Date;
|
|
3315
|
+
dateTimeExpired?: Date;
|
|
3316
|
+
startDateTime?: Date;
|
|
3317
|
+
endDateTime?: Date;
|
|
3318
|
+
dateTimeCreated?: Date;
|
|
3319
|
+
}
|
|
3320
|
+
interface MemberRebatesInput extends MemberRebatesQueryVariables {
|
|
3321
|
+
}
|
|
3322
|
+
type MemberRebatesReturn = OperationResult<never, PaginatedQueryResult<'rebates', Rebate>>;
|
|
3323
|
+
interface MemberRebateContributionPerGameCategory {
|
|
3324
|
+
gameProvider: GameProvider$1;
|
|
3325
|
+
gameType: GameType$1;
|
|
3326
|
+
percentage: number;
|
|
3327
|
+
loss?: number;
|
|
3328
|
+
turnover?: number;
|
|
3329
|
+
rebate: number;
|
|
3330
|
+
}
|
|
3331
|
+
interface MemberRebateContributionPerGame {
|
|
3332
|
+
game: {
|
|
3333
|
+
id: string;
|
|
3334
|
+
name: string;
|
|
3335
|
+
};
|
|
3336
|
+
percentage: number;
|
|
3337
|
+
loss?: number;
|
|
3338
|
+
turnover?: number;
|
|
3339
|
+
rebate: number;
|
|
3340
|
+
}
|
|
3341
|
+
interface MemberRebateContribution {
|
|
3342
|
+
id: string;
|
|
3343
|
+
rebatesPerGameCategory: MemberRebateContributionPerGameCategory[];
|
|
3344
|
+
rebatesPerGame: MemberRebateContributionPerGame[];
|
|
3345
|
+
}
|
|
3346
|
+
interface MemberRebateContributionInput extends MemberRebateContributionQueryVariables {
|
|
3347
|
+
}
|
|
3348
|
+
type MemberRebateContributionReturn = OperationResult<never, PaginatedQueryResult<'rebates', MemberRebateContribution>>;
|
|
3349
|
+
type ClaimRebateError = UnionAlias<ClaimRebateError$1>;
|
|
3350
|
+
type ClaimRebateReturn = OperationResult<ClaimRebateError>;
|
|
3351
|
+
type GameTag = UnionAlias<GameTag$1>;
|
|
3352
|
+
type GameType = UnionAlias<GameType$1>;
|
|
3353
|
+
type GameProvider = UnionAlias<GameProvider$1>;
|
|
3354
|
+
interface Game {
|
|
3355
|
+
id: string;
|
|
3356
|
+
name: string;
|
|
3357
|
+
type: GameType;
|
|
3358
|
+
tags: GameTag[];
|
|
3359
|
+
images: string[];
|
|
3360
|
+
provider: GameProvider;
|
|
3361
|
+
reference: string;
|
|
3362
|
+
favorite: boolean;
|
|
3363
|
+
}
|
|
3364
|
+
interface WalletGame {
|
|
3365
|
+
id: string;
|
|
3366
|
+
name: string;
|
|
3367
|
+
type: GameType;
|
|
3368
|
+
provider: GameProvider;
|
|
3369
|
+
favorite: boolean;
|
|
3370
|
+
}
|
|
3371
|
+
interface GamesInput extends GamesQueryVariables {
|
|
3372
|
+
}
|
|
3373
|
+
interface WalletGameInput extends WalletGamesQueryVariables {
|
|
3374
|
+
}
|
|
3375
|
+
interface GamesInput__Next extends GamesQueryVariables__Next {
|
|
3376
|
+
}
|
|
3377
|
+
type GamesReturn = OperationResult<never, PaginatedQueryResult<'games', Game>>;
|
|
3378
|
+
type WalletGamesReturn = OperationResult<never, PaginatedQueryResult<'games', WalletGame>>;
|
|
3379
|
+
type GameReturn = OperationResult<never, Game | null>;
|
|
3380
|
+
interface RecommendedGamesInput {
|
|
3381
|
+
first?: number;
|
|
3382
|
+
after?: string;
|
|
3383
|
+
}
|
|
3384
|
+
type RecommendedGamesReturn = OperationResult<never, PaginatedQueryResult<'games', Game>>;
|
|
3385
|
+
type GameSessionStatus = UnionAlias<GameSessionStatus$1>;
|
|
3386
|
+
interface GameSessionLaunchOptions extends GameSessionLaunchOptions$1 {
|
|
3387
|
+
}
|
|
3388
|
+
type GameSession = {
|
|
3389
|
+
id: string;
|
|
3390
|
+
status: 'READY' | 'ENDED';
|
|
3391
|
+
launchOptions?: GameSessionLaunchOptions | null;
|
|
3392
|
+
launchUrl: string;
|
|
3393
|
+
dateTimeCreated: Date;
|
|
3394
|
+
dateTimeLastUpdated: Date;
|
|
3395
|
+
} | {
|
|
3396
|
+
id: string;
|
|
3397
|
+
status: 'PENDING' | 'STARTING' | 'CANCELLED';
|
|
3398
|
+
launchUrl?: never;
|
|
3399
|
+
launchOptions?: never;
|
|
3400
|
+
dateTimeCreated: Date;
|
|
3401
|
+
dateTimeLastUpdated: Date;
|
|
3402
|
+
};
|
|
3403
|
+
type GameSessionReturn = OperationResult<never, GameSession | null>;
|
|
3404
|
+
interface CreateGameSessionByReferenceInput {
|
|
3405
|
+
id?: string;
|
|
3406
|
+
game?: never;
|
|
3407
|
+
provider: GameProvider;
|
|
3408
|
+
reference: string;
|
|
3409
|
+
homepageUrl?: string;
|
|
3410
|
+
}
|
|
3411
|
+
interface CreateGameSessionByIdInput {
|
|
3412
|
+
id?: string;
|
|
3413
|
+
game: `SPORTS:${Extract<GameProvider, 'BTI' | 'SABA' | 'DIGITAIN'>}` | (string & {});
|
|
3414
|
+
provider?: never;
|
|
3415
|
+
reference?: never;
|
|
3416
|
+
homepageUrl?: string;
|
|
3417
|
+
}
|
|
3418
|
+
type CreateGameSessionInput = CreateGameSessionByReferenceInput | CreateGameSessionByIdInput;
|
|
3419
|
+
type CreateGameSessionError = UnionAlias<CreateGameSessionError$1>;
|
|
3420
|
+
type CreateGameSessionReturn = OperationResult<CreateGameSessionError, {
|
|
3421
|
+
id: string;
|
|
3422
|
+
}>;
|
|
3423
|
+
type EndGameSessionReturn = OperationResult;
|
|
3424
|
+
type MarkGameAsFavoriteReturn = OperationResult;
|
|
3425
|
+
interface MarkGameAsFavoriteInput {
|
|
3426
|
+
id: string;
|
|
3427
|
+
}
|
|
3428
|
+
type UnmarkGameAsFavoriteReturn = OperationResult;
|
|
3429
|
+
interface UnmarkGameAsFavoriteInput {
|
|
3430
|
+
id: string;
|
|
3431
|
+
}
|
|
3432
|
+
type FavoriteGamesReturn = OperationResult<never, Game[]>;
|
|
3433
|
+
type AnnouncementType = UnionAlias<AnnouncementType$1>;
|
|
3434
|
+
type AnnouncementStatus = UnionAlias<AnnouncementStatus$1>;
|
|
3435
|
+
interface Announcement {
|
|
3436
|
+
id: string;
|
|
3437
|
+
type: AnnouncementType;
|
|
3438
|
+
title: string;
|
|
3439
|
+
status: AnnouncementStatus;
|
|
3440
|
+
/** @format html */
|
|
3441
|
+
message: string;
|
|
3442
|
+
activationStartDateTime: Date;
|
|
3443
|
+
activationEndDateTime: Date;
|
|
3444
|
+
dateTimeCreated: Date;
|
|
3445
|
+
dateTimeLastUpdated: Date;
|
|
3446
|
+
}
|
|
3447
|
+
interface AnnouncementsFilterInput extends Omit<AnnouncementsQueryVariables['filter'], 'visibility'> {
|
|
3448
|
+
}
|
|
3449
|
+
interface AnnouncementsInput extends Omit<AnnouncementsQueryVariables, 'filter'> {
|
|
3450
|
+
filter?: AnnouncementsFilterInput;
|
|
3451
|
+
}
|
|
3452
|
+
type AnnouncementsReturn = OperationResult<never, PaginatedQueryResult<'announcements', Announcement>>;
|
|
3453
|
+
type BetRecordStatus = UnionAlias<BetRecordStatus$1>;
|
|
3454
|
+
interface BetRecord {
|
|
3455
|
+
id: string;
|
|
3456
|
+
game?: Game;
|
|
3457
|
+
status: BetRecordStatus;
|
|
3458
|
+
serialCode: string;
|
|
3459
|
+
vendorRoundId?: string;
|
|
3460
|
+
bet: number;
|
|
3461
|
+
payout: number;
|
|
3462
|
+
validBet: number;
|
|
3463
|
+
odds?: string;
|
|
3464
|
+
jackpotContribution: number;
|
|
3465
|
+
jackpotPayout: number;
|
|
3466
|
+
winloss?: number;
|
|
3467
|
+
dateTimeSettled?: Date;
|
|
3468
|
+
dateTimeCreated: Date;
|
|
3469
|
+
dateTimeLastUpdated: Date;
|
|
3470
|
+
betContent?: string;
|
|
3471
|
+
contestName?: string;
|
|
3472
|
+
externalCategory?: string;
|
|
3473
|
+
freeBetDrop?: FreeBetDrop;
|
|
3474
|
+
freeBetPayout?: number;
|
|
3475
|
+
metadata: {
|
|
3476
|
+
/**
|
|
3477
|
+
* @deprecated use `BetRecord.odds`
|
|
3478
|
+
*/
|
|
3479
|
+
odds?: string;
|
|
3480
|
+
};
|
|
3481
|
+
}
|
|
3482
|
+
interface BetRecordsFilterInput {
|
|
3483
|
+
status?: NonNullable<BetRecordsQueryVariables['filter']>['status'];
|
|
3484
|
+
serialCode?: NonNullable<BetRecordsQueryVariables['filter']>['serialCode'];
|
|
3485
|
+
gameType?: NonNullable<BetRecordsQueryVariables['filter']>['game__type'];
|
|
3486
|
+
gameProvider?: NonNullable<BetRecordsQueryVariables['filter']>['game__provider'];
|
|
3487
|
+
vendorRoundId?: NonNullable<BetRecordsQueryVariables['filter']>['vendorRoundId'];
|
|
3488
|
+
dateTimeCreated?: NonNullable<BetRecordsQueryVariables['filter']>['dateTimeCreated'];
|
|
3489
|
+
freeBetDrop?: NonNullable<BetRecordsQueryVariables['filter']>['freeBetDrop'];
|
|
3490
|
+
}
|
|
3491
|
+
interface BetRecordsInput extends Omit<BetRecordsQueryVariables, 'filter'> {
|
|
3492
|
+
filter?: BetRecordsFilterInput;
|
|
3493
|
+
}
|
|
3494
|
+
type BetRecordsReturn = OperationResult<never, PaginatedQueryResult<'betRecords', BetRecord>>;
|
|
3495
|
+
interface LatestBetRecord {
|
|
3496
|
+
id: string;
|
|
3497
|
+
member: {
|
|
3498
|
+
name: string;
|
|
3499
|
+
};
|
|
3500
|
+
game?: Game;
|
|
3501
|
+
bet: number;
|
|
3502
|
+
payout: number;
|
|
3503
|
+
validBet: number;
|
|
3504
|
+
dateTimeSettled: Date;
|
|
3505
|
+
dateTimeCreated: Date;
|
|
3506
|
+
}
|
|
3507
|
+
type LatestBetRecordsReturn = OperationResult<never, LatestBetRecord[]>;
|
|
3508
|
+
interface FreeBetDropsInput extends FreeBetDropsQueryVariables {
|
|
3509
|
+
}
|
|
3510
|
+
interface MemberFreeBetDropsInput extends MemberFreeBetDropsQueryVariables {
|
|
3511
|
+
}
|
|
3512
|
+
interface CancelFreeBetDropInput extends CancelFreeBetDropMutationVariables {
|
|
3513
|
+
}
|
|
3514
|
+
type FreeBetDropStatus = UnionAlias<FreeBetDropStatus$1>;
|
|
3515
|
+
interface FreeBetDrop {
|
|
3516
|
+
id: string;
|
|
3517
|
+
name: string;
|
|
3518
|
+
description: string;
|
|
3519
|
+
games?: {
|
|
3520
|
+
id: string;
|
|
3521
|
+
name: string;
|
|
3522
|
+
provider: GameProvider;
|
|
3523
|
+
}[];
|
|
3524
|
+
gameProvider: GameProvider;
|
|
3525
|
+
remainingBets: number;
|
|
3526
|
+
bets: number;
|
|
3527
|
+
betValue: string;
|
|
3528
|
+
status: FreeBetDropStatus;
|
|
3529
|
+
activationDateTime: Date;
|
|
3530
|
+
expirationDateTime: Date;
|
|
3531
|
+
dateTimeCreated: Date;
|
|
3532
|
+
dateTimeCompleted?: Date;
|
|
3533
|
+
dateTimeLastUpdated: Date;
|
|
3534
|
+
payout: string;
|
|
3535
|
+
}
|
|
3536
|
+
interface MemberFreeBetDropBetRecord {
|
|
3537
|
+
game: {
|
|
3538
|
+
id: string;
|
|
3539
|
+
name: string;
|
|
3540
|
+
};
|
|
3541
|
+
dateTimeCreated: string;
|
|
3542
|
+
payout: string;
|
|
3543
|
+
freeBetDrop: {
|
|
3544
|
+
remainingBets: number;
|
|
3545
|
+
};
|
|
3546
|
+
}
|
|
3547
|
+
interface MemberFreeBetDrop {
|
|
3548
|
+
id: string;
|
|
3549
|
+
name: string;
|
|
3550
|
+
description: string;
|
|
3551
|
+
games?: {
|
|
3552
|
+
id: string;
|
|
3553
|
+
name: string;
|
|
3554
|
+
provider: GameProvider;
|
|
3555
|
+
}[];
|
|
3556
|
+
serialCode?: string;
|
|
3557
|
+
remainingBets: number;
|
|
3558
|
+
bets: number;
|
|
3559
|
+
betValue: string;
|
|
3560
|
+
status: FreeBetDropStatus;
|
|
3561
|
+
activationDateTime: Date;
|
|
3562
|
+
expirationDateTime: Date;
|
|
3563
|
+
dateTimeCreated: Date;
|
|
3564
|
+
dateTimeCompleted?: Date;
|
|
3565
|
+
dateTimeLastUpdated: Date;
|
|
3566
|
+
payout: string;
|
|
3567
|
+
gameProvider: GameProvider;
|
|
3568
|
+
}
|
|
3569
|
+
type MemberFreeBetDropsReturn = OperationResult<never, PaginatedQueryResult<'freeBetDrops', MemberFreeBetDrop>>;
|
|
3570
|
+
type FreeBetDropsReturn = OperationResult<never, PaginatedQueryResult<'freeBetDrops', FreeBetDrop>>;
|
|
3571
|
+
type CancelFreeBetDropReturn = OperationResult;
|
|
3572
|
+
type TransactionType = UnionAlias<TransactionType$1>;
|
|
3573
|
+
interface TransactionRecord {
|
|
3574
|
+
id: string;
|
|
3575
|
+
type: TransactionType;
|
|
3576
|
+
amount: number;
|
|
3577
|
+
content?: string;
|
|
3578
|
+
currentBalance: number;
|
|
3579
|
+
currentBonusBalance: number;
|
|
3580
|
+
referenceNumber: string;
|
|
3581
|
+
dateTimeCreated: Date;
|
|
3582
|
+
}
|
|
3583
|
+
interface TransactionRecordsInput extends TransactionRecordsQueryVariables {
|
|
3584
|
+
}
|
|
3585
|
+
interface PromoFilterInput extends AvailablePromosQueryVariables {
|
|
3586
|
+
}
|
|
3587
|
+
type TransactionRecordsReturn = OperationResult<never, PaginatedQueryResult<'transactionRecords', TransactionRecord>>;
|
|
3588
|
+
type DepositType = UnionAlias<DepositType$1>;
|
|
3589
|
+
type DepositStatus = UnionAlias<DepositStatus$1>;
|
|
3590
|
+
type KnownDepositError = UnionAlias<KnownDepositError$1>;
|
|
3591
|
+
interface DepositRecord {
|
|
3592
|
+
id: string;
|
|
3593
|
+
type: DepositType;
|
|
3594
|
+
status: DepositStatus;
|
|
3595
|
+
amount: number;
|
|
3596
|
+
netAmount: number;
|
|
3597
|
+
fee: number;
|
|
3598
|
+
reference?: string;
|
|
3599
|
+
deposit: string;
|
|
3600
|
+
depositNumber: string;
|
|
3601
|
+
dateTimeCreated: Date;
|
|
3602
|
+
dateTimeLastUpdated: Date;
|
|
3603
|
+
error?: KnownDepositError | (string & {});
|
|
3604
|
+
}
|
|
3605
|
+
interface DepositRecordsInput extends DepositRecordsQueryVariables {
|
|
3606
|
+
}
|
|
3607
|
+
type DepositRecordsReturn = OperationResult<never, PaginatedQueryResult<'depositRecords', DepositRecord>>;
|
|
3608
|
+
interface DepositBase<T extends DepositType> {
|
|
3609
|
+
id: string;
|
|
3610
|
+
type: T;
|
|
3611
|
+
status: DepositStatus;
|
|
3612
|
+
vca?: T extends 'ONLINE_BANK' ? string : never;
|
|
3613
|
+
qrCode?: T extends 'QR_PH' ? string : never;
|
|
3614
|
+
checkoutUrl?: T extends 'GCASH' | 'MAYA' | 'MAYA_APP' | 'AIO_GCASH' | 'AIO_PAY_MAYA' | 'AIO_GRAB_PAY' | 'AIO_PALAWAN_PAY' ? string : never;
|
|
3615
|
+
successRedirectionUrl?: T extends 'GCASH_WEBPAY' ? string : never;
|
|
3616
|
+
cancelRedirectionUrl?: T extends 'GCASH_WEBPAY' ? string : never;
|
|
3617
|
+
error?: KnownDepositError;
|
|
3618
|
+
}
|
|
3619
|
+
interface GCashDeposit extends DepositBase<'GCASH'> {
|
|
3620
|
+
}
|
|
3621
|
+
interface GcashWebpayDeposit extends DepositBase<'GCASH_WEBPAY'> {
|
|
3622
|
+
}
|
|
3623
|
+
interface AiOGCashDeposit extends DepositBase<'AIO_GCASH'> {
|
|
3624
|
+
}
|
|
3625
|
+
interface AiOPayMayaDeposit extends DepositBase<'AIO_PAY_MAYA'> {
|
|
3626
|
+
}
|
|
3627
|
+
interface AiOGrabPayDeposit extends DepositBase<'AIO_GRAB_PAY'> {
|
|
3628
|
+
}
|
|
3629
|
+
interface AiOPalawanPayDeposit extends DepositBase<'AIO_PALAWAN_PAY'> {
|
|
3630
|
+
}
|
|
3631
|
+
interface MayaDeposit extends DepositBase<'MAYA'> {
|
|
3632
|
+
}
|
|
3633
|
+
interface MayaAppDeposit extends DepositBase<'MAYA_APP'> {
|
|
3634
|
+
}
|
|
3635
|
+
interface BankDeposit extends DepositBase<'BANK'> {
|
|
3636
|
+
}
|
|
3637
|
+
interface ManualDeposit extends DepositBase<'MANUAL'> {
|
|
3638
|
+
}
|
|
3639
|
+
interface QRPHDeposit extends DepositBase<'QR_PH'> {
|
|
3640
|
+
}
|
|
3641
|
+
interface OnlineBankDeposit extends DepositBase<'ONLINE_BANK'> {
|
|
3642
|
+
}
|
|
3643
|
+
interface ManualBankDeposit extends DepositBase<'MANUAL_BANK'> {
|
|
3644
|
+
}
|
|
3645
|
+
interface ManualUPIDeposit extends DepositBase<'MANUAL_UPI'> {
|
|
3646
|
+
}
|
|
3647
|
+
type Deposit = GCashDeposit | MayaDeposit | MayaAppDeposit | BankDeposit | ManualDeposit | QRPHDeposit | OnlineBankDeposit | ManualBankDeposit | ManualUPIDeposit | GcashWebpayDeposit | AiOGCashDeposit | AiOPayMayaDeposit | AiOGrabPayDeposit | AiOPalawanPayDeposit;
|
|
3648
|
+
type DepositReturn = OperationResult<never, Deposit | null>;
|
|
3649
|
+
type DepositsCountReturn = OperationResult<never, number>;
|
|
3650
|
+
interface CreateDepositBaseInput {
|
|
3651
|
+
id?: string;
|
|
3652
|
+
amount: number;
|
|
3653
|
+
promo?: string;
|
|
3654
|
+
reCAPTCHAResponse?: string;
|
|
3655
|
+
}
|
|
3656
|
+
interface CreateMayaDepositInput extends CreateDepositBaseInput {
|
|
3657
|
+
type: 'MAYA';
|
|
3658
|
+
}
|
|
3659
|
+
interface CreateGCashDepositInput extends CreateDepositBaseInput {
|
|
3660
|
+
type: 'GCASH';
|
|
3661
|
+
}
|
|
3662
|
+
interface CreateAiOGCashDepositInput extends CreateDepositBaseInput {
|
|
3663
|
+
type: 'AIO_GCASH';
|
|
3664
|
+
redirectUrl: string;
|
|
3665
|
+
}
|
|
3666
|
+
interface CreateAiOPayMayaDepositInput extends CreateDepositBaseInput {
|
|
3667
|
+
type: 'AIO_PAY_MAYA';
|
|
3668
|
+
redirectUrl: string;
|
|
3669
|
+
}
|
|
3670
|
+
interface CreateAiOGrabPayDepositInput extends CreateDepositBaseInput {
|
|
3671
|
+
type: 'AIO_GRAB_PAY';
|
|
3672
|
+
redirectUrl: string;
|
|
3673
|
+
}
|
|
3674
|
+
interface CreateAiOPalawanPayDepositInput extends CreateDepositBaseInput {
|
|
3675
|
+
type: 'AIO_PALAWAN_PAY';
|
|
3676
|
+
redirectUrl: string;
|
|
3677
|
+
}
|
|
3678
|
+
interface CreateGCashWebpayDepositInput extends CreateDepositBaseInput {
|
|
3679
|
+
type: 'GCASH_WEBPAY';
|
|
3680
|
+
successRedirectionUrl?: string;
|
|
3681
|
+
cancelRedirectionUrl?: string;
|
|
3682
|
+
}
|
|
3683
|
+
interface CreateMayaAppDepositInput extends CreateDepositBaseInput {
|
|
3684
|
+
type: 'MAYA_APP';
|
|
3685
|
+
}
|
|
3686
|
+
interface CreateAIOQRPHDepositInput extends CreateDepositBaseInput {
|
|
3687
|
+
type: 'AIO_QRPH';
|
|
3688
|
+
}
|
|
3689
|
+
interface CreateAIOOnlineBankDepositInput extends CreateDepositBaseInput {
|
|
3690
|
+
type: 'AIO_ONLINE_BANK';
|
|
3691
|
+
}
|
|
3692
|
+
interface CreateManualUPIDepositInput extends CreateDepositBaseInput {
|
|
3693
|
+
type: 'MANUAL_UPI';
|
|
3694
|
+
reference: string;
|
|
3695
|
+
referenceImage: string;
|
|
3696
|
+
}
|
|
3697
|
+
interface CreateManualBankDepositInput extends CreateDepositBaseInput {
|
|
3698
|
+
type: 'MANUAL_BANK';
|
|
3699
|
+
referenceId: string;
|
|
3700
|
+
}
|
|
3701
|
+
interface CreateMayaWebpayDepositInput extends CreateDepositBaseInput {
|
|
3702
|
+
type: 'MAYA_WEBPAY';
|
|
3703
|
+
redirectUrl: string;
|
|
3704
|
+
}
|
|
3705
|
+
interface CreateTestDepositInput extends CreateDepositBaseInput {
|
|
3706
|
+
type: 'TEST';
|
|
3707
|
+
}
|
|
3708
|
+
type CreateDepositInput = CreateMayaDepositInput | CreateGCashDepositInput | CreateMayaAppDepositInput | CreateAIOQRPHDepositInput | CreateAIOOnlineBankDepositInput | CreateManualBankDepositInput | CreateManualUPIDepositInput | CreateAIOOnlineBankDepositInput | CreateAiOGCashDepositInput | CreateAiOPayMayaDepositInput | CreateAiOGrabPayDepositInput | CreateAiOPalawanPayDepositInput | CreateGCashWebpayDepositInput | CreateMayaWebpayDepositInput | CreateTestDepositInput;
|
|
3709
|
+
type CreateDepositError = UnionAlias<CreateDepositError$1>;
|
|
3710
|
+
type CreateDepositReturn = OperationResult<CreateDepositError, {
|
|
3711
|
+
id: string;
|
|
3712
|
+
}>;
|
|
3713
|
+
interface TouchDepositInput {
|
|
3714
|
+
type: 'GCASH' | 'QR_PH';
|
|
3715
|
+
id: string;
|
|
3716
|
+
}
|
|
3717
|
+
type TouchDepositReturn = OperationResult;
|
|
3718
|
+
type VoucherType = 'BUILTIN' | 'LAZADA';
|
|
3719
|
+
interface RedeemVoucherInput {
|
|
3720
|
+
type: VoucherType;
|
|
3721
|
+
code: string;
|
|
3722
|
+
}
|
|
3723
|
+
type RedeemVoucherReturn = OperationResult<'InvalidVoucherError' | 'VoucherAlreadyRedeemedError' | 'ExpiredVoucherError'>;
|
|
3724
|
+
type WithdrawalType = UnionAlias<WithdrawalType$1>;
|
|
3725
|
+
type WithdrawalStatus = UnionAlias<WithdrawalStatus$1>;
|
|
3726
|
+
type WithdrawalError = UnionAlias<CreateWithdrawalError$1>;
|
|
3727
|
+
interface WithdrawalRecordCommonProps {
|
|
3728
|
+
id: string;
|
|
3729
|
+
fee: number;
|
|
3730
|
+
amount: number;
|
|
3731
|
+
netAmount: number;
|
|
3732
|
+
status: WithdrawalStatus;
|
|
3733
|
+
reference?: string;
|
|
3734
|
+
withdrawalNumber: string;
|
|
3735
|
+
dateTimeConfirmed?: Date;
|
|
3736
|
+
dateTimeCreated: Date;
|
|
3737
|
+
dateTimeLastUpdated: Date;
|
|
3738
|
+
error?: WithdrawalError;
|
|
3739
|
+
serialCode: string;
|
|
3740
|
+
}
|
|
3741
|
+
interface ManualWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3742
|
+
type: 'MANUAL';
|
|
3743
|
+
bank?: never;
|
|
3744
|
+
recipientMobileNumber?: never;
|
|
3745
|
+
}
|
|
3746
|
+
/**
|
|
3747
|
+
* - `AUBKPHMM` (ASIA UNITED BANK)
|
|
3748
|
+
* - `MBTCPHMM` (METROPOLITAN BANK AND TRUST CO)
|
|
3749
|
+
* - `BNORPHMM` (BDO UNIBANK, INC)
|
|
3750
|
+
* - `MKRUPHM1` (BANK OF MAKATI)
|
|
3751
|
+
*/
|
|
3752
|
+
type Bank = UnionAlias<Bank$1>;
|
|
3753
|
+
interface BankWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3754
|
+
type: 'BANK';
|
|
3755
|
+
bank: Bank;
|
|
3756
|
+
recipientMobileNumber?: never;
|
|
3757
|
+
}
|
|
3758
|
+
interface GCashWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3759
|
+
type: 'GCASH';
|
|
3760
|
+
bank?: never;
|
|
3761
|
+
recipientMobileNumber: string;
|
|
3762
|
+
}
|
|
3763
|
+
interface MayaWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3764
|
+
type: 'MAYA_APP';
|
|
3765
|
+
bank?: never;
|
|
3766
|
+
recipientMobileNumber?: never;
|
|
3767
|
+
reference?: string;
|
|
3768
|
+
amount: number;
|
|
3769
|
+
fee: number;
|
|
3770
|
+
netAmount: number;
|
|
3771
|
+
dateTimeConfirmed?: Date;
|
|
3772
|
+
dateTimeCreated: Date;
|
|
3773
|
+
dateTimeLastUpdated: Date;
|
|
3774
|
+
status: WithdrawalStatus;
|
|
3775
|
+
error?: WithdrawalError;
|
|
3776
|
+
serialCode: string;
|
|
3777
|
+
remarks?: string;
|
|
3778
|
+
}
|
|
3779
|
+
interface InstapayWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3780
|
+
type: 'INSTAPAY';
|
|
3781
|
+
bank?: never;
|
|
3782
|
+
recipientMobileNumber?: never;
|
|
3783
|
+
accountName?: string;
|
|
3784
|
+
bankName?: string;
|
|
3785
|
+
}
|
|
3786
|
+
interface ManualBankWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3787
|
+
type: 'MANUAL_BANK';
|
|
3788
|
+
bank?: never;
|
|
3789
|
+
recipientMobileNumber?: never;
|
|
3790
|
+
}
|
|
3791
|
+
interface ManualUPIWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3792
|
+
type: 'MANUAL_UPI';
|
|
3793
|
+
bank?: never;
|
|
3794
|
+
recipientMobileNumber?: never;
|
|
3795
|
+
}
|
|
3796
|
+
interface CabinetWithdrawalRecord extends WithdrawalRecordCommonProps {
|
|
3797
|
+
type: 'CabinetWithdrawal';
|
|
3798
|
+
reference?: string;
|
|
3799
|
+
amount: number;
|
|
3800
|
+
status: WithdrawalStatus;
|
|
3801
|
+
accountName: string;
|
|
3802
|
+
}
|
|
3803
|
+
type WithdrawalRecord = ManualWithdrawalRecord | BankWithdrawalRecord | GCashWithdrawalRecord | MayaWithdrawalRecord | InstapayWithdrawalRecord | ManualBankWithdrawalRecord | ManualUPIWithdrawalRecord | CabinetWithdrawalRecord;
|
|
3804
|
+
interface WithdrawalRecordsInput extends WithdrawalRecordsQueryVariables {
|
|
3805
|
+
}
|
|
3806
|
+
type WithdrawalRecordsReturn = OperationResult<never, PaginatedQueryResult<'withdrawalRecords', WithdrawalRecord>>;
|
|
3807
|
+
type InstapayBankType = 'BDO' | 'OTHERS';
|
|
3808
|
+
interface InstapayBank extends InstapayBank$1 {
|
|
3809
|
+
}
|
|
3810
|
+
type InstapayBankListReturn = OperationResult<never, InstapayBank[]>;
|
|
3811
|
+
type RemainingDailyWithdrawalsCountReturn = OperationResult<never, number>;
|
|
3812
|
+
interface CreateBankWithdrawalInput {
|
|
3813
|
+
id?: string;
|
|
3814
|
+
type: 'BANK';
|
|
3815
|
+
amount: number;
|
|
3816
|
+
transactionPassword: string;
|
|
3817
|
+
reCAPTCHAResponse?: string;
|
|
3818
|
+
}
|
|
3819
|
+
interface CreateGCashWithdrawalInput {
|
|
3820
|
+
id?: string;
|
|
3821
|
+
type: 'GCASH';
|
|
3822
|
+
amount: number;
|
|
3823
|
+
transactionPassword: string;
|
|
3824
|
+
recipientMobileNumber: string;
|
|
3825
|
+
reCAPTCHAResponse?: string;
|
|
3826
|
+
}
|
|
3827
|
+
interface CreateGCashStandardCashInWithdrawalInput {
|
|
3828
|
+
id?: string;
|
|
3829
|
+
type: 'GCASH_STANDARD_CASHIN';
|
|
3830
|
+
amount: number;
|
|
3831
|
+
transactionPassword: string;
|
|
3832
|
+
recipientMobileNumber: string;
|
|
3833
|
+
reCAPTCHAResponse?: string;
|
|
3834
|
+
}
|
|
3835
|
+
interface CreateMayaWithdrawalInput {
|
|
3836
|
+
id?: string;
|
|
3837
|
+
type: 'MAYA';
|
|
3838
|
+
amount: number;
|
|
3839
|
+
transactionPassword: string;
|
|
3840
|
+
accountNumber: string;
|
|
3841
|
+
reCAPTCHAResponse?: string;
|
|
3842
|
+
}
|
|
3843
|
+
interface CreateMayaAppWithdrawalInput {
|
|
3844
|
+
id?: string;
|
|
3845
|
+
type: 'MAYA_APP';
|
|
3846
|
+
amount: number;
|
|
3847
|
+
transactionPassword: string;
|
|
3848
|
+
reCAPTCHAResponse?: string;
|
|
3849
|
+
}
|
|
3850
|
+
interface CreateAIOInstapayWithdrawalInput {
|
|
3851
|
+
id?: string;
|
|
3852
|
+
type: 'AIO_INSTAPAY';
|
|
3853
|
+
amount: number;
|
|
3854
|
+
bankCode: string;
|
|
3855
|
+
accountNumber: string;
|
|
3856
|
+
accountName: string;
|
|
3857
|
+
transactionPassword: string;
|
|
3858
|
+
reCAPTCHAResponse?: string;
|
|
3859
|
+
}
|
|
3860
|
+
interface CreateAIOInstapayWithdrawalInput_Next {
|
|
3861
|
+
id?: string;
|
|
3862
|
+
type: 'AIO_INSTAPAY_NEXT';
|
|
3863
|
+
amount: number;
|
|
3864
|
+
bankCode: string;
|
|
3865
|
+
accountNumber: string;
|
|
3866
|
+
accountName: string;
|
|
3867
|
+
transactionPassword: string;
|
|
3868
|
+
reCAPTCHAResponse?: string;
|
|
3869
|
+
}
|
|
3870
|
+
interface CreateManualUPIWithdrawalInput {
|
|
3871
|
+
id?: string;
|
|
3872
|
+
type: 'MANUAL_UPI';
|
|
3873
|
+
amount: number;
|
|
3874
|
+
upiId: string;
|
|
3875
|
+
reCAPTCHAResponse?: string;
|
|
3876
|
+
}
|
|
3877
|
+
interface CreateManualBankWithdrawalInput {
|
|
3878
|
+
id?: string;
|
|
3879
|
+
type: 'MANUAL_BANK';
|
|
3880
|
+
amount: number;
|
|
3881
|
+
bankIFSCCode: string;
|
|
3882
|
+
bankAccountNumber: string;
|
|
3883
|
+
bankAccountName: string;
|
|
3884
|
+
reCAPTCHAResponse?: string;
|
|
3885
|
+
}
|
|
3886
|
+
interface CreateCabinetWithdrawalInput {
|
|
3887
|
+
id?: string;
|
|
3888
|
+
type: 'CABINET';
|
|
3889
|
+
amount: number;
|
|
3890
|
+
}
|
|
3891
|
+
type CreateWithdrawalInput = CreateBankWithdrawalInput | CreateGCashWithdrawalInput | CreateGCashStandardCashInWithdrawalInput | CreateMayaWithdrawalInput | CreateMayaAppWithdrawalInput | CreateAIOInstapayWithdrawalInput | CreateManualUPIWithdrawalInput | CreateManualBankWithdrawalInput | CreateCabinetWithdrawalInput | CreateAIOInstapayWithdrawalInput_Next;
|
|
3892
|
+
type CreateWithdrawalError = UnionAlias<CreateWithdrawalError$1>;
|
|
3893
|
+
type CreateWithdrawalReturn = OperationResult<CreateWithdrawalError, {
|
|
3894
|
+
id: string;
|
|
3895
|
+
}>;
|
|
3896
|
+
interface GatewaySettings {
|
|
3897
|
+
minimumAmount?: number;
|
|
3898
|
+
maximumAmount?: number;
|
|
3899
|
+
webEnabled: boolean;
|
|
3900
|
+
mobileWebEnabled: boolean;
|
|
3901
|
+
androidEnabled: boolean;
|
|
3902
|
+
iosEnabled: boolean;
|
|
3903
|
+
bankAccountName?: string;
|
|
3904
|
+
bankAccountNumber?: string;
|
|
3905
|
+
bankIFSCCode?: string;
|
|
3906
|
+
upiId?: string;
|
|
3907
|
+
upiQRCode?: Extract<File, {
|
|
3908
|
+
status: 'READY';
|
|
3909
|
+
}> | null;
|
|
3910
|
+
}
|
|
3911
|
+
interface PaymentSettings {
|
|
3912
|
+
minimumFirstDepositAmount?: number;
|
|
3913
|
+
restrictWithdrawalsToVerifiedMembers: boolean;
|
|
3914
|
+
depositGateway: {
|
|
3915
|
+
bank: GatewaySettings;
|
|
3916
|
+
gcash: GatewaySettings;
|
|
3917
|
+
gcashWebpay: GatewaySettings;
|
|
3918
|
+
aioGcash: GatewaySettings;
|
|
3919
|
+
aioPayMaya: GatewaySettings;
|
|
3920
|
+
aioGrabPay: GatewaySettings;
|
|
3921
|
+
aioPalawanPay: GatewaySettings;
|
|
3922
|
+
maya: GatewaySettings;
|
|
3923
|
+
mayaApp: GatewaySettings;
|
|
3924
|
+
mayaWebpay: GatewaySettings;
|
|
3925
|
+
qrph: GatewaySettings;
|
|
3926
|
+
onlineBank: GatewaySettings;
|
|
3927
|
+
manualBank: GatewaySettings;
|
|
3928
|
+
manualUPI: GatewaySettings;
|
|
3929
|
+
};
|
|
3930
|
+
withdrawalGateway: {
|
|
3931
|
+
bank: GatewaySettings;
|
|
3932
|
+
gcash: GatewaySettings;
|
|
3933
|
+
gcashStandardCashIn: GatewaySettings;
|
|
3934
|
+
maya: GatewaySettings;
|
|
3935
|
+
mayaApp: GatewaySettings;
|
|
3936
|
+
instapay: GatewaySettings;
|
|
3937
|
+
manualBank: GatewaySettings;
|
|
3938
|
+
manualUPI: GatewaySettings;
|
|
3939
|
+
};
|
|
3940
|
+
}
|
|
3941
|
+
interface MemberLevelSetting {
|
|
3942
|
+
enabled: boolean;
|
|
3943
|
+
achievementPointsRequirement: number;
|
|
3944
|
+
turnoverRequirement: number;
|
|
3945
|
+
bonusTurnoverRequirement: number;
|
|
3946
|
+
name: string;
|
|
3947
|
+
bonusAmount: number;
|
|
3948
|
+
}
|
|
3949
|
+
interface MemberLevelSettings {
|
|
3950
|
+
memberLevelSettings__1: MemberLevelSetting;
|
|
3951
|
+
memberLevelSettings__2: MemberLevelSetting;
|
|
3952
|
+
memberLevelSettings__3: MemberLevelSetting;
|
|
3953
|
+
memberLevelSettings__4: MemberLevelSetting;
|
|
3954
|
+
memberLevelSettings__5: MemberLevelSetting;
|
|
3955
|
+
memberLevelSettings__6: MemberLevelSetting;
|
|
3956
|
+
memberLevelSettings__7: MemberLevelSetting;
|
|
3957
|
+
memberLevelSettings__8: MemberLevelSetting;
|
|
3958
|
+
memberLevelSettings__9: MemberLevelSetting;
|
|
3959
|
+
memberLevelSettings__10: MemberLevelSetting;
|
|
3960
|
+
memberLevelSettings__11: MemberLevelSetting;
|
|
3961
|
+
memberLevelSettings__12: MemberLevelSetting;
|
|
3962
|
+
memberLevelSettings__13: MemberLevelSetting;
|
|
3963
|
+
memberLevelSettings__14: MemberLevelSetting;
|
|
3964
|
+
memberLevelSettings__15: MemberLevelSetting;
|
|
3965
|
+
memberLevelSettings__16: MemberLevelSetting;
|
|
3966
|
+
memberLevelSettings__17: MemberLevelSetting;
|
|
3967
|
+
memberLevelSettings__18: MemberLevelSetting;
|
|
3968
|
+
memberLevelSettings__19: MemberLevelSetting;
|
|
3969
|
+
memberLevelSettings__20: MemberLevelSetting;
|
|
3970
|
+
}
|
|
3971
|
+
/** @deprecated */
|
|
3972
|
+
interface Platform {
|
|
3973
|
+
currency: Currency;
|
|
3974
|
+
timezone: string;
|
|
3975
|
+
paymentSettings: PaymentSettings;
|
|
3976
|
+
pointsClubSettings: PointsClubSettings;
|
|
3977
|
+
memberLevelSettings?: MemberLevelSettings;
|
|
3978
|
+
}
|
|
3979
|
+
/** @deprecated */
|
|
3980
|
+
type PlatformReturn = OperationResult<never, Platform>;
|
|
3981
|
+
/**
|
|
3982
|
+
* - `en-PH` - Philippines
|
|
3983
|
+
* - `en-IN` - India
|
|
3984
|
+
* - `en-MY` - Malaysia
|
|
3985
|
+
* - `en-ID` - Indonesia
|
|
3986
|
+
* - `en-US` - United States
|
|
3987
|
+
*/
|
|
3988
|
+
type Locale = 'en-PH' | 'en-IN' | 'en-MY' | 'en-ID' | 'en-US';
|
|
3989
|
+
interface Platform__Next {
|
|
3990
|
+
currency: Currency;
|
|
3991
|
+
timezone: string;
|
|
3992
|
+
locale: Locale;
|
|
3993
|
+
}
|
|
3994
|
+
type AchievementType = 'DIVERSE_DEBUT' | 'VARIETY_VIRTUOSO' | 'MASTER_OF_DIVERSITY' | 'CURIOUS_NEWCOMER' | 'TRAILBLAZER' | 'INNOVATION_ICON' | 'RAPID_ROLLER' | 'WHIRLWIND_WAGERER' | 'BETTING_BONANZA' | 'STEADY_STRATEGIST' | 'CONSISTENT_CONTENDER' | 'LEGENDARY_LOYALIST';
|
|
3995
|
+
type PlatformReturn__Next = OperationResult<never, Platform__Next>;
|
|
3996
|
+
type PaymentSettingsReturn = OperationResult<never, PaymentSettings>;
|
|
3997
|
+
type MemberLevelSettingsReturn = OperationResult<never, MemberLevelSettings>;
|
|
3998
|
+
interface GeneralMemberLevelSettings {
|
|
3999
|
+
enabled: boolean;
|
|
4000
|
+
}
|
|
4001
|
+
type GeneralMemberLevelSettingsReturn = OperationResult<never, GeneralMemberLevelSettings>;
|
|
4002
|
+
type AchievementSettingsReturn = OperationResult<never, AchievementSettingsResponse>;
|
|
4003
|
+
type PromoType = UnionAlias<PromoType$1>;
|
|
4004
|
+
type PromoStatus = UnionAlias<PromoStatus$1>;
|
|
4005
|
+
interface Promo {
|
|
4006
|
+
id: string;
|
|
4007
|
+
type: PromoType;
|
|
4008
|
+
name: string;
|
|
4009
|
+
banner: Extract<File, {
|
|
4010
|
+
status: 'READY';
|
|
4011
|
+
}> | null;
|
|
4012
|
+
status: PromoStatus;
|
|
4013
|
+
/** @format html */
|
|
4014
|
+
description: string;
|
|
4015
|
+
minimumBonusAmount?: number;
|
|
4016
|
+
maximumBonusAmount?: number;
|
|
4017
|
+
minimumDepositAmount?: number;
|
|
4018
|
+
depositBonusAmountPercentage?: number;
|
|
4019
|
+
turnoverRequirementContributionPercentagePerGameProvider?: JSON;
|
|
4020
|
+
maximumDepositAmount?: number;
|
|
4021
|
+
activationStartDateTime: Date;
|
|
4022
|
+
activationEndDateTime: Date;
|
|
4023
|
+
dateTimeCreated: Date;
|
|
4024
|
+
dateTimeLastUpdated: Date;
|
|
4025
|
+
}
|
|
4026
|
+
type TurnoverRequirementType = UnionAlias<TurnoverRequirementType$1>;
|
|
4027
|
+
interface SpotBonusPromo {
|
|
4028
|
+
id: string;
|
|
4029
|
+
name: string;
|
|
4030
|
+
type: PromoType;
|
|
4031
|
+
status: PromoStatus;
|
|
4032
|
+
daysToClear: number;
|
|
4033
|
+
zeroOutThreshold: number;
|
|
4034
|
+
turnoverRequirementMultiplier: number;
|
|
4035
|
+
turnoverRequirementType?: TurnoverRequirementType;
|
|
4036
|
+
minimumTicketOddFactorPerSportsGameProvider: Partial<Record<GameProvider, number>>;
|
|
4037
|
+
turnoverRequirementContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
|
|
4038
|
+
bonusAmount?: number;
|
|
4039
|
+
enabledGameProviders: GameProvider[];
|
|
4040
|
+
activationStartDateTime?: Date;
|
|
4041
|
+
activationEndDateTime?: Date;
|
|
4042
|
+
banner?: {
|
|
4043
|
+
id: string;
|
|
4044
|
+
url?: string;
|
|
4045
|
+
};
|
|
4046
|
+
description?: string;
|
|
4047
|
+
dateTimeCreated: Date;
|
|
4048
|
+
dateTimeLastUpdated: Date;
|
|
4049
|
+
dateTimeClosed?: Date;
|
|
4050
|
+
totalBonus: number;
|
|
4051
|
+
totalDeposit: number;
|
|
4052
|
+
totalBonusBalance: number;
|
|
4053
|
+
totalBet: number;
|
|
4054
|
+
totalBonusCashedOut: number;
|
|
4055
|
+
bonusesCount: number;
|
|
4056
|
+
closedBonusesCount: number;
|
|
4057
|
+
closedBonusesCountPercentage: number;
|
|
4058
|
+
activeBonusesCount: number;
|
|
4059
|
+
clearedBonusesCount: number;
|
|
4060
|
+
zeroedOutBonusesCount: number;
|
|
4061
|
+
cancelledBonusesCount: number;
|
|
4062
|
+
expiredBonusesCount: number;
|
|
4063
|
+
code: string;
|
|
4064
|
+
maximumBonusesCountLimit: number;
|
|
4065
|
+
}
|
|
4066
|
+
type PromosReturn = OperationResult<never, Promo[]>;
|
|
4067
|
+
type AvailablePromosReturn = OperationResult<never, Promo[]>;
|
|
4068
|
+
type ClaimSpotBonusReturn = OperationResult<ClaimSpotBonusError>;
|
|
4069
|
+
type PromoByCodeReturn = OperationResult<never, SpotBonusPromo>;
|
|
4070
|
+
type CashbackStatus = UnionAlias<CashbackStatus$1>;
|
|
4071
|
+
interface Cashback {
|
|
4072
|
+
id: string;
|
|
4073
|
+
name: string;
|
|
4074
|
+
banner: Extract<File, {
|
|
4075
|
+
status: 'READY';
|
|
4076
|
+
}> | null;
|
|
4077
|
+
status: CashbackStatus;
|
|
4078
|
+
/** @format html */
|
|
4079
|
+
description: string;
|
|
4080
|
+
minimumCashback: number;
|
|
4081
|
+
maximumMonthlyCashback?: number;
|
|
4082
|
+
activationStartDateTime: Date;
|
|
4083
|
+
activationEndDateTime: Date;
|
|
4084
|
+
turnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
|
|
4085
|
+
dateTimeCreated: Date;
|
|
4086
|
+
dateTimeLastUpdated: Date;
|
|
4087
|
+
}
|
|
4088
|
+
type CashbacksReturn = OperationResult<never, Cashback[]>;
|
|
4089
|
+
interface Bonus {
|
|
4090
|
+
id: string;
|
|
4091
|
+
promo: Promo;
|
|
4092
|
+
deposit?: Omit<DepositRecord, 'id' | 'deposit' | 'depositNumber'>;
|
|
4093
|
+
amount: number;
|
|
4094
|
+
balance: number;
|
|
4095
|
+
turnoverRequirement: number;
|
|
4096
|
+
currentTurnoverRequirementContribution: number;
|
|
4097
|
+
currentTurnoverRequirementContributionPercentage: number;
|
|
4098
|
+
turnoverRequirementContributionPercentagePerGameProvider: JSON;
|
|
4099
|
+
enabledGameProviders: GameProvider[];
|
|
4100
|
+
expiration: Date;
|
|
4101
|
+
dateTimeCreated: Date;
|
|
4102
|
+
dateTimeLastUpdated: Date;
|
|
4103
|
+
}
|
|
4104
|
+
type BonusReturn = OperationResult<never, Bonus | null>;
|
|
4105
|
+
type BonusesReturn = OperationResult<never, Bonus[]>;
|
|
4106
|
+
interface CashbackBonus {
|
|
4107
|
+
id: string;
|
|
4108
|
+
total: number;
|
|
4109
|
+
balance: number;
|
|
4110
|
+
cashback: Cashback;
|
|
4111
|
+
dateTimeCreated: Date;
|
|
4112
|
+
dateTimeLastUpdated: Date;
|
|
4113
|
+
}
|
|
4114
|
+
type CashbackBonusReturn = OperationResult<never, CashbackBonus[]>;
|
|
4115
|
+
type ClaimCashbackBonusError = UnionAlias<ClaimCashbackBonusError$1>;
|
|
4116
|
+
type ClaimCashbackBonusReturn = OperationResult<ClaimCashbackBonusError>;
|
|
4117
|
+
type ActivityRecordType = UnionAlias<ActivityRecordType$1>;
|
|
4118
|
+
interface ActivityRecord {
|
|
4119
|
+
id: string;
|
|
4120
|
+
type: ActivityRecordType;
|
|
4121
|
+
domain?: string;
|
|
4122
|
+
amount?: number;
|
|
4123
|
+
/** @format html */
|
|
4124
|
+
details: string;
|
|
4125
|
+
dateTimeCreated: Date;
|
|
4126
|
+
}
|
|
4127
|
+
interface ActivityRecordsInput extends ActivityRecordsQueryVariables {
|
|
4128
|
+
}
|
|
4129
|
+
type ActivityRecordsReturn = OperationResult<never, PaginatedQueryResult<'activityRecords', ActivityRecord>>;
|
|
4130
|
+
type FieldType = UnionAlias<FieldType$1>;
|
|
4131
|
+
interface TextField extends TextField$1 {
|
|
4132
|
+
}
|
|
4133
|
+
interface RichTextField extends RichTextField$1 {
|
|
4134
|
+
}
|
|
4135
|
+
interface ImageField extends ImageField$1 {
|
|
4136
|
+
}
|
|
4137
|
+
interface SelectField extends SelectField$1 {
|
|
4138
|
+
}
|
|
4139
|
+
interface MultiSelectField extends MultiSelectField$1 {
|
|
4140
|
+
}
|
|
4141
|
+
interface ToggleField extends ToggleField$1 {
|
|
4142
|
+
}
|
|
4143
|
+
interface CompoundField extends CompoundField$1 {
|
|
4144
|
+
}
|
|
4145
|
+
type Field = TextField | ImageField | SelectField | MultiSelectField | ToggleField | RichTextField | CompoundField;
|
|
4146
|
+
interface Site {
|
|
4147
|
+
id: string;
|
|
4148
|
+
name: string;
|
|
4149
|
+
logo?: string;
|
|
4150
|
+
fields: Field[];
|
|
4151
|
+
}
|
|
4152
|
+
type SiteReturn = OperationResult<never, Site>;
|
|
4153
|
+
interface UpdateReferralCodeInput {
|
|
4154
|
+
code: string;
|
|
4155
|
+
}
|
|
4156
|
+
type UpdateReferralCodeError = UnionAlias<UpdateReferralCodeError$1>;
|
|
4157
|
+
type UpdateReferralCodeReturn = OperationResult<UpdateReferralCodeError>;
|
|
4158
|
+
type ReferralCodeReturn = OperationResult<never, string | null>;
|
|
4159
|
+
interface Referral {
|
|
4160
|
+
id: string;
|
|
4161
|
+
upline: {
|
|
4162
|
+
id: string;
|
|
4163
|
+
name: string;
|
|
4164
|
+
realName: string;
|
|
4165
|
+
};
|
|
4166
|
+
downline: {
|
|
4167
|
+
id: string;
|
|
4168
|
+
name: string;
|
|
4169
|
+
realName: string;
|
|
4170
|
+
};
|
|
4171
|
+
level: number;
|
|
4172
|
+
turnover: number;
|
|
4173
|
+
commission: number;
|
|
4174
|
+
dateTimeCreated: Date;
|
|
4175
|
+
qualified: boolean;
|
|
4176
|
+
}
|
|
4177
|
+
interface ReferralsInput extends ReferralsQueryVariables {
|
|
4178
|
+
}
|
|
4179
|
+
type ReferralsReturn = OperationResult<never, PaginatedQueryResult<'referrals', Referral>>;
|
|
4180
|
+
interface UplinesByNameInput extends UplinesByNameQueryVariables {
|
|
4181
|
+
}
|
|
4182
|
+
type UplinesByNameReturn = OperationResult<never, Referral[]>;
|
|
4183
|
+
interface DownlinesByNameInput extends DownlinesByNameQueryVariables {
|
|
4184
|
+
}
|
|
4185
|
+
type DownlinesByNameReturn = OperationResult<never, Referral[]>;
|
|
4186
|
+
interface ReferralCommission {
|
|
4187
|
+
id: string;
|
|
4188
|
+
commission: number;
|
|
4189
|
+
referralCode: string;
|
|
4190
|
+
referralsCount: number;
|
|
4191
|
+
level1Commission: number;
|
|
4192
|
+
level2Commission: number;
|
|
4193
|
+
level3Commission: number;
|
|
4194
|
+
level1ReferralsCount: number;
|
|
4195
|
+
level2ReferralsCount: number;
|
|
4196
|
+
level3ReferralsCount: number;
|
|
4197
|
+
dateTimeCreated: Date;
|
|
4198
|
+
dateTimeLastUpdated: Date;
|
|
4199
|
+
}
|
|
4200
|
+
type ReferralCommissionReturn = OperationResult<never, ReferralCommission | null>;
|
|
4201
|
+
interface PointsClubSettings {
|
|
4202
|
+
multiplier: number;
|
|
4203
|
+
}
|
|
4204
|
+
type PointsClubSettingsReturn = OperationResult<never, PointsClubSettings | null>;
|
|
4205
|
+
type ClaimRewardError = UnionAlias<ClaimRewardError$1>;
|
|
4206
|
+
type MessageIcon = UnionAlias<MessageIcon$1>;
|
|
4207
|
+
interface MessageAction extends MessageAction$1 {
|
|
4208
|
+
}
|
|
4209
|
+
type MessageType = UnionAlias<MessageType$1>;
|
|
4210
|
+
interface Message {
|
|
4211
|
+
id: string;
|
|
4212
|
+
icon: MessageIcon;
|
|
4213
|
+
/** @deprecated use `Message.icon` */
|
|
4214
|
+
logo: MessageIcon;
|
|
4215
|
+
image?: string;
|
|
4216
|
+
title?: string;
|
|
4217
|
+
popup: boolean;
|
|
4218
|
+
force: boolean;
|
|
4219
|
+
content?: string;
|
|
4220
|
+
actions: MessageAction[];
|
|
4221
|
+
markedAsRead: boolean;
|
|
4222
|
+
dateTimeCreated: Date;
|
|
4223
|
+
type: MessageType;
|
|
4224
|
+
metadata: {
|
|
4225
|
+
tournament: {
|
|
4226
|
+
id: string;
|
|
4227
|
+
name: string;
|
|
4228
|
+
};
|
|
4229
|
+
payout: {
|
|
4230
|
+
id: string;
|
|
4231
|
+
amount: number;
|
|
4232
|
+
};
|
|
4233
|
+
} | null;
|
|
4234
|
+
}
|
|
4235
|
+
interface MessagesInput extends MessagesQueryVariables {
|
|
4236
|
+
}
|
|
4237
|
+
type MessagesReturn = OperationResult<never, PaginatedQueryResult<'messages', Message>>;
|
|
4238
|
+
type MarkMessageAsReadReturn = OperationResult;
|
|
4239
|
+
type MarkAllMessagesAsReadReturn = OperationResult;
|
|
4240
|
+
interface UnreadMessagesCountInput extends UnreadMessagesCountQueryVariables {
|
|
4241
|
+
}
|
|
4242
|
+
type UnreadMessagesCountReturn = OperationResult<never, number>;
|
|
4243
|
+
type ClaimRewardReturn = OperationResult<ClaimRewardError>;
|
|
4244
|
+
type OnboardingStatus = UnionAlias<OnboardingStatus$1>;
|
|
4245
|
+
type OnboardingStatusReturn = OperationResult<never, OnboardingStatus>;
|
|
4246
|
+
type OnboardingPlayerExperience = UnionAlias<OnboardingPlayerExperience$1>;
|
|
4247
|
+
interface CompleteOnboardingInput {
|
|
4248
|
+
playerExperience: OnboardingPlayerExperience;
|
|
4249
|
+
favoriteGameTypes: GameType[];
|
|
4250
|
+
}
|
|
4251
|
+
type CompleteOnboardingReturn = OperationResult;
|
|
4252
|
+
type SkipOnboardingReturn = OperationResult;
|
|
4253
|
+
type QuestType = UnionAlias<QuestType$1>;
|
|
4254
|
+
type QuestStatus = UnionAlias<QuestStatus$1>;
|
|
4255
|
+
type QuestProgramStatus = UnionAlias<QuestProgramStatus$1>;
|
|
4256
|
+
interface QuestProgram {
|
|
4257
|
+
type: QuestType;
|
|
4258
|
+
name: string;
|
|
4259
|
+
description: string;
|
|
4260
|
+
stages: WageringQuestStageSettings[];
|
|
4261
|
+
status: QuestProgramStatus;
|
|
4262
|
+
}
|
|
4263
|
+
type MemberStatus = 'ACTIVE' | 'BLACKLISTED' | 'SUSPENDED';
|
|
4264
|
+
type JourneyQuestMilestoneType = UnionAlias<JourneyQuestMilestoneType$1>;
|
|
4265
|
+
interface JourneyQuestMilestone {
|
|
4266
|
+
id: string;
|
|
4267
|
+
type: JourneyQuestMilestoneType;
|
|
4268
|
+
name: string;
|
|
4269
|
+
bonusAmount: number;
|
|
4270
|
+
cleared: boolean;
|
|
4271
|
+
description?: string;
|
|
4272
|
+
link?: string;
|
|
4273
|
+
}
|
|
4274
|
+
interface WageringQuestStage {
|
|
4275
|
+
targetTurnover: number;
|
|
4276
|
+
bonusTurnoverRequirementMultiplier: number;
|
|
4277
|
+
bonusAmount: number;
|
|
4278
|
+
cleared: boolean;
|
|
4279
|
+
dateTimeCleared: Date;
|
|
4280
|
+
turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
|
|
4281
|
+
}
|
|
4282
|
+
interface WageringQuestStageSettings {
|
|
4283
|
+
targetTurnover: number;
|
|
4284
|
+
bonusTurnoverRequirementMultiplier: number;
|
|
4285
|
+
bonusAmount: number;
|
|
4286
|
+
}
|
|
4287
|
+
interface Quest {
|
|
4288
|
+
id: string;
|
|
4289
|
+
name: string;
|
|
4290
|
+
description: string;
|
|
4291
|
+
program: QuestProgram;
|
|
4292
|
+
status: QuestStatus;
|
|
4293
|
+
progressPercentage: number;
|
|
4294
|
+
turnover: number;
|
|
4295
|
+
type: QuestType;
|
|
4296
|
+
bonus: number;
|
|
4297
|
+
endDateTime: Date;
|
|
4298
|
+
dateTimeCreated: Date;
|
|
4299
|
+
lastCheckInDate?: Date;
|
|
4300
|
+
startDateTime?: Date;
|
|
4301
|
+
checkInStreak?: number;
|
|
4302
|
+
thirdDayBonusAmount?: number;
|
|
4303
|
+
sixthDayBonusAmount?: number;
|
|
4304
|
+
seventhDayBonusAmount?: number;
|
|
4305
|
+
targetTurnover?: number;
|
|
4306
|
+
daysToClear?: number;
|
|
4307
|
+
bonusAmount?: number;
|
|
4308
|
+
firstDepositCompleted?: boolean;
|
|
4309
|
+
accountVerificationCompleted?: boolean;
|
|
4310
|
+
milestones?: JourneyQuestMilestone[];
|
|
4311
|
+
stage?: number;
|
|
4312
|
+
dateTimeCompleted?: Date;
|
|
4313
|
+
turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
|
|
4314
|
+
}
|
|
4315
|
+
type AvailableQuestsReturn = OperationResult<never, Quest[]>;
|
|
4316
|
+
type CheckInDailyQuestReturn = OperationResult<never, boolean>;
|
|
4317
|
+
interface TopWin {
|
|
4318
|
+
id: string;
|
|
4319
|
+
game?: Game;
|
|
4320
|
+
member: {
|
|
4321
|
+
id: string;
|
|
4322
|
+
name: string;
|
|
4323
|
+
};
|
|
4324
|
+
multiplier: number;
|
|
4325
|
+
payout: number;
|
|
4326
|
+
}
|
|
4327
|
+
type TopWinsReturn = OperationResult<never, TopWin[]>;
|
|
4328
|
+
type JackpotStatus = 'ACTIVE' | 'CLOSING' | 'DISABLED';
|
|
4329
|
+
interface JackpotsInput extends JackpotsQueryVariables {
|
|
4330
|
+
}
|
|
4331
|
+
interface _JackpotsInput extends _JackpotsQueryVariables {
|
|
4332
|
+
}
|
|
4333
|
+
interface Jackpot {
|
|
4334
|
+
id: string;
|
|
4335
|
+
name: string;
|
|
4336
|
+
pool: number;
|
|
4337
|
+
description: string;
|
|
4338
|
+
status: JackpotStatus;
|
|
4339
|
+
minimumJackpotPoolDrawingLimit: number;
|
|
4340
|
+
maximumJackpotPoolLimit: number;
|
|
4341
|
+
drawing: boolean;
|
|
4342
|
+
minimumMultiplier: number;
|
|
4343
|
+
minimumBet: number;
|
|
4344
|
+
jackpotPayoutPercentage: number;
|
|
4345
|
+
jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
|
|
4346
|
+
totalPayout: number;
|
|
4347
|
+
}
|
|
4348
|
+
type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
|
|
4349
|
+
type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
|
|
4350
|
+
interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
|
|
4351
|
+
}
|
|
4352
|
+
type JackpotsIdsReturn = OperationResult<never, {
|
|
4353
|
+
jackpots: string[];
|
|
4354
|
+
totalCount: number;
|
|
4355
|
+
hasNextPage: boolean;
|
|
4356
|
+
endCursor?: string;
|
|
4357
|
+
}>;
|
|
4358
|
+
interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
|
|
4359
|
+
}
|
|
4360
|
+
interface JackpotPayout {
|
|
4361
|
+
id: string;
|
|
4362
|
+
member: {
|
|
4363
|
+
id: string;
|
|
4364
|
+
name: string;
|
|
4365
|
+
};
|
|
4366
|
+
jackpot: {
|
|
4367
|
+
id: string;
|
|
4368
|
+
name: string;
|
|
4369
|
+
};
|
|
4370
|
+
multiplier: number;
|
|
4371
|
+
bet: number;
|
|
4372
|
+
amount: number;
|
|
4373
|
+
dateTimeCreated: Date;
|
|
4374
|
+
game: {
|
|
4375
|
+
provider: GameProvider;
|
|
4376
|
+
};
|
|
4377
|
+
}
|
|
4378
|
+
type JackpotPayoutsReturn = OperationResult<never, PaginatedQueryResult<'jackpotPayouts', JackpotPayout>>;
|
|
4379
|
+
type FCMDeviceType = UnionAlias<FCMDeviceType$1>;
|
|
4380
|
+
interface RegisterFCMDeviceInput {
|
|
4381
|
+
type: FCMDeviceType;
|
|
4382
|
+
token: string;
|
|
4383
|
+
}
|
|
4384
|
+
type RegisterFCMDeviceReturn = OperationResult;
|
|
4385
|
+
interface UnregisterFCMDeviceInput {
|
|
4386
|
+
type: Array<FCMDeviceType>;
|
|
4387
|
+
token?: string;
|
|
4388
|
+
}
|
|
4389
|
+
type UnregisterFCMDeviceReturn = OperationResult;
|
|
4390
|
+
type FirebaseCloudMessagingDeviceType = UnionAlias<FirebaseCloudMessagingDeviceType$1>;
|
|
4391
|
+
interface LinkFirebaseCloudMessagingDeviceInput {
|
|
4392
|
+
token: string;
|
|
4393
|
+
type: FirebaseCloudMessagingDeviceType;
|
|
4394
|
+
}
|
|
4395
|
+
type LinkFirebaseCloudMessagingDeviceReturn = OperationResult;
|
|
4396
|
+
interface UnlinkFirebaseCloudMessagingDeviceInput {
|
|
4397
|
+
token?: string;
|
|
4398
|
+
}
|
|
4399
|
+
type UnlinkFirebaseCloudMessagingDeviceReturn = OperationResult;
|
|
4400
|
+
type GoogleClientIdReturn = OperationResult<never, string | null>;
|
|
4401
|
+
type RequireFirstDepositReturn = OperationResult<never, boolean>;
|
|
4402
|
+
type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
|
|
4403
|
+
type TournamentType = 'MULTIPLIER' | 'WAGERING';
|
|
4404
|
+
type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
|
|
4405
|
+
type TournamentMode = 'ONE_TIME' | 'RECURRING';
|
|
4406
|
+
interface TournamentsInput extends TournamentsQueryVariables {
|
|
4407
|
+
}
|
|
4408
|
+
interface TournamentsIdsInput extends TournamentsIdsQueryVariables {
|
|
4409
|
+
}
|
|
4410
|
+
interface TournamentLeaderboard {
|
|
4411
|
+
id: string;
|
|
4412
|
+
username: string;
|
|
4413
|
+
multiplier: number;
|
|
4414
|
+
dateTimeCreated: string;
|
|
4415
|
+
prize?: string;
|
|
4416
|
+
game?: {
|
|
4417
|
+
id: string;
|
|
4418
|
+
provider: GameProvider;
|
|
4419
|
+
name: string;
|
|
4420
|
+
external: string;
|
|
4421
|
+
type: GameType;
|
|
4422
|
+
};
|
|
4423
|
+
}
|
|
4424
|
+
interface TournamentPayout {
|
|
4425
|
+
id: string;
|
|
4426
|
+
amount: number;
|
|
4427
|
+
member: {
|
|
4428
|
+
id: string;
|
|
4429
|
+
name: string;
|
|
4430
|
+
};
|
|
4431
|
+
}
|
|
4432
|
+
interface Tournament {
|
|
4433
|
+
id: string;
|
|
4434
|
+
type: TournamentType;
|
|
4435
|
+
name: string;
|
|
4436
|
+
winnersCount: number;
|
|
4437
|
+
status: TournamentStatus;
|
|
4438
|
+
activationStartDateTime: Date;
|
|
4439
|
+
activationEndDateTime: Date;
|
|
4440
|
+
description: string;
|
|
4441
|
+
topPayouts: TournamentPayout[];
|
|
4442
|
+
enabledGameProviders: GameProvider[];
|
|
4443
|
+
frequency: TournamentFrequency;
|
|
4444
|
+
mode: TournamentMode;
|
|
4445
|
+
mobileBanner: {
|
|
4446
|
+
id: string;
|
|
4447
|
+
url: string;
|
|
4448
|
+
mimeType: string;
|
|
4449
|
+
};
|
|
4450
|
+
webBanner: {
|
|
4451
|
+
id: string;
|
|
4452
|
+
url: string;
|
|
4453
|
+
mimeType: string;
|
|
4454
|
+
};
|
|
4455
|
+
rewardSettings: Partial<Record<string, string>>;
|
|
4456
|
+
currentLeaderboard: PaginatedQueryResult<'currentLeaderboard', TournamentLeaderboard>;
|
|
4457
|
+
previousLeaderboard: PaginatedQueryResult<'previousLeaderboard', TournamentLeaderboard>;
|
|
4458
|
+
}
|
|
4459
|
+
type TournamentsReturn = OperationResult<never, PaginatedQueryResult<'tournaments', Tournament>>;
|
|
4460
|
+
type TournamentsIdsReturn = OperationResult<never, {
|
|
4461
|
+
tournaments: string[];
|
|
4462
|
+
totalCount: number;
|
|
4463
|
+
hasNextPage: boolean;
|
|
4464
|
+
endCursor?: string;
|
|
4465
|
+
}>;
|
|
4466
|
+
interface AchievementPointsHistoryRecord {
|
|
4467
|
+
id: string;
|
|
4468
|
+
type: AchievementType;
|
|
4469
|
+
points: number;
|
|
4470
|
+
dateTimeCreated: Date;
|
|
4471
|
+
}
|
|
4472
|
+
type CabinetSiteMachineReturn = OperationResult<never, CabinetSiteMachine | null>;
|
|
4473
|
+
interface CabinetSiteMachine {
|
|
4474
|
+
id: string;
|
|
4475
|
+
name: string;
|
|
4476
|
+
fingerprint: string;
|
|
4477
|
+
status: CabinetSiteMachineStatus;
|
|
4478
|
+
dateTimeCreated: Date;
|
|
4479
|
+
}
|
|
4480
|
+
type CabinetSiteMachineStatus = 'ENABLED' | 'DISABLED';
|
|
4481
|
+
type CabinetWithdrawalReturn = OperationResult<never, WithdrawalRecord | null>;
|
|
4482
|
+
type MemberVerificationRequestStatus = UnionAlias<MemberVerificationRequestStatus$1>;
|
|
4483
|
+
interface MemberVerificationRequest {
|
|
4484
|
+
id: string;
|
|
4485
|
+
firstName?: string;
|
|
4486
|
+
lastName?: string;
|
|
4487
|
+
dateOfBirth?: Date;
|
|
4488
|
+
idFrontImage?: {
|
|
4489
|
+
id: string;
|
|
4490
|
+
url: string;
|
|
4491
|
+
};
|
|
4492
|
+
selfieImage?: {
|
|
4493
|
+
id: string;
|
|
4494
|
+
url: string;
|
|
4495
|
+
};
|
|
4496
|
+
permanentAddress?: string;
|
|
4497
|
+
currentAddress?: string;
|
|
4498
|
+
sourceOfIncome?: string;
|
|
4499
|
+
natureOfWork?: string;
|
|
4500
|
+
nationality?: string;
|
|
4501
|
+
placeOfBirth?: string;
|
|
4502
|
+
status: MemberVerificationRequestStatus;
|
|
4503
|
+
basicDetailsSubmitted: boolean;
|
|
4504
|
+
basicDetailsVerified: boolean;
|
|
4505
|
+
imageDetailsSubmitted: boolean;
|
|
4506
|
+
pendingManualImageDetailsVerification: boolean;
|
|
4507
|
+
imageDetailsVerified: boolean;
|
|
4508
|
+
personalDetailsSubmitted: boolean;
|
|
4509
|
+
remarks?: string;
|
|
4510
|
+
dateTimeCreated: Date;
|
|
4511
|
+
dateTimeLastUpdated: Date;
|
|
4512
|
+
dateTimeApproved?: Date;
|
|
4513
|
+
dateTimeRejected?: Date;
|
|
4514
|
+
}
|
|
4515
|
+
type MemberVerificationRequestReturn = OperationResult<never, MemberVerificationRequest | null>;
|
|
4516
|
+
interface SubmitMemberVerificationRequestBasicDetailsInput {
|
|
4517
|
+
firstName: string;
|
|
4518
|
+
lastName: string;
|
|
4519
|
+
dateOfBirth: Date | string;
|
|
4520
|
+
}
|
|
4521
|
+
type SubmitMemberVerificationRequestBasicDetailsReturn = OperationResult<never, boolean>;
|
|
4522
|
+
interface SubmitMemberVerificationRequestImageDetailsInput {
|
|
4523
|
+
idFrontImage: string;
|
|
4524
|
+
selfieImage?: string;
|
|
4525
|
+
}
|
|
4526
|
+
type SubmitMemberVerificationRequestImageDetailsReturn = OperationResult<never, boolean>;
|
|
4527
|
+
interface SubmitMemberVerificationRequestPersonalDetailsInput {
|
|
4528
|
+
permanentAddress: string;
|
|
4529
|
+
currentAddress: string;
|
|
4530
|
+
sourceOfIncome: string;
|
|
4531
|
+
natureOfWork: string;
|
|
4532
|
+
nationality: string;
|
|
4533
|
+
placeOfBirth: string;
|
|
4534
|
+
}
|
|
4535
|
+
type SubmitMemberVerificationRequestPersonalDetailsReturn = OperationResult<never, boolean>;
|
|
4536
|
+
type MemberVerificationRequestAutomaticApprovalEnabledReturn = OperationResult<never, boolean>;
|
|
4537
|
+
|
|
4538
|
+
export { type UpdateVerificationDetailsReturn as $, type AuthenticateInput as A, type RegisterAgentAccountInput as B, type CabinetSignInInput as C, type RegisterAgentAccountReturn as D, type Environment as E, type UpdateAccountReturn as F, type GraphQLClientMiddleware as G, type DeleteAccountReturn as H, type UpdateDailyBetLimitInput as I, type UpdateAccountLimitReturn as J, type UpdateMonthlyBetLimitInput as K, type UpdateDailyDepositLimitInput as L, type MobileNumberSignInInput as M, type NameAndPasswordSignInInput as N, type UpdateMonthlyDepositLimitInput as O, type PlatformReturn as P, type VerificationDetailsReturn as Q, type RegisterMayaAccountInput as R, type SocialsSignInInput as S, type TokenSignInInput as T, type UpdateAccountInput as U, type ValidateMayaSessionReturn as V, type WatchSessionInput as W, type SubmitVerificationDetailsInput as X, type SubmitVerificationDetailsReturn as Y, type SubmitVerificationDetailsInputNext as Z, type UpdateVerificationDetailsInput as _, type NameAndPasswordSignInReturn as a, type MarkGameAsFavoriteInput as a$, type SubmitMemberVerificationReturn as a0, type ResetPasswordInput as a1, type ResetPasswordReturn as a2, type VerifyMobileNumberReturn as a3, type ProfileCompletionReturn as a4, type SendVerificationCodeReturn as a5, type SendVerificationCodeInput__Next as a6, type SendVerificationCodeReturn__Next as a7, type WalletReturn as a8, type MemberWalletAccountReturn as a9, type CancelFreeBetDropReturn as aA, type TransactionRecordsInput as aB, type TransactionRecordsReturn as aC, type PromosReturn as aD, type PromoFilterInput as aE, type AvailablePromosReturn as aF, type CashbacksReturn as aG, type BonusReturn as aH, type BonusesReturn as aI, type CashbackBonusReturn as aJ, type ClaimCashbackBonusReturn as aK, type ClaimRebateReturn as aL, type ClaimSpotBonusReturn as aM, type PromoByCodeReturn as aN, type GameReturn as aO, type GamesInput as aP, type GamesReturn as aQ, type WalletGameInput as aR, type WalletGamesReturn as aS, type GamesInput__Next as aT, type RecommendedGamesInput as aU, type RecommendedGamesReturn as aV, type GameProvider as aW, type GameSessionReturn as aX, type CreateGameSessionInput as aY, type CreateGameSessionReturn as aZ, type EndGameSessionReturn as a_, type AnnouncementsInput as aa, type AnnouncementsReturn as ab, type CreateWithdrawalInput as ac, type CreateWithdrawalReturn as ad, type WithdrawalRecordsInput as ae, type WithdrawalRecordsReturn as af, type RemainingDailyWithdrawalsCountReturn as ag, type InstapayBankListReturn as ah, type CreateDepositInput as ai, type CreateDepositReturn as aj, type DepositReturn as ak, type DepositRecordsInput as al, type DepositRecordsReturn as am, type DepositsCountReturn as an, type TouchDepositInput as ao, type TouchDepositReturn as ap, type RedeemVoucherInput as aq, type RedeemVoucherReturn as ar, type BetRecordsInput as as, type BetRecordsReturn as at, type LatestBetRecordsReturn as au, type FreeBetDropsInput as av, type FreeBetDropsReturn as aw, type MemberFreeBetDropsInput as ax, type MemberFreeBetDropsReturn as ay, type CancelFreeBetDropInput as az, type MobileNumberSignInReturn as b, type LinkFirebaseCloudMessagingDeviceReturn as b$, type MarkGameAsFavoriteReturn as b0, type UnmarkGameAsFavoriteInput as b1, type UnmarkGameAsFavoriteReturn as b2, type FavoriteGamesReturn as b3, type FileReturn as b4, type UploadImageFileInput as b5, type UploadImageFileReturn as b6, type PointsWalletReturn as b7, type RedeemPointsInput as b8, type RedeemPointsReturn as b9, type MarkMessageAsReadReturn as bA, type MarkAllMessagesAsReadReturn as bB, type ClaimRewardReturn as bC, type OnboardingStatusReturn as bD, type CompleteOnboardingInput as bE, type CompleteOnboardingReturn as bF, type SkipOnboardingReturn as bG, type AvailableQuestsReturn as bH, type CheckInDailyQuestReturn as bI, type TopWinsReturn as bJ, type JackpotsInput as bK, type JackpotsReturn as bL, type JackpotsIdsInput as bM, type JackpotsIdsReturn as bN, type _JackpotsInput as bO, type _JackpotsReturn as bP, type JackpotPayoutsInput as bQ, type JackpotPayoutsReturn as bR, type TournamentsInput as bS, type TournamentsReturn as bT, type TournamentsIdsInput as bU, type TournamentsIdsReturn as bV, type RegisterFCMDeviceInput as bW, type RegisterFCMDeviceReturn as bX, type UnregisterFCMDeviceInput as bY, type UnregisterFCMDeviceReturn as bZ, type LinkFirebaseCloudMessagingDeviceInput as b_, type PointsWalletTransactionsInput as ba, type PointsWalletTransactionsReturn as bb, type AchievementPointsHistoryRecordInput as bc, type AchievementPointsHistoryRecordReturn as bd, type MemberAchievementReturn as be, type MemberRebatesInput as bf, type MemberRebatesReturn as bg, type MemberRebateContributionInput as bh, type MemberRebateContributionReturn as bi, type ActivityRecordsInput as bj, type ActivityRecordsReturn as bk, type ReferralCodeReturn as bl, type UpdateReferralCodeInput as bm, type UpdateReferralCodeReturn as bn, type ReferralsInput as bo, type ReferralsReturn as bp, type ReferralCommissionReturn as bq, type UplinesByNameInput as br, type UplinesByNameReturn as bs, type DownlinesByNameInput as bt, type DownlinesByNameReturn as bu, type PointsClubSettingsReturn as bv, type MessagesInput as bw, type MessagesReturn as bx, type UnreadMessagesCountInput as by, type UnreadMessagesCountReturn as bz, type MayaSignInInput as c, type Rebate as c$, type UnlinkFirebaseCloudMessagingDeviceInput as c0, type UnlinkFirebaseCloudMessagingDeviceReturn as c1, type GoogleClientIdReturn as c2, type RequireFirstDepositReturn as c3, type MemberVerificationRequestReturn as c4, type SubmitMemberVerificationRequestBasicDetailsInput as c5, type SubmitMemberVerificationRequestBasicDetailsReturn as c6, type SubmitMemberVerificationRequestImageDetailsInput as c7, type SubmitMemberVerificationRequestImageDetailsReturn as c8, type SubmitMemberVerificationRequestPersonalDetailsInput as c9, type BetRecord$1 as cA, type Game$1 as cB, type BetRecord as cC, type LatestBetRecord$1 as cD, type LatestBetRecord as cE, type TransactionRecord$1 as cF, type TransactionRecord as cG, type Game as cH, type GameSession$1 as cI, type GameSession as cJ, type Promo$1 as cK, type Promo as cL, type Cashback$1 as cM, type Cashback as cN, type Bonus$1 as cO, type Bonus as cP, type CashbackBonus$1 as cQ, type CashbackBonus as cR, type CabinetSiteMachine$1 as cS, type CabinetSiteMachine as cT, type File$1 as cU, type File as cV, type PointsWallet$1 as cW, type PointsWallet as cX, type PointsWalletTransaction$1 as cY, type PointsWalletTransaction as cZ, type Rebate$1 as c_, type SubmitMemberVerificationRequestPersonalDetailsReturn as ca, type MemberVerificationRequestAutomaticApprovalEnabledReturn as cb, type Site$1 as cc, type Site as cd, type Platform$1 as ce, type Platform as cf, type MemberAccount as cg, type Member as ch, type Account as ci, type Wallet$1 as cj, type Wallet as ck, type MemberVerification as cl, type VerificationDetails as cm, type ProfileCompletion$1 as cn, type ProfileCompletion as co, type Announcement$1 as cp, type Announcement as cq, type WithdrawalRecord$1 as cr, type WithdrawalRecord as cs, type Deposit$1 as ct, type Deposit as cu, type CabinetWithdrawal as cv, type CabinetWithdrawalRecord as cw, type DepositRecord$1 as cx, type DepositRecord as cy, type Assign as cz, type MayaSignInReturn as d, type CreateSingleUseTokenError as d$, type MemberRebateContribution$1 as d0, type MemberRebateContribution as d1, type ActivityRecord$1 as d2, type ActivityRecord as d3, type Referral$1 as d4, type Referral as d5, type ReferralCommission$1 as d6, type ReferralCommission as d7, type Platform__Next$1 as d8, type Platform__Next as d9, type AchievementPointsHistoryRecord as dA, type MemberAchievement$1 as dB, type MemberAchievement as dC, type MemberVerificationRequest$1 as dD, type MemberVerificationRequest as dE, type FreeBetDrop$1 as dF, type FreeBetDrop as dG, type MemberFreeBetDrop$1 as dH, type MemberFreeBetDrop as dI, type MemberWalletAccount$1 as dJ, type MemberWalletAccount as dK, type HttpError as dL, type OperationError as dM, type OperationResult as dN, type LoginChannel as dO, type SecretQuestion as dP, type SecurityQuestionAuthenticator as dQ, type Authenticator as dR, type SignInInput as dS, type SignInError as dT, type SignInReturn as dU, type RefreshSessionError as dV, type SecurityQuestionAuthenticateInput as dW, type AuthenticateError as dX, type Session as dY, type SessionError as dZ, type CreateSingleUseTokenInput as d_, type PointsClubSettings$1 as da, type PointsClubSettings as db, type PaymentSettings$1 as dc, type PaymentSettings as dd, type Message$1 as de, type Message as df, type InstapayBank$1 as dg, type InstapayBank as dh, type SpotBonusPromo$1 as di, type SpotBonusPromo as dj, type Quest$1 as dk, type Quest as dl, type TopWin$1 as dm, type TopWin as dn, type Jackpot$1 as dp, type Jackpot as dq, type JackpotPayout$1 as dr, type JackpotPayout as ds, type Tournament$1 as dt, type Tournament as du, type MemberLevelSettings$1 as dv, type MemberLevelSettings as dw, type AchievementSettingsResponse$1 as dx, type AchievementSettingsResponse as dy, type AchievementPointsHistoryRecord$1 as dz, type TokenSignInReturn as e, type BankDeposit as e$, type UploadImageFileError as e0, type AccountStatus as e1, type AccountVerificationStatus as e2, type Agent as e3, type GigRewardsQuestDetails as e4, type CellxpertDetails as e5, type MemberWithCellxpertDetails as e6, type VerificationDetailsStatus as e7, type NameAndPasswordCreateAccountInput as e8, type MobileNumberCreateAccountInput as e9, type MemberRebateContributionPerGame as eA, type ClaimRebateError as eB, type GameTag as eC, type GameType as eD, type WalletGame as eE, type GameSessionStatus as eF, type GameSessionLaunchOptions as eG, type CreateGameSessionByReferenceInput as eH, type CreateGameSessionByIdInput as eI, type CreateGameSessionError as eJ, type AnnouncementType as eK, type AnnouncementStatus as eL, type BetRecordStatus as eM, type FreeBetDropStatus as eN, type MemberFreeBetDropBetRecord as eO, type TransactionType as eP, type DepositType as eQ, type DepositStatus as eR, type KnownDepositError as eS, type GCashDeposit as eT, type GcashWebpayDeposit as eU, type AiOGCashDeposit as eV, type AiOPayMayaDeposit as eW, type AiOGrabPayDeposit as eX, type AiOPalawanPayDeposit as eY, type MayaDeposit as eZ, type MayaAppDeposit as e_, type MobileNumberInrCreateAccountInput as ea, type NameCreateAccountInput as eb, type MobileNumberCreateAccountInput__next as ec, type CreateAccountError as ed, type RegisterMayaAccountError as ee, type RegisterAgentAccountError as ef, type UpdateAccountError as eg, type ResetPasswordError as eh, type SubmitVerificationError as ei, type SubmitMemberVerificationError as ej, type UpdateVerificationError as ek, type SendVerificationCodeError as el, type SendSmsVerificationCodeInput as em, type SendEmailVerificationCodeInput as en, type SendVerificationCodeError__Next as eo, type VerifyMobileNumberError as ep, type Currency as eq, type AchievementSettings as er, type RedeemPointsError as es, type PointsWalletTransactionType as et, type RebateStatus as eu, type RebateCursor as ev, type RebateType as ew, type RebateSettingsPerMemberLevel as ex, type RebateProgram as ey, type MemberRebateContributionPerGameCategory as ez, type SocialsSignInReturn as f, type Field as f$, type ManualDeposit as f0, type QRPHDeposit as f1, type OnlineBankDeposit as f2, type ManualBankDeposit as f3, type ManualUPIDeposit as f4, type CreateMayaDepositInput as f5, type CreateGCashDepositInput as f6, type CreateAiOGCashDepositInput as f7, type CreateAiOPayMayaDepositInput as f8, type CreateAiOGrabPayDepositInput as f9, type CreateMayaWithdrawalInput as fA, type CreateMayaAppWithdrawalInput as fB, type CreateAIOInstapayWithdrawalInput as fC, type CreateAIOInstapayWithdrawalInput_Next as fD, type CreateManualUPIWithdrawalInput as fE, type CreateManualBankWithdrawalInput as fF, type CreateCabinetWithdrawalInput as fG, type CreateWithdrawalError as fH, type GatewaySettings as fI, type MemberLevelSetting as fJ, type Locale as fK, type AchievementType as fL, type GeneralMemberLevelSettings as fM, type PromoType as fN, type PromoStatus as fO, type TurnoverRequirementType as fP, type CashbackStatus as fQ, type ClaimCashbackBonusError as fR, type ActivityRecordType as fS, type FieldType as fT, type TextField as fU, type RichTextField as fV, type ImageField as fW, type SelectField as fX, type MultiSelectField as fY, type ToggleField as fZ, type CompoundField as f_, type CreateAiOPalawanPayDepositInput as fa, type CreateGCashWebpayDepositInput as fb, type CreateMayaAppDepositInput as fc, type CreateAIOQRPHDepositInput as fd, type CreateAIOOnlineBankDepositInput as fe, type CreateManualUPIDepositInput as ff, type CreateManualBankDepositInput as fg, type CreateMayaWebpayDepositInput as fh, type CreateTestDepositInput as fi, type CreateDepositError as fj, type VoucherType as fk, type WithdrawalType as fl, type WithdrawalStatus as fm, type WithdrawalError as fn, type ManualWithdrawalRecord as fo, type Bank as fp, type BankWithdrawalRecord as fq, type GCashWithdrawalRecord as fr, type MayaWithdrawalRecord as fs, type InstapayWithdrawalRecord as ft, type ManualBankWithdrawalRecord as fu, type ManualUPIWithdrawalRecord as fv, type InstapayBankType as fw, type CreateBankWithdrawalInput as fx, type CreateGCashWithdrawalInput as fy, type CreateGCashStandardCashInWithdrawalInput as fz, type CabinetSignInReturn as g, type RegisterMemberAccountByMobileNumberMutationVariables as g$, type UpdateReferralCodeError as g0, type ClaimRewardError as g1, type MessageIcon as g2, type MessageAction as g3, type MessageType as g4, type OnboardingStatus as g5, type OnboardingPlayerExperience as g6, type QuestType as g7, type QuestStatus as g8, type QuestProgramStatus as g9, type DeleteMemberAccountMutationVariables as gA, type UpdateDailyBetLimitMutationVariables as gB, type UpdateMonthlyBetLimitMutationVariables as gC, type UpdateDailyDepositLimitMutationVariables as gD, type UpdateMonthlyDepositLimitMutationVariables as gE, type UnlinkGoogleMutationVariables as gF, type ResetPasswordMutationVariables as gG, type ResetPasswordError$1 as gH, type GeneralMemberLevelSettings$1 as gI, type SendVerificationCodeMutationVariables as gJ, type SendVerificationCodeError$1 as gK, type VerifyMobileNumberMutationVariables as gL, type VerifyMobileNumberError$1 as gM, type CreateMemberVerificationMutationVariables as gN, type CreateMemberVerificationError as gO, type CreateMemberVerificationNextMutationVariables as gP, type UpdateMemberVerificationMutationVariables as gQ, type UpdateMemberVerificationError as gR, type UpdateMemberVerificationNextMutationVariables as gS, type SubmitMemberVerificationMutationVariables as gT, type SubmitMemberVerificationError$1 as gU, type AnnouncementsQueryVariables as gV, type PaginatedQueryResult$1 as gW, type RegisterMayaMemberAccountMutationVariables as gX, type RegisterMayaMemberAccountError as gY, type UpdateReferralCodeMutationVariables as gZ, type UpdateReferralCodeError$1 as g_, type QuestProgram as ga, type MemberStatus as gb, type JourneyQuestMilestoneType as gc, type JourneyQuestMilestone as gd, type WageringQuestStage as ge, type WageringQuestStageSettings as gf, type JackpotStatus as gg, type FCMDeviceType as gh, type FirebaseCloudMessagingDeviceType as gi, type TournamentStatus as gj, type TournamentType as gk, type TournamentFrequency as gl, type TournamentMode as gm, type TournamentLeaderboard as gn, type TournamentPayout as go, type CabinetSiteMachineStatus as gp, type MemberVerificationRequestStatus as gq, GraphQLClient as gr, type MemberWithCellxpertDetailsQuery as gs, type RegisterMemberAccountMutationVariables as gt, type RegisterMemberAccountError as gu, type RegisterMemberAccountViaMobileMutationVariables as gv, type RegisterMemberAccountMutationVariables__Next as gw, type RegisterMemberAccountByNameMutationVariables as gx, type UpdateMemberAccountMutationVariables as gy, type UpdateMemberAccountError as gz, type SingleUseTokenSignInInput as h, type UnlinkFirebaseCloudMessagingDeviceMutationVariables as h$, type RegisterMemberAccountByMobileNumberMutationVariables__Next as h0, type RegisterAgentAccountMutationVariables as h1, type RegisterAgentAccountError$1 as h2, type MemberVerificationRequestByIdQueryVariables as h3, type SubmitMemberVerificationRequestBasicDetailsMutationVariables as h4, type SubmitMemberVerificationRequestImageDetailsMutationVariables as h5, type SubmitMemberVerificationRequestPersonalDetailsMutationVariables as h6, type FileQueryVariables as h7, type CreateSessionInput as h8, type CreateSessionError as h9, type PointsWalletTransactionsQueryVariables as hA, type MemberRebatesQueryVariables as hB, type MemberRebateContributionQueryVariables as hC, type AchievementPointsHistoryRecordQueryVariables as hD, type ActivityRecordsQueryVariables as hE, type ReferralsQueryVariables as hF, type UplinesByNameQueryVariables as hG, type DownlinesByNameQueryVariables as hH, type PromoByCodeQueryVariables as hI, type JackpotsQueryVariables as hJ, type _JackpotsQueryVariables as hK, type _Jackpot as hL, type JackpotsIdsQueryVariables as hM, type JackpotPayoutsQueryVariables as hN, type TournamentsQueryVariables as hO, type TournamentsIdsQueryVariables as hP, type FreeBetDropsQueryVariables as hQ, type MemberFreeBetDropsQueryVariables as hR, type MessagesQueryVariables as hS, type UnreadMessagesCountQueryVariables as hT, type MarkMessageAsReadMutationVariables as hU, type ClaimRewardMutationVariables as hV, type ClaimRewardError$1 as hW, type CheckInDailyQuestQueryVariables as hX, type RegisterFCMDeviceMutationVariables as hY, type UnregisterFCMDeviceMutationVariables as hZ, type LinkFirebaseCloudMessagingDeviceMutationVariables as h_, type CreateSessionMutation as ha, type AuthenticateInput$1 as hb, type AuthenticateError$1 as hc, type AuthenticateMutation as hd, type RefreshSessionError$1 as he, type RefreshSessionMutation as hf, type SendVerificationCodeInput__Next$1 as hg, type SendVerificationCodeError__Next$1 as hh, type CreateSingleUseTokenError$1 as hi, type CreateSingleUseTokenMutation as hj, type GamesQueryVariables as hk, type GamesQueryVariables__Next as hl, type UploadPrivateImageFileMutationVariables as hm, type UploadPrivateImageFileError as hn, type GameSessionQueryVariables as ho, type CreateGameSessionMutationVariables as hp, type CreateGameSessionError$1 as hq, type EndGameSessionMutationVariables as hr, type PlatformQuery__Next as hs, type RecommendedGame as ht, type OnboardingStatus$1 as hu, type CompleteOnboardingMutationVariables as hv, type BetRecordsQueryVariables as hw, type TransactionRecordsQueryVariables as hx, type WithdrawalRecordsQueryVariables as hy, type DepositRecordsQueryVariables as hz, type SingleUseTokenSignInReturn as i, type DateFilterField as i$, type AvailablePromosQueryVariables as i0, type CancelFreeBetDropMutationVariables as i1, type ClaimCashbackBonusMutationVariables as i2, type ClaimCashbackBonusError$1 as i3, type ClaimRebateMutationVariables as i4, type ClaimRebateError$1 as i5, type DepositQueryVariables as i6, type CreateGCashDepositMutationVariables as i7, type CreateDepositError$1 as i8, type CreateGCashWebpayDepositMutationVariables as i9, type RedeemPointsToCashMutationVariables as iA, type RedeemPointsToCashError as iB, type MayaSessionQueryVariables as iC, type MayaSession as iD, type ClaimSpotBonusMutationVariables as iE, type ClaimSpotBonusError as iF, type TouchGCashDepositMutationVariables as iG, type TouchQrphDepositMutationVariables as iH, type MarkGameAsFavoriteMutationVariables as iI, type UnmarkGameAsFavoriteMutationVariables as iJ, type FavoriteGame as iK, type WalletGamesQueryVariables as iL, type CabinetWithdrawalQueryVariables as iM, type RedeemVoucherMutationVariables as iN, type RedeemVoucherError as iO, type CreateCabinetWithdrawalMutationVariables as iP, type ID as iQ, type Decimal as iR, type DateString as iS, type Html as iT, type Edge as iU, type PageInfo as iV, type PaginatedQuery as iW, type ObjectIdFilterField as iX, type StringFilterField as iY, type NumberFilterField as iZ, type BooleanFilterField as i_, type CreateMayaWebpayDepositMutationVariables as ia, type CreateMayaDepositMutationVariables as ib, type CreateTestDepositMutationVariables as ic, type CreateTestDepositError as id, type CreateAIOQRPHDepositMutationVariables as ie, type CreateAiOGCcashDepositMutationVariables as ig, type CreateAiOPayMayaDepositMutationVariables as ih, type CreateAiOGrabPayDepositMutationVariables as ii, type CreateAiOPalawanPayDepositMutationVariables as ij, type CreateAIOOnlineBankDepositMutationVariables as ik, type CreateManualBankDeposiMutationVariables as il, type CreateManualUPIDepositMutationVariables as im, type CreateMayaAppDepositMutationVariables as io, type CreateManualUpiDepositMutationVariables as ip, type CreateGCashWithdrawalMutationVariables as iq, type CreateWithdrawalError$1 as ir, type CreateGCashStandardCashInWithdrawalMutationVariables as is, type CreateMayaWithdrawalMutationVariables as it, type CreateMayaAppWithdrawalMutationVariables as iu, type CreateBankWithdrawalMutationVariables as iv, type CreateAIOInstapayWithdrawalMutationVariables as iw, type CreateAIOInstapayWithdrawalNextMutationVariables as ix, type CreateManualUpiWithdrawalMutationVariables as iy, type CreateManualBankWithdrawalMutationVariables as iz, type AuthenticateReturn as j, type CreateMayaAppWithdrawalMutation as j$, type EnumFilterField as j0, type SortOrder as j1, type FileStatus as j2, type FileQuery as j3, type UploadPrivateImageFileMutation as j4, type AnnouncementType$1 as j5, type AnnouncementStatus$1 as j6, type AnnouncementVisibility as j7, type AnnouncementsQuery as j8, type GameType$1 as j9, type CreateGCashWebpayDepositMutation as jA, type CreateMayaWebpayDepositMutation as jB, type CreateMayaDepositMutation as jC, type CreateTestDepositMutation as jD, type CreateAIOQRPHDepositMutation as jE, type CreateManualBankDepositMutation as jF, type CreateManualUPIDepositMutation as jG, type CreateAiOGCashDepositMutation as jH, type CreateAiOPayMayaDepositMutation as jI, type CreateAiOGrabPayDepositMutation as jJ, type CreateAiOPalawanPayDepositMutation as jK, type CreateAIOOnlineBankDepositMutation as jL, type CreateManualBankDepositMutationVariables as jM, type CreateMayaAppDepositMutation as jN, type DepositQuery as jO, type DepositsCountQuery as jP, type TouchGCashDepositMutation as jQ, type TouchQrphDepositMutation as jR, type CreateManualUpiDepositMutation as jS, type Bank$1 as jT, type WithdrawalType$1 as jU, type WithdrawalStatus$1 as jV, type WithdrawalError$1 as jW, type WithdrawalRecordsQuery as jX, type CreateGCashWithdrawalMutation as jY, type CreateGCashStandardCashInWithdrawalMutation as jZ, type CreateMayaWithdrawalMutation as j_, type GameProvider$1 as ja, type GameStatus as jb, type GameTag$1 as jc, type WalletGame$1 as jd, type GameQueryVariables as je, type GameQuery as jf, type GamesQuery as jg, type WalletGamesQuery as jh, type RecommendedGamesQuery as ji, type GameSessionStatus$1 as jj, type GameSessionLaunchOptions$1 as jk, type GameSessionQuery as jl, type CreateGameSessionMutation as jm, type EndGameSessionError as jn, type EndGameSessionMutation as jo, type BetRecordStatus$1 as jp, type BetRecordMetadata as jq, type BetRecordsQuery as jr, type LatestBetRecordsQuery as js, type DepositType$1 as jt, type DepositStatus$1 as ju, type KnownDepositError$1 as jv, type VoucherType$1 as jw, type DepositRecordsQuery as jx, type RedeemVoucherMutation as jy, type CreateGCashDepositMutation as jz, type SessionReturn as k, type UpdateMonthlyDepositLimitMutation as k$, type CreateBankWithdrawalMutation as k0, type CreateAIOInstapayWithdrawalMutation as k1, type CreateAIOInstapayWithdrawalNextMutation as k2, type CreateManualUpiWithdrawalMutation as k3, type CreateManualBankWithdrawalMutation as k4, type CreateCabinetWithdrawalMutation as k5, type InstapayBankListQuery as k6, type RemainingDailyWithdrawalsCountQuery as k7, type PromoType$1 as k8, type PromoStatus$1 as k9, type MemberRebatesQuery as kA, type MemberRebateContributionPerGameCategory$1 as kB, type MemberRebateContributionPerGame$1 as kC, type MemberRebateContributionQuery as kD, type AchievementPointsHistoryRecordQuery as kE, type MemberAccountStatus as kF, type MemberAccountVerificationStatus as kG, type MemberVerificationStatus as kH, type GigRewardsQuestDetails$1 as kI, type MemberQuery as kJ, type MemberAccountQuery as kK, type MemberWithCellxpertDetailsQueryVariables as kL, type MemberVerificationQuery as kM, type RegisterMemberAccountMutation as kN, type RegisterMemberAccountByNameMutation as kO, type RegisterMemberAccountViaMobileMutation as kP, type RegisterAgentAccountMutation as kQ, type RegisterMayaMemberAccountMutation as kR, type UpdateMemberAccountMutation as kS, type SecretQuestion$1 as kT, type ResetPasswordMutation as kU, type AchievementType$1 as kV, type AchievementSettingsQueryVariables as kW, type DeleteMemberAccountMutation as kX, type UpdateDailyBetLimitMutation as kY, type UpdateMonthlyBetLimitMutation as kZ, type UpdateDailyDepositLimitMutation as k_, type PromosQuery as ka, type AvailablePromosQuery as kb, type CashbackStatus$1 as kc, type CashbacksQuery as kd, type ClaimSpotBonusMutation as ke, type TurnoverRequirementType$1 as kf, type PromoByCodeQuery as kg, type BonusQuery as kh, type BonusesQuery as ki, type CashbackBonusesQuery as kj, type ClaimCashbackBonusMutation as kk, type ClaimRebateMutation as kl, type TransactionType$1 as km, type TransactionRecordsQuery as kn, type Currency$1 as ko, type WalletQuery as kp, type MemberWalletQuery as kq, type PointsWalletQuery as kr, type RedeemPointsToCashMutation as ks, type PointsWalletTransactionType$1 as kt, type PointsWalletTransactionsQuery as ku, type RebateStatus$1 as kv, type RebateCursor$1 as kw, type RebateType$1 as kx, type RebateSettingsPerMemberLevel$1 as ky, type RebateProgram$1 as kz, type CreateSingleUseTokenReturn as l, type QuestProgram$1 as l$, type UnlinkGoogleMutation as l0, type SendVerificationCodeInput as l1, type SendVerificationCodeMutation as l2, type VerifyMobileNumberMutation as l3, type CreateMemberVerificationMutation as l4, type CreateMemberVerificationNextMutation as l5, type UpdateMemberVerificationMutation as l6, type UpdateMemberVerificationNextMutation as l7, type SubmitMemberVerificationMutation as l8, type ProfileCompletionQuery as l9, type ActivityRecordType$1 as lA, type ActivityRecordsQuery as lB, type ReferralCodeQuery as lC, type UpdateReferralCodeMutation as lD, type ReferralsQuery as lE, type ReferralCommissionQuery as lF, type UplinesByNameQuery as lG, type DownlinesByNameQuery as lH, type PointsClubSettingsQuery as lI, type AchievementSettings$1 as lJ, type AchievementSettingsQuery as lK, type MessageAction$1 as lL, type MessageIcon$1 as lM, type MessageType$1 as lN, type MessagesQuery as lO, type MarkMessageAsReadMutation as lP, type MarkAllMessageAsReadMutation as lQ, type MarkAllMessagesAsReadMutation as lR, type UnreadMessagesCountQuery as lS, type ClaimRewardMutation as lT, type OnboardingPlayerExperience$1 as lU, type OnboardingStatusQuery as lV, type CompleteOnboardingMutation as lW, type SkipOnboardingMutation as lX, type QuestType$1 as lY, type QuestStatus$1 as lZ, type QuestProgramStatus$1 as l_, type RegisterMemberAccountByMobileNumberMutation as la, type RegisterMemberAccountByMobileNumberMutation__Next as lb, type DepositGatewaySettings as lc, type WithdrawalGatewaySettings as ld, type MemberLevelSetting$1 as le, type MemberLevelSettingsQuery as lf, type GeneralMemberLevelSettingsQuery as lg, type PlatformQuery as lh, type PaymentSettingsQuery as li, type LoginChannel$1 as lj, type Session$1 as lk, type Authenticator$1 as ll, type SecurityQuestionAuthenticateInput$1 as lm, type MayaSessionQuery as ln, type ValidateMayaSessionMutation as lo, type TextField$1 as lp, type RichTextField$1 as lq, type ImageField$1 as lr, type SelectField$1 as ls, type MultiSelectField$1 as lt, type ToggleField$1 as lu, type CompoundField$1 as lv, type Field$1 as lw, type FieldType$1 as lx, type SiteConfig as ly, type SiteQuery as lz, type SiteReturn as m, type JourneyQuestMilestoneType$1 as m0, type JourneyQuestMilestone$1 as m1, type WageringQuestStage$1 as m2, type WageringQuestStageSettings$1 as m3, type MemberStatus$1 as m4, type AvailableQuestsQuery as m5, type CheckInDailyQuestMutation as m6, type TopWinsQuery as m7, type TopWinsNextQuery as m8, type JackpotStatus$1 as m9, type MemberAchievementsQuery as mA, type RequireFirstDepositQuery as mB, type CabinetSiteMachineStatus$1 as mC, type MemberCabinetSiteMachineQuery as mD, type CabinetWithdrawalQuery as mE, type MemberVerificationRequestStatus$1 as mF, type MemberVerificationRequestQuery as mG, type MemberVerificationRequestByIdQuery as mH, type SubmitMemberVerificationRequestBasicDetailsMutation as mI, type SubmitMemberVerificationRequestImageDetailsMutation as mJ, type SubmitMemberVerificationRequestPersonalDetailsMutation as mK, type MemberVerificationRequestAutomaticApprovalEnabledQuery as mL, type FreeBetDropStatus$1 as mM, type CancelFreeBetDropMutation as mN, type MemberFreeBetDropBetRecord$1 as mO, type MemberFreeBetDropsQuery as mP, type FreeBetDropsQuery as mQ, type JackpotCursor as ma, type JackpotPayoutCursor as mb, type JackpotsQuery as mc, type _JackpotsQuery as md, type JackpotsIdsQuery as me, type JackpotPayoutsQuery as mf, type FCMDeviceType$1 as mg, type FirebaseCloudMessagingDeviceType$1 as mh, type RegisterFCMDeviceMutation as mi, type UnregisterFCMDeviceMutation as mj, type LinkFirebaseCloudMessagingDeviceMutation as mk, type UnlinkFirebaseCloudMessagingDeviceMutation as ml, type MarkGameAsFavoriteMutation as mm, type UnmarkGameAsFavoriteMutation as mn, type FavoriteGamesQuery as mo, type TransactionPasswordNotSetError as mp, type UPIReferenceNotAvailableError as mq, type GoogleClientIdQuery as mr, type TournamentStatus$1 as ms, type TournamentType$1 as mt, type TournamentFrequency$1 as mu, type TournamentMode$1 as mv, type TournamentLeaderboard$1 as mw, type TournamentPayout$1 as mx, type TournamentsQuery as my, type TournamentsIdsQuery as mz, type CabinetSiteMachineReturn as n, type CabinetWithdrawalReturn as o, type PlatformReturn__Next as p, type PaymentSettingsReturn as q, type MemberLevelSettingsReturn as r, type GeneralMemberLevelSettingsReturn as s, type AchievementSettingsReturn as t, type AccountReturn as u, type MemberWithCellxpertDetailsReturn as v, type CreateAccountInput as w, type CreateAccountReturn as x, type CreateAccountInput__Next as y, type RegisterMayaAccountReturn as z };
|