@opexa/portal-sdk 0.59.44 → 0.59.46

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.
@@ -0,0 +1,4517 @@
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 MemberVerification {
1296
+ id: string;
1297
+ status: MemberVerificationStatus;
1298
+ address: string;
1299
+ permanentAddress: string;
1300
+ sourceOfIncome: string;
1301
+ natureOfWork: string | null;
1302
+ nationality: string;
1303
+ placeOfBirth: string;
1304
+ idFrontImage: File$1 | null;
1305
+ selfieImage: File$1 | null;
1306
+ }
1307
+ interface MemberVerificationQuery {
1308
+ memberAccount: {
1309
+ verification?: MemberVerification | null;
1310
+ };
1311
+ }
1312
+ type RegisterMemberAccountError = 'AccountNameNotAvailableError' | 'InvalidPlatformError' | 'InvalidReCAPTCHAResponseError' | 'InvalidSMSVerificationCodeError' | 'MinimumAgeRequirementError' | 'MobileNumberNotAvailableError' | 'ReCAPTCHAVerificationFailedError' | 'EmailAddressNotAvailableError' | 'InvalidAgentCodeError' | 'InvalidMobileNumberVerificationCodeError';
1313
+ interface RegisterMemberAccountMutation {
1314
+ registerMemberAccount?: null | {
1315
+ __typename: RegisterMemberAccountError;
1316
+ };
1317
+ }
1318
+ interface RegisterMemberAccountByNameMutation {
1319
+ registerMemberAccountByName?: null | {
1320
+ __typename: RegisterMemberAccountError;
1321
+ };
1322
+ }
1323
+ interface RegisterMemberAccountMutationVariables {
1324
+ input: {
1325
+ id: string;
1326
+ name: string;
1327
+ password: string;
1328
+ mobileNumber: string;
1329
+ birthDay: string;
1330
+ domain?: string;
1331
+ btag?: string;
1332
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1333
+ };
1334
+ referralCode?: string;
1335
+ verificationCode?: string;
1336
+ reCAPTCHAResponse?: string;
1337
+ }
1338
+ interface RegisterMemberAccountByNameMutationVariables {
1339
+ input: {
1340
+ id: string;
1341
+ name: string;
1342
+ password: string;
1343
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1344
+ };
1345
+ reCAPTCHAResponse?: string;
1346
+ }
1347
+ interface RegisterMemberAccountViaMobileMutation {
1348
+ registerMemberAccountViaMobile?: null | {
1349
+ __typename: RegisterMemberAccountError;
1350
+ };
1351
+ }
1352
+ interface RegisterMemberAccountViaMobileMutationVariables {
1353
+ input: {
1354
+ id: string;
1355
+ mobileNumber: string;
1356
+ realName?: string;
1357
+ birthDay?: string;
1358
+ branchCode?: string;
1359
+ agentCode?: string;
1360
+ domain?: string;
1361
+ btag?: string;
1362
+ cellxpertCxd?: string;
1363
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1364
+ };
1365
+ referralCode?: string;
1366
+ verificationCode?: string;
1367
+ reCAPTCHAResponse?: string;
1368
+ testPass?: string;
1369
+ }
1370
+ interface RegisterAgentAccountMutationVariables {
1371
+ input: {
1372
+ name: string;
1373
+ firstName: string;
1374
+ lastName: string;
1375
+ mobileNumber: string;
1376
+ emailAddress: string;
1377
+ customProperties?: {
1378
+ key: string;
1379
+ value: string;
1380
+ }[];
1381
+ };
1382
+ }
1383
+ type RegisterAgentAccountError$1 = string;
1384
+ interface RegisterAgentAccountMutation {
1385
+ registerAgentAccount?: null | {
1386
+ __typename: RegisterAgentAccountError$1;
1387
+ };
1388
+ }
1389
+ interface RegisterMemberAccountMutationVariables__Next {
1390
+ input: {
1391
+ id: string;
1392
+ name: string;
1393
+ password: string;
1394
+ mobileNumber?: string;
1395
+ domain?: string;
1396
+ btag?: string;
1397
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1398
+ };
1399
+ reCAPTCHAResponse?: string;
1400
+ }
1401
+ interface RegisterMayaMemberAccountMutationVariables {
1402
+ input: {
1403
+ name: string;
1404
+ password: string;
1405
+ domain?: string;
1406
+ };
1407
+ }
1408
+ type RegisterMayaMemberAccountError = 'AccountNameNotAvailableError';
1409
+ interface RegisterMayaMemberAccountMutation {
1410
+ registerMayaMemberAccount?: null | {
1411
+ __typename: RegisterMayaMemberAccountError;
1412
+ };
1413
+ }
1414
+ type UpdateMemberAccountError = 'AccountNameNotAvailableError' | 'EmailAddressNotAvailableError' | 'InvalidTransactionPasswordError' | 'MobileNumberNotAvailableError' | 'NickNameNotAvailableError' | 'RealNameAlreadySetError' | 'ValidIdAlreadySetError';
1415
+ interface UpdateMemberAccountMutation {
1416
+ updateMemberAccount?: null | {
1417
+ __typename: UpdateMemberAccountError;
1418
+ };
1419
+ }
1420
+ 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';
1421
+ interface UpdateMemberAccountMutationVariables {
1422
+ input: {
1423
+ id: string;
1424
+ data: {
1425
+ name?: string;
1426
+ password?: string;
1427
+ emailAddress?: string;
1428
+ mobileNumber?: string;
1429
+ realName?: string;
1430
+ nickName?: string;
1431
+ transactionPassword?: string;
1432
+ validId?: string;
1433
+ mobileNumberVerificationRequired?: boolean;
1434
+ secretQuestion?: SecretQuestion$1;
1435
+ secretAnswer?: string;
1436
+ birthDay?: string;
1437
+ branchCode?: string;
1438
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1439
+ };
1440
+ };
1441
+ }
1442
+ type ResetPasswordError$1 = 'AccountNotFoundError' | 'InvalidVerificationCodeError';
1443
+ interface ResetPasswordMutation {
1444
+ resetPassword?: null | {
1445
+ __typename: ResetPasswordError$1;
1446
+ };
1447
+ }
1448
+ interface ResetPasswordMutationVariables {
1449
+ input: {
1450
+ mobileNumber: string;
1451
+ newPassword: string;
1452
+ };
1453
+ verificationCode: string;
1454
+ }
1455
+ 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';
1456
+ interface AchievementSettingsQueryVariables {
1457
+ type: AchievementType$1;
1458
+ }
1459
+ interface DeleteMemberAccountMutation {
1460
+ deleteMemberAccount: boolean;
1461
+ }
1462
+ interface DeleteMemberAccountMutationVariables {
1463
+ input: {
1464
+ id: string;
1465
+ };
1466
+ }
1467
+ interface UpdateDailyBetLimitMutation {
1468
+ updateDailyBetLimit: boolean;
1469
+ }
1470
+ interface UpdateDailyBetLimitMutationVariables {
1471
+ input: {
1472
+ dailyBetLimit: Decimal;
1473
+ };
1474
+ }
1475
+ interface UpdateMonthlyBetLimitMutation {
1476
+ updateMonthlyBetLimit: boolean;
1477
+ }
1478
+ interface UpdateMonthlyBetLimitMutationVariables {
1479
+ input: {
1480
+ monthlyBetLimit: Decimal;
1481
+ };
1482
+ }
1483
+ interface UpdateDailyDepositLimitMutation {
1484
+ updateDailyDepositLimit: boolean;
1485
+ }
1486
+ interface UpdateDailyDepositLimitMutationVariables {
1487
+ input: {
1488
+ dailyDepositLimit: Decimal;
1489
+ };
1490
+ }
1491
+ interface UpdateMonthlyDepositLimitMutation {
1492
+ updateMonthlyDepositLimit: boolean;
1493
+ }
1494
+ interface UpdateMonthlyDepositLimitMutationVariables {
1495
+ input: {
1496
+ monthlyDepositLimit: Decimal;
1497
+ };
1498
+ }
1499
+ interface UnlinkGoogleMutation {
1500
+ unlinkGoogle: boolean;
1501
+ }
1502
+ interface UnlinkGoogleMutationVariables {
1503
+ input: {
1504
+ id: string;
1505
+ };
1506
+ }
1507
+ /** @deprecated */
1508
+ interface SendVerificationCodeInput {
1509
+ channel: 'SMS' | 'EMAIL';
1510
+ recipient: string;
1511
+ }
1512
+ /** @deprecated */
1513
+ type SendVerificationCodeError$1 = 'InvalidPlatformError' | 'NotReadyToSendVerficationCodeError';
1514
+ /** @deprecated */
1515
+ interface SendVerificationCodeMutation {
1516
+ sendVerificationCode?: null | {
1517
+ __typename: SendVerificationCodeError$1;
1518
+ };
1519
+ }
1520
+ /** @deprecated */
1521
+ interface SendVerificationCodeMutationVariables {
1522
+ input: {
1523
+ channel: 'SMS' | 'EMAIL';
1524
+ recipient: string;
1525
+ };
1526
+ }
1527
+ type SendVerificationCodeError__Next$1 = 'NotReadyToSendVerficationCodeError' | 'RateLimitExceededError' | 'AccountNotFoundError';
1528
+ interface SendVerificationCodeInput__Next$1 {
1529
+ channel: 'SMS' | 'EMAIL';
1530
+ recipient: string;
1531
+ verificationType?: 'MEMBER';
1532
+ }
1533
+ type VerifyMobileNumberError$1 = 'InvalidSMSVerificationCodeError' | 'MobileNumberAlreadyVerifiedError';
1534
+ interface VerifyMobileNumberMutation {
1535
+ verifyMobileNumber?: null | {
1536
+ __typename: VerifyMobileNumberError$1;
1537
+ };
1538
+ }
1539
+ interface VerifyMobileNumberMutationVariables {
1540
+ input: {
1541
+ verificationCode: string;
1542
+ };
1543
+ }
1544
+ type CreateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyExistsError' | 'MemberVerificationAlreadyApprovedError' | 'AccountNotFoundError';
1545
+ interface CreateMemberVerificationMutation {
1546
+ createMemberVerification?: null | {
1547
+ __typename: CreateMemberVerificationError;
1548
+ };
1549
+ }
1550
+ interface CreateMemberVerificationMutationVariables {
1551
+ input: {
1552
+ id: string;
1553
+ idFrontImage: string;
1554
+ selfieImage: string;
1555
+ address: string;
1556
+ permanentAddress: string;
1557
+ sourceOfIncome: string;
1558
+ natureOfWork: string;
1559
+ nationality: string;
1560
+ placeOfBirth: string;
1561
+ };
1562
+ }
1563
+ interface CreateMemberVerificationNextMutation {
1564
+ createMemberVerification_next?: null | {
1565
+ __typename: CreateMemberVerificationError;
1566
+ };
1567
+ }
1568
+ interface CreateMemberVerificationNextMutationVariables {
1569
+ input: {
1570
+ id: string;
1571
+ idFrontImage?: string;
1572
+ selfieImage?: string;
1573
+ address?: string;
1574
+ permanentAddress?: string;
1575
+ sourceOfIncome?: string;
1576
+ natureOfWork?: string;
1577
+ nationality?: string;
1578
+ placeOfBirth?: string;
1579
+ };
1580
+ }
1581
+ type UpdateMemberVerificationError = 'FileDoesNotExistError' | 'FileNotReadyError' | 'MemberVerificationAlreadyApprovedError' | 'MemberVerificationDoesNotExistError';
1582
+ type SubmitMemberVerificationError$1 = 'VerificationDataIncompleteError' | 'MemberVerificationDoesNotExistError' | 'MemberVerificationAlreadyApprovedError';
1583
+ interface UpdateMemberVerificationMutation {
1584
+ updateMemberVerification?: null | {
1585
+ __typename: UpdateMemberVerificationError;
1586
+ };
1587
+ }
1588
+ interface UpdateMemberVerificationMutationVariables {
1589
+ input: {
1590
+ id: string;
1591
+ data: {
1592
+ idFrontImage?: string;
1593
+ selfieImage?: string;
1594
+ address?: string;
1595
+ permanentAddress?: string;
1596
+ sourceOfIncome?: string;
1597
+ natureOfWork?: string;
1598
+ nationality?: string;
1599
+ placeOfBirth?: string;
1600
+ };
1601
+ };
1602
+ }
1603
+ interface UpdateMemberVerificationNextMutation {
1604
+ updateMemberVerification_next?: null | {
1605
+ __typename: UpdateMemberVerificationError;
1606
+ };
1607
+ }
1608
+ interface UpdateMemberVerificationNextMutationVariables {
1609
+ input: {
1610
+ id: string;
1611
+ data: {
1612
+ idFrontImage?: string;
1613
+ selfieImage?: string;
1614
+ address?: string;
1615
+ permanentAddress?: string;
1616
+ sourceOfIncome?: string;
1617
+ natureOfWork?: string;
1618
+ nationality?: string;
1619
+ placeOfBirth?: string;
1620
+ };
1621
+ };
1622
+ }
1623
+ interface SubmitMemberVerificationMutation {
1624
+ submitMemberVerification?: null | {
1625
+ __typename: SubmitMemberVerificationError$1;
1626
+ };
1627
+ }
1628
+ interface SubmitMemberVerificationMutationVariables {
1629
+ input: {
1630
+ id: string;
1631
+ };
1632
+ }
1633
+ interface ProfileCompletion$1 {
1634
+ completionPercentage?: Decimal | null;
1635
+ personalInformation?: boolean | null;
1636
+ accountVerification?: boolean | null;
1637
+ mobileNumberVerification?: boolean | null;
1638
+ transactionPassword?: boolean | null;
1639
+ accountPassword?: boolean | null;
1640
+ }
1641
+ interface ProfileCompletionQuery {
1642
+ profileCompletion: ProfileCompletion$1;
1643
+ }
1644
+ interface RegisterMemberAccountByMobileNumberMutationVariables {
1645
+ input: {
1646
+ id: string;
1647
+ mobileNumber: string;
1648
+ password: string;
1649
+ realName: string;
1650
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1651
+ };
1652
+ mobileNumberVerificationCode: string;
1653
+ testPass?: boolean;
1654
+ reCAPTCHAResponse?: string;
1655
+ }
1656
+ interface RegisterMemberAccountByMobileNumberMutation {
1657
+ registerMemberAccountByMobileNumber?: null | {
1658
+ __typename: RegisterMemberAccountError;
1659
+ };
1660
+ }
1661
+ interface RegisterMemberAccountByMobileNumberMutationVariables__Next {
1662
+ input: {
1663
+ id: string;
1664
+ mobileNumber: string;
1665
+ mobileNumberVerificationCode: string;
1666
+ emailAddress?: string;
1667
+ branchCode?: string;
1668
+ agentCode?: string;
1669
+ cellxpertCxd?: string;
1670
+ gigRewardsQuestDetails?: GigRewardsQuestDetails$1 | null;
1671
+ };
1672
+ referralCode?: string;
1673
+ }
1674
+ interface RegisterMemberAccountByMobileNumberMutation__Next {
1675
+ registerMemberAccountByMobileNumber?: null | {
1676
+ __typename: RegisterMemberAccountError;
1677
+ };
1678
+ }
1679
+ interface DepositGatewaySettings {
1680
+ minimumAmount: string;
1681
+ maximumAmount: string;
1682
+ webEnabled: boolean;
1683
+ mobileWebEnabled: boolean;
1684
+ androidEnabled: boolean;
1685
+ iosEnabled: boolean;
1686
+ bankAccountName?: string;
1687
+ bankAccountNumber?: string;
1688
+ bankIFSCCode?: string;
1689
+ upiId?: string;
1690
+ upiQRCode?: File$1;
1691
+ }
1692
+ interface WithdrawalGatewaySettings {
1693
+ minimumAmount: Decimal;
1694
+ maximumAmount: Decimal;
1695
+ webEnabled: boolean;
1696
+ mobileWebEnabled: boolean;
1697
+ androidEnabled: boolean;
1698
+ iosEnabled: boolean;
1699
+ }
1700
+ interface MemberLevelSetting$1 {
1701
+ enabled: boolean;
1702
+ name: string;
1703
+ achievementPointsRequirement: number;
1704
+ turnoverRequirement: number;
1705
+ bonusAmount: number;
1706
+ bonusTurnoverRequirement: number;
1707
+ }
1708
+ interface MemberLevelSettings$1 {
1709
+ memberLevelSettings__1: MemberLevelSetting$1;
1710
+ memberLevelSettings__2: MemberLevelSetting$1;
1711
+ memberLevelSettings__3: MemberLevelSetting$1;
1712
+ memberLevelSettings__4: MemberLevelSetting$1;
1713
+ memberLevelSettings__5: MemberLevelSetting$1;
1714
+ memberLevelSettings__6: MemberLevelSetting$1;
1715
+ memberLevelSettings__7: MemberLevelSetting$1;
1716
+ memberLevelSettings__8: MemberLevelSetting$1;
1717
+ memberLevelSettings__9: MemberLevelSetting$1;
1718
+ memberLevelSettings__10: MemberLevelSetting$1;
1719
+ memberLevelSettings__11: MemberLevelSetting$1;
1720
+ memberLevelSettings__12: MemberLevelSetting$1;
1721
+ memberLevelSettings__13: MemberLevelSetting$1;
1722
+ memberLevelSettings__14: MemberLevelSetting$1;
1723
+ memberLevelSettings__15: MemberLevelSetting$1;
1724
+ memberLevelSettings__16: MemberLevelSetting$1;
1725
+ memberLevelSettings__17: MemberLevelSetting$1;
1726
+ memberLevelSettings__18: MemberLevelSetting$1;
1727
+ memberLevelSettings__19: MemberLevelSetting$1;
1728
+ memberLevelSettings__20: MemberLevelSetting$1;
1729
+ }
1730
+ interface GeneralMemberLevelSettings$1 {
1731
+ generalMemberLevelSettings: {
1732
+ enabled: boolean;
1733
+ };
1734
+ }
1735
+ type MemberLevelSettingsQuery = MemberLevelSettings$1;
1736
+ type GeneralMemberLevelSettingsQuery = GeneralMemberLevelSettings$1;
1737
+ /** @deprecated */
1738
+ interface Platform$1 {
1739
+ currency: Currency$1;
1740
+ timezone: string;
1741
+ restrictWithdrawalsToVerifiedMembers: boolean;
1742
+ minimumFirstDepositAmount: Decimal;
1743
+ memberLevelSettings?: MemberLevelSettings$1;
1744
+ bankDepositGatewaySettings?: DepositGatewaySettings | null;
1745
+ gcashDepositGatewaySettings?: DepositGatewaySettings | null;
1746
+ gcashWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
1747
+ aioGcashDepositGatewaySettings?: DepositGatewaySettings | null;
1748
+ aioPayMayaDepositGatewaySettings?: DepositGatewaySettings | null;
1749
+ aioGrabPayDepositGatewaySettings?: DepositGatewaySettings | null;
1750
+ aioPalawanPayDepositGatewaySettings?: DepositGatewaySettings | null;
1751
+ mayaDepositGatewaySettings?: DepositGatewaySettings | null;
1752
+ mayaAppDepositGatewaySettings?: DepositGatewaySettings | null;
1753
+ mayaWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
1754
+ onlineBankDepositGatewaySettings?: DepositGatewaySettings | null;
1755
+ qrphDepositGatewaySettings?: DepositGatewaySettings | null;
1756
+ manualBankDepositGatewaySettings: DepositGatewaySettings | null;
1757
+ manualUPIDepositGatewaySettings: DepositGatewaySettings | null;
1758
+ bankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1759
+ gcashWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1760
+ gcashStandardCashInWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1761
+ mayaWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1762
+ mayaAppWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1763
+ instapayWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1764
+ manualBankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1765
+ manualUPIWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1766
+ pointsClubSettings?: PointsClubSettings$1 | null;
1767
+ }
1768
+ /** @deprecated */
1769
+ type PlatformQuery = Platform$1;
1770
+ interface Platform__Next$1 {
1771
+ currency: Currency$1;
1772
+ timezone: string;
1773
+ }
1774
+ type PlatformQuery__Next = Platform__Next$1;
1775
+ interface PaymentSettings$1 {
1776
+ restrictWithdrawalsToVerifiedMembers: boolean;
1777
+ minimumFirstDepositAmount: Decimal;
1778
+ bankDepositGatewaySettings?: DepositGatewaySettings | null;
1779
+ gcashDepositGatewaySettings?: DepositGatewaySettings | null;
1780
+ gcashWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
1781
+ aioGcashDepositGatewaySettings?: DepositGatewaySettings | null;
1782
+ aioPayMayaDepositGatewaySettings?: DepositGatewaySettings | null;
1783
+ aioGrabPayDepositGatewaySettings?: DepositGatewaySettings | null;
1784
+ aioPalawanPayDepositGatewaySettings?: DepositGatewaySettings | null;
1785
+ mayaDepositGatewaySettings?: DepositGatewaySettings | null;
1786
+ mayaAppDepositGatewaySettings?: DepositGatewaySettings | null;
1787
+ mayaWebpayDepositGatewaySettings?: DepositGatewaySettings | null;
1788
+ onlineBankDepositGatewaySettings?: DepositGatewaySettings | null;
1789
+ qrphDepositGatewaySettings?: DepositGatewaySettings | null;
1790
+ manualBankDepositGatewaySettings: DepositGatewaySettings | null;
1791
+ manualUPIDepositGatewaySettings: DepositGatewaySettings | null;
1792
+ bankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1793
+ gcashWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1794
+ gcashStandardCashInWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1795
+ mayaWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1796
+ mayaAppWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1797
+ instapayWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1798
+ manualBankWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1799
+ manualUPIWithdrawalGatewaySettings?: WithdrawalGatewaySettings | null;
1800
+ }
1801
+ type PaymentSettingsQuery = PaymentSettings$1;
1802
+ type LoginChannel$1 = 'IOS' | 'ANDROID' | 'WEB_DESKTOP' | 'WEB_ANDROID';
1803
+ interface Session$1 {
1804
+ id: string;
1805
+ dateTimeCreated: DateString;
1806
+ }
1807
+ type CreateSessionInput = {
1808
+ type: 'NAME_AND_PASSWORD';
1809
+ name: string;
1810
+ password: string;
1811
+ mobileNumber?: never;
1812
+ verificationCode?: never;
1813
+ sessionId?: never;
1814
+ token?: never;
1815
+ reCAPTCHAResponse?: string;
1816
+ testPass?: string;
1817
+ channel?: LoginChannel$1;
1818
+ } | {
1819
+ type: 'MOBILE_NUMBER';
1820
+ name?: never;
1821
+ password?: never;
1822
+ mobileNumber: string;
1823
+ verificationCode: string;
1824
+ sessionId?: never;
1825
+ token?: never;
1826
+ reCAPTCHAResponse?: string;
1827
+ testPass?: string;
1828
+ channel?: LoginChannel$1;
1829
+ } | {
1830
+ type: 'MAYA';
1831
+ name?: never;
1832
+ password?: never;
1833
+ mobileNumber?: never;
1834
+ verificationCode?: never;
1835
+ sessionId: string;
1836
+ token?: never;
1837
+ reCAPTCHAResponse?: string;
1838
+ testPass?: string;
1839
+ channel?: LoginChannel$1;
1840
+ } | {
1841
+ type: 'SOCIALS';
1842
+ name?: never;
1843
+ password?: never;
1844
+ mobileNumber?: never;
1845
+ verificationCode?: never;
1846
+ sessionId?: never;
1847
+ token: string;
1848
+ reCAPTCHAResponse?: string;
1849
+ testPass?: string;
1850
+ channel?: LoginChannel$1;
1851
+ } | {
1852
+ type: 'CABINET';
1853
+ name?: never;
1854
+ password?: never;
1855
+ mobileNumber?: never;
1856
+ verificationCode?: never;
1857
+ sessionId?: never;
1858
+ token: string;
1859
+ reCAPTCHAResponse?: string;
1860
+ testPass?: string;
1861
+ channel?: LoginChannel$1;
1862
+ } | {
1863
+ type: 'SINGLE_USE_TOKEN';
1864
+ name?: never;
1865
+ password?: never;
1866
+ mobileNumber?: never;
1867
+ verificationCode?: never;
1868
+ sessionId?: never;
1869
+ token: string;
1870
+ reCAPTCHAResponse?: never;
1871
+ testPass?: string;
1872
+ channel?: LoginChannel$1;
1873
+ };
1874
+ type Authenticator$1 = {
1875
+ type: 'SECURITY_QUESTION';
1876
+ token: string;
1877
+ secretQuestion: SecretQuestion$1;
1878
+ };
1879
+ type CreateSessionMutation = {
1880
+ session: Session$1;
1881
+ accessToken: string;
1882
+ refreshToken: string;
1883
+ authenticator?: never;
1884
+ } | {
1885
+ session: Session$1;
1886
+ accessToken?: never;
1887
+ refreshToken?: never;
1888
+ authenticator: Authenticator$1;
1889
+ };
1890
+ type CreateSessionError = 'AccountNotFoundError' | 'AccountBlacklistedError' | 'InvalidReCAPTCHAResponseError' | 'AccountSuspendedError';
1891
+ type RefreshSessionError$1 = 'InvalidTokenError' | 'AccountBlacklistedError' | 'AccountSuspendedError' | 'SessionExpiredError' | 'VerificationLockedError';
1892
+ interface RefreshSessionMutation {
1893
+ accessToken: string;
1894
+ refreshToken: string;
1895
+ }
1896
+ interface SecurityQuestionAuthenticateInput$1 {
1897
+ type: 'SECURITY_QUESTION';
1898
+ token: string;
1899
+ secretAnswer: string;
1900
+ channel?: LoginChannel$1;
1901
+ }
1902
+ type AuthenticateInput$1 = SecurityQuestionAuthenticateInput$1;
1903
+ type AuthenticateError$1 = 'InvalidTokenOrSecretAnswerError';
1904
+ interface AuthenticateMutation {
1905
+ session: Session$1;
1906
+ accessToken: string;
1907
+ refreshToken: string;
1908
+ }
1909
+ interface MayaSession {
1910
+ id: string;
1911
+ member?: string;
1912
+ dateTimeCreated: DateString;
1913
+ }
1914
+ interface MayaSessionQuery {
1915
+ mayaSession?: MayaSession | null;
1916
+ }
1917
+ interface MayaSessionQueryVariables {
1918
+ id: string;
1919
+ }
1920
+ interface ValidateMayaSessionMutation {
1921
+ validateMayaSession: boolean;
1922
+ }
1923
+ type CreateSingleUseTokenError$1 = 'InvalidTokenError';
1924
+ interface CreateSingleUseTokenMutation {
1925
+ token: string;
1926
+ }
1927
+ interface TextField$1 {
1928
+ id: string;
1929
+ type: 'text';
1930
+ label: string;
1931
+ value?: string;
1932
+ default?: string;
1933
+ required?: true;
1934
+ pattern?: 'url' | 'email' | (string & {});
1935
+ minLength?: number;
1936
+ maxLength?: number;
1937
+ placeholder?: string;
1938
+ }
1939
+ interface RichTextField$1 {
1940
+ id: string;
1941
+ type: 'rich_text';
1942
+ label: string;
1943
+ value?: string;
1944
+ default?: string;
1945
+ required?: true;
1946
+ placeholder?: string;
1947
+ }
1948
+ interface ImageField$1 {
1949
+ id: string;
1950
+ type: 'image';
1951
+ label: string;
1952
+ value?: string;
1953
+ default?: string;
1954
+ required?: boolean;
1955
+ width?: number;
1956
+ height?: number;
1957
+ minWidth?: number;
1958
+ minHeight?: number;
1959
+ maxWidth?: number;
1960
+ maxHeight?: number;
1961
+ }
1962
+ interface SelectField$1 {
1963
+ id: string;
1964
+ type: 'select';
1965
+ label: string;
1966
+ value?: string;
1967
+ default?: string;
1968
+ options: string[];
1969
+ required?: boolean;
1970
+ }
1971
+ interface MultiSelectField$1 {
1972
+ id: string;
1973
+ type: 'multi_select';
1974
+ label: string;
1975
+ value?: string[];
1976
+ default?: string[];
1977
+ options: string[];
1978
+ required?: boolean;
1979
+ }
1980
+ interface ToggleField$1 {
1981
+ id: string;
1982
+ type: 'toggle';
1983
+ label: string;
1984
+ value?: boolean;
1985
+ default?: boolean;
1986
+ }
1987
+ interface CompoundField$1 {
1988
+ id: string;
1989
+ type: 'compound';
1990
+ fields: (TextField$1 | ImageField$1 | RichTextField$1 | SelectField$1 | MultiSelectField$1 | ToggleField$1 | CompoundField$1)[];
1991
+ value?: any;
1992
+ default?: any;
1993
+ multiple?: boolean;
1994
+ }
1995
+ type Field$1 = TextField$1 | ImageField$1 | SelectField$1 | MultiSelectField$1 | ToggleField$1 | RichTextField$1 | CompoundField$1;
1996
+ type FieldType$1 = Field$1['type'];
1997
+ interface SiteConfig {
1998
+ name: string;
1999
+ logo: string;
2000
+ fields: Field$1[];
2001
+ }
2002
+ interface Site$1 {
2003
+ id: string;
2004
+ name: string;
2005
+ logo?: string | null;
2006
+ config: SiteConfig;
2007
+ }
2008
+ interface SiteQuery {
2009
+ data: Site$1;
2010
+ }
2011
+ type ActivityRecordType$1 = 'REGISTRATION' | 'LOGIN' | 'DEPOSIT' | 'WITHDRAWAL' | 'BET' | 'CASHBACK_BONUS' | 'BONUS' | 'FIRST_DEPOSIT';
2012
+ interface ActivityRecord$1 {
2013
+ id: string;
2014
+ type: ActivityRecordType$1;
2015
+ domain?: string | null;
2016
+ amount?: Decimal | null;
2017
+ details: Html;
2018
+ dateTimeCreated: DateString;
2019
+ }
2020
+ interface ActivityRecordsQuery {
2021
+ member: PaginatedQuery<'activityRecords', ActivityRecord$1>;
2022
+ }
2023
+ interface ActivityRecordsQueryVariables {
2024
+ first?: number;
2025
+ after?: string;
2026
+ filter?: {
2027
+ type?: EnumFilterField<ActivityRecordType$1>;
2028
+ dateTimeCreated?: DateFilterField;
2029
+ };
2030
+ }
2031
+ interface ReferralCodeQuery {
2032
+ referralCode?: string | null;
2033
+ }
2034
+ interface UpdateReferralCodeMutationVariables {
2035
+ input: {
2036
+ code: string;
2037
+ };
2038
+ }
2039
+ type UpdateReferralCodeError$1 = 'ReferralCodeNotAvailableError';
2040
+ interface UpdateReferralCodeMutation {
2041
+ updateReferralCode?: null | {
2042
+ __typename: UpdateReferralCodeError$1;
2043
+ };
2044
+ }
2045
+ interface Referral$1 {
2046
+ id: string;
2047
+ upline: {
2048
+ id: string;
2049
+ name: string;
2050
+ realName: string;
2051
+ };
2052
+ downline: {
2053
+ id: string;
2054
+ name: string;
2055
+ realName: string;
2056
+ };
2057
+ level: number;
2058
+ turnover: Decimal;
2059
+ commission: Decimal;
2060
+ dateTimeCreated: DateString;
2061
+ qualified: boolean;
2062
+ }
2063
+ interface ReferralsQuery {
2064
+ member: PaginatedQuery<'referrals', Referral$1>;
2065
+ }
2066
+ interface ReferralsQueryVariables {
2067
+ first?: number;
2068
+ after?: string;
2069
+ filter?: {
2070
+ level?: NumberFilterField;
2071
+ upline?: ObjectIdFilterField;
2072
+ downline?: ObjectIdFilterField;
2073
+ };
2074
+ }
2075
+ interface ReferralCommission$1 {
2076
+ id: string;
2077
+ commission: Decimal;
2078
+ referralCode: string;
2079
+ referralsCount: number;
2080
+ level1Commission: Decimal;
2081
+ level2Commission: Decimal;
2082
+ level3Commission: Decimal;
2083
+ level1ReferralsCount: number;
2084
+ level2ReferralsCount: number;
2085
+ level3ReferralsCount: number;
2086
+ dateTimeCreated: DateString;
2087
+ dateTimeLastUpdated: DateString;
2088
+ }
2089
+ interface ReferralCommissionQuery {
2090
+ member: {
2091
+ referralCommission?: ReferralCommission$1 | null;
2092
+ };
2093
+ }
2094
+ interface UplinesByNameQueryVariables {
2095
+ search: string;
2096
+ first?: number;
2097
+ }
2098
+ interface DownlinesByNameQueryVariables {
2099
+ search: string;
2100
+ first?: number;
2101
+ }
2102
+ interface UplinesByNameQuery {
2103
+ uplinesByName: Referral$1[];
2104
+ }
2105
+ interface DownlinesByNameQuery {
2106
+ downlinesByName: Referral$1[];
2107
+ }
2108
+ interface PointsClubSettings$1 {
2109
+ multiplier: Decimal;
2110
+ }
2111
+ interface PointsClubSettingsQuery {
2112
+ pointsClubSettings?: PointsClubSettings$1 | null;
2113
+ }
2114
+ interface AchievementSettings$1 {
2115
+ enabled: boolean;
2116
+ points: number;
2117
+ uniqueGamesCount: number;
2118
+ newGamesCount: number;
2119
+ betsCount: number;
2120
+ activeDaysCount: number;
2121
+ }
2122
+ interface AchievementSettingsResponse$1 {
2123
+ diverseDebut: AchievementSettings$1;
2124
+ varietyVirtuoso: AchievementSettings$1;
2125
+ masterOfDiversity: AchievementSettings$1;
2126
+ curiousNewcomer: AchievementSettings$1;
2127
+ trailblazer: AchievementSettings$1;
2128
+ innovationIcon: AchievementSettings$1;
2129
+ rapidRoller: AchievementSettings$1;
2130
+ whirlwindWagerer: AchievementSettings$1;
2131
+ bettingBonanza: AchievementSettings$1;
2132
+ steadyStrategist: AchievementSettings$1;
2133
+ consistentContender: AchievementSettings$1;
2134
+ legendaryLoyalist: AchievementSettings$1;
2135
+ }
2136
+ type AchievementSettingsQuery = AchievementSettingsResponse$1;
2137
+ interface MessageAction$1 {
2138
+ name: string;
2139
+ url: string;
2140
+ }
2141
+ type MessageIcon$1 = 'MESSAGE' | 'CHECK' | 'CELEBRATE' | 'ALERT';
2142
+ type MessageType$1 = 'TOURNAMENT_PAYOUT' | 'IMAGE' | 'TEXT' | 'REJECTION';
2143
+ interface Message$1 {
2144
+ id: string;
2145
+ icon: MessageIcon$1;
2146
+ /** @deprecated use `Message.icon` */
2147
+ logo: MessageIcon$1;
2148
+ title: string;
2149
+ popup: boolean;
2150
+ force: boolean;
2151
+ image?: string;
2152
+ content: string;
2153
+ actions: MessageAction$1[];
2154
+ markedAsRead: boolean;
2155
+ dateTimeCreated: DateString;
2156
+ type: MessageType$1;
2157
+ metadata: {
2158
+ tournament: {
2159
+ id: string;
2160
+ name: string;
2161
+ };
2162
+ payout: {
2163
+ id: string;
2164
+ amount: Decimal;
2165
+ };
2166
+ } | null;
2167
+ }
2168
+ interface MessagesQueryVariables {
2169
+ first?: number;
2170
+ after?: string;
2171
+ filter?: {
2172
+ popup?: BooleanFilterField;
2173
+ markedAsRead?: BooleanFilterField;
2174
+ };
2175
+ }
2176
+ interface MessagesQuery extends PaginatedQuery<'messages', Message$1> {
2177
+ }
2178
+ interface MarkMessageAsReadMutation {
2179
+ markMessageAsRead: boolean;
2180
+ }
2181
+ interface MarkMessageAsReadMutationVariables {
2182
+ id: string;
2183
+ }
2184
+ /** @deprecated */
2185
+ interface MarkAllMessageAsReadMutation {
2186
+ markAllMessageAsRead: boolean;
2187
+ }
2188
+ interface MarkAllMessagesAsReadMutation {
2189
+ markAllMessagesAsRead: boolean;
2190
+ }
2191
+ interface UnreadMessagesCountQuery {
2192
+ messages: {
2193
+ totalCount: number;
2194
+ };
2195
+ }
2196
+ interface UnreadMessagesCountQueryVariables {
2197
+ filter?: {
2198
+ popup?: BooleanFilterField;
2199
+ };
2200
+ }
2201
+ interface ClaimRewardMutationVariables {
2202
+ id: string;
2203
+ }
2204
+ interface ClaimRewardMutation {
2205
+ claimReward?: null | {
2206
+ __typename: ClaimRewardError$1;
2207
+ };
2208
+ }
2209
+ type ClaimRewardError$1 = 'RewardAlreadyClaimedError' | 'RewardAlreadyExpiredError';
2210
+ interface CheckInDailyQuestQueryVariables {
2211
+ input: {
2212
+ id: string;
2213
+ };
2214
+ }
2215
+ type OnboardingStatus$1 = 'PENDING' | 'SKIPPED' | 'COMPLETED';
2216
+ type OnboardingPlayerExperience$1 = 'ROOKIE' | 'VETERAN';
2217
+ interface OnboardingStatusQuery {
2218
+ onboardingStatus: OnboardingStatus$1;
2219
+ }
2220
+ interface CompleteOnboardingMutationVariables {
2221
+ input: {
2222
+ playerExperience: OnboardingPlayerExperience$1;
2223
+ favoriteGameTypes: GameType$1[];
2224
+ };
2225
+ }
2226
+ interface CompleteOnboardingMutation {
2227
+ completeOnboarding: boolean;
2228
+ }
2229
+ interface SkipOnboardingMutation {
2230
+ skipOnboarding: boolean;
2231
+ }
2232
+ type QuestType$1 = 'WAGERING' | 'DAILY_CHECKIN' | 'ONBOARDING' | 'JOURNEY';
2233
+ type QuestStatus$1 = 'IN_PROGRESS' | 'COMPLETED' | 'FAILED' | 'ACTIVE';
2234
+ type QuestProgramStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
2235
+ interface QuestProgram$1 {
2236
+ type: QuestType$1;
2237
+ name: string;
2238
+ description: string;
2239
+ stages: WageringQuestStageSettings$1[];
2240
+ status: QuestProgramStatus$1;
2241
+ }
2242
+ type JourneyQuestMilestoneType$1 = 'REGISTRATION' | 'ACCOUNT_VERIFICATION' | 'FIRST_DEPOSIT' | 'IOS_FIRST_LOGIN' | 'ANDROID_FIRST_LOGIN' | 'LINK_FACEBOOK_ACCOUNT' | 'LINK_GOOGLE_ACCOUNT' | 'CUSTOM' | 'CUSTOM_LINK';
2243
+ interface JourneyQuestMilestone$1 {
2244
+ id: string;
2245
+ type: JourneyQuestMilestoneType$1;
2246
+ name: string;
2247
+ bonusAmount: Decimal;
2248
+ cleared: boolean;
2249
+ description: string;
2250
+ link?: string;
2251
+ }
2252
+ interface WageringQuestStage$1 {
2253
+ targetTurnover: Decimal;
2254
+ bonusTurnoverRequirementMultiplier: number;
2255
+ bonusAmount: Decimal;
2256
+ cleared: boolean;
2257
+ dateTimeCleared: DateString;
2258
+ turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
2259
+ }
2260
+ interface WageringQuestStageSettings$1 {
2261
+ targetTurnover: number;
2262
+ bonusTurnoverRequirementMultiplier: number;
2263
+ bonusAmount: number;
2264
+ }
2265
+ type MemberStatus$1 = 'ACTIVE' | 'BLACKLISTED' | 'SUSPENDED';
2266
+ interface Quest$1 {
2267
+ id: string;
2268
+ name: string;
2269
+ description: string;
2270
+ program: QuestProgram$1;
2271
+ status: QuestStatus$1;
2272
+ progressPercentage: Decimal;
2273
+ turnover: Decimal;
2274
+ type: QuestType$1;
2275
+ bonus: Decimal;
2276
+ endDateTime: DateString;
2277
+ dateTimeCreated: DateString;
2278
+ lastCheckInDate?: DateString;
2279
+ startDateTime?: DateString;
2280
+ checkInStreak?: number;
2281
+ thirdDayBonusAmount?: Decimal;
2282
+ sixthDayBonusAmount?: Decimal;
2283
+ seventhDayBonusAmount?: Decimal;
2284
+ targetTurnover?: Decimal;
2285
+ daysToClear?: Decimal;
2286
+ bonusAmount?: Decimal;
2287
+ firstDepositCompleted?: boolean;
2288
+ accountVerificationCompleted?: boolean;
2289
+ milestones?: JourneyQuestMilestone$1[];
2290
+ stage?: number;
2291
+ dateTimeCompleted?: DateString;
2292
+ turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
2293
+ }
2294
+ interface AvailableQuestsQuery {
2295
+ availableQuests: Quest$1[];
2296
+ }
2297
+ interface CheckInDailyQuestMutation {
2298
+ checkInDailyQuest: boolean;
2299
+ }
2300
+ interface TopWin$1 {
2301
+ id: string;
2302
+ game: {
2303
+ id: string;
2304
+ };
2305
+ member: {
2306
+ id: string;
2307
+ name: string;
2308
+ };
2309
+ multiplier: Decimal;
2310
+ payout: Decimal;
2311
+ }
2312
+ interface TopWinsQuery {
2313
+ topWins: TopWin$1[];
2314
+ }
2315
+ interface TopWinsNextQuery {
2316
+ _topWins: TopWin$1[];
2317
+ }
2318
+ type JackpotStatus$1 = 'ACTIVE' | 'CLOSING' | 'DISABLED';
2319
+ type JackpotCursor = 'POOL';
2320
+ type JackpotPayoutCursor = 'AMOUNT';
2321
+ interface JackpotsQueryVariables {
2322
+ after?: string;
2323
+ first?: number;
2324
+ filter?: {
2325
+ id?: ObjectIdFilterField;
2326
+ name?: StringFilterField;
2327
+ status?: EnumFilterField<JackpotStatus$1>;
2328
+ drawing?: BooleanFilterField;
2329
+ deleted?: BooleanFilterField;
2330
+ };
2331
+ sort?: {
2332
+ order: SortOrder;
2333
+ cursor: JackpotCursor;
2334
+ };
2335
+ }
2336
+ interface _JackpotsQueryVariables {
2337
+ after?: string;
2338
+ first?: number;
2339
+ filter?: {
2340
+ id?: ObjectIdFilterField;
2341
+ name?: StringFilterField;
2342
+ status?: EnumFilterField<JackpotStatus$1>;
2343
+ drawing?: BooleanFilterField;
2344
+ deleted?: BooleanFilterField;
2345
+ memberGroup?: ObjectIdFilterField;
2346
+ };
2347
+ sort?: {
2348
+ order: SortOrder;
2349
+ cursor: JackpotCursor;
2350
+ };
2351
+ }
2352
+ interface JackpotPayoutsQueryVariables {
2353
+ after?: string;
2354
+ first?: number;
2355
+ filter?: {
2356
+ id?: ObjectIdFilterField;
2357
+ member?: ObjectIdFilterField;
2358
+ jackpot?: ObjectIdFilterField;
2359
+ dateTimeCreated?: DateFilterField;
2360
+ };
2361
+ sort?: {
2362
+ order: SortOrder;
2363
+ cursor: JackpotPayoutCursor;
2364
+ };
2365
+ }
2366
+ interface Jackpot$1 {
2367
+ id: string;
2368
+ name: string;
2369
+ pool: Decimal;
2370
+ description: string;
2371
+ status: JackpotStatus$1;
2372
+ minimumJackpotPoolDrawingLimit: Decimal;
2373
+ maximumJackpotPoolLimit: Decimal;
2374
+ drawing: boolean;
2375
+ minimumMultiplier: Decimal;
2376
+ minimumBet: Decimal;
2377
+ jackpotPayoutPercentage: Decimal;
2378
+ jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
2379
+ totalPayout: Decimal;
2380
+ }
2381
+ interface _Jackpot {
2382
+ id: string;
2383
+ name: string;
2384
+ pool: Decimal;
2385
+ description: string;
2386
+ status: JackpotStatus$1;
2387
+ minimumJackpotPoolDrawingLimit: Decimal;
2388
+ maximumJackpotPoolLimit: Decimal;
2389
+ drawing: boolean;
2390
+ minimumMultiplier: Decimal;
2391
+ minimumBet: Decimal;
2392
+ jackpotPayoutPercentage: Decimal;
2393
+ jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider$1, Decimal>>;
2394
+ totalPayout: Decimal;
2395
+ }
2396
+ interface JackpotsQuery extends PaginatedQuery<'jackpots', Jackpot$1> {
2397
+ }
2398
+ interface _JackpotsQuery extends PaginatedQuery<'_jackpots', Jackpot$1> {
2399
+ }
2400
+ interface JackpotsIdsQueryVariables extends JackpotsQueryVariables {
2401
+ }
2402
+ interface JackpotsIdsQuery extends PaginatedQuery<'jackpots', {
2403
+ id: string;
2404
+ }> {
2405
+ }
2406
+ interface JackpotPayout$1 {
2407
+ id: string;
2408
+ member: {
2409
+ id: string;
2410
+ name: string;
2411
+ };
2412
+ jackpot: {
2413
+ id: string;
2414
+ name: string;
2415
+ };
2416
+ multiplier: Decimal;
2417
+ bet: Decimal;
2418
+ amount: Decimal;
2419
+ dateTimeCreated: DateString;
2420
+ game: {
2421
+ provider: GameProvider$1;
2422
+ };
2423
+ }
2424
+ interface JackpotPayoutsQuery extends PaginatedQuery<'jackpotPayouts', JackpotPayout$1> {
2425
+ }
2426
+ type FCMDeviceType$1 = 'IOS' | 'ANDROID';
2427
+ type FirebaseCloudMessagingDeviceType$1 = 'IOS' | 'ANDROID' | 'WEB';
2428
+ interface RegisterFCMDeviceMutationVariables {
2429
+ input: {
2430
+ type: FCMDeviceType$1;
2431
+ token: string;
2432
+ };
2433
+ }
2434
+ interface RegisterFCMDeviceMutation {
2435
+ registerFCMDevice: boolean;
2436
+ }
2437
+ interface UnregisterFCMDeviceMutationVariables {
2438
+ input: {
2439
+ type: Array<FCMDeviceType$1>;
2440
+ token?: string;
2441
+ };
2442
+ }
2443
+ interface UnregisterFCMDeviceMutation {
2444
+ unregisterFCMDevice: boolean;
2445
+ }
2446
+ interface LinkFirebaseCloudMessagingDeviceMutationVariables {
2447
+ input: {
2448
+ token: string;
2449
+ type: FirebaseCloudMessagingDeviceType$1;
2450
+ };
2451
+ }
2452
+ interface LinkFirebaseCloudMessagingDeviceMutation {
2453
+ linkFirebaseCloudMessagingDevice: boolean;
2454
+ }
2455
+ interface UnlinkFirebaseCloudMessagingDeviceMutationVariables {
2456
+ input: {
2457
+ token?: string;
2458
+ };
2459
+ }
2460
+ interface UnlinkFirebaseCloudMessagingDeviceMutation {
2461
+ unlinkFirebaseCloudMessagingDevice: boolean;
2462
+ }
2463
+ interface MarkGameAsFavoriteMutation {
2464
+ markGameAsFavorite: boolean;
2465
+ }
2466
+ interface MarkGameAsFavoriteMutationVariables {
2467
+ input: {
2468
+ id: string;
2469
+ };
2470
+ }
2471
+ interface UnmarkGameAsFavoriteMutation {
2472
+ unmarkGameAsFavorite: boolean;
2473
+ }
2474
+ interface UnmarkGameAsFavoriteMutationVariables {
2475
+ input: {
2476
+ id: string;
2477
+ };
2478
+ }
2479
+ interface FavoriteGame {
2480
+ id: string;
2481
+ }
2482
+ interface FavoriteGamesQuery {
2483
+ favoriteGames: FavoriteGame[];
2484
+ }
2485
+ type TransactionPasswordNotSetError = 'TransactionPasswordNotSetError';
2486
+ type UPIReferenceNotAvailableError = 'UPIReferenceNotAvailableError';
2487
+ interface GoogleClientIdQuery {
2488
+ googleClientId?: string | null;
2489
+ }
2490
+ type TournamentStatus$1 = 'ACTIVE' | 'INACTIVE' | 'DELETED';
2491
+ type TournamentType$1 = 'MULTIPLIER' | 'WAGERING';
2492
+ type TournamentFrequency$1 = 'DAILY' | 'WEEKLY' | 'MONTHLY';
2493
+ type TournamentMode$1 = 'ONE_TIME' | 'RECURRING';
2494
+ interface TournamentsQueryVariables {
2495
+ after?: string;
2496
+ first?: number;
2497
+ filter?: {
2498
+ id?: ObjectIdFilterField;
2499
+ type?: EnumFilterField<TournamentType$1>;
2500
+ status?: EnumFilterField<TournamentStatus$1>;
2501
+ activationStartDateTime?: DateFilterField;
2502
+ activationEndDateTime?: DateFilterField;
2503
+ };
2504
+ currentAfter?: string;
2505
+ currentFirst?: number;
2506
+ previousAfter?: string;
2507
+ previousFirst?: number;
2508
+ }
2509
+ type TournamentsIdsQueryVariables = Pick<TournamentsQueryVariables, 'first' | 'after' | 'filter'>;
2510
+ interface TournamentLeaderboard$1 {
2511
+ id: string;
2512
+ username: string;
2513
+ multiplier: Decimal;
2514
+ dateTimeCreated: string;
2515
+ prize?: string;
2516
+ game?: {
2517
+ id: string;
2518
+ name: string;
2519
+ provider: GameProvider$1;
2520
+ external: string;
2521
+ type: GameType$1;
2522
+ };
2523
+ }
2524
+ interface TournamentPayout$1 {
2525
+ id: string;
2526
+ amount: Decimal;
2527
+ member: {
2528
+ id: string;
2529
+ name: string;
2530
+ };
2531
+ }
2532
+ interface Tournament$1 extends PaginatedQuery<'currentLeaderboard', TournamentLeaderboard$1> {
2533
+ }
2534
+ interface Tournament$1 extends PaginatedQuery<'previousLeaderboard', TournamentLeaderboard$1> {
2535
+ }
2536
+ interface Tournament$1 {
2537
+ id: string;
2538
+ type: TournamentType$1;
2539
+ name: string;
2540
+ winnersCount: Decimal;
2541
+ status: TournamentStatus$1;
2542
+ description: string;
2543
+ activationStartDateTime: DateString;
2544
+ activationEndDateTime: DateString;
2545
+ topPayouts: TournamentPayout$1[];
2546
+ enabledGameProviders: GameProvider$1[];
2547
+ frequency: TournamentFrequency$1;
2548
+ mode: TournamentMode$1;
2549
+ mobileBanner: {
2550
+ id: string;
2551
+ url: string;
2552
+ mimeType: string;
2553
+ };
2554
+ webBanner: {
2555
+ id: string;
2556
+ url: string;
2557
+ mimeType: string;
2558
+ };
2559
+ rewardSettings: Partial<Record<string, string>>;
2560
+ }
2561
+ interface TournamentsQuery extends PaginatedQuery<'tournaments', Tournament$1> {
2562
+ }
2563
+ interface TournamentsIdsQuery extends PaginatedQuery<'tournaments', {
2564
+ id: string;
2565
+ }> {
2566
+ }
2567
+ interface MemberAchievement$1 {
2568
+ member: {
2569
+ achievements: {
2570
+ type: string;
2571
+ count: number;
2572
+ }[];
2573
+ level: number;
2574
+ };
2575
+ }
2576
+ type MemberAchievementsQuery = MemberAchievement$1;
2577
+ interface RequireFirstDepositQuery {
2578
+ requireFirstDeposit: boolean;
2579
+ }
2580
+ type CabinetSiteMachineStatus$1 = 'ENABLED' | 'DISABLED';
2581
+ interface MemberCabinetSiteMachineQuery {
2582
+ memberCabinetSiteMachine: {
2583
+ id: string;
2584
+ name: string;
2585
+ fingerprint: string;
2586
+ balance: number;
2587
+ status: CabinetSiteMachineStatus$1;
2588
+ dateTimeCreated: string;
2589
+ } | null;
2590
+ }
2591
+ interface CabinetWithdrawal {
2592
+ id: string;
2593
+ account: string;
2594
+ type: WithdrawalType$1;
2595
+ reference?: string;
2596
+ amount: Decimal;
2597
+ fee: Decimal;
2598
+ netAmount: Decimal;
2599
+ status: WithdrawalStatus$1;
2600
+ dateTimeCreated?: DateString;
2601
+ dateTimeLastUpdated?: DateString;
2602
+ remarks?: DateString;
2603
+ accountName: string;
2604
+ accountNumber: string;
2605
+ error?: WithdrawalError$1;
2606
+ }
2607
+ interface CabinetWithdrawalQuery {
2608
+ node?: CabinetWithdrawal | null;
2609
+ }
2610
+ interface CabinetWithdrawalQueryVariables {
2611
+ id: string;
2612
+ }
2613
+ interface CabinetWithdrawalQueryVariables {
2614
+ id: string;
2615
+ }
2616
+ type MemberVerificationRequestStatus$1 = 'PENDING' | 'PENDING_MANUAL_APPROVAL' | 'APPROVED' | 'REJECTED';
2617
+ interface MemberVerificationRequest$1 {
2618
+ id: string;
2619
+ firstName?: string | null;
2620
+ lastName?: string | null;
2621
+ dateOfBirth?: DateString | null;
2622
+ idFrontImage?: {
2623
+ id: string;
2624
+ url: string;
2625
+ } | null;
2626
+ selfieImage?: {
2627
+ id: string;
2628
+ url: string;
2629
+ } | null;
2630
+ permanentAddress?: string | null;
2631
+ currentAddress?: string | null;
2632
+ sourceOfIncome?: string | null;
2633
+ natureOfWork?: string | null;
2634
+ nationality?: string | null;
2635
+ placeOfBirth?: string | null;
2636
+ status: MemberVerificationRequestStatus$1;
2637
+ basicDetailsSubmitted: boolean;
2638
+ basicDetailsVerified: boolean;
2639
+ imageDetailsSubmitted: boolean;
2640
+ pendingManualImageDetailsVerification: boolean;
2641
+ imageDetailsVerified: boolean;
2642
+ personalDetailsSubmitted: boolean;
2643
+ remarks?: string | null;
2644
+ dateTimeCreated: DateString;
2645
+ dateTimeLastUpdated: DateString;
2646
+ dateTimeApproved?: DateString | null;
2647
+ dateTimeRejected?: DateString | null;
2648
+ }
2649
+ interface MemberVerificationRequestQuery {
2650
+ memberVerificationRequest?: MemberVerificationRequest$1 | null;
2651
+ }
2652
+ interface MemberVerificationRequestByIdQueryVariables {
2653
+ id: string;
2654
+ }
2655
+ interface MemberVerificationRequestByIdQuery {
2656
+ node?: MemberVerificationRequest$1 | null;
2657
+ }
2658
+ interface SubmitMemberVerificationRequestBasicDetailsMutationVariables {
2659
+ input: {
2660
+ firstName: string;
2661
+ lastName: string;
2662
+ dateOfBirth: DateString;
2663
+ };
2664
+ }
2665
+ interface SubmitMemberVerificationRequestBasicDetailsMutation {
2666
+ submitMemberVerificationRequestBasicDetails: boolean;
2667
+ }
2668
+ interface SubmitMemberVerificationRequestImageDetailsMutationVariables {
2669
+ input: {
2670
+ idFrontImage: string;
2671
+ selfieImage?: string | null;
2672
+ };
2673
+ }
2674
+ interface SubmitMemberVerificationRequestImageDetailsMutation {
2675
+ submitMemberVerificationRequestImageDetails: boolean;
2676
+ }
2677
+ interface SubmitMemberVerificationRequestPersonalDetailsMutationVariables {
2678
+ input: {
2679
+ permanentAddress: string;
2680
+ currentAddress: string;
2681
+ sourceOfIncome: string;
2682
+ natureOfWork: string;
2683
+ nationality: string;
2684
+ placeOfBirth: string;
2685
+ };
2686
+ }
2687
+ interface SubmitMemberVerificationRequestPersonalDetailsMutation {
2688
+ submitMemberVerificationRequestPersonalDetails: boolean;
2689
+ }
2690
+ interface MemberVerificationRequestAutomaticApprovalEnabledQuery {
2691
+ memberVerificationRequestAutomaticApprovalEnabled: boolean;
2692
+ }
2693
+ type FreeBetDropStatus$1 = 'ACTIVE' | 'EXPIRED' | 'COMPLETED' | 'INACTIVE' | 'CANCELLED';
2694
+ interface CancelFreeBetDropMutation {
2695
+ cancelFreeBetDrop: boolean;
2696
+ }
2697
+ interface CancelFreeBetDropMutationVariables {
2698
+ input: {
2699
+ id: string;
2700
+ };
2701
+ }
2702
+ interface FreeBetDropsQueryVariables {
2703
+ first?: number;
2704
+ after?: string;
2705
+ filter?: {
2706
+ id?: ObjectIdFilterField;
2707
+ name?: StringFilterField;
2708
+ memberGroup?: ObjectIdFilterField;
2709
+ status?: EnumFilterField<FreeBetDropStatus$1>;
2710
+ games?: ObjectIdFilterField;
2711
+ promo?: ObjectIdFilterField;
2712
+ gameProvider?: EnumFilterField<GameProvider$1>;
2713
+ };
2714
+ }
2715
+ interface MemberFreeBetDropsQueryVariables {
2716
+ first?: number;
2717
+ after?: string;
2718
+ filter?: {
2719
+ id?: ObjectIdFilterField;
2720
+ name?: StringFilterField;
2721
+ memberGroup?: ObjectIdFilterField;
2722
+ status?: EnumFilterField<FreeBetDropStatus$1>;
2723
+ games?: ObjectIdFilterField;
2724
+ promo?: ObjectIdFilterField;
2725
+ gameProvider?: EnumFilterField<GameProvider$1>;
2726
+ serialCode?: StringFilterField;
2727
+ };
2728
+ }
2729
+ interface FreeBetDrop$1 {
2730
+ id: string;
2731
+ name: string;
2732
+ description: string;
2733
+ gameProvider: GameProvider$1;
2734
+ games?: {
2735
+ id: string;
2736
+ name: string;
2737
+ provider: GameProvider$1;
2738
+ }[];
2739
+ bets: number;
2740
+ betValue: Decimal;
2741
+ status: FreeBetDropStatus$1;
2742
+ activationDateTime: DateString;
2743
+ expirationDateTime: DateString;
2744
+ dateTimeCreated: DateString;
2745
+ dateTimeCompleted?: DateString;
2746
+ dateTimeLastUpdated: DateString;
2747
+ payout: Decimal;
2748
+ remainingBets: number;
2749
+ }
2750
+ interface MemberFreeBetDropBetRecord$1 {
2751
+ game: {
2752
+ id: string;
2753
+ name: string;
2754
+ };
2755
+ dateTimeCreated: DateString;
2756
+ payout: Decimal;
2757
+ freeBetDrop: {
2758
+ remainingBets: number;
2759
+ };
2760
+ }
2761
+ interface MemberFreeBetDrop$1 {
2762
+ id: string;
2763
+ name: string;
2764
+ description: string;
2765
+ games?: {
2766
+ id: string;
2767
+ name: string;
2768
+ provider: GameProvider$1;
2769
+ }[];
2770
+ bets: number;
2771
+ betValue: Decimal;
2772
+ status: FreeBetDropStatus$1;
2773
+ activationDateTime: DateString;
2774
+ expirationDateTime: DateString;
2775
+ dateTimeCreated: DateString;
2776
+ dateTimeCompleted?: DateString;
2777
+ dateTimeLastUpdated: DateString;
2778
+ payout: Decimal;
2779
+ remainingBets: number;
2780
+ gameProvider: GameProvider$1;
2781
+ serialCode: string;
2782
+ }
2783
+ type MemberFreeBetDropsQuery = {
2784
+ member: PaginatedQuery<'freeBetDrops', MemberFreeBetDrop$1>;
2785
+ };
2786
+ interface FreeBetDropsQuery extends PaginatedQuery<'freeBetDrops', FreeBetDrop$1> {
2787
+ }
2788
+
2789
+ type Environment = 'production' | 'development' | 'staging';
2790
+ type WithCursor<T> = T & {
2791
+ cursor: string;
2792
+ };
2793
+ type PaginatedQueryResult<K extends string, T> = Record<K, Array<WithCursor<T>>> & ({
2794
+ totalCount: number;
2795
+ hasNextPage: false;
2796
+ endCursor?: never;
2797
+ } | {
2798
+ totalCount: number;
2799
+ hasNextPage: true;
2800
+ endCursor: string;
2801
+ });
2802
+ type UnionAlias<T extends string, K extends T = T> = Extract<T, K>;
2803
+ type LoginChannel = UnionAlias<LoginChannel$1>;
2804
+ type SecretQuestion = UnionAlias<SecretQuestion$1>;
2805
+ interface SecurityQuestionAuthenticator {
2806
+ type: 'SECURITY_QUESTION';
2807
+ token: string;
2808
+ secretQuestion: SecretQuestion;
2809
+ channel?: LoginChannel;
2810
+ }
2811
+ type Authenticator = SecurityQuestionAuthenticator;
2812
+ interface NameAndPasswordSignInInput {
2813
+ type: 'NAME_AND_PASSWORD';
2814
+ name: string;
2815
+ password: string;
2816
+ reCAPTCHAResponse?: string;
2817
+ testPass?: string;
2818
+ channel?: LoginChannel;
2819
+ }
2820
+ /**
2821
+ * @deprecated use `type: "SOCIAL"`
2822
+ */
2823
+ interface TokenSignInInput {
2824
+ type: 'TOKEN';
2825
+ token: string;
2826
+ channel?: LoginChannel;
2827
+ }
2828
+ interface SocialsSignInInput {
2829
+ type: 'SOCIALS';
2830
+ token: string;
2831
+ channel?: LoginChannel;
2832
+ }
2833
+ interface CabinetSignInInput {
2834
+ type: 'CABINET';
2835
+ token: string;
2836
+ channel?: LoginChannel;
2837
+ }
2838
+ interface MobileNumberSignInInput {
2839
+ type: 'MOBILE_NUMBER';
2840
+ mobileNumber: string;
2841
+ verificationCode: string;
2842
+ reCAPTCHAResponse?: string;
2843
+ testPass?: string;
2844
+ channel?: LoginChannel;
2845
+ }
2846
+ interface MayaSignInInput {
2847
+ type: 'MAYA';
2848
+ sessionId: string;
2849
+ channel?: LoginChannel;
2850
+ }
2851
+ interface SingleUseTokenSignInInput {
2852
+ type: 'SINGLE_USE_TOKEN';
2853
+ token: string;
2854
+ channel?: LoginChannel;
2855
+ }
2856
+ type MayaSignInReturn = OperationResult<SignInError>;
2857
+ type MobileNumberSignInReturn = OperationResult<SignInError>;
2858
+ /** @deprecated use `SocialsSignInReturn` */
2859
+ type TokenSignInReturn = OperationResult<SignInError>;
2860
+ type SocialsSignInReturn = OperationResult<SignInError>;
2861
+ type CabinetSignInReturn = OperationResult<SignInError>;
2862
+ type SingleUseTokenSignInReturn = OperationResult<SignInError>;
2863
+ type NameAndPasswordSignInReturn = OperationResult<SignInError, {
2864
+ '2FAEnabled': true;
2865
+ authenticator: Authenticator;
2866
+ } | {
2867
+ '2FAEnabled': false;
2868
+ authenticator?: never;
2869
+ }>;
2870
+ type SignInInput = NameAndPasswordSignInInput | MobileNumberSignInInput | MayaSignInInput | TokenSignInInput | SocialsSignInInput | CabinetSignInInput | SingleUseTokenSignInInput;
2871
+ type SignInError = UnionAlias<CreateSessionError>;
2872
+ type SignInReturn = NameAndPasswordSignInReturn | MobileNumberSignInReturn | MayaSignInReturn | TokenSignInReturn | SocialsSignInReturn | CabinetSignInReturn | SingleUseTokenSignInReturn;
2873
+ type RefreshSessionError = UnionAlias<RefreshSessionError$1>;
2874
+ interface SecurityQuestionAuthenticateInput extends SecurityQuestionAuthenticateInput$1 {
2875
+ }
2876
+ type AuthenticateInput = SecurityQuestionAuthenticateInput;
2877
+ type AuthenticateError = UnionAlias<AuthenticateError$1>;
2878
+ type AuthenticateReturn = OperationResult<AuthenticateError>;
2879
+ interface Session {
2880
+ id: string;
2881
+ maya: boolean;
2882
+ cabinet: boolean;
2883
+ accessToken: string;
2884
+ refreshToken: string;
2885
+ dateTimeCreated: Date;
2886
+ }
2887
+ type SessionError = UnionAlias<RefreshSessionError>;
2888
+ type SessionReturn = OperationResult<SessionError, Session | null>;
2889
+ interface WatchSessionInput {
2890
+ interval?: number;
2891
+ onInvalid: () => void | Promise<void>;
2892
+ }
2893
+ type ValidateMayaSessionReturn = OperationResult;
2894
+ interface CreateSingleUseTokenInput {
2895
+ ttl?: string | number;
2896
+ }
2897
+ type CreateSingleUseTokenError = UnionAlias<CreateSingleUseTokenError$1>;
2898
+ type CreateSingleUseTokenReturn = OperationResult<CreateSingleUseTokenError, string>;
2899
+ type File = {
2900
+ id: string;
2901
+ url?: never;
2902
+ status: 'UPLOADING' | 'FAILED';
2903
+ } | {
2904
+ id: string;
2905
+ url: string;
2906
+ status: 'READY';
2907
+ } | {
2908
+ id: string;
2909
+ url?: string;
2910
+ status: 'DELETED';
2911
+ };
2912
+ type FileReturn = OperationResult<never, File | null>;
2913
+ interface UploadImageFileInput {
2914
+ id?: string;
2915
+ file: globalThis.File;
2916
+ }
2917
+ type UploadImageFileError = UnionAlias<UploadPrivateImageFileError>;
2918
+ type UploadImageFileReturn = OperationResult<UploadImageFileError, {
2919
+ id: string;
2920
+ }>;
2921
+ type AccountStatus = UnionAlias<MemberAccountStatus>;
2922
+ type AccountVerificationStatus = MemberAccountVerificationStatus;
2923
+ interface Agent {
2924
+ code: string;
2925
+ }
2926
+ interface GigRewardsQuestDetails {
2927
+ gigUserId: string;
2928
+ }
2929
+ interface Account {
2930
+ id: string;
2931
+ name: string;
2932
+ status: AccountStatus;
2933
+ realName?: string;
2934
+ nickName?: string;
2935
+ dateOfBirth?: Date;
2936
+ validId?: string;
2937
+ emailAddress?: string;
2938
+ mobileNumber?: string;
2939
+ verified: boolean;
2940
+ verificationStatus: AccountVerificationStatus;
2941
+ mobileNumberVerified: boolean;
2942
+ mobileNumberVerificationRequired: boolean;
2943
+ transactionPassword: boolean;
2944
+ secretAnswerSubmitted: boolean;
2945
+ dateTimeCreated: Date;
2946
+ dateTimeLastUpdated: Date;
2947
+ currentMonthlyAchievementPoints?: number;
2948
+ achievementPointsLevelUpProgressPercentage?: number;
2949
+ currentUniqueGamesCount?: number;
2950
+ currentNewGamesCount?: number;
2951
+ currentAchievements?: Array<AchievementType>;
2952
+ currentBetsCount?: number;
2953
+ currentActiveDaysCount?: number;
2954
+ dateTimeLastLeveledUp?: Date;
2955
+ currentMonthlyTurnover?: number;
2956
+ turnoverLevelUpProgressPercentage?: number;
2957
+ googleId?: string;
2958
+ domain?: string | null;
2959
+ branchCode?: string;
2960
+ agent?: Agent | null;
2961
+ level: number;
2962
+ partition?: number | null;
2963
+ dateTimeLastActive?: Date;
2964
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
2965
+ bonusBlocked: boolean;
2966
+ dailyBetLimit?: number;
2967
+ monthlyBetLimit?: number;
2968
+ dailyDepositLimit?: number;
2969
+ monthlyDepositLimit?: number;
2970
+ newDailyBetLimit?: number;
2971
+ newMonthlyBetLimit?: number;
2972
+ newDailyDepositLimit?: number;
2973
+ newMonthlyDepositLimit?: number;
2974
+ }
2975
+ type AccountReturn = OperationResult<never, Account>;
2976
+ type VerificationDetailsStatus = UnionAlias<MemberVerificationStatus>;
2977
+ interface VerificationDetails {
2978
+ id: string;
2979
+ status: VerificationDetailsStatus;
2980
+ address: string;
2981
+ permanentAddress: string | null;
2982
+ sourceOfIncome: string;
2983
+ natureOfWork: string | null;
2984
+ nationality: string;
2985
+ placeOfBirth: string;
2986
+ idFrontImage: File | null;
2987
+ selfieImage: File | null;
2988
+ }
2989
+ type VerificationDetailsReturn = OperationResult<never, VerificationDetails | null>;
2990
+ interface ProfileCompletion {
2991
+ completionPercentage: number;
2992
+ personalInformation: boolean;
2993
+ accountVerification: boolean;
2994
+ mobileNumberVerification: boolean;
2995
+ transactionPassword: boolean;
2996
+ accountPassword: boolean;
2997
+ }
2998
+ type ProfileCompletionReturn = OperationResult<never, ProfileCompletion>;
2999
+ interface CreateAccountInput {
3000
+ id?: string;
3001
+ name: string;
3002
+ password: string;
3003
+ mobileNumber: string;
3004
+ dateOfBirth: Date | string;
3005
+ domain?: string;
3006
+ btag?: string;
3007
+ referralCode?: string;
3008
+ verificationCode?: string;
3009
+ reCAPTCHAResponse?: string;
3010
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3011
+ }
3012
+ interface NameAndPasswordCreateAccountInput {
3013
+ type: 'NAME_AND_PASSWORD';
3014
+ id?: string;
3015
+ name: string;
3016
+ password: string;
3017
+ mobileNumber?: string | undefined;
3018
+ btag?: string;
3019
+ domain?: string;
3020
+ reCAPTCHAResponse?: string;
3021
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3022
+ }
3023
+ interface MobileNumberCreateAccountInput {
3024
+ type: 'MOBILE_NUMBER';
3025
+ id?: string;
3026
+ mobileNumber: string;
3027
+ realName?: string;
3028
+ dateOfBirth?: string;
3029
+ branchCode?: string;
3030
+ agentCode?: string;
3031
+ btag?: string;
3032
+ domain?: string;
3033
+ referralCode?: string;
3034
+ verificationCode?: string;
3035
+ reCAPTCHAResponse?: string;
3036
+ testPass?: string;
3037
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3038
+ }
3039
+ interface MobileNumberInrCreateAccountInput {
3040
+ type: 'MOBILE_NUMBER_INR';
3041
+ id?: string;
3042
+ mobileNumber: string;
3043
+ password: string;
3044
+ realName: string;
3045
+ mobileVerificationCode: string;
3046
+ btag?: string;
3047
+ domain?: string;
3048
+ referralCode?: string;
3049
+ verificationCode?: string;
3050
+ reCAPTCHAResponse?: string;
3051
+ testPass?: boolean;
3052
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3053
+ }
3054
+ interface NameCreateAccountInput {
3055
+ type: 'NAME';
3056
+ id?: string;
3057
+ name: string;
3058
+ password: string;
3059
+ reCAPTCHAResponse?: string;
3060
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3061
+ }
3062
+ interface MobileNumberCreateAccountInput__next {
3063
+ type: 'MOBILE_NUMBER[NEXT]';
3064
+ id?: string;
3065
+ mobileNumber: string;
3066
+ mobileNumberVerificationCode: string;
3067
+ emailAddress?: string;
3068
+ branchCode?: string;
3069
+ agentCode?: string;
3070
+ reCAPTCHAResponse?: string;
3071
+ testPass?: boolean;
3072
+ fingerprint?: string;
3073
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3074
+ referralCode?: string;
3075
+ }
3076
+ type CreateAccountInput__Next = NameAndPasswordCreateAccountInput | MobileNumberCreateAccountInput | MobileNumberCreateAccountInput__next | MobileNumberInrCreateAccountInput | NameCreateAccountInput;
3077
+ type CreateAccountError = UnionAlias<RegisterMemberAccountError>;
3078
+ type CreateAccountReturn = OperationResult<CreateAccountError, {
3079
+ id: string;
3080
+ }>;
3081
+ interface RegisterMayaAccountInput {
3082
+ name: string;
3083
+ password: string;
3084
+ domain?: string;
3085
+ }
3086
+ type RegisterMayaAccountError = UnionAlias<RegisterMayaMemberAccountError>;
3087
+ type RegisterMayaAccountReturn = OperationResult<RegisterMayaAccountError>;
3088
+ interface RegisterAgentAccountInput {
3089
+ name: string;
3090
+ firstName: string;
3091
+ lastName: string;
3092
+ mobileNumber: string;
3093
+ emailAddress: string;
3094
+ customProperties?: {
3095
+ key: string;
3096
+ value: string;
3097
+ }[];
3098
+ }
3099
+ type RegisterAgentAccountError = UnionAlias<RegisterAgentAccountError$1>;
3100
+ type RegisterAgentAccountReturn = OperationResult<RegisterAgentAccountError>;
3101
+ interface UpdateAccountInput {
3102
+ name?: string;
3103
+ password?: string;
3104
+ emailAddress?: string;
3105
+ mobileNumber?: string;
3106
+ realName?: string;
3107
+ nickName?: string;
3108
+ validId?: string;
3109
+ transactionPassword?: string;
3110
+ secretQuestion?: SecretQuestion;
3111
+ secretAnswer?: string;
3112
+ dateOfBirth?: Date | string;
3113
+ branchCode?: string;
3114
+ gigRewardsQuestDetails?: GigRewardsQuestDetails | null;
3115
+ }
3116
+ type UpdateAccountError = UnionAlias<UpdateMemberAccountError>;
3117
+ type UpdateAccountReturn = OperationResult<UpdateAccountError>;
3118
+ type DeleteAccountReturn = OperationResult;
3119
+ interface UpdateDailyBetLimitInput {
3120
+ dailyBetLimit: number;
3121
+ }
3122
+ interface UpdateMonthlyBetLimitInput {
3123
+ monthlyBetLimit: number;
3124
+ }
3125
+ interface UpdateDailyDepositLimitInput {
3126
+ dailyDepositLimit: number;
3127
+ }
3128
+ interface UpdateMonthlyDepositLimitInput {
3129
+ monthlyDepositLimit: number;
3130
+ }
3131
+ type UpdateAccountLimitReturn = OperationResult;
3132
+ interface ResetPasswordInput {
3133
+ mobileNumber: string;
3134
+ newPassword: string;
3135
+ verificationCode: string;
3136
+ }
3137
+ type ResetPasswordError = UnionAlias<ResetPasswordError$1>;
3138
+ type ResetPasswordReturn = OperationResult<ResetPasswordError>;
3139
+ interface SubmitVerificationDetailsInput {
3140
+ id?: string;
3141
+ idFrontImage: string;
3142
+ selfieImage: string;
3143
+ address: string;
3144
+ permanentAddress: string;
3145
+ sourceOfIncome: string;
3146
+ natureOfWork: string;
3147
+ nationality: string;
3148
+ placeOfBirth: string;
3149
+ }
3150
+ interface SubmitVerificationDetailsInputNext {
3151
+ id?: string;
3152
+ idFrontImage?: string;
3153
+ selfieImage?: string;
3154
+ address?: string;
3155
+ permanentAddress?: string;
3156
+ sourceOfIncome?: string;
3157
+ natureOfWork?: string;
3158
+ nationality?: string;
3159
+ placeOfBirth?: string;
3160
+ }
3161
+ type SubmitVerificationError = UnionAlias<CreateMemberVerificationError>;
3162
+ type SubmitVerificationDetailsReturn = OperationResult<SubmitVerificationError, {
3163
+ id: string;
3164
+ }>;
3165
+ type SubmitMemberVerificationError = UnionAlias<SubmitMemberVerificationError$1>;
3166
+ type SubmitMemberVerificationReturn = OperationResult<SubmitMemberVerificationError, {
3167
+ id: string;
3168
+ }>;
3169
+ interface UpdateVerificationDetailsInput extends Partial<Omit<SubmitVerificationDetailsInput, 'id'>> {
3170
+ }
3171
+ type UpdateVerificationError = UnionAlias<UpdateMemberVerificationError>;
3172
+ type UpdateVerificationDetailsReturn = OperationResult<UpdateVerificationError>;
3173
+ /** @deprecated */
3174
+ type SendVerificationCodeError = UnionAlias<SendVerificationCodeError$1>;
3175
+ /** @deprecated */
3176
+ type SendVerificationCodeReturn = OperationResult<SendVerificationCodeError>;
3177
+ interface SendSmsVerificationCodeInput {
3178
+ type: 'SMS';
3179
+ mobileNumber: string;
3180
+ strict?: boolean;
3181
+ }
3182
+ interface SendEmailVerificationCodeInput {
3183
+ type: 'EMAIL';
3184
+ emailAddress: string;
3185
+ strict?: boolean;
3186
+ }
3187
+ type SendVerificationCodeInput__Next = SendSmsVerificationCodeInput | SendEmailVerificationCodeInput;
3188
+ type SendVerificationCodeError__Next = UnionAlias<SendVerificationCodeError__Next$1>;
3189
+ type SendVerificationCodeReturn__Next = OperationResult<SendVerificationCodeError__Next>;
3190
+ type VerifyMobileNumberError = UnionAlias<VerifyMobileNumberError$1>;
3191
+ type VerifyMobileNumberReturn = OperationResult<VerifyMobileNumberError>;
3192
+ type Currency = UnionAlias<Currency$1>;
3193
+ interface Wallet {
3194
+ id: string;
3195
+ balance: number;
3196
+ turnoverRequirement?: number | null;
3197
+ }
3198
+ type WalletReturn = OperationResult<never, Wallet | null>;
3199
+ interface MemberWalletAccount {
3200
+ id: string;
3201
+ dailyTotalBet: number;
3202
+ monthlyTotalBet: number;
3203
+ dailyTotalDeposit: number;
3204
+ monthlyTotalDeposit: number;
3205
+ }
3206
+ type MemberWalletAccountReturn = OperationResult<never, MemberWalletAccount | null>;
3207
+ interface PointsWallet {
3208
+ id: string;
3209
+ points: number;
3210
+ account: string;
3211
+ dateTimeCreated: Date;
3212
+ }
3213
+ type PointsWalletReturn = OperationResult<never, PointsWallet | null>;
3214
+ interface RedeemPointsInput {
3215
+ type: 'CASH';
3216
+ amount: number;
3217
+ }
3218
+ interface AchievementSettings {
3219
+ enabled: boolean;
3220
+ points: number;
3221
+ uniqueGamesCount: number;
3222
+ newGamesCount: number;
3223
+ betsCount: number;
3224
+ activeDaysCount: number;
3225
+ }
3226
+ interface AchievementSettingsResponse {
3227
+ diverseDebut: AchievementSettings;
3228
+ varietyVirtuoso: AchievementSettings;
3229
+ masterOfDiversity: AchievementSettings;
3230
+ curiousNewcomer: AchievementSettings;
3231
+ trailblazer: AchievementSettings;
3232
+ innovationIcon: AchievementSettings;
3233
+ rapidRoller: AchievementSettings;
3234
+ whirlwindWagerer: AchievementSettings;
3235
+ bettingBonanza: AchievementSettings;
3236
+ steadyStrategist: AchievementSettings;
3237
+ consistentContender: AchievementSettings;
3238
+ legendaryLoyalist: AchievementSettings;
3239
+ }
3240
+ type RedeemPointsError = UnionAlias<RedeemPointsToCashError>;
3241
+ type RedeemPointsReturn = OperationResult<RedeemPointsError>;
3242
+ type PointsWalletTransactionType = UnionAlias<PointsWalletTransactionType$1>;
3243
+ interface PointsWalletTransaction {
3244
+ id: string;
3245
+ type: PointsWalletTransactionType;
3246
+ amount: number;
3247
+ balance: number;
3248
+ dateTimeCreated: Date;
3249
+ }
3250
+ interface PointsWalletTransactionsInput extends PointsWalletTransactionsQueryVariables {
3251
+ }
3252
+ interface AchievementPointsHistoryRecordInput extends AchievementPointsHistoryRecordQueryVariables {
3253
+ }
3254
+ type PointsWalletTransactionsReturn = OperationResult<never, PaginatedQueryResult<'pointsWalletTransactions', PointsWalletTransaction>>;
3255
+ type AchievementPointsHistoryRecordReturn = OperationResult<never, PaginatedQueryResult<'achievementPointsHistoryRecords', AchievementPointsHistoryRecord>>;
3256
+ type MemberAchievementReturn = OperationResult<never, MemberAchievement | null>;
3257
+ interface MemberAchievement {
3258
+ member: {
3259
+ achievements: {
3260
+ type: string;
3261
+ count: number;
3262
+ }[];
3263
+ level: number;
3264
+ };
3265
+ }
3266
+ type RebateStatus = UnionAlias<RebateStatus$1>;
3267
+ type RebateCursor = UnionAlias<RebateCursor$1>;
3268
+ type RebateType = UnionAlias<RebateType$1>;
3269
+ interface RebateSettingsPerMemberLevel {
3270
+ level: number;
3271
+ percentage: number;
3272
+ }
3273
+ interface RebateProgram {
3274
+ id: string;
3275
+ banner?: {
3276
+ id: string;
3277
+ url?: string;
3278
+ };
3279
+ description: string;
3280
+ name: string;
3281
+ rebatePercentage?: number;
3282
+ rebateSettingsPerMemberLevel?: RebateSettingsPerMemberLevel[];
3283
+ type: RebateType;
3284
+ dateTimeCreated?: Date;
3285
+ }
3286
+ interface Rebate {
3287
+ id: string;
3288
+ rebateProgram: RebateProgram;
3289
+ amount: number;
3290
+ percentage?: number;
3291
+ status: RebateStatus;
3292
+ expirationDateTime?: Date;
3293
+ dateTimeClaimed?: Date;
3294
+ dateTimeExpired?: Date;
3295
+ startDateTime?: Date;
3296
+ endDateTime?: Date;
3297
+ dateTimeCreated?: Date;
3298
+ }
3299
+ interface MemberRebatesInput extends MemberRebatesQueryVariables {
3300
+ }
3301
+ type MemberRebatesReturn = OperationResult<never, PaginatedQueryResult<'rebates', Rebate>>;
3302
+ interface MemberRebateContributionPerGameCategory {
3303
+ gameProvider: GameProvider$1;
3304
+ gameType: GameType$1;
3305
+ percentage: number;
3306
+ loss?: number;
3307
+ turnover?: number;
3308
+ rebate: number;
3309
+ }
3310
+ interface MemberRebateContributionPerGame {
3311
+ game: {
3312
+ id: string;
3313
+ name: string;
3314
+ };
3315
+ percentage: number;
3316
+ loss?: number;
3317
+ turnover?: number;
3318
+ rebate: number;
3319
+ }
3320
+ interface MemberRebateContribution {
3321
+ id: string;
3322
+ rebatesPerGameCategory: MemberRebateContributionPerGameCategory[];
3323
+ rebatesPerGame: MemberRebateContributionPerGame[];
3324
+ }
3325
+ interface MemberRebateContributionInput extends MemberRebateContributionQueryVariables {
3326
+ }
3327
+ type MemberRebateContributionReturn = OperationResult<never, PaginatedQueryResult<'rebates', MemberRebateContribution>>;
3328
+ type ClaimRebateError = UnionAlias<ClaimRebateError$1>;
3329
+ type ClaimRebateReturn = OperationResult<ClaimRebateError>;
3330
+ type GameTag = UnionAlias<GameTag$1>;
3331
+ type GameType = UnionAlias<GameType$1>;
3332
+ type GameProvider = UnionAlias<GameProvider$1>;
3333
+ interface Game {
3334
+ id: string;
3335
+ name: string;
3336
+ type: GameType;
3337
+ tags: GameTag[];
3338
+ images: string[];
3339
+ provider: GameProvider;
3340
+ reference: string;
3341
+ favorite: boolean;
3342
+ }
3343
+ interface WalletGame {
3344
+ id: string;
3345
+ name: string;
3346
+ type: GameType;
3347
+ provider: GameProvider;
3348
+ favorite: boolean;
3349
+ }
3350
+ interface GamesInput extends GamesQueryVariables {
3351
+ }
3352
+ interface WalletGameInput extends WalletGamesQueryVariables {
3353
+ }
3354
+ interface GamesInput__Next extends GamesQueryVariables__Next {
3355
+ }
3356
+ type GamesReturn = OperationResult<never, PaginatedQueryResult<'games', Game>>;
3357
+ type WalletGamesReturn = OperationResult<never, PaginatedQueryResult<'games', WalletGame>>;
3358
+ type GameReturn = OperationResult<never, Game | null>;
3359
+ interface RecommendedGamesInput {
3360
+ first?: number;
3361
+ after?: string;
3362
+ }
3363
+ type RecommendedGamesReturn = OperationResult<never, PaginatedQueryResult<'games', Game>>;
3364
+ type GameSessionStatus = UnionAlias<GameSessionStatus$1>;
3365
+ interface GameSessionLaunchOptions extends GameSessionLaunchOptions$1 {
3366
+ }
3367
+ type GameSession = {
3368
+ id: string;
3369
+ status: 'READY' | 'ENDED';
3370
+ launchOptions?: GameSessionLaunchOptions | null;
3371
+ launchUrl: string;
3372
+ dateTimeCreated: Date;
3373
+ dateTimeLastUpdated: Date;
3374
+ } | {
3375
+ id: string;
3376
+ status: 'PENDING' | 'STARTING' | 'CANCELLED';
3377
+ launchUrl?: never;
3378
+ launchOptions?: never;
3379
+ dateTimeCreated: Date;
3380
+ dateTimeLastUpdated: Date;
3381
+ };
3382
+ type GameSessionReturn = OperationResult<never, GameSession | null>;
3383
+ interface CreateGameSessionByReferenceInput {
3384
+ id?: string;
3385
+ game?: never;
3386
+ provider: GameProvider;
3387
+ reference: string;
3388
+ homepageUrl?: string;
3389
+ }
3390
+ interface CreateGameSessionByIdInput {
3391
+ id?: string;
3392
+ game: `SPORTS:${Extract<GameProvider, 'BTI' | 'SABA' | 'DIGITAIN'>}` | (string & {});
3393
+ provider?: never;
3394
+ reference?: never;
3395
+ homepageUrl?: string;
3396
+ }
3397
+ type CreateGameSessionInput = CreateGameSessionByReferenceInput | CreateGameSessionByIdInput;
3398
+ type CreateGameSessionError = UnionAlias<CreateGameSessionError$1>;
3399
+ type CreateGameSessionReturn = OperationResult<CreateGameSessionError, {
3400
+ id: string;
3401
+ }>;
3402
+ type EndGameSessionReturn = OperationResult;
3403
+ type MarkGameAsFavoriteReturn = OperationResult;
3404
+ interface MarkGameAsFavoriteInput {
3405
+ id: string;
3406
+ }
3407
+ type UnmarkGameAsFavoriteReturn = OperationResult;
3408
+ interface UnmarkGameAsFavoriteInput {
3409
+ id: string;
3410
+ }
3411
+ type FavoriteGamesReturn = OperationResult<never, Game[]>;
3412
+ type AnnouncementType = UnionAlias<AnnouncementType$1>;
3413
+ type AnnouncementStatus = UnionAlias<AnnouncementStatus$1>;
3414
+ interface Announcement {
3415
+ id: string;
3416
+ type: AnnouncementType;
3417
+ title: string;
3418
+ status: AnnouncementStatus;
3419
+ /** @format html */
3420
+ message: string;
3421
+ activationStartDateTime: Date;
3422
+ activationEndDateTime: Date;
3423
+ dateTimeCreated: Date;
3424
+ dateTimeLastUpdated: Date;
3425
+ }
3426
+ interface AnnouncementsFilterInput extends Omit<AnnouncementsQueryVariables['filter'], 'visibility'> {
3427
+ }
3428
+ interface AnnouncementsInput extends Omit<AnnouncementsQueryVariables, 'filter'> {
3429
+ filter?: AnnouncementsFilterInput;
3430
+ }
3431
+ type AnnouncementsReturn = OperationResult<never, PaginatedQueryResult<'announcements', Announcement>>;
3432
+ type BetRecordStatus = UnionAlias<BetRecordStatus$1>;
3433
+ interface BetRecord {
3434
+ id: string;
3435
+ game?: Game;
3436
+ status: BetRecordStatus;
3437
+ serialCode: string;
3438
+ vendorRoundId?: string;
3439
+ bet: number;
3440
+ payout: number;
3441
+ validBet: number;
3442
+ odds?: string;
3443
+ jackpotContribution: number;
3444
+ jackpotPayout: number;
3445
+ winloss?: number;
3446
+ dateTimeSettled?: Date;
3447
+ dateTimeCreated: Date;
3448
+ dateTimeLastUpdated: Date;
3449
+ betContent?: string;
3450
+ contestName?: string;
3451
+ externalCategory?: string;
3452
+ freeBetDrop?: FreeBetDrop;
3453
+ freeBetPayout?: number;
3454
+ metadata: {
3455
+ /**
3456
+ * @deprecated use `BetRecord.odds`
3457
+ */
3458
+ odds?: string;
3459
+ };
3460
+ }
3461
+ interface BetRecordsFilterInput {
3462
+ status?: NonNullable<BetRecordsQueryVariables['filter']>['status'];
3463
+ serialCode?: NonNullable<BetRecordsQueryVariables['filter']>['serialCode'];
3464
+ gameType?: NonNullable<BetRecordsQueryVariables['filter']>['game__type'];
3465
+ gameProvider?: NonNullable<BetRecordsQueryVariables['filter']>['game__provider'];
3466
+ vendorRoundId?: NonNullable<BetRecordsQueryVariables['filter']>['vendorRoundId'];
3467
+ dateTimeCreated?: NonNullable<BetRecordsQueryVariables['filter']>['dateTimeCreated'];
3468
+ freeBetDrop?: NonNullable<BetRecordsQueryVariables['filter']>['freeBetDrop'];
3469
+ }
3470
+ interface BetRecordsInput extends Omit<BetRecordsQueryVariables, 'filter'> {
3471
+ filter?: BetRecordsFilterInput;
3472
+ }
3473
+ type BetRecordsReturn = OperationResult<never, PaginatedQueryResult<'betRecords', BetRecord>>;
3474
+ interface LatestBetRecord {
3475
+ id: string;
3476
+ member: {
3477
+ name: string;
3478
+ };
3479
+ game?: Game;
3480
+ bet: number;
3481
+ payout: number;
3482
+ validBet: number;
3483
+ dateTimeSettled: Date;
3484
+ dateTimeCreated: Date;
3485
+ }
3486
+ type LatestBetRecordsReturn = OperationResult<never, LatestBetRecord[]>;
3487
+ interface FreeBetDropsInput extends FreeBetDropsQueryVariables {
3488
+ }
3489
+ interface MemberFreeBetDropsInput extends MemberFreeBetDropsQueryVariables {
3490
+ }
3491
+ interface CancelFreeBetDropInput extends CancelFreeBetDropMutationVariables {
3492
+ }
3493
+ type FreeBetDropStatus = UnionAlias<FreeBetDropStatus$1>;
3494
+ interface FreeBetDrop {
3495
+ id: string;
3496
+ name: string;
3497
+ description: string;
3498
+ games?: {
3499
+ id: string;
3500
+ name: string;
3501
+ provider: GameProvider;
3502
+ }[];
3503
+ gameProvider: GameProvider;
3504
+ remainingBets: number;
3505
+ bets: number;
3506
+ betValue: string;
3507
+ status: FreeBetDropStatus;
3508
+ activationDateTime: Date;
3509
+ expirationDateTime: Date;
3510
+ dateTimeCreated: Date;
3511
+ dateTimeCompleted?: Date;
3512
+ dateTimeLastUpdated: Date;
3513
+ payout: string;
3514
+ }
3515
+ interface MemberFreeBetDropBetRecord {
3516
+ game: {
3517
+ id: string;
3518
+ name: string;
3519
+ };
3520
+ dateTimeCreated: string;
3521
+ payout: string;
3522
+ freeBetDrop: {
3523
+ remainingBets: number;
3524
+ };
3525
+ }
3526
+ interface MemberFreeBetDrop {
3527
+ id: string;
3528
+ name: string;
3529
+ description: string;
3530
+ games?: {
3531
+ id: string;
3532
+ name: string;
3533
+ provider: GameProvider;
3534
+ }[];
3535
+ serialCode?: string;
3536
+ remainingBets: number;
3537
+ bets: number;
3538
+ betValue: string;
3539
+ status: FreeBetDropStatus;
3540
+ activationDateTime: Date;
3541
+ expirationDateTime: Date;
3542
+ dateTimeCreated: Date;
3543
+ dateTimeCompleted?: Date;
3544
+ dateTimeLastUpdated: Date;
3545
+ payout: string;
3546
+ gameProvider: GameProvider;
3547
+ }
3548
+ type MemberFreeBetDropsReturn = OperationResult<never, PaginatedQueryResult<'freeBetDrops', MemberFreeBetDrop>>;
3549
+ type FreeBetDropsReturn = OperationResult<never, PaginatedQueryResult<'freeBetDrops', FreeBetDrop>>;
3550
+ type CancelFreeBetDropReturn = OperationResult;
3551
+ type TransactionType = UnionAlias<TransactionType$1>;
3552
+ interface TransactionRecord {
3553
+ id: string;
3554
+ type: TransactionType;
3555
+ amount: number;
3556
+ content?: string;
3557
+ currentBalance: number;
3558
+ currentBonusBalance: number;
3559
+ referenceNumber: string;
3560
+ dateTimeCreated: Date;
3561
+ }
3562
+ interface TransactionRecordsInput extends TransactionRecordsQueryVariables {
3563
+ }
3564
+ interface PromoFilterInput extends AvailablePromosQueryVariables {
3565
+ }
3566
+ type TransactionRecordsReturn = OperationResult<never, PaginatedQueryResult<'transactionRecords', TransactionRecord>>;
3567
+ type DepositType = UnionAlias<DepositType$1>;
3568
+ type DepositStatus = UnionAlias<DepositStatus$1>;
3569
+ type KnownDepositError = UnionAlias<KnownDepositError$1>;
3570
+ interface DepositRecord {
3571
+ id: string;
3572
+ type: DepositType;
3573
+ status: DepositStatus;
3574
+ amount: number;
3575
+ netAmount: number;
3576
+ fee: number;
3577
+ reference?: string;
3578
+ deposit: string;
3579
+ depositNumber: string;
3580
+ dateTimeCreated: Date;
3581
+ dateTimeLastUpdated: Date;
3582
+ error?: KnownDepositError | (string & {});
3583
+ }
3584
+ interface DepositRecordsInput extends DepositRecordsQueryVariables {
3585
+ }
3586
+ type DepositRecordsReturn = OperationResult<never, PaginatedQueryResult<'depositRecords', DepositRecord>>;
3587
+ interface DepositBase<T extends DepositType> {
3588
+ id: string;
3589
+ type: T;
3590
+ status: DepositStatus;
3591
+ vca?: T extends 'ONLINE_BANK' ? string : never;
3592
+ qrCode?: T extends 'QR_PH' ? string : never;
3593
+ checkoutUrl?: T extends 'GCASH' | 'MAYA' | 'MAYA_APP' | 'AIO_GCASH' | 'AIO_PAY_MAYA' | 'AIO_GRAB_PAY' | 'AIO_PALAWAN_PAY' ? string : never;
3594
+ successRedirectionUrl?: T extends 'GCASH_WEBPAY' ? string : never;
3595
+ cancelRedirectionUrl?: T extends 'GCASH_WEBPAY' ? string : never;
3596
+ error?: KnownDepositError;
3597
+ }
3598
+ interface GCashDeposit extends DepositBase<'GCASH'> {
3599
+ }
3600
+ interface GcashWebpayDeposit extends DepositBase<'GCASH_WEBPAY'> {
3601
+ }
3602
+ interface AiOGCashDeposit extends DepositBase<'AIO_GCASH'> {
3603
+ }
3604
+ interface AiOPayMayaDeposit extends DepositBase<'AIO_PAY_MAYA'> {
3605
+ }
3606
+ interface AiOGrabPayDeposit extends DepositBase<'AIO_GRAB_PAY'> {
3607
+ }
3608
+ interface AiOPalawanPayDeposit extends DepositBase<'AIO_PALAWAN_PAY'> {
3609
+ }
3610
+ interface MayaDeposit extends DepositBase<'MAYA'> {
3611
+ }
3612
+ interface MayaAppDeposit extends DepositBase<'MAYA_APP'> {
3613
+ }
3614
+ interface BankDeposit extends DepositBase<'BANK'> {
3615
+ }
3616
+ interface ManualDeposit extends DepositBase<'MANUAL'> {
3617
+ }
3618
+ interface QRPHDeposit extends DepositBase<'QR_PH'> {
3619
+ }
3620
+ interface OnlineBankDeposit extends DepositBase<'ONLINE_BANK'> {
3621
+ }
3622
+ interface ManualBankDeposit extends DepositBase<'MANUAL_BANK'> {
3623
+ }
3624
+ interface ManualUPIDeposit extends DepositBase<'MANUAL_UPI'> {
3625
+ }
3626
+ type Deposit = GCashDeposit | MayaDeposit | MayaAppDeposit | BankDeposit | ManualDeposit | QRPHDeposit | OnlineBankDeposit | ManualBankDeposit | ManualUPIDeposit | GcashWebpayDeposit | AiOGCashDeposit | AiOPayMayaDeposit | AiOGrabPayDeposit | AiOPalawanPayDeposit;
3627
+ type DepositReturn = OperationResult<never, Deposit | null>;
3628
+ type DepositsCountReturn = OperationResult<never, number>;
3629
+ interface CreateDepositBaseInput {
3630
+ id?: string;
3631
+ amount: number;
3632
+ promo?: string;
3633
+ reCAPTCHAResponse?: string;
3634
+ }
3635
+ interface CreateMayaDepositInput extends CreateDepositBaseInput {
3636
+ type: 'MAYA';
3637
+ }
3638
+ interface CreateGCashDepositInput extends CreateDepositBaseInput {
3639
+ type: 'GCASH';
3640
+ }
3641
+ interface CreateAiOGCashDepositInput extends CreateDepositBaseInput {
3642
+ type: 'AIO_GCASH';
3643
+ redirectUrl: string;
3644
+ }
3645
+ interface CreateAiOPayMayaDepositInput extends CreateDepositBaseInput {
3646
+ type: 'AIO_PAY_MAYA';
3647
+ redirectUrl: string;
3648
+ }
3649
+ interface CreateAiOGrabPayDepositInput extends CreateDepositBaseInput {
3650
+ type: 'AIO_GRAB_PAY';
3651
+ redirectUrl: string;
3652
+ }
3653
+ interface CreateAiOPalawanPayDepositInput extends CreateDepositBaseInput {
3654
+ type: 'AIO_PALAWAN_PAY';
3655
+ redirectUrl: string;
3656
+ }
3657
+ interface CreateGCashWebpayDepositInput extends CreateDepositBaseInput {
3658
+ type: 'GCASH_WEBPAY';
3659
+ successRedirectionUrl?: string;
3660
+ cancelRedirectionUrl?: string;
3661
+ }
3662
+ interface CreateMayaAppDepositInput extends CreateDepositBaseInput {
3663
+ type: 'MAYA_APP';
3664
+ }
3665
+ interface CreateAIOQRPHDepositInput extends CreateDepositBaseInput {
3666
+ type: 'AIO_QRPH';
3667
+ }
3668
+ interface CreateAIOOnlineBankDepositInput extends CreateDepositBaseInput {
3669
+ type: 'AIO_ONLINE_BANK';
3670
+ }
3671
+ interface CreateManualUPIDepositInput extends CreateDepositBaseInput {
3672
+ type: 'MANUAL_UPI';
3673
+ reference: string;
3674
+ referenceImage: string;
3675
+ }
3676
+ interface CreateManualBankDepositInput extends CreateDepositBaseInput {
3677
+ type: 'MANUAL_BANK';
3678
+ referenceId: string;
3679
+ }
3680
+ interface CreateMayaWebpayDepositInput extends CreateDepositBaseInput {
3681
+ type: 'MAYA_WEBPAY';
3682
+ redirectUrl: string;
3683
+ }
3684
+ interface CreateTestDepositInput extends CreateDepositBaseInput {
3685
+ type: 'TEST';
3686
+ }
3687
+ type CreateDepositInput = CreateMayaDepositInput | CreateGCashDepositInput | CreateMayaAppDepositInput | CreateAIOQRPHDepositInput | CreateAIOOnlineBankDepositInput | CreateManualBankDepositInput | CreateManualUPIDepositInput | CreateAIOOnlineBankDepositInput | CreateAiOGCashDepositInput | CreateAiOPayMayaDepositInput | CreateAiOGrabPayDepositInput | CreateAiOPalawanPayDepositInput | CreateGCashWebpayDepositInput | CreateMayaWebpayDepositInput | CreateTestDepositInput;
3688
+ type CreateDepositError = UnionAlias<CreateDepositError$1>;
3689
+ type CreateDepositReturn = OperationResult<CreateDepositError, {
3690
+ id: string;
3691
+ }>;
3692
+ interface TouchDepositInput {
3693
+ type: 'GCASH' | 'QR_PH';
3694
+ id: string;
3695
+ }
3696
+ type TouchDepositReturn = OperationResult;
3697
+ type VoucherType = 'BUILTIN' | 'LAZADA';
3698
+ interface RedeemVoucherInput {
3699
+ type: VoucherType;
3700
+ code: string;
3701
+ }
3702
+ type RedeemVoucherReturn = OperationResult<'InvalidVoucherError' | 'VoucherAlreadyRedeemedError' | 'ExpiredVoucherError'>;
3703
+ type WithdrawalType = UnionAlias<WithdrawalType$1>;
3704
+ type WithdrawalStatus = UnionAlias<WithdrawalStatus$1>;
3705
+ type WithdrawalError = UnionAlias<CreateWithdrawalError$1>;
3706
+ interface WithdrawalRecordCommonProps {
3707
+ id: string;
3708
+ fee: number;
3709
+ amount: number;
3710
+ netAmount: number;
3711
+ status: WithdrawalStatus;
3712
+ reference?: string;
3713
+ withdrawalNumber: string;
3714
+ dateTimeConfirmed?: Date;
3715
+ dateTimeCreated: Date;
3716
+ dateTimeLastUpdated: Date;
3717
+ error?: WithdrawalError;
3718
+ serialCode: string;
3719
+ }
3720
+ interface ManualWithdrawalRecord extends WithdrawalRecordCommonProps {
3721
+ type: 'MANUAL';
3722
+ bank?: never;
3723
+ recipientMobileNumber?: never;
3724
+ }
3725
+ /**
3726
+ * - `AUBKPHMM` (ASIA UNITED BANK)
3727
+ * - `MBTCPHMM` (METROPOLITAN BANK AND TRUST CO)
3728
+ * - `BNORPHMM` (BDO UNIBANK, INC)
3729
+ * - `MKRUPHM1` (BANK OF MAKATI)
3730
+ */
3731
+ type Bank = UnionAlias<Bank$1>;
3732
+ interface BankWithdrawalRecord extends WithdrawalRecordCommonProps {
3733
+ type: 'BANK';
3734
+ bank: Bank;
3735
+ recipientMobileNumber?: never;
3736
+ }
3737
+ interface GCashWithdrawalRecord extends WithdrawalRecordCommonProps {
3738
+ type: 'GCASH';
3739
+ bank?: never;
3740
+ recipientMobileNumber: string;
3741
+ }
3742
+ interface MayaWithdrawalRecord extends WithdrawalRecordCommonProps {
3743
+ type: 'MAYA_APP';
3744
+ bank?: never;
3745
+ recipientMobileNumber?: never;
3746
+ reference?: string;
3747
+ amount: number;
3748
+ fee: number;
3749
+ netAmount: number;
3750
+ dateTimeConfirmed?: Date;
3751
+ dateTimeCreated: Date;
3752
+ dateTimeLastUpdated: Date;
3753
+ status: WithdrawalStatus;
3754
+ error?: WithdrawalError;
3755
+ serialCode: string;
3756
+ remarks?: string;
3757
+ }
3758
+ interface InstapayWithdrawalRecord extends WithdrawalRecordCommonProps {
3759
+ type: 'INSTAPAY';
3760
+ bank?: never;
3761
+ recipientMobileNumber?: never;
3762
+ accountName?: string;
3763
+ bankName?: string;
3764
+ }
3765
+ interface ManualBankWithdrawalRecord extends WithdrawalRecordCommonProps {
3766
+ type: 'MANUAL_BANK';
3767
+ bank?: never;
3768
+ recipientMobileNumber?: never;
3769
+ }
3770
+ interface ManualUPIWithdrawalRecord extends WithdrawalRecordCommonProps {
3771
+ type: 'MANUAL_UPI';
3772
+ bank?: never;
3773
+ recipientMobileNumber?: never;
3774
+ }
3775
+ interface CabinetWithdrawalRecord extends WithdrawalRecordCommonProps {
3776
+ type: 'CabinetWithdrawal';
3777
+ reference?: string;
3778
+ amount: number;
3779
+ status: WithdrawalStatus;
3780
+ accountName: string;
3781
+ }
3782
+ type WithdrawalRecord = ManualWithdrawalRecord | BankWithdrawalRecord | GCashWithdrawalRecord | MayaWithdrawalRecord | InstapayWithdrawalRecord | ManualBankWithdrawalRecord | ManualUPIWithdrawalRecord | CabinetWithdrawalRecord;
3783
+ interface WithdrawalRecordsInput extends WithdrawalRecordsQueryVariables {
3784
+ }
3785
+ type WithdrawalRecordsReturn = OperationResult<never, PaginatedQueryResult<'withdrawalRecords', WithdrawalRecord>>;
3786
+ type InstapayBankType = 'BDO' | 'OTHERS';
3787
+ interface InstapayBank extends InstapayBank$1 {
3788
+ }
3789
+ type InstapayBankListReturn = OperationResult<never, InstapayBank[]>;
3790
+ type RemainingDailyWithdrawalsCountReturn = OperationResult<never, number>;
3791
+ interface CreateBankWithdrawalInput {
3792
+ id?: string;
3793
+ type: 'BANK';
3794
+ amount: number;
3795
+ transactionPassword: string;
3796
+ reCAPTCHAResponse?: string;
3797
+ }
3798
+ interface CreateGCashWithdrawalInput {
3799
+ id?: string;
3800
+ type: 'GCASH';
3801
+ amount: number;
3802
+ transactionPassword: string;
3803
+ recipientMobileNumber: string;
3804
+ reCAPTCHAResponse?: string;
3805
+ }
3806
+ interface CreateGCashStandardCashInWithdrawalInput {
3807
+ id?: string;
3808
+ type: 'GCASH_STANDARD_CASHIN';
3809
+ amount: number;
3810
+ transactionPassword: string;
3811
+ recipientMobileNumber: string;
3812
+ reCAPTCHAResponse?: string;
3813
+ }
3814
+ interface CreateMayaWithdrawalInput {
3815
+ id?: string;
3816
+ type: 'MAYA';
3817
+ amount: number;
3818
+ transactionPassword: string;
3819
+ accountNumber: string;
3820
+ reCAPTCHAResponse?: string;
3821
+ }
3822
+ interface CreateMayaAppWithdrawalInput {
3823
+ id?: string;
3824
+ type: 'MAYA_APP';
3825
+ amount: number;
3826
+ transactionPassword: string;
3827
+ reCAPTCHAResponse?: string;
3828
+ }
3829
+ interface CreateAIOInstapayWithdrawalInput {
3830
+ id?: string;
3831
+ type: 'AIO_INSTAPAY';
3832
+ amount: number;
3833
+ bankCode: string;
3834
+ accountNumber: string;
3835
+ accountName: string;
3836
+ transactionPassword: string;
3837
+ reCAPTCHAResponse?: string;
3838
+ }
3839
+ interface CreateAIOInstapayWithdrawalInput_Next {
3840
+ id?: string;
3841
+ type: 'AIO_INSTAPAY_NEXT';
3842
+ amount: number;
3843
+ bankCode: string;
3844
+ accountNumber: string;
3845
+ accountName: string;
3846
+ transactionPassword: string;
3847
+ reCAPTCHAResponse?: string;
3848
+ }
3849
+ interface CreateManualUPIWithdrawalInput {
3850
+ id?: string;
3851
+ type: 'MANUAL_UPI';
3852
+ amount: number;
3853
+ upiId: string;
3854
+ reCAPTCHAResponse?: string;
3855
+ }
3856
+ interface CreateManualBankWithdrawalInput {
3857
+ id?: string;
3858
+ type: 'MANUAL_BANK';
3859
+ amount: number;
3860
+ bankIFSCCode: string;
3861
+ bankAccountNumber: string;
3862
+ bankAccountName: string;
3863
+ reCAPTCHAResponse?: string;
3864
+ }
3865
+ interface CreateCabinetWithdrawalInput {
3866
+ id?: string;
3867
+ type: 'CABINET';
3868
+ amount: number;
3869
+ }
3870
+ type CreateWithdrawalInput = CreateBankWithdrawalInput | CreateGCashWithdrawalInput | CreateGCashStandardCashInWithdrawalInput | CreateMayaWithdrawalInput | CreateMayaAppWithdrawalInput | CreateAIOInstapayWithdrawalInput | CreateManualUPIWithdrawalInput | CreateManualBankWithdrawalInput | CreateCabinetWithdrawalInput | CreateAIOInstapayWithdrawalInput_Next;
3871
+ type CreateWithdrawalError = UnionAlias<CreateWithdrawalError$1>;
3872
+ type CreateWithdrawalReturn = OperationResult<CreateWithdrawalError, {
3873
+ id: string;
3874
+ }>;
3875
+ interface GatewaySettings {
3876
+ minimumAmount?: number;
3877
+ maximumAmount?: number;
3878
+ webEnabled: boolean;
3879
+ mobileWebEnabled: boolean;
3880
+ androidEnabled: boolean;
3881
+ iosEnabled: boolean;
3882
+ bankAccountName?: string;
3883
+ bankAccountNumber?: string;
3884
+ bankIFSCCode?: string;
3885
+ upiId?: string;
3886
+ upiQRCode?: Extract<File, {
3887
+ status: 'READY';
3888
+ }> | null;
3889
+ }
3890
+ interface PaymentSettings {
3891
+ minimumFirstDepositAmount?: number;
3892
+ restrictWithdrawalsToVerifiedMembers: boolean;
3893
+ depositGateway: {
3894
+ bank: GatewaySettings;
3895
+ gcash: GatewaySettings;
3896
+ gcashWebpay: GatewaySettings;
3897
+ aioGcash: GatewaySettings;
3898
+ aioPayMaya: GatewaySettings;
3899
+ aioGrabPay: GatewaySettings;
3900
+ aioPalawanPay: GatewaySettings;
3901
+ maya: GatewaySettings;
3902
+ mayaApp: GatewaySettings;
3903
+ mayaWebpay: GatewaySettings;
3904
+ qrph: GatewaySettings;
3905
+ onlineBank: GatewaySettings;
3906
+ manualBank: GatewaySettings;
3907
+ manualUPI: GatewaySettings;
3908
+ };
3909
+ withdrawalGateway: {
3910
+ bank: GatewaySettings;
3911
+ gcash: GatewaySettings;
3912
+ gcashStandardCashIn: GatewaySettings;
3913
+ maya: GatewaySettings;
3914
+ mayaApp: GatewaySettings;
3915
+ instapay: GatewaySettings;
3916
+ manualBank: GatewaySettings;
3917
+ manualUPI: GatewaySettings;
3918
+ };
3919
+ }
3920
+ interface MemberLevelSetting {
3921
+ enabled: boolean;
3922
+ achievementPointsRequirement: number;
3923
+ turnoverRequirement: number;
3924
+ bonusTurnoverRequirement: number;
3925
+ name: string;
3926
+ bonusAmount: number;
3927
+ }
3928
+ interface MemberLevelSettings {
3929
+ memberLevelSettings__1: MemberLevelSetting;
3930
+ memberLevelSettings__2: MemberLevelSetting;
3931
+ memberLevelSettings__3: MemberLevelSetting;
3932
+ memberLevelSettings__4: MemberLevelSetting;
3933
+ memberLevelSettings__5: MemberLevelSetting;
3934
+ memberLevelSettings__6: MemberLevelSetting;
3935
+ memberLevelSettings__7: MemberLevelSetting;
3936
+ memberLevelSettings__8: MemberLevelSetting;
3937
+ memberLevelSettings__9: MemberLevelSetting;
3938
+ memberLevelSettings__10: MemberLevelSetting;
3939
+ memberLevelSettings__11: MemberLevelSetting;
3940
+ memberLevelSettings__12: MemberLevelSetting;
3941
+ memberLevelSettings__13: MemberLevelSetting;
3942
+ memberLevelSettings__14: MemberLevelSetting;
3943
+ memberLevelSettings__15: MemberLevelSetting;
3944
+ memberLevelSettings__16: MemberLevelSetting;
3945
+ memberLevelSettings__17: MemberLevelSetting;
3946
+ memberLevelSettings__18: MemberLevelSetting;
3947
+ memberLevelSettings__19: MemberLevelSetting;
3948
+ memberLevelSettings__20: MemberLevelSetting;
3949
+ }
3950
+ /** @deprecated */
3951
+ interface Platform {
3952
+ currency: Currency;
3953
+ timezone: string;
3954
+ paymentSettings: PaymentSettings;
3955
+ pointsClubSettings: PointsClubSettings;
3956
+ memberLevelSettings?: MemberLevelSettings;
3957
+ }
3958
+ /** @deprecated */
3959
+ type PlatformReturn = OperationResult<never, Platform>;
3960
+ /**
3961
+ * - `en-PH` - Philippines
3962
+ * - `en-IN` - India
3963
+ * - `en-MY` - Malaysia
3964
+ * - `en-ID` - Indonesia
3965
+ * - `en-US` - United States
3966
+ */
3967
+ type Locale = 'en-PH' | 'en-IN' | 'en-MY' | 'en-ID' | 'en-US';
3968
+ interface Platform__Next {
3969
+ currency: Currency;
3970
+ timezone: string;
3971
+ locale: Locale;
3972
+ }
3973
+ 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';
3974
+ type PlatformReturn__Next = OperationResult<never, Platform__Next>;
3975
+ type PaymentSettingsReturn = OperationResult<never, PaymentSettings>;
3976
+ type MemberLevelSettingsReturn = OperationResult<never, MemberLevelSettings>;
3977
+ interface GeneralMemberLevelSettings {
3978
+ enabled: boolean;
3979
+ }
3980
+ type GeneralMemberLevelSettingsReturn = OperationResult<never, GeneralMemberLevelSettings>;
3981
+ type AchievementSettingsReturn = OperationResult<never, AchievementSettingsResponse>;
3982
+ type PromoType = UnionAlias<PromoType$1>;
3983
+ type PromoStatus = UnionAlias<PromoStatus$1>;
3984
+ interface Promo {
3985
+ id: string;
3986
+ type: PromoType;
3987
+ name: string;
3988
+ banner: Extract<File, {
3989
+ status: 'READY';
3990
+ }> | null;
3991
+ status: PromoStatus;
3992
+ /** @format html */
3993
+ description: string;
3994
+ minimumBonusAmount?: number;
3995
+ maximumBonusAmount?: number;
3996
+ minimumDepositAmount?: number;
3997
+ depositBonusAmountPercentage?: number;
3998
+ turnoverRequirementContributionPercentagePerGameProvider?: JSON;
3999
+ maximumDepositAmount?: number;
4000
+ activationStartDateTime: Date;
4001
+ activationEndDateTime: Date;
4002
+ dateTimeCreated: Date;
4003
+ dateTimeLastUpdated: Date;
4004
+ }
4005
+ type TurnoverRequirementType = UnionAlias<TurnoverRequirementType$1>;
4006
+ interface SpotBonusPromo {
4007
+ id: string;
4008
+ name: string;
4009
+ type: PromoType;
4010
+ status: PromoStatus;
4011
+ daysToClear: number;
4012
+ zeroOutThreshold: number;
4013
+ turnoverRequirementMultiplier: number;
4014
+ turnoverRequirementType?: TurnoverRequirementType;
4015
+ minimumTicketOddFactorPerSportsGameProvider: Partial<Record<GameProvider, number>>;
4016
+ turnoverRequirementContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
4017
+ bonusAmount?: number;
4018
+ enabledGameProviders: GameProvider[];
4019
+ activationStartDateTime?: Date;
4020
+ activationEndDateTime?: Date;
4021
+ banner?: {
4022
+ id: string;
4023
+ url?: string;
4024
+ };
4025
+ description?: string;
4026
+ dateTimeCreated: Date;
4027
+ dateTimeLastUpdated: Date;
4028
+ dateTimeClosed?: Date;
4029
+ totalBonus: number;
4030
+ totalDeposit: number;
4031
+ totalBonusBalance: number;
4032
+ totalBet: number;
4033
+ totalBonusCashedOut: number;
4034
+ bonusesCount: number;
4035
+ closedBonusesCount: number;
4036
+ closedBonusesCountPercentage: number;
4037
+ activeBonusesCount: number;
4038
+ clearedBonusesCount: number;
4039
+ zeroedOutBonusesCount: number;
4040
+ cancelledBonusesCount: number;
4041
+ expiredBonusesCount: number;
4042
+ code: string;
4043
+ maximumBonusesCountLimit: number;
4044
+ }
4045
+ type PromosReturn = OperationResult<never, Promo[]>;
4046
+ type AvailablePromosReturn = OperationResult<never, Promo[]>;
4047
+ type ClaimSpotBonusReturn = OperationResult<ClaimSpotBonusError>;
4048
+ type PromoByCodeReturn = OperationResult<never, SpotBonusPromo>;
4049
+ type CashbackStatus = UnionAlias<CashbackStatus$1>;
4050
+ interface Cashback {
4051
+ id: string;
4052
+ name: string;
4053
+ banner: Extract<File, {
4054
+ status: 'READY';
4055
+ }> | null;
4056
+ status: CashbackStatus;
4057
+ /** @format html */
4058
+ description: string;
4059
+ minimumCashback: number;
4060
+ maximumMonthlyCashback?: number;
4061
+ activationStartDateTime: Date;
4062
+ activationEndDateTime: Date;
4063
+ turnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
4064
+ dateTimeCreated: Date;
4065
+ dateTimeLastUpdated: Date;
4066
+ }
4067
+ type CashbacksReturn = OperationResult<never, Cashback[]>;
4068
+ interface Bonus {
4069
+ id: string;
4070
+ promo: Promo;
4071
+ deposit?: Omit<DepositRecord, 'id' | 'deposit' | 'depositNumber'>;
4072
+ amount: number;
4073
+ balance: number;
4074
+ turnoverRequirement: number;
4075
+ currentTurnoverRequirementContribution: number;
4076
+ currentTurnoverRequirementContributionPercentage: number;
4077
+ turnoverRequirementContributionPercentagePerGameProvider: JSON;
4078
+ enabledGameProviders: GameProvider[];
4079
+ expiration: Date;
4080
+ dateTimeCreated: Date;
4081
+ dateTimeLastUpdated: Date;
4082
+ }
4083
+ type BonusReturn = OperationResult<never, Bonus | null>;
4084
+ type BonusesReturn = OperationResult<never, Bonus[]>;
4085
+ interface CashbackBonus {
4086
+ id: string;
4087
+ total: number;
4088
+ balance: number;
4089
+ cashback: Cashback;
4090
+ dateTimeCreated: Date;
4091
+ dateTimeLastUpdated: Date;
4092
+ }
4093
+ type CashbackBonusReturn = OperationResult<never, CashbackBonus[]>;
4094
+ type ClaimCashbackBonusError = UnionAlias<ClaimCashbackBonusError$1>;
4095
+ type ClaimCashbackBonusReturn = OperationResult<ClaimCashbackBonusError>;
4096
+ type ActivityRecordType = UnionAlias<ActivityRecordType$1>;
4097
+ interface ActivityRecord {
4098
+ id: string;
4099
+ type: ActivityRecordType;
4100
+ domain?: string;
4101
+ amount?: number;
4102
+ /** @format html */
4103
+ details: string;
4104
+ dateTimeCreated: Date;
4105
+ }
4106
+ interface ActivityRecordsInput extends ActivityRecordsQueryVariables {
4107
+ }
4108
+ type ActivityRecordsReturn = OperationResult<never, PaginatedQueryResult<'activityRecords', ActivityRecord>>;
4109
+ type FieldType = UnionAlias<FieldType$1>;
4110
+ interface TextField extends TextField$1 {
4111
+ }
4112
+ interface RichTextField extends RichTextField$1 {
4113
+ }
4114
+ interface ImageField extends ImageField$1 {
4115
+ }
4116
+ interface SelectField extends SelectField$1 {
4117
+ }
4118
+ interface MultiSelectField extends MultiSelectField$1 {
4119
+ }
4120
+ interface ToggleField extends ToggleField$1 {
4121
+ }
4122
+ interface CompoundField extends CompoundField$1 {
4123
+ }
4124
+ type Field = TextField | ImageField | SelectField | MultiSelectField | ToggleField | RichTextField | CompoundField;
4125
+ interface Site {
4126
+ id: string;
4127
+ name: string;
4128
+ logo?: string;
4129
+ fields: Field[];
4130
+ }
4131
+ type SiteReturn = OperationResult<never, Site>;
4132
+ interface UpdateReferralCodeInput {
4133
+ code: string;
4134
+ }
4135
+ type UpdateReferralCodeError = UnionAlias<UpdateReferralCodeError$1>;
4136
+ type UpdateReferralCodeReturn = OperationResult<UpdateReferralCodeError>;
4137
+ type ReferralCodeReturn = OperationResult<never, string | null>;
4138
+ interface Referral {
4139
+ id: string;
4140
+ upline: {
4141
+ id: string;
4142
+ name: string;
4143
+ realName: string;
4144
+ };
4145
+ downline: {
4146
+ id: string;
4147
+ name: string;
4148
+ realName: string;
4149
+ };
4150
+ level: number;
4151
+ turnover: number;
4152
+ commission: number;
4153
+ dateTimeCreated: Date;
4154
+ qualified: boolean;
4155
+ }
4156
+ interface ReferralsInput extends ReferralsQueryVariables {
4157
+ }
4158
+ type ReferralsReturn = OperationResult<never, PaginatedQueryResult<'referrals', Referral>>;
4159
+ interface UplinesByNameInput extends UplinesByNameQueryVariables {
4160
+ }
4161
+ type UplinesByNameReturn = OperationResult<never, Referral[]>;
4162
+ interface DownlinesByNameInput extends DownlinesByNameQueryVariables {
4163
+ }
4164
+ type DownlinesByNameReturn = OperationResult<never, Referral[]>;
4165
+ interface ReferralCommission {
4166
+ id: string;
4167
+ commission: number;
4168
+ referralCode: string;
4169
+ referralsCount: number;
4170
+ level1Commission: number;
4171
+ level2Commission: number;
4172
+ level3Commission: number;
4173
+ level1ReferralsCount: number;
4174
+ level2ReferralsCount: number;
4175
+ level3ReferralsCount: number;
4176
+ dateTimeCreated: Date;
4177
+ dateTimeLastUpdated: Date;
4178
+ }
4179
+ type ReferralCommissionReturn = OperationResult<never, ReferralCommission | null>;
4180
+ interface PointsClubSettings {
4181
+ multiplier: number;
4182
+ }
4183
+ type PointsClubSettingsReturn = OperationResult<never, PointsClubSettings | null>;
4184
+ type ClaimRewardError = UnionAlias<ClaimRewardError$1>;
4185
+ type MessageIcon = UnionAlias<MessageIcon$1>;
4186
+ interface MessageAction extends MessageAction$1 {
4187
+ }
4188
+ type MessageType = UnionAlias<MessageType$1>;
4189
+ interface Message {
4190
+ id: string;
4191
+ icon: MessageIcon;
4192
+ /** @deprecated use `Message.icon` */
4193
+ logo: MessageIcon;
4194
+ image?: string;
4195
+ title?: string;
4196
+ popup: boolean;
4197
+ force: boolean;
4198
+ content?: string;
4199
+ actions: MessageAction[];
4200
+ markedAsRead: boolean;
4201
+ dateTimeCreated: Date;
4202
+ type: MessageType;
4203
+ metadata: {
4204
+ tournament: {
4205
+ id: string;
4206
+ name: string;
4207
+ };
4208
+ payout: {
4209
+ id: string;
4210
+ amount: number;
4211
+ };
4212
+ } | null;
4213
+ }
4214
+ interface MessagesInput extends MessagesQueryVariables {
4215
+ }
4216
+ type MessagesReturn = OperationResult<never, PaginatedQueryResult<'messages', Message>>;
4217
+ type MarkMessageAsReadReturn = OperationResult;
4218
+ type MarkAllMessagesAsReadReturn = OperationResult;
4219
+ interface UnreadMessagesCountInput extends UnreadMessagesCountQueryVariables {
4220
+ }
4221
+ type UnreadMessagesCountReturn = OperationResult<never, number>;
4222
+ type ClaimRewardReturn = OperationResult<ClaimRewardError>;
4223
+ type OnboardingStatus = UnionAlias<OnboardingStatus$1>;
4224
+ type OnboardingStatusReturn = OperationResult<never, OnboardingStatus>;
4225
+ type OnboardingPlayerExperience = UnionAlias<OnboardingPlayerExperience$1>;
4226
+ interface CompleteOnboardingInput {
4227
+ playerExperience: OnboardingPlayerExperience;
4228
+ favoriteGameTypes: GameType[];
4229
+ }
4230
+ type CompleteOnboardingReturn = OperationResult;
4231
+ type SkipOnboardingReturn = OperationResult;
4232
+ type QuestType = UnionAlias<QuestType$1>;
4233
+ type QuestStatus = UnionAlias<QuestStatus$1>;
4234
+ type QuestProgramStatus = UnionAlias<QuestProgramStatus$1>;
4235
+ interface QuestProgram {
4236
+ type: QuestType;
4237
+ name: string;
4238
+ description: string;
4239
+ stages: WageringQuestStageSettings[];
4240
+ status: QuestProgramStatus;
4241
+ }
4242
+ type MemberStatus = 'ACTIVE' | 'BLACKLISTED' | 'SUSPENDED';
4243
+ type JourneyQuestMilestoneType = UnionAlias<JourneyQuestMilestoneType$1>;
4244
+ interface JourneyQuestMilestone {
4245
+ id: string;
4246
+ type: JourneyQuestMilestoneType;
4247
+ name: string;
4248
+ bonusAmount: number;
4249
+ cleared: boolean;
4250
+ description?: string;
4251
+ link?: string;
4252
+ }
4253
+ interface WageringQuestStage {
4254
+ targetTurnover: number;
4255
+ bonusTurnoverRequirementMultiplier: number;
4256
+ bonusAmount: number;
4257
+ cleared: boolean;
4258
+ dateTimeCleared: Date;
4259
+ turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
4260
+ }
4261
+ interface WageringQuestStageSettings {
4262
+ targetTurnover: number;
4263
+ bonusTurnoverRequirementMultiplier: number;
4264
+ bonusAmount: number;
4265
+ }
4266
+ interface Quest {
4267
+ id: string;
4268
+ name: string;
4269
+ description: string;
4270
+ program: QuestProgram;
4271
+ status: QuestStatus;
4272
+ progressPercentage: number;
4273
+ turnover: number;
4274
+ type: QuestType;
4275
+ bonus: number;
4276
+ endDateTime: Date;
4277
+ dateTimeCreated: Date;
4278
+ lastCheckInDate?: Date;
4279
+ startDateTime?: Date;
4280
+ checkInStreak?: number;
4281
+ thirdDayBonusAmount?: number;
4282
+ sixthDayBonusAmount?: number;
4283
+ seventhDayBonusAmount?: number;
4284
+ targetTurnover?: number;
4285
+ daysToClear?: number;
4286
+ bonusAmount?: number;
4287
+ firstDepositCompleted?: boolean;
4288
+ accountVerificationCompleted?: boolean;
4289
+ milestones?: JourneyQuestMilestone[];
4290
+ stage?: number;
4291
+ dateTimeCompleted?: Date;
4292
+ turnoverRequirementContributionPercentagePerGameProvider?: Record<string, number>;
4293
+ }
4294
+ type AvailableQuestsReturn = OperationResult<never, Quest[]>;
4295
+ type CheckInDailyQuestReturn = OperationResult<never, boolean>;
4296
+ interface TopWin {
4297
+ id: string;
4298
+ game?: Game;
4299
+ member: {
4300
+ id: string;
4301
+ name: string;
4302
+ };
4303
+ multiplier: number;
4304
+ payout: number;
4305
+ }
4306
+ type TopWinsReturn = OperationResult<never, TopWin[]>;
4307
+ type JackpotStatus = 'ACTIVE' | 'CLOSING' | 'DISABLED';
4308
+ interface JackpotsInput extends JackpotsQueryVariables {
4309
+ }
4310
+ interface _JackpotsInput extends _JackpotsQueryVariables {
4311
+ }
4312
+ interface Jackpot {
4313
+ id: string;
4314
+ name: string;
4315
+ pool: number;
4316
+ description: string;
4317
+ status: JackpotStatus;
4318
+ minimumJackpotPoolDrawingLimit: number;
4319
+ maximumJackpotPoolLimit: number;
4320
+ drawing: boolean;
4321
+ minimumMultiplier: number;
4322
+ minimumBet: number;
4323
+ jackpotPayoutPercentage: number;
4324
+ jackpotTurnoverContributionPercentagePerGameProvider: Partial<Record<GameProvider, number>>;
4325
+ totalPayout: number;
4326
+ }
4327
+ type JackpotsReturn = OperationResult<never, PaginatedQueryResult<'jackpots', Jackpot>>;
4328
+ type _JackpotsReturn = OperationResult<never, PaginatedQueryResult<'_jackpots', Jackpot>>;
4329
+ interface JackpotsIdsInput extends JackpotsIdsQueryVariables {
4330
+ }
4331
+ type JackpotsIdsReturn = OperationResult<never, {
4332
+ jackpots: string[];
4333
+ totalCount: number;
4334
+ hasNextPage: boolean;
4335
+ endCursor?: string;
4336
+ }>;
4337
+ interface JackpotPayoutsInput extends JackpotPayoutsQueryVariables {
4338
+ }
4339
+ interface JackpotPayout {
4340
+ id: string;
4341
+ member: {
4342
+ id: string;
4343
+ name: string;
4344
+ };
4345
+ jackpot: {
4346
+ id: string;
4347
+ name: string;
4348
+ };
4349
+ multiplier: number;
4350
+ bet: number;
4351
+ amount: number;
4352
+ dateTimeCreated: Date;
4353
+ game: {
4354
+ provider: GameProvider;
4355
+ };
4356
+ }
4357
+ type JackpotPayoutsReturn = OperationResult<never, PaginatedQueryResult<'jackpotPayouts', JackpotPayout>>;
4358
+ type FCMDeviceType = UnionAlias<FCMDeviceType$1>;
4359
+ interface RegisterFCMDeviceInput {
4360
+ type: FCMDeviceType;
4361
+ token: string;
4362
+ }
4363
+ type RegisterFCMDeviceReturn = OperationResult;
4364
+ interface UnregisterFCMDeviceInput {
4365
+ type: Array<FCMDeviceType>;
4366
+ token?: string;
4367
+ }
4368
+ type UnregisterFCMDeviceReturn = OperationResult;
4369
+ type FirebaseCloudMessagingDeviceType = UnionAlias<FirebaseCloudMessagingDeviceType$1>;
4370
+ interface LinkFirebaseCloudMessagingDeviceInput {
4371
+ token: string;
4372
+ type: FirebaseCloudMessagingDeviceType;
4373
+ }
4374
+ type LinkFirebaseCloudMessagingDeviceReturn = OperationResult;
4375
+ interface UnlinkFirebaseCloudMessagingDeviceInput {
4376
+ token?: string;
4377
+ }
4378
+ type UnlinkFirebaseCloudMessagingDeviceReturn = OperationResult;
4379
+ type GoogleClientIdReturn = OperationResult<never, string | null>;
4380
+ type RequireFirstDepositReturn = OperationResult<never, boolean>;
4381
+ type TournamentStatus = 'ACTIVE' | 'INACTIVE' | 'DELETED';
4382
+ type TournamentType = 'MULTIPLIER' | 'WAGERING';
4383
+ type TournamentFrequency = 'DAILY' | 'WEEKLY' | 'MONTHLY';
4384
+ type TournamentMode = 'ONE_TIME' | 'RECURRING';
4385
+ interface TournamentsInput extends TournamentsQueryVariables {
4386
+ }
4387
+ interface TournamentsIdsInput extends TournamentsIdsQueryVariables {
4388
+ }
4389
+ interface TournamentLeaderboard {
4390
+ id: string;
4391
+ username: string;
4392
+ multiplier: number;
4393
+ dateTimeCreated: string;
4394
+ prize?: string;
4395
+ game?: {
4396
+ id: string;
4397
+ provider: GameProvider;
4398
+ name: string;
4399
+ external: string;
4400
+ type: GameType;
4401
+ };
4402
+ }
4403
+ interface TournamentPayout {
4404
+ id: string;
4405
+ amount: number;
4406
+ member: {
4407
+ id: string;
4408
+ name: string;
4409
+ };
4410
+ }
4411
+ interface Tournament {
4412
+ id: string;
4413
+ type: TournamentType;
4414
+ name: string;
4415
+ winnersCount: number;
4416
+ status: TournamentStatus;
4417
+ activationStartDateTime: Date;
4418
+ activationEndDateTime: Date;
4419
+ description: string;
4420
+ topPayouts: TournamentPayout[];
4421
+ enabledGameProviders: GameProvider[];
4422
+ frequency: TournamentFrequency;
4423
+ mode: TournamentMode;
4424
+ mobileBanner: {
4425
+ id: string;
4426
+ url: string;
4427
+ mimeType: string;
4428
+ };
4429
+ webBanner: {
4430
+ id: string;
4431
+ url: string;
4432
+ mimeType: string;
4433
+ };
4434
+ rewardSettings: Partial<Record<string, string>>;
4435
+ currentLeaderboard: PaginatedQueryResult<'currentLeaderboard', TournamentLeaderboard>;
4436
+ previousLeaderboard: PaginatedQueryResult<'previousLeaderboard', TournamentLeaderboard>;
4437
+ }
4438
+ type TournamentsReturn = OperationResult<never, PaginatedQueryResult<'tournaments', Tournament>>;
4439
+ type TournamentsIdsReturn = OperationResult<never, {
4440
+ tournaments: string[];
4441
+ totalCount: number;
4442
+ hasNextPage: boolean;
4443
+ endCursor?: string;
4444
+ }>;
4445
+ interface AchievementPointsHistoryRecord {
4446
+ id: string;
4447
+ type: AchievementType;
4448
+ points: number;
4449
+ dateTimeCreated: Date;
4450
+ }
4451
+ type CabinetSiteMachineReturn = OperationResult<never, CabinetSiteMachine | null>;
4452
+ interface CabinetSiteMachine {
4453
+ id: string;
4454
+ name: string;
4455
+ fingerprint: string;
4456
+ status: CabinetSiteMachineStatus;
4457
+ dateTimeCreated: Date;
4458
+ }
4459
+ type CabinetSiteMachineStatus = 'ENABLED' | 'DISABLED';
4460
+ type CabinetWithdrawalReturn = OperationResult<never, WithdrawalRecord | null>;
4461
+ type MemberVerificationRequestStatus = UnionAlias<MemberVerificationRequestStatus$1>;
4462
+ interface MemberVerificationRequest {
4463
+ id: string;
4464
+ firstName?: string;
4465
+ lastName?: string;
4466
+ dateOfBirth?: Date;
4467
+ idFrontImage?: {
4468
+ id: string;
4469
+ url: string;
4470
+ };
4471
+ selfieImage?: {
4472
+ id: string;
4473
+ url: string;
4474
+ };
4475
+ permanentAddress?: string;
4476
+ currentAddress?: string;
4477
+ sourceOfIncome?: string;
4478
+ natureOfWork?: string;
4479
+ nationality?: string;
4480
+ placeOfBirth?: string;
4481
+ status: MemberVerificationRequestStatus;
4482
+ basicDetailsSubmitted: boolean;
4483
+ basicDetailsVerified: boolean;
4484
+ imageDetailsSubmitted: boolean;
4485
+ pendingManualImageDetailsVerification: boolean;
4486
+ imageDetailsVerified: boolean;
4487
+ personalDetailsSubmitted: boolean;
4488
+ remarks?: string;
4489
+ dateTimeCreated: Date;
4490
+ dateTimeLastUpdated: Date;
4491
+ dateTimeApproved?: Date;
4492
+ dateTimeRejected?: Date;
4493
+ }
4494
+ type MemberVerificationRequestReturn = OperationResult<never, MemberVerificationRequest | null>;
4495
+ interface SubmitMemberVerificationRequestBasicDetailsInput {
4496
+ firstName: string;
4497
+ lastName: string;
4498
+ dateOfBirth: Date | string;
4499
+ }
4500
+ type SubmitMemberVerificationRequestBasicDetailsReturn = OperationResult<never, boolean>;
4501
+ interface SubmitMemberVerificationRequestImageDetailsInput {
4502
+ idFrontImage: string;
4503
+ selfieImage?: string;
4504
+ }
4505
+ type SubmitMemberVerificationRequestImageDetailsReturn = OperationResult<never, boolean>;
4506
+ interface SubmitMemberVerificationRequestPersonalDetailsInput {
4507
+ permanentAddress: string;
4508
+ currentAddress: string;
4509
+ sourceOfIncome: string;
4510
+ natureOfWork: string;
4511
+ nationality: string;
4512
+ placeOfBirth: string;
4513
+ }
4514
+ type SubmitMemberVerificationRequestPersonalDetailsReturn = OperationResult<never, boolean>;
4515
+ type MemberVerificationRequestAutomaticApprovalEnabledReturn = OperationResult<never, boolean>;
4516
+
4517
+ export { type SubmitMemberVerificationReturn as $, type AuthenticateInput as A, type RegisterAgentAccountReturn as B, type CabinetSignInInput as C, type UpdateAccountReturn as D, type Environment as E, type DeleteAccountReturn as F, type GraphQLClientMiddleware as G, type UpdateDailyBetLimitInput as H, type UpdateAccountLimitReturn as I, type UpdateMonthlyBetLimitInput as J, type UpdateDailyDepositLimitInput as K, type UpdateMonthlyDepositLimitInput as L, type MobileNumberSignInInput as M, type NameAndPasswordSignInInput as N, type VerificationDetailsReturn as O, type PlatformReturn as P, type SubmitVerificationDetailsInput 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 SubmitVerificationDetailsReturn as X, type SubmitVerificationDetailsInputNext as Y, type UpdateVerificationDetailsInput as Z, type UpdateVerificationDetailsReturn as _, type NameAndPasswordSignInReturn as a, type MarkGameAsFavoriteReturn as a$, type ResetPasswordInput as a0, type ResetPasswordReturn as a1, type VerifyMobileNumberReturn as a2, type ProfileCompletionReturn as a3, type SendVerificationCodeReturn as a4, type SendVerificationCodeInput__Next as a5, type SendVerificationCodeReturn__Next as a6, type WalletReturn as a7, type MemberWalletAccountReturn as a8, type AnnouncementsInput as a9, type TransactionRecordsInput as aA, type TransactionRecordsReturn as aB, type PromosReturn as aC, type PromoFilterInput as aD, type AvailablePromosReturn as aE, type CashbacksReturn as aF, type BonusReturn as aG, type BonusesReturn as aH, type CashbackBonusReturn as aI, type ClaimCashbackBonusReturn as aJ, type ClaimRebateReturn as aK, type ClaimSpotBonusReturn as aL, type PromoByCodeReturn as aM, type GameReturn as aN, type GamesInput as aO, type GamesReturn as aP, type WalletGameInput as aQ, type WalletGamesReturn as aR, type GamesInput__Next as aS, type RecommendedGamesInput as aT, type RecommendedGamesReturn as aU, type GameProvider as aV, type GameSessionReturn as aW, type CreateGameSessionInput as aX, type CreateGameSessionReturn as aY, type EndGameSessionReturn as aZ, type MarkGameAsFavoriteInput as a_, type AnnouncementsReturn as aa, type CreateWithdrawalInput as ab, type CreateWithdrawalReturn as ac, type WithdrawalRecordsInput as ad, type WithdrawalRecordsReturn as ae, type RemainingDailyWithdrawalsCountReturn as af, type InstapayBankListReturn as ag, type CreateDepositInput as ah, type CreateDepositReturn as ai, type DepositReturn as aj, type DepositRecordsInput as ak, type DepositRecordsReturn as al, type DepositsCountReturn as am, type TouchDepositInput as an, type TouchDepositReturn as ao, type RedeemVoucherInput as ap, type RedeemVoucherReturn as aq, type BetRecordsInput as ar, type BetRecordsReturn as as, type LatestBetRecordsReturn as at, type FreeBetDropsInput as au, type FreeBetDropsReturn as av, type MemberFreeBetDropsInput as aw, type MemberFreeBetDropsReturn as ax, type CancelFreeBetDropInput as ay, type CancelFreeBetDropReturn as az, type MobileNumberSignInReturn as b, type UnlinkFirebaseCloudMessagingDeviceInput as b$, type UnmarkGameAsFavoriteInput as b0, type UnmarkGameAsFavoriteReturn as b1, type FavoriteGamesReturn as b2, type FileReturn as b3, type UploadImageFileInput as b4, type UploadImageFileReturn as b5, type PointsWalletReturn as b6, type RedeemPointsInput as b7, type RedeemPointsReturn as b8, type PointsWalletTransactionsInput as b9, type MarkAllMessagesAsReadReturn as bA, type ClaimRewardReturn as bB, type OnboardingStatusReturn as bC, type CompleteOnboardingInput as bD, type CompleteOnboardingReturn as bE, type SkipOnboardingReturn as bF, type AvailableQuestsReturn as bG, type CheckInDailyQuestReturn as bH, type TopWinsReturn as bI, type JackpotsInput as bJ, type JackpotsReturn as bK, type JackpotsIdsInput as bL, type JackpotsIdsReturn as bM, type _JackpotsInput as bN, type _JackpotsReturn as bO, type JackpotPayoutsInput as bP, type JackpotPayoutsReturn as bQ, type TournamentsInput as bR, type TournamentsReturn as bS, type TournamentsIdsInput as bT, type TournamentsIdsReturn as bU, type RegisterFCMDeviceInput as bV, type RegisterFCMDeviceReturn as bW, type UnregisterFCMDeviceInput as bX, type UnregisterFCMDeviceReturn as bY, type LinkFirebaseCloudMessagingDeviceInput as bZ, type LinkFirebaseCloudMessagingDeviceReturn as b_, type PointsWalletTransactionsReturn as ba, type AchievementPointsHistoryRecordInput as bb, type AchievementPointsHistoryRecordReturn as bc, type MemberAchievementReturn as bd, type MemberRebatesInput as be, type MemberRebatesReturn as bf, type MemberRebateContributionInput as bg, type MemberRebateContributionReturn as bh, type ActivityRecordsInput as bi, type ActivityRecordsReturn as bj, type ReferralCodeReturn as bk, type UpdateReferralCodeInput as bl, type UpdateReferralCodeReturn as bm, type ReferralsInput as bn, type ReferralsReturn as bo, type ReferralCommissionReturn as bp, type UplinesByNameInput as bq, type UplinesByNameReturn as br, type DownlinesByNameInput as bs, type DownlinesByNameReturn as bt, type PointsClubSettingsReturn as bu, type MessagesInput as bv, type MessagesReturn as bw, type UnreadMessagesCountInput as bx, type UnreadMessagesCountReturn as by, type MarkMessageAsReadReturn as bz, type MayaSignInInput as c, type MemberRebateContribution$1 as c$, type UnlinkFirebaseCloudMessagingDeviceReturn as c0, type GoogleClientIdReturn as c1, type RequireFirstDepositReturn as c2, type MemberVerificationRequestReturn as c3, type SubmitMemberVerificationRequestBasicDetailsInput as c4, type SubmitMemberVerificationRequestBasicDetailsReturn as c5, type SubmitMemberVerificationRequestImageDetailsInput as c6, type SubmitMemberVerificationRequestImageDetailsReturn as c7, type SubmitMemberVerificationRequestPersonalDetailsInput as c8, type SubmitMemberVerificationRequestPersonalDetailsReturn as c9, type Game$1 as cA, type BetRecord as cB, type LatestBetRecord$1 as cC, type LatestBetRecord as cD, type TransactionRecord$1 as cE, type TransactionRecord as cF, type Game as cG, type GameSession$1 as cH, type GameSession as cI, type Promo$1 as cJ, type Promo as cK, type Cashback$1 as cL, type Cashback as cM, type Bonus$1 as cN, type Bonus as cO, type CashbackBonus$1 as cP, type CashbackBonus as cQ, type CabinetSiteMachine$1 as cR, type CabinetSiteMachine as cS, type File$1 as cT, type File as cU, type PointsWallet$1 as cV, type PointsWallet as cW, type PointsWalletTransaction$1 as cX, type PointsWalletTransaction as cY, type Rebate$1 as cZ, type Rebate as c_, type MemberVerificationRequestAutomaticApprovalEnabledReturn as ca, type Site$1 as cb, type Site as cc, type Platform$1 as cd, type Platform as ce, type MemberAccount as cf, type Member as cg, type Account as ch, type Wallet$1 as ci, type Wallet as cj, type MemberVerification as ck, type VerificationDetails as cl, type ProfileCompletion$1 as cm, type ProfileCompletion as cn, type Announcement$1 as co, type Announcement as cp, type WithdrawalRecord$1 as cq, type WithdrawalRecord as cr, type Deposit$1 as cs, type Deposit as ct, type CabinetWithdrawal as cu, type CabinetWithdrawalRecord as cv, type DepositRecord$1 as cw, type DepositRecord as cx, type Assign as cy, type BetRecord$1 as cz, type MayaSignInReturn as d, type UploadImageFileError as d$, type MemberRebateContribution as d0, type ActivityRecord$1 as d1, type ActivityRecord as d2, type Referral$1 as d3, type Referral as d4, type ReferralCommission$1 as d5, type ReferralCommission as d6, type Platform__Next$1 as d7, type Platform__Next as d8, type PointsClubSettings$1 as d9, type MemberAchievement$1 as dA, type MemberAchievement as dB, type MemberVerificationRequest$1 as dC, type MemberVerificationRequest as dD, type FreeBetDrop$1 as dE, type FreeBetDrop as dF, type MemberFreeBetDrop$1 as dG, type MemberFreeBetDrop as dH, type MemberWalletAccount$1 as dI, type MemberWalletAccount as dJ, type HttpError as dK, type OperationError as dL, type OperationResult as dM, type LoginChannel as dN, type SecretQuestion as dO, type SecurityQuestionAuthenticator as dP, type Authenticator as dQ, type SignInInput as dR, type SignInError as dS, type SignInReturn as dT, type RefreshSessionError as dU, type SecurityQuestionAuthenticateInput as dV, type AuthenticateError as dW, type Session as dX, type SessionError as dY, type CreateSingleUseTokenInput as dZ, type CreateSingleUseTokenError as d_, type PointsClubSettings as da, type PaymentSettings$1 as db, type PaymentSettings as dc, type Message$1 as dd, type Message as de, type InstapayBank$1 as df, type InstapayBank as dg, type SpotBonusPromo$1 as dh, type SpotBonusPromo as di, type Quest$1 as dj, type Quest as dk, type TopWin$1 as dl, type TopWin as dm, type Jackpot$1 as dn, type Jackpot as dp, type JackpotPayout$1 as dq, type JackpotPayout as dr, type Tournament$1 as ds, type Tournament as dt, type MemberLevelSettings$1 as du, type MemberLevelSettings as dv, type AchievementSettingsResponse$1 as dw, type AchievementSettingsResponse as dx, type AchievementPointsHistoryRecord$1 as dy, type AchievementPointsHistoryRecord as dz, type TokenSignInReturn as e, type OnlineBankDeposit as e$, type AccountStatus as e0, type AccountVerificationStatus as e1, type Agent as e2, type GigRewardsQuestDetails as e3, type VerificationDetailsStatus as e4, type NameAndPasswordCreateAccountInput as e5, type MobileNumberCreateAccountInput as e6, type MobileNumberInrCreateAccountInput as e7, type NameCreateAccountInput as e8, type MobileNumberCreateAccountInput__next as e9, type GameType as eA, type WalletGame as eB, type GameSessionStatus as eC, type GameSessionLaunchOptions as eD, type CreateGameSessionByReferenceInput as eE, type CreateGameSessionByIdInput as eF, type CreateGameSessionError as eG, type AnnouncementType as eH, type AnnouncementStatus as eI, type BetRecordStatus as eJ, type FreeBetDropStatus as eK, type MemberFreeBetDropBetRecord as eL, type TransactionType as eM, type DepositType as eN, type DepositStatus as eO, type KnownDepositError as eP, type GCashDeposit as eQ, type GcashWebpayDeposit as eR, type AiOGCashDeposit as eS, type AiOPayMayaDeposit as eT, type AiOGrabPayDeposit as eU, type AiOPalawanPayDeposit as eV, type MayaDeposit as eW, type MayaAppDeposit as eX, type BankDeposit as eY, type ManualDeposit as eZ, type QRPHDeposit as e_, type CreateAccountError as ea, type RegisterMayaAccountError as eb, type RegisterAgentAccountError as ec, type UpdateAccountError as ed, type ResetPasswordError as ee, type SubmitVerificationError as ef, type SubmitMemberVerificationError as eg, type UpdateVerificationError as eh, type SendVerificationCodeError as ei, type SendSmsVerificationCodeInput as ej, type SendEmailVerificationCodeInput as ek, type SendVerificationCodeError__Next as el, type VerifyMobileNumberError as em, type Currency as en, type AchievementSettings as eo, type RedeemPointsError as ep, type PointsWalletTransactionType as eq, type RebateStatus as er, type RebateCursor as es, type RebateType as et, type RebateSettingsPerMemberLevel as eu, type RebateProgram as ev, type MemberRebateContributionPerGameCategory as ew, type MemberRebateContributionPerGame as ex, type ClaimRebateError as ey, type GameTag as ez, type SocialsSignInReturn as f, type MessageIcon as f$, type ManualBankDeposit as f0, type ManualUPIDeposit as f1, type CreateMayaDepositInput as f2, type CreateGCashDepositInput as f3, type CreateAiOGCashDepositInput as f4, type CreateAiOPayMayaDepositInput as f5, type CreateAiOGrabPayDepositInput as f6, type CreateAiOPalawanPayDepositInput as f7, type CreateGCashWebpayDepositInput as f8, type CreateMayaAppDepositInput as f9, type CreateAIOInstapayWithdrawalInput_Next as fA, type CreateManualUPIWithdrawalInput as fB, type CreateManualBankWithdrawalInput as fC, type CreateCabinetWithdrawalInput as fD, type CreateWithdrawalError as fE, type GatewaySettings as fF, type MemberLevelSetting as fG, type Locale as fH, type AchievementType as fI, type GeneralMemberLevelSettings as fJ, type PromoType as fK, type PromoStatus as fL, type TurnoverRequirementType as fM, type CashbackStatus as fN, type ClaimCashbackBonusError as fO, type ActivityRecordType as fP, type FieldType as fQ, type TextField as fR, type RichTextField as fS, type ImageField as fT, type SelectField as fU, type MultiSelectField as fV, type ToggleField as fW, type CompoundField as fX, type Field as fY, type UpdateReferralCodeError as fZ, type ClaimRewardError as f_, type CreateAIOQRPHDepositInput as fa, type CreateAIOOnlineBankDepositInput as fb, type CreateManualUPIDepositInput as fc, type CreateManualBankDepositInput as fd, type CreateMayaWebpayDepositInput as fe, type CreateTestDepositInput as ff, type CreateDepositError as fg, type VoucherType as fh, type WithdrawalType as fi, type WithdrawalStatus as fj, type WithdrawalError as fk, type ManualWithdrawalRecord as fl, type Bank as fm, type BankWithdrawalRecord as fn, type GCashWithdrawalRecord as fo, type MayaWithdrawalRecord as fp, type InstapayWithdrawalRecord as fq, type ManualBankWithdrawalRecord as fr, type ManualUPIWithdrawalRecord as fs, type InstapayBankType as ft, type CreateBankWithdrawalInput as fu, type CreateGCashWithdrawalInput as fv, type CreateGCashStandardCashInWithdrawalInput as fw, type CreateMayaWithdrawalInput as fx, type CreateMayaAppWithdrawalInput as fy, type CreateAIOInstapayWithdrawalInput as fz, type CabinetSignInReturn as g, type MemberVerificationRequestByIdQueryVariables as g$, type MessageAction as g0, type MessageType as g1, type OnboardingStatus as g2, type OnboardingPlayerExperience as g3, type QuestType as g4, type QuestStatus as g5, type QuestProgramStatus as g6, type QuestProgram as g7, type MemberStatus as g8, type JourneyQuestMilestoneType as g9, type UpdateMonthlyDepositLimitMutationVariables as gA, type UnlinkGoogleMutationVariables as gB, type ResetPasswordMutationVariables as gC, type ResetPasswordError$1 as gD, type GeneralMemberLevelSettings$1 as gE, type SendVerificationCodeMutationVariables as gF, type SendVerificationCodeError$1 as gG, type VerifyMobileNumberMutationVariables as gH, type VerifyMobileNumberError$1 as gI, type CreateMemberVerificationMutationVariables as gJ, type CreateMemberVerificationError as gK, type CreateMemberVerificationNextMutationVariables as gL, type UpdateMemberVerificationMutationVariables as gM, type UpdateMemberVerificationError as gN, type UpdateMemberVerificationNextMutationVariables as gO, type SubmitMemberVerificationMutationVariables as gP, type SubmitMemberVerificationError$1 as gQ, type AnnouncementsQueryVariables as gR, type PaginatedQueryResult$1 as gS, type RegisterMayaMemberAccountMutationVariables as gT, type RegisterMayaMemberAccountError as gU, type UpdateReferralCodeMutationVariables as gV, type UpdateReferralCodeError$1 as gW, type RegisterMemberAccountByMobileNumberMutationVariables as gX, type RegisterMemberAccountByMobileNumberMutationVariables__Next as gY, type RegisterAgentAccountMutationVariables as gZ, type RegisterAgentAccountError$1 as g_, type JourneyQuestMilestone as ga, type WageringQuestStage as gb, type WageringQuestStageSettings as gc, type JackpotStatus as gd, type FCMDeviceType as ge, type FirebaseCloudMessagingDeviceType as gf, type TournamentStatus as gg, type TournamentType as gh, type TournamentFrequency as gi, type TournamentMode as gj, type TournamentLeaderboard as gk, type TournamentPayout as gl, type CabinetSiteMachineStatus as gm, type MemberVerificationRequestStatus as gn, GraphQLClient as go, type RegisterMemberAccountMutationVariables as gp, type RegisterMemberAccountError as gq, type RegisterMemberAccountViaMobileMutationVariables as gr, type RegisterMemberAccountMutationVariables__Next as gs, type RegisterMemberAccountByNameMutationVariables as gt, type UpdateMemberAccountMutationVariables as gu, type UpdateMemberAccountError as gv, type DeleteMemberAccountMutationVariables as gw, type UpdateDailyBetLimitMutationVariables as gx, type UpdateMonthlyBetLimitMutationVariables as gy, type UpdateDailyDepositLimitMutationVariables as gz, type SingleUseTokenSignInInput as h, type ClaimCashbackBonusError$1 as h$, type SubmitMemberVerificationRequestBasicDetailsMutationVariables as h0, type SubmitMemberVerificationRequestImageDetailsMutationVariables as h1, type SubmitMemberVerificationRequestPersonalDetailsMutationVariables as h2, type FileQueryVariables as h3, type CreateSessionInput as h4, type CreateSessionError as h5, type CreateSessionMutation as h6, type AuthenticateInput$1 as h7, type AuthenticateError$1 as h8, type AuthenticateMutation as h9, type ActivityRecordsQueryVariables as hA, type ReferralsQueryVariables as hB, type UplinesByNameQueryVariables as hC, type DownlinesByNameQueryVariables as hD, type PromoByCodeQueryVariables as hE, type JackpotsQueryVariables as hF, type _JackpotsQueryVariables as hG, type _Jackpot as hH, type JackpotsIdsQueryVariables as hI, type JackpotPayoutsQueryVariables as hJ, type TournamentsQueryVariables as hK, type TournamentsIdsQueryVariables as hL, type FreeBetDropsQueryVariables as hM, type MemberFreeBetDropsQueryVariables as hN, type MessagesQueryVariables as hO, type UnreadMessagesCountQueryVariables as hP, type MarkMessageAsReadMutationVariables as hQ, type ClaimRewardMutationVariables as hR, type ClaimRewardError$1 as hS, type CheckInDailyQuestQueryVariables as hT, type RegisterFCMDeviceMutationVariables as hU, type UnregisterFCMDeviceMutationVariables as hV, type LinkFirebaseCloudMessagingDeviceMutationVariables as hW, type UnlinkFirebaseCloudMessagingDeviceMutationVariables as hX, type AvailablePromosQueryVariables as hY, type CancelFreeBetDropMutationVariables as hZ, type ClaimCashbackBonusMutationVariables as h_, type RefreshSessionError$1 as ha, type RefreshSessionMutation as hb, type SendVerificationCodeInput__Next$1 as hc, type SendVerificationCodeError__Next$1 as hd, type CreateSingleUseTokenError$1 as he, type CreateSingleUseTokenMutation as hf, type GamesQueryVariables as hg, type GamesQueryVariables__Next as hh, type UploadPrivateImageFileMutationVariables as hi, type UploadPrivateImageFileError as hj, type GameSessionQueryVariables as hk, type CreateGameSessionMutationVariables as hl, type CreateGameSessionError$1 as hm, type EndGameSessionMutationVariables as hn, type PlatformQuery__Next as ho, type RecommendedGame as hp, type OnboardingStatus$1 as hq, type CompleteOnboardingMutationVariables as hr, type BetRecordsQueryVariables as hs, type TransactionRecordsQueryVariables as ht, type WithdrawalRecordsQueryVariables as hu, type DepositRecordsQueryVariables as hv, type PointsWalletTransactionsQueryVariables as hw, type MemberRebatesQueryVariables as hx, type MemberRebateContributionQueryVariables as hy, type AchievementPointsHistoryRecordQueryVariables as hz, type SingleUseTokenSignInReturn as i, type FileQuery as i$, type ClaimRebateMutationVariables as i0, type ClaimRebateError$1 as i1, type DepositQueryVariables as i2, type CreateGCashDepositMutationVariables as i3, type CreateDepositError$1 as i4, type CreateGCashWebpayDepositMutationVariables as i5, type CreateMayaWebpayDepositMutationVariables as i6, type CreateMayaDepositMutationVariables as i7, type CreateTestDepositMutationVariables as i8, type CreateTestDepositError as i9, type ClaimSpotBonusMutationVariables as iA, type ClaimSpotBonusError as iB, type TouchGCashDepositMutationVariables as iC, type TouchQrphDepositMutationVariables as iD, type MarkGameAsFavoriteMutationVariables as iE, type UnmarkGameAsFavoriteMutationVariables as iF, type FavoriteGame as iG, type WalletGamesQueryVariables as iH, type CabinetWithdrawalQueryVariables as iI, type RedeemVoucherMutationVariables as iJ, type RedeemVoucherError as iK, type CreateCabinetWithdrawalMutationVariables as iL, type ID as iM, type Decimal as iN, type DateString as iO, type Html as iP, type Edge as iQ, type PageInfo as iR, type PaginatedQuery as iS, type ObjectIdFilterField as iT, type StringFilterField as iU, type NumberFilterField as iV, type BooleanFilterField as iW, type DateFilterField as iX, type EnumFilterField as iY, type SortOrder as iZ, type FileStatus as i_, type CreateAIOQRPHDepositMutationVariables as ia, type CreateAiOGCcashDepositMutationVariables as ib, type CreateAiOPayMayaDepositMutationVariables as ic, type CreateAiOGrabPayDepositMutationVariables as id, type CreateAiOPalawanPayDepositMutationVariables as ie, type CreateAIOOnlineBankDepositMutationVariables as ig, type CreateManualBankDeposiMutationVariables as ih, type CreateManualUPIDepositMutationVariables as ii, type CreateMayaAppDepositMutationVariables as ij, type CreateManualUpiDepositMutationVariables as ik, type CreateGCashWithdrawalMutationVariables as il, type CreateWithdrawalError$1 as im, type CreateGCashStandardCashInWithdrawalMutationVariables as io, type CreateMayaWithdrawalMutationVariables as ip, type CreateMayaAppWithdrawalMutationVariables as iq, type CreateBankWithdrawalMutationVariables as ir, type CreateAIOInstapayWithdrawalMutationVariables as is, type CreateAIOInstapayWithdrawalNextMutationVariables as it, type CreateManualUpiWithdrawalMutationVariables as iu, type CreateManualBankWithdrawalMutationVariables as iv, type RedeemPointsToCashMutationVariables as iw, type RedeemPointsToCashError as ix, type MayaSessionQueryVariables as iy, type MayaSession as iz, type AuthenticateReturn as j, type CreateManualUpiWithdrawalMutation as j$, type UploadPrivateImageFileMutation as j0, type AnnouncementType$1 as j1, type AnnouncementStatus$1 as j2, type AnnouncementVisibility as j3, type AnnouncementsQuery as j4, type GameType$1 as j5, type GameProvider$1 as j6, type GameStatus as j7, type GameTag$1 as j8, type WalletGame$1 as j9, type CreateAIOQRPHDepositMutation as jA, type CreateManualBankDepositMutation as jB, type CreateManualUPIDepositMutation as jC, type CreateAiOGCashDepositMutation as jD, type CreateAiOPayMayaDepositMutation as jE, type CreateAiOGrabPayDepositMutation as jF, type CreateAiOPalawanPayDepositMutation as jG, type CreateAIOOnlineBankDepositMutation as jH, type CreateManualBankDepositMutationVariables as jI, type CreateMayaAppDepositMutation as jJ, type DepositQuery as jK, type DepositsCountQuery as jL, type TouchGCashDepositMutation as jM, type TouchQrphDepositMutation as jN, type CreateManualUpiDepositMutation as jO, type Bank$1 as jP, type WithdrawalType$1 as jQ, type WithdrawalStatus$1 as jR, type WithdrawalError$1 as jS, type WithdrawalRecordsQuery as jT, type CreateGCashWithdrawalMutation as jU, type CreateGCashStandardCashInWithdrawalMutation as jV, type CreateMayaWithdrawalMutation as jW, type CreateMayaAppWithdrawalMutation as jX, type CreateBankWithdrawalMutation as jY, type CreateAIOInstapayWithdrawalMutation as jZ, type CreateAIOInstapayWithdrawalNextMutation as j_, type GameQueryVariables as ja, type GameQuery as jb, type GamesQuery as jc, type WalletGamesQuery as jd, type RecommendedGamesQuery as je, type GameSessionStatus$1 as jf, type GameSessionLaunchOptions$1 as jg, type GameSessionQuery as jh, type CreateGameSessionMutation as ji, type EndGameSessionError as jj, type EndGameSessionMutation as jk, type BetRecordStatus$1 as jl, type BetRecordMetadata as jm, type BetRecordsQuery as jn, type LatestBetRecordsQuery as jo, type DepositType$1 as jp, type DepositStatus$1 as jq, type KnownDepositError$1 as jr, type VoucherType$1 as js, type DepositRecordsQuery as jt, type RedeemVoucherMutation as ju, type CreateGCashDepositMutation as jv, type CreateGCashWebpayDepositMutation as jw, type CreateMayaWebpayDepositMutation as jx, type CreateMayaDepositMutation as jy, type CreateTestDepositMutation as jz, type SessionReturn as k, type CreateMemberVerificationMutation as k$, type CreateManualBankWithdrawalMutation as k0, type CreateCabinetWithdrawalMutation as k1, type InstapayBankListQuery as k2, type RemainingDailyWithdrawalsCountQuery as k3, type PromoType$1 as k4, type PromoStatus$1 as k5, type PromosQuery as k6, type AvailablePromosQuery as k7, type CashbackStatus$1 as k8, type CashbacksQuery as k9, type AchievementPointsHistoryRecordQuery as kA, type MemberAccountStatus as kB, type MemberAccountVerificationStatus as kC, type MemberVerificationStatus as kD, type GigRewardsQuestDetails$1 as kE, type MemberQuery as kF, type MemberAccountQuery as kG, type MemberVerificationQuery as kH, type RegisterMemberAccountMutation as kI, type RegisterMemberAccountByNameMutation as kJ, type RegisterMemberAccountViaMobileMutation as kK, type RegisterAgentAccountMutation as kL, type RegisterMayaMemberAccountMutation as kM, type UpdateMemberAccountMutation as kN, type SecretQuestion$1 as kO, type ResetPasswordMutation as kP, type AchievementType$1 as kQ, type AchievementSettingsQueryVariables as kR, type DeleteMemberAccountMutation as kS, type UpdateDailyBetLimitMutation as kT, type UpdateMonthlyBetLimitMutation as kU, type UpdateDailyDepositLimitMutation as kV, type UpdateMonthlyDepositLimitMutation as kW, type UnlinkGoogleMutation as kX, type SendVerificationCodeInput as kY, type SendVerificationCodeMutation as kZ, type VerifyMobileNumberMutation as k_, type ClaimSpotBonusMutation as ka, type TurnoverRequirementType$1 as kb, type PromoByCodeQuery as kc, type BonusQuery as kd, type BonusesQuery as ke, type CashbackBonusesQuery as kf, type ClaimCashbackBonusMutation as kg, type ClaimRebateMutation as kh, type TransactionType$1 as ki, type TransactionRecordsQuery as kj, type Currency$1 as kk, type WalletQuery as kl, type MemberWalletQuery as km, type PointsWalletQuery as kn, type RedeemPointsToCashMutation as ko, type PointsWalletTransactionType$1 as kp, type PointsWalletTransactionsQuery as kq, type RebateStatus$1 as kr, type RebateCursor$1 as ks, type RebateType$1 as kt, type RebateSettingsPerMemberLevel$1 as ku, type RebateProgram$1 as kv, type MemberRebatesQuery as kw, type MemberRebateContributionPerGameCategory$1 as kx, type MemberRebateContributionPerGame$1 as ky, type MemberRebateContributionQuery as kz, type CreateSingleUseTokenReturn as l, type MemberStatus$1 as l$, type CreateMemberVerificationNextMutation as l0, type UpdateMemberVerificationMutation as l1, type UpdateMemberVerificationNextMutation as l2, type SubmitMemberVerificationMutation as l3, type ProfileCompletionQuery as l4, type RegisterMemberAccountByMobileNumberMutation as l5, type RegisterMemberAccountByMobileNumberMutation__Next as l6, type DepositGatewaySettings as l7, type WithdrawalGatewaySettings as l8, type MemberLevelSetting$1 as l9, type ReferralCommissionQuery as lA, type UplinesByNameQuery as lB, type DownlinesByNameQuery as lC, type PointsClubSettingsQuery as lD, type AchievementSettings$1 as lE, type AchievementSettingsQuery as lF, type MessageAction$1 as lG, type MessageIcon$1 as lH, type MessageType$1 as lI, type MessagesQuery as lJ, type MarkMessageAsReadMutation as lK, type MarkAllMessageAsReadMutation as lL, type MarkAllMessagesAsReadMutation as lM, type UnreadMessagesCountQuery as lN, type ClaimRewardMutation as lO, type OnboardingPlayerExperience$1 as lP, type OnboardingStatusQuery as lQ, type CompleteOnboardingMutation as lR, type SkipOnboardingMutation as lS, type QuestType$1 as lT, type QuestStatus$1 as lU, type QuestProgramStatus$1 as lV, type QuestProgram$1 as lW, type JourneyQuestMilestoneType$1 as lX, type JourneyQuestMilestone$1 as lY, type WageringQuestStage$1 as lZ, type WageringQuestStageSettings$1 as l_, type MemberLevelSettingsQuery as la, type GeneralMemberLevelSettingsQuery as lb, type PlatformQuery as lc, type PaymentSettingsQuery as ld, type LoginChannel$1 as le, type Session$1 as lf, type Authenticator$1 as lg, type SecurityQuestionAuthenticateInput$1 as lh, type MayaSessionQuery as li, type ValidateMayaSessionMutation as lj, type TextField$1 as lk, type RichTextField$1 as ll, type ImageField$1 as lm, type SelectField$1 as ln, type MultiSelectField$1 as lo, type ToggleField$1 as lp, type CompoundField$1 as lq, type Field$1 as lr, type FieldType$1 as ls, type SiteConfig as lt, type SiteQuery as lu, type ActivityRecordType$1 as lv, type ActivityRecordsQuery as lw, type ReferralCodeQuery as lx, type UpdateReferralCodeMutation as ly, type ReferralsQuery as lz, type SiteReturn as m, type AvailableQuestsQuery as m0, type CheckInDailyQuestMutation as m1, type TopWinsQuery as m2, type TopWinsNextQuery as m3, type JackpotStatus$1 as m4, type JackpotCursor as m5, type JackpotPayoutCursor as m6, type JackpotsQuery as m7, type _JackpotsQuery as m8, type JackpotsIdsQuery as m9, type MemberVerificationRequestStatus$1 as mA, type MemberVerificationRequestQuery as mB, type MemberVerificationRequestByIdQuery as mC, type SubmitMemberVerificationRequestBasicDetailsMutation as mD, type SubmitMemberVerificationRequestImageDetailsMutation as mE, type SubmitMemberVerificationRequestPersonalDetailsMutation as mF, type MemberVerificationRequestAutomaticApprovalEnabledQuery as mG, type FreeBetDropStatus$1 as mH, type CancelFreeBetDropMutation as mI, type MemberFreeBetDropBetRecord$1 as mJ, type MemberFreeBetDropsQuery as mK, type FreeBetDropsQuery as mL, type JackpotPayoutsQuery as ma, type FCMDeviceType$1 as mb, type FirebaseCloudMessagingDeviceType$1 as mc, type RegisterFCMDeviceMutation as md, type UnregisterFCMDeviceMutation as me, type LinkFirebaseCloudMessagingDeviceMutation as mf, type UnlinkFirebaseCloudMessagingDeviceMutation as mg, type MarkGameAsFavoriteMutation as mh, type UnmarkGameAsFavoriteMutation as mi, type FavoriteGamesQuery as mj, type TransactionPasswordNotSetError as mk, type UPIReferenceNotAvailableError as ml, type GoogleClientIdQuery as mm, type TournamentStatus$1 as mn, type TournamentType$1 as mo, type TournamentFrequency$1 as mp, type TournamentMode$1 as mq, type TournamentLeaderboard$1 as mr, type TournamentPayout$1 as ms, type TournamentsQuery as mt, type TournamentsIdsQuery as mu, type MemberAchievementsQuery as mv, type RequireFirstDepositQuery as mw, type CabinetSiteMachineStatus$1 as mx, type MemberCabinetSiteMachineQuery as my, type CabinetWithdrawalQuery 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 CreateAccountInput as v, type CreateAccountReturn as w, type CreateAccountInput__Next as x, type RegisterMayaAccountReturn as y, type RegisterAgentAccountInput as z };