shufflecom-calculations 4.5.2 → 4.6.1

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,74 @@
1
+ export interface ResolvedGameImage {
2
+ id: string;
3
+ key: string;
4
+ }
5
+ export interface ResolvedGameTag {
6
+ name: string;
7
+ isEnabled: boolean;
8
+ isThemeTag: boolean;
9
+ isTournamentTag: boolean;
10
+ providerId: string | null;
11
+ }
12
+ export interface ResolvedGameProvider {
13
+ id: string;
14
+ name: string;
15
+ slug: string;
16
+ image: ResolvedGameImage | null;
17
+ icon: ResolvedGameImage | null;
18
+ disabledFiatCurrencies: string[];
19
+ disabled: boolean;
20
+ restrictionsWhitelist: string[];
21
+ }
22
+ export interface ResolvedGameAndGameCategory {
23
+ gameId: string;
24
+ gameCategoryName: string;
25
+ main: boolean;
26
+ }
27
+ export interface ResolvedGameLocalization {
28
+ language: string;
29
+ name: string;
30
+ image: ResolvedGameImage | null;
31
+ }
32
+ export interface ResolvedGameSource {
33
+ id: string;
34
+ externalId: string;
35
+ }
36
+ export interface ResolvedGame {
37
+ id: string;
38
+ name: string;
39
+ slug: string;
40
+ externalId: string | null;
41
+ description: string | null;
42
+ image: ResolvedGameImage | null;
43
+ icon: ResolvedGameImage | null;
44
+ provider: ResolvedGameProvider | null;
45
+ tags: ResolvedGameTag[];
46
+ gameAndGameCategories: ResolvedGameAndGameCategory[];
47
+ originalGame: string | null;
48
+ isFavourite: boolean;
49
+ demoMode: boolean;
50
+ edge: string;
51
+ edgeAlert: boolean;
52
+ bonusBuyMultiplier: number;
53
+ accentColor: string;
54
+ status: string;
55
+ beforeRecalledStatus: string | null;
56
+ releasedDate: string | null;
57
+ restrictions: string[] | null;
58
+ exclusiveRegions: string[] | null;
59
+ isRegionRestricted: boolean;
60
+ jurisdictions: string[] | null;
61
+ hasLive: boolean;
62
+ accumulating: boolean;
63
+ rolloverRestricted: boolean;
64
+ sweepStakesPlaythroughRate: number;
65
+ gameSources?: ResolvedGameSource[];
66
+ localizations?: ResolvedGameLocalization[];
67
+ completed?: boolean;
68
+ tournamentId?: string;
69
+ targetMultiplier?: number;
70
+ }
71
+ export interface PaginatedGameNoAuth {
72
+ totalCount: number | null;
73
+ nodes: ResolvedGame[];
74
+ }
@@ -0,0 +1,3 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ //# sourceMappingURL=paginated-game-no-auth.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"paginated-game-no-auth.js","sourceRoot":"","sources":["../../src/games/paginated-game-no-auth.ts"],"names":[],"mappings":""}