@opexa/portal-components 0.0.687 → 0.0.689
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/KYC/KYCReminder.lazy.js +6 -67
- package/dist/components/KYC/KycOpenOnHomeMount.d.ts +1 -4
- package/dist/components/KYC/KycOpenOnHomeMount.js +3 -62
- package/dist/constants/GameProvider.js +14 -2
- package/dist/types/index.d.ts +1 -1
- package/dist/ui/AlertDialog/AlertDialog.d.ts +154 -154
- package/dist/ui/AlertDialog/alertDialog.recipe.d.ts +14 -14
- package/dist/ui/Badge/Badge.d.ts +12 -12
- package/dist/ui/Badge/badge.anatomy.d.ts +1 -1
- package/dist/ui/Badge/badge.recipe.d.ts +3 -3
- package/dist/ui/Collapsible/Collapsible.d.ts +20 -20
- package/dist/ui/Collapsible/collapsible.recipe.d.ts +5 -5
- package/dist/ui/Combobox/Combobox.d.ts +42 -42
- package/dist/ui/Combobox/combobox.recipe.d.ts +3 -3
- package/dist/ui/DatePicker/DatePicker.d.ts +72 -72
- package/dist/ui/DatePicker/datePicker.recipe.d.ts +3 -3
- package/dist/ui/Dialog/Dialog.d.ts +33 -33
- package/dist/ui/Dialog/dialog.recipe.d.ts +3 -3
- package/dist/ui/Drawer/Drawer.d.ts +33 -33
- package/dist/ui/Drawer/drawer.recipe.d.ts +3 -3
- package/dist/ui/Menu/Menu.d.ts +198 -198
- package/dist/ui/Menu/menu.recipe.d.ts +11 -11
- package/dist/ui/NumberInput/NumberInput.d.ts +24 -24
- package/dist/ui/NumberInput/numberInput.recipe.d.ts +3 -3
- package/dist/ui/Popover/Popover.d.ts +154 -154
- package/dist/ui/Popover/popover.recipe.d.ts +14 -14
- package/dist/ui/Select/Select.d.ts +45 -45
- package/dist/ui/Select/select.recipe.d.ts +3 -3
- package/dist/ui/Table/Table.d.ts +21 -21
- package/dist/ui/Table/table.anatomy.d.ts +1 -1
- package/dist/ui/Table/table.recipe.d.ts +3 -3
- package/dist/ui/Tabs/Tabs.d.ts +15 -15
- package/dist/ui/Tabs/tabs.recipe.d.ts +3 -3
- package/dist/ui/Tooltip/Tooltip.d.ts +30 -30
- package/dist/ui/Tooltip/tooltip.recipe.d.ts +5 -5
- package/package.json +1 -1
- package/dist/components/AccountInfo/GoogleDisconnect.d.ts +0 -7
- package/dist/components/AccountInfo/GoogleDisconnect.js +0 -11
- package/dist/components/DigitainLauncher/Loading.d.ts +0 -1
- package/dist/components/DigitainLauncher/Loading.js +0 -5
- package/dist/components/KYC/BasicInformation.d.ts +0 -1
- package/dist/components/KYC/BasicInformation.js +0 -101
- package/dist/components/KYC/IdentityVerification.d.ts +0 -1
- package/dist/components/KYC/IdentityVerification.js +0 -120
- package/dist/components/KYC/Indicator.d.ts +0 -1
- package/dist/components/KYC/Indicator.js +0 -8
- package/dist/components/KYC/KYC.lazy.d.ts +0 -6
- package/dist/components/KYC/KYC.lazy.js +0 -45
- package/dist/components/KYC/KYCContext.d.ts +0 -6
- package/dist/components/KYC/KYCContext.js +0 -2
- package/dist/components/KYC/PersonalInformation.d.ts +0 -1
- package/dist/components/KYC/PersonalInformation.js +0 -122
- package/dist/components/KYC/useKYC.d.ts +0 -25
- package/dist/components/KYC/useKYC.js +0 -38
- package/dist/components/PortalProvider/CXDTokenObserver.d.ts +0 -1
- package/dist/components/PortalProvider/CXDTokenObserver.js +0 -30
- package/dist/icons/LinkBrokenIcon.d.ts +0 -2
- package/dist/icons/LinkBrokenIcon.js +0 -4
- package/dist/images/responsible-gaming-yellow.png +0 -0
|
@@ -17,12 +17,6 @@ import { Button } from '../../ui/Button/index.js';
|
|
|
17
17
|
import { Dialog } from '../../ui/Dialog/index.js';
|
|
18
18
|
import { Portal } from '../../ui/Portal/index.js';
|
|
19
19
|
export function KYCReminder(props) {
|
|
20
|
-
console.log('[KYCReminder] Component rendered with props:', {
|
|
21
|
-
siteName: props.siteName,
|
|
22
|
-
hasLogo: !!props.logo,
|
|
23
|
-
hasTitleBgColor: !!props.titleBgColor,
|
|
24
|
-
hasDescriptionBgColor: !!props.descriptionBgColor
|
|
25
|
-
});
|
|
26
20
|
const router = useRouter();
|
|
27
21
|
const globalStore = useGlobalStore(useShallow((ctx) => ({
|
|
28
22
|
kyc: ctx.kyc,
|
|
@@ -50,22 +44,9 @@ export function KYCReminder(props) {
|
|
|
50
44
|
});
|
|
51
45
|
const { data: session, isLoading: sessionLoading } = useSessionQuery();
|
|
52
46
|
const { data: account, isLoading: accountLoading } = useAccountQuery();
|
|
53
|
-
console.log('[KYCReminder] Query states:', {
|
|
54
|
-
sessionLoading,
|
|
55
|
-
accountLoading,
|
|
56
|
-
sessionStatus: session?.status,
|
|
57
|
-
hasAccount: !!account
|
|
58
|
-
});
|
|
59
47
|
const isPending = account?.verificationStatus === 'PENDING';
|
|
60
48
|
const isNotVerified = account?.verificationStatus === 'UNVERIFIED';
|
|
61
49
|
const isVerificationLocked = account?.status === 'VERIFICATION_LOCKED';
|
|
62
|
-
console.log('[KYCReminder] Account verification states:', {
|
|
63
|
-
verificationStatus: account?.verificationStatus,
|
|
64
|
-
accountStatus: account?.status,
|
|
65
|
-
isPending,
|
|
66
|
-
isNotVerified,
|
|
67
|
-
isVerificationLocked
|
|
68
|
-
});
|
|
69
50
|
const daysFromCreationToNow = useMemo(() => {
|
|
70
51
|
if (!account?.dateTimeCreated)
|
|
71
52
|
return 0;
|
|
@@ -73,12 +54,6 @@ export function KYCReminder(props) {
|
|
|
73
54
|
const now = new Date();
|
|
74
55
|
return differenceInCalendarDays(now, creationDate);
|
|
75
56
|
}, [account?.dateTimeCreated]);
|
|
76
|
-
console.log('[KYCReminder] Account timing:', {
|
|
77
|
-
dateTimeCreated: account?.dateTimeCreated,
|
|
78
|
-
daysFromCreationToNow,
|
|
79
|
-
isWithin3Days: daysFromCreationToNow <= 3,
|
|
80
|
-
isAfter1Day: daysFromCreationToNow > 1
|
|
81
|
-
});
|
|
82
57
|
const isAccountReady = !accountLoading;
|
|
83
58
|
const isSessionReady = !sessionLoading && session?.status === 'authenticated';
|
|
84
59
|
const isKYCReminderOpen = globalStore.kycReminder.open && !globalStore.kyc.open;
|
|
@@ -86,49 +61,13 @@ export function KYCReminder(props) {
|
|
|
86
61
|
const isKYCStateRelevant = isNotVerified ||
|
|
87
62
|
(isPending && isVerificationLocked) ||
|
|
88
63
|
(isNotVerified && isVerificationLocked);
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
isResponsibleGamingReminderClosed
|
|
95
|
-
});
|
|
96
|
-
console.log('[KYCReminder] Ready states:', {
|
|
97
|
-
isAccountReady,
|
|
98
|
-
isSessionReady,
|
|
99
|
-
isKYCStateRelevant
|
|
100
|
-
});
|
|
101
|
-
const shouldModalOpen = isSessionReady &&
|
|
102
|
-
isAccountReady &&
|
|
103
|
-
isKYCReminderOpen &&
|
|
104
|
-
isKYCStateRelevant &&
|
|
105
|
-
isResponsibleGamingReminderClosed;
|
|
106
|
-
console.log('[KYCReminder] Final modal decision:', {
|
|
107
|
-
shouldModalOpen,
|
|
108
|
-
conditions: {
|
|
109
|
-
isSessionReady,
|
|
110
|
-
isAccountReady,
|
|
111
|
-
isKYCReminderOpen,
|
|
112
|
-
isKYCStateRelevant,
|
|
113
|
-
isResponsibleGamingReminderClosed
|
|
114
|
-
}
|
|
115
|
-
});
|
|
116
|
-
return (_jsx(Dialog.Root, { open: shouldModalOpen, onOpenChange: (details) => {
|
|
117
|
-
console.log('[KYCReminder] Dialog open change:', details);
|
|
64
|
+
return (_jsx(Dialog.Root, { open: isSessionReady &&
|
|
65
|
+
isAccountReady &&
|
|
66
|
+
isKYCReminderOpen &&
|
|
67
|
+
isKYCStateRelevant &&
|
|
68
|
+
isResponsibleGamingReminderClosed, onOpenChange: (details) => {
|
|
118
69
|
globalStore.kycReminder.setOpen(details.open);
|
|
119
|
-
}, closeOnEscape: false, closeOnInteractOutside: false, lazyMount: true, unmountOnExit: true, children: _jsxs(Portal, { children: [_jsx(Dialog.Backdrop, { className: "!z-[calc(var(--z-dialog)+3)]" }), _jsx(Dialog.Positioner, { className: "!z-[calc(var(--z-dialog)+4)] flex items-center justify-center", children: _jsxs(Dialog.Content, { className: "mx-auto h-fit max-w-[calc(100dvw-1rem)] overflow-y-auto rounded-lg bg-bg-primary lg:max-w-[400px]", children: [(() => {
|
|
120
|
-
const condition1 = !isPending && isNotVerified && isVerificationLocked;
|
|
121
|
-
const condition2 = isNotVerified && daysFromCreationToNow <= 3 && daysFromCreationToNow > 1 && !isVerificationLocked;
|
|
122
|
-
const condition3 = isNotVerified && !isVerificationLocked && !(daysFromCreationToNow <= 3 && daysFromCreationToNow > 1);
|
|
123
|
-
const condition4 = isPending && isVerificationLocked;
|
|
124
|
-
console.log('[KYCReminder] Modal variant conditions:', {
|
|
125
|
-
condition1_TemporarilyLocked: condition1,
|
|
126
|
-
condition2_FriendlyReminder: condition2,
|
|
127
|
-
condition3_PersonalVerification: condition3,
|
|
128
|
-
condition4_VerificationInProgress: condition4
|
|
129
|
-
});
|
|
130
|
-
return null;
|
|
131
|
-
})(), !isPending && isNotVerified && isVerificationLocked && (_jsxs("div", { className: "p-3xl text-center", children: [_jsx("div", { className: "mx-auto mb-4 w-fit rounded-full p-2", children: _jsx(Image, { src: props.logo, alt: `${props.siteName} logo`, width: 200, height: 100, className: "mx-auto h-auto w-[120px]", draggable: false }) }), _jsx("h2", { className: `mt-4 font-semibold text-lg ${props.titleBgColor}`, children: "Temporarily Locked" }), _jsx("p", { className: `mt-xs text-sm text-text-tertiary-600 ${props.descriptionBgColor}`, children: "Your account has been locked due to incomplete verification. Please complete your verification to restore full access." }), _jsxs("div", { className: "mt-6 flex w-full items-center justify-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo?.logo ?? pagcorLogo, alt: "PAGCOR logo", height: 88, width: 88, className: `h-[88px] w-auto shrink-0 ${props.pagcorLogo?.styles ?? ''}`, draggable: false, unoptimized: true }), _jsx(Image, { src: props.responsibleGamingLogo?.logo ?? responsibleGamingLogo, alt: "Responsible Gaming logo", height: 50, width: 186, className: `h-[50px] w-auto shrink-0 ${props.responsibleGamingLogo?.styles ?? ''}`, draggable: false, unoptimized: true })] }), _jsx(Dialog.Context, { children: (api) => (_jsxs("div", { className: "mt-6 space-y-lg", children: [_jsx(Button, { onClick: () => {
|
|
70
|
+
}, closeOnEscape: false, closeOnInteractOutside: false, lazyMount: true, unmountOnExit: true, children: _jsxs(Portal, { children: [_jsx(Dialog.Backdrop, { className: "!z-[calc(var(--z-dialog)+3)]" }), _jsx(Dialog.Positioner, { className: "!z-[calc(var(--z-dialog)+4)] flex items-center justify-center", children: _jsxs(Dialog.Content, { className: "mx-auto h-fit max-w-[calc(100dvw-1rem)] overflow-y-auto rounded-lg bg-bg-primary lg:max-w-[400px]", children: [!isPending && isNotVerified && isVerificationLocked && (_jsxs("div", { className: "p-3xl text-center", children: [_jsx("div", { className: "mx-auto mb-4 w-fit rounded-full p-2", children: _jsx(Image, { src: props.logo, alt: `${props.siteName} logo`, width: 200, height: 100, className: "mx-auto h-auto w-[120px]", draggable: false }) }), _jsx("h2", { className: `mt-4 font-semibold text-lg ${props.titleBgColor}`, children: "Temporarily Locked" }), _jsx("p", { className: `mt-xs text-sm text-text-tertiary-600 ${props.descriptionBgColor}`, children: "Your account has been locked due to incomplete verification. Please complete your verification to restore full access." }), _jsxs("div", { className: "mt-6 flex w-full items-center justify-center gap-3xl", children: [_jsx(Image, { src: props.pagcorLogo?.logo ?? pagcorLogo, alt: "PAGCOR logo", height: 88, width: 88, className: `h-[88px] w-auto shrink-0 ${props.pagcorLogo?.styles ?? ''}`, draggable: false, unoptimized: true }), _jsx(Image, { src: props.responsibleGamingLogo?.logo ?? responsibleGamingLogo, alt: "Responsible Gaming logo", height: 50, width: 186, className: `h-[50px] w-auto shrink-0 ${props.responsibleGamingLogo?.styles ?? ''}`, draggable: false, unoptimized: true })] }), _jsx(Dialog.Context, { children: (api) => (_jsxs("div", { className: "mt-6 space-y-lg", children: [_jsx(Button, { onClick: () => {
|
|
132
71
|
api.setOpen(false);
|
|
133
72
|
globalStore.kyc.setOpen(true);
|
|
134
73
|
}, children: "Complete KYC" }), ' ', _jsx(Button, { className: "bg-transparent text-text-brand-primary-600", onClick: () => {
|
|
@@ -3,43 +3,13 @@ import { useEffect } from 'react';
|
|
|
3
3
|
import { useAccountQuery } from '../../client/hooks/useAccountQuery.js';
|
|
4
4
|
import { useGlobalStore } from '../../client/hooks/useGlobalStore.js';
|
|
5
5
|
import { useMemberVerificationQuery } from '../../client/hooks/useMemberVerificationQuery.js';
|
|
6
|
-
export function KycOpenOnHomeMount(
|
|
7
|
-
console.log('[KycOpenOnHomeMount] Component mounted with props:', props);
|
|
6
|
+
export function KycOpenOnHomeMount() {
|
|
8
7
|
const setkycReminderOpen = useGlobalStore((s) => s.kycReminder.setOpen);
|
|
9
8
|
const setkycOpen = useGlobalStore((s) => s.kyc.setOpen);
|
|
10
9
|
const { data: verification, isLoading: verificationLoading } = useMemberVerificationQuery();
|
|
11
10
|
const { data: account, isLoading: accountLoading } = useAccountQuery();
|
|
12
|
-
console.log('[KycOpenOnHomeMount] Query states:', {
|
|
13
|
-
verificationLoading,
|
|
14
|
-
accountLoading,
|
|
15
|
-
hasVerificationData: !!verification,
|
|
16
|
-
hasAccountData: !!account
|
|
17
|
-
});
|
|
18
11
|
const isVerificationLocked = account?.status === 'VERIFICATION_LOCKED';
|
|
19
12
|
const isPending = account?.verificationStatus === 'PENDING';
|
|
20
|
-
console.log('[KycOpenOnHomeMount] Account status:', {
|
|
21
|
-
accountStatus: account?.status,
|
|
22
|
-
verificationStatus: account?.verificationStatus,
|
|
23
|
-
isVerificationLocked,
|
|
24
|
-
isPending,
|
|
25
|
-
verified: account?.verified
|
|
26
|
-
});
|
|
27
|
-
console.log('[KycOpenOnHomeMount] Verification data:', {
|
|
28
|
-
sumsubVerified: verification?.sumsubVerified,
|
|
29
|
-
status: verification?.status,
|
|
30
|
-
nationality: !!verification?.nationality,
|
|
31
|
-
natureOfWork: !!verification?.natureOfWork,
|
|
32
|
-
sourceOfIncome: !!verification?.sourceOfIncome,
|
|
33
|
-
permanentAddress: !!verification?.permanentAddress,
|
|
34
|
-
placeOfBirth: !!verification?.placeOfBirth,
|
|
35
|
-
address: !!verification?.address,
|
|
36
|
-
selfieImage: !!verification?.selfieImage,
|
|
37
|
-
idFrontImage: !!verification?.idFrontImage
|
|
38
|
-
});
|
|
39
|
-
console.log('[KycOpenOnHomeMount] Account KYC data:', {
|
|
40
|
-
realName: !!account?.realName,
|
|
41
|
-
birthDay: !!account?.birthDay
|
|
42
|
-
});
|
|
43
13
|
const hasntSubmittedCompliantDocs = account?.verified ||
|
|
44
14
|
verification?.sumsubVerified ||
|
|
45
15
|
verification?.status === 'APPROVED' ||
|
|
@@ -62,57 +32,28 @@ export function KycOpenOnHomeMount(props) {
|
|
|
62
32
|
!verification?.permanentAddress ||
|
|
63
33
|
!verification?.placeOfBirth ||
|
|
64
34
|
!verification?.address;
|
|
65
|
-
console.log('[KycOpenOnHomeMount] KYC status calculations:', {
|
|
66
|
-
hasntSubmittedCompliantDocs,
|
|
67
|
-
hasntCompletedKYC,
|
|
68
|
-
isSkippable: props.isSkippable
|
|
69
|
-
});
|
|
70
35
|
useEffect(() => {
|
|
71
|
-
console.log(
|
|
72
|
-
console.log('[KycOpenOnHomeMount] Current state:', {
|
|
73
|
-
hasntSubmittedCompliantDocs,
|
|
74
|
-
hasntCompletedKYC,
|
|
75
|
-
verificationLoading,
|
|
76
|
-
accountLoading,
|
|
77
|
-
isPending,
|
|
78
|
-
isVerificationLocked,
|
|
79
|
-
isSkippable: props.isSkippable
|
|
80
|
-
});
|
|
36
|
+
console.log(hasntSubmittedCompliantDocs, hasntCompletedKYC);
|
|
81
37
|
if (!verificationLoading && !accountLoading) {
|
|
82
|
-
console.log('[KycOpenOnHomeMount] Queries loaded, processing logic...');
|
|
83
38
|
// Handle pending case with feature flag
|
|
84
39
|
if (isPending) {
|
|
85
|
-
console.log('[KycOpenOnHomeMount] Account is pending - closing KYC modal, opening reminder');
|
|
86
40
|
setkycOpen(false);
|
|
87
41
|
setkycReminderOpen(true);
|
|
88
42
|
}
|
|
89
43
|
if (hasntSubmittedCompliantDocs || hasntCompletedKYC) {
|
|
90
|
-
|
|
91
|
-
console.log('[KycOpenOnHomeMount] KYC incomplete but skippable - opening reminder');
|
|
92
|
-
setkycReminderOpen(true);
|
|
93
|
-
}
|
|
94
|
-
else {
|
|
95
|
-
console.log('[KycOpenOnHomeMount] KYC incomplete and not skippable - opening KYC modal');
|
|
96
|
-
setkycOpen(true);
|
|
97
|
-
}
|
|
44
|
+
setkycReminderOpen(true);
|
|
98
45
|
}
|
|
99
46
|
else if ((!hasntSubmittedCompliantDocs && hasntCompletedKYC) ||
|
|
100
47
|
isVerificationLocked) {
|
|
101
|
-
console.log('[KycOpenOnHomeMount] Partial completion or verification locked - opening reminder');
|
|
102
48
|
setkycReminderOpen(true);
|
|
103
49
|
}
|
|
104
50
|
else {
|
|
105
|
-
console.log('[KycOpenOnHomeMount] KYC complete - closing reminder');
|
|
106
51
|
setkycReminderOpen(false);
|
|
107
52
|
}
|
|
108
53
|
}
|
|
109
|
-
else {
|
|
110
|
-
console.log('[KycOpenOnHomeMount] Still loading queries, skipping logic');
|
|
111
|
-
}
|
|
112
54
|
}, [
|
|
113
55
|
setkycReminderOpen,
|
|
114
56
|
setkycOpen,
|
|
115
|
-
props.isSkippable,
|
|
116
57
|
hasntSubmittedCompliantDocs,
|
|
117
58
|
verificationLoading,
|
|
118
59
|
accountLoading,
|
|
@@ -36,10 +36,10 @@ import pragmaticplay from '../images/game-providers/PRAGMATIC_PLAY.png';
|
|
|
36
36
|
import relaxgaming from '../images/game-providers/RELAX_GAMING.png';
|
|
37
37
|
import rtg from '../images/game-providers/RTG.png';
|
|
38
38
|
import saba from '../images/game-providers/SABA.png';
|
|
39
|
+
import sagaming from '../images/game-providers/SAGAMING.png';
|
|
39
40
|
import spinix from '../images/game-providers/SPINIX.png';
|
|
40
41
|
import spribe from '../images/game-providers/SPRIBE.png';
|
|
41
42
|
import yellowbat from '../images/game-providers/YELLOWBAT.png';
|
|
42
|
-
import sagaming from '../images/game-providers/SAGAMING.png';
|
|
43
43
|
export const GAME_PROVIDER_DATA = {
|
|
44
44
|
ALIZE: {
|
|
45
45
|
id: 'ALIZE',
|
|
@@ -311,6 +311,18 @@ export const GAME_PROVIDER_DATA = {
|
|
|
311
311
|
slug: 'sagaming',
|
|
312
312
|
logo: sagaming,
|
|
313
313
|
},
|
|
314
|
+
ALPHACHINKO: {
|
|
315
|
+
id: 'ALPHACHINKO',
|
|
316
|
+
name: 'Alpha Chinko',
|
|
317
|
+
slug: 'alphachinko',
|
|
318
|
+
logo: '',
|
|
319
|
+
},
|
|
320
|
+
ONEAPI_SPADEGAMING: {
|
|
321
|
+
id: 'ONEAPI_SPADEGAMING',
|
|
322
|
+
name: 'OneAPI Spadegaming',
|
|
323
|
+
slug: 'oneapi-spadegaming',
|
|
324
|
+
logo: '',
|
|
325
|
+
},
|
|
314
326
|
};
|
|
315
327
|
export const GAME_PROVIDERS = Object.values(GAME_PROVIDER_DATA).map(({ id }) => id);
|
|
316
328
|
export const LEGACY_GAME_PROVIDERS = [
|
|
@@ -345,5 +357,5 @@ export const LEGACY_GAME_PROVIDERS = [
|
|
|
345
357
|
'EZUGI',
|
|
346
358
|
'ALIZE',
|
|
347
359
|
'BNG',
|
|
348
|
-
'JILI_BINGO'
|
|
360
|
+
'JILI_BINGO',
|
|
349
361
|
];
|
package/dist/types/index.d.ts
CHANGED
|
@@ -157,7 +157,7 @@ export interface Announcement {
|
|
|
157
157
|
dateTimeLastUpdated: string;
|
|
158
158
|
}
|
|
159
159
|
export type GameType = 'SLOTS' | 'SPORTS' | 'FISHING' | 'BINGO' | 'LIVE' | 'GAMES' | 'TABLE' | 'SPECIALTY' | 'NUMERICAL' | 'ARCADE';
|
|
160
|
-
export type GameProvider = 'JILI' | 'JILI_BINGO' | 'PGSOFT' | 'FACHAI' | 'BTI' | 'DG' | 'PLAYTECH' | 'E2E' | 'ONEAPI_EVOLUTION' | 'EVOLUTION' | 'EVOLUTION_NETENT' | 'EVOLUTION_REDTIGER' | 'MEGABALL' | 'MEGA2SPIN' | 'DARWIN' | 'RTG' | 'DRBINGO' | 'HOLLYWOODTV' | 'CQ9' | 'JDB' | 'HABANERO' | 'SPINIX' | 'JOKER' | 'HACKSAW' | 'JDBGTF' | 'JDBSPRIBE' | 'MICROGAMING' | 'RELAXGAMING' | 'EVOPLAY' | 'BOOONGO' | 'BGAMING' | 'KINGMAKER' | 'KINGMIDAS' | 'YELLOWBAT' | 'ETENGJUE' | 'SABA' | 'PRAGMATICPLAY' | 'SPRIBE' | 'EZUGI' | 'ALIZE' | 'DIGITAIN' | 'BNG' | 'NO_LIMIT_CITY' | 'BIG_TIME_GAMING' | 'SAGAMING';
|
|
160
|
+
export type GameProvider = 'JILI' | 'JILI_BINGO' | 'PGSOFT' | 'FACHAI' | 'BTI' | 'DG' | 'PLAYTECH' | 'E2E' | 'ONEAPI_EVOLUTION' | 'EVOLUTION' | 'EVOLUTION_NETENT' | 'EVOLUTION_REDTIGER' | 'MEGABALL' | 'MEGA2SPIN' | 'DARWIN' | 'RTG' | 'DRBINGO' | 'HOLLYWOODTV' | 'CQ9' | 'JDB' | 'HABANERO' | 'SPINIX' | 'JOKER' | 'HACKSAW' | 'JDBGTF' | 'JDBSPRIBE' | 'MICROGAMING' | 'RELAXGAMING' | 'EVOPLAY' | 'BOOONGO' | 'BGAMING' | 'KINGMAKER' | 'KINGMIDAS' | 'YELLOWBAT' | 'ETENGJUE' | 'SABA' | 'PRAGMATICPLAY' | 'SPRIBE' | 'EZUGI' | 'ALIZE' | 'DIGITAIN' | 'BNG' | 'NO_LIMIT_CITY' | 'BIG_TIME_GAMING' | 'SAGAMING' | 'ONEAPI_SPADEGAMING' | 'ALPHACHINKO';
|
|
161
161
|
export type GameStatus = 'ACTIVE' | 'INACTIVE';
|
|
162
162
|
export type GameTag = 'HOT' | 'hot' | 'NEW' | 'new' | 'TOP' | 'top' | 'POPULAR' | 'popular' | (string & {});
|
|
163
163
|
export interface Game {
|