@gambulls-org/gambulls-apis 3.0.641 → 3.0.642
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.
|
@@ -322,6 +322,12 @@ class AdminDashboardV2Api extends runtime.BaseAPI {
|
|
|
322
322
|
if (requestParameters['endDate'] != null) {
|
|
323
323
|
queryParameters['endDate'] = requestParameters['endDate'];
|
|
324
324
|
}
|
|
325
|
+
if (requestParameters['isBonusBalance'] != null) {
|
|
326
|
+
queryParameters['isBonusBalance'] = requestParameters['isBonusBalance'];
|
|
327
|
+
}
|
|
328
|
+
if (requestParameters['isStreamer'] != null) {
|
|
329
|
+
queryParameters['isStreamer'] = requestParameters['isStreamer'];
|
|
330
|
+
}
|
|
325
331
|
const headerParameters = {};
|
|
326
332
|
if (this.configuration && this.configuration.apiKey) {
|
|
327
333
|
headerParameters["api-key"] = yield this.configuration.apiKey("api-key"); // ApiKeyAuth authentication
|
|
@@ -79,6 +79,8 @@ export interface ApiAdminDashboardV2PromotionsGetRequest {
|
|
|
79
79
|
export interface ApiAdminDashboardV2RevenueGetRequest {
|
|
80
80
|
startDate: ApiAdminGamesGetStartDateParameter;
|
|
81
81
|
endDate: ApiAdminGamesGetStartDateParameter;
|
|
82
|
+
isBonusBalance?: string;
|
|
83
|
+
isStreamer?: string;
|
|
82
84
|
}
|
|
83
85
|
|
|
84
86
|
export interface ApiAdminDashboardV2TopGamesGetRequest {
|
|
@@ -446,6 +448,14 @@ export class AdminDashboardV2Api extends runtime.BaseAPI {
|
|
|
446
448
|
queryParameters['endDate'] = requestParameters['endDate'];
|
|
447
449
|
}
|
|
448
450
|
|
|
451
|
+
if (requestParameters['isBonusBalance'] != null) {
|
|
452
|
+
queryParameters['isBonusBalance'] = requestParameters['isBonusBalance'];
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
if (requestParameters['isStreamer'] != null) {
|
|
456
|
+
queryParameters['isStreamer'] = requestParameters['isStreamer'];
|
|
457
|
+
}
|
|
458
|
+
|
|
449
459
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
450
460
|
|
|
451
461
|
if (this.configuration && this.configuration.apiKey) {
|
|
@@ -24,6 +24,8 @@ exports.ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectToJSONTyped
|
|
|
24
24
|
function instanceOfApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject(value) {
|
|
25
25
|
if (!('totalRegistrations' in value) || value['totalRegistrations'] === undefined)
|
|
26
26
|
return false;
|
|
27
|
+
if (!('totalFirstDepositors' in value) || value['totalFirstDepositors'] === undefined)
|
|
28
|
+
return false;
|
|
27
29
|
if (!('totalDepositors' in value) || value['totalDepositors'] === undefined)
|
|
28
30
|
return false;
|
|
29
31
|
if (!('totalBettors' in value) || value['totalBettors'] === undefined)
|
|
@@ -44,6 +46,8 @@ function instanceOfApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject
|
|
|
44
46
|
return false;
|
|
45
47
|
if (!('previousTotalRegistrations' in value) || value['previousTotalRegistrations'] === undefined)
|
|
46
48
|
return false;
|
|
49
|
+
if (!('previousTotalFirstDepositors' in value) || value['previousTotalFirstDepositors'] === undefined)
|
|
50
|
+
return false;
|
|
47
51
|
if (!('previousTotalDepositors' in value) || value['previousTotalDepositors'] === undefined)
|
|
48
52
|
return false;
|
|
49
53
|
if (!('previousTotalBettors' in value) || value['previousTotalBettors'] === undefined)
|
|
@@ -59,6 +63,7 @@ function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFromJSONTy
|
|
|
59
63
|
}
|
|
60
64
|
return {
|
|
61
65
|
'totalRegistrations': json['totalRegistrations'],
|
|
66
|
+
'totalFirstDepositors': json['totalFirstDepositors'],
|
|
62
67
|
'totalDepositors': json['totalDepositors'],
|
|
63
68
|
'totalBettors': json['totalBettors'],
|
|
64
69
|
'registrationToFTD': json['registrationToFTD'],
|
|
@@ -69,6 +74,7 @@ function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFromJSONTy
|
|
|
69
74
|
'newPlayers': json['newPlayers'],
|
|
70
75
|
'churnedPlayers': json['churnedPlayers'],
|
|
71
76
|
'previousTotalRegistrations': json['previousTotalRegistrations'],
|
|
77
|
+
'previousTotalFirstDepositors': json['previousTotalFirstDepositors'],
|
|
72
78
|
'previousTotalDepositors': json['previousTotalDepositors'],
|
|
73
79
|
'previousTotalBettors': json['previousTotalBettors'],
|
|
74
80
|
};
|
|
@@ -82,6 +88,7 @@ function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectToJSONType
|
|
|
82
88
|
}
|
|
83
89
|
return {
|
|
84
90
|
'totalRegistrations': value['totalRegistrations'],
|
|
91
|
+
'totalFirstDepositors': value['totalFirstDepositors'],
|
|
85
92
|
'totalDepositors': value['totalDepositors'],
|
|
86
93
|
'totalBettors': value['totalBettors'],
|
|
87
94
|
'registrationToFTD': value['registrationToFTD'],
|
|
@@ -92,6 +99,7 @@ function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectToJSONType
|
|
|
92
99
|
'newPlayers': value['newPlayers'],
|
|
93
100
|
'churnedPlayers': value['churnedPlayers'],
|
|
94
101
|
'previousTotalRegistrations': value['previousTotalRegistrations'],
|
|
102
|
+
'previousTotalFirstDepositors': value['previousTotalFirstDepositors'],
|
|
95
103
|
'previousTotalDepositors': value['previousTotalDepositors'],
|
|
96
104
|
'previousTotalBettors': value['previousTotalBettors'],
|
|
97
105
|
};
|
|
@@ -25,6 +25,12 @@ export interface ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject {
|
|
|
25
25
|
* @memberof ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject
|
|
26
26
|
*/
|
|
27
27
|
totalRegistrations: string | null;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject
|
|
32
|
+
*/
|
|
33
|
+
totalFirstDepositors: string | null;
|
|
28
34
|
/**
|
|
29
35
|
*
|
|
30
36
|
* @type {string}
|
|
@@ -85,6 +91,12 @@ export interface ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject {
|
|
|
85
91
|
* @memberof ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject
|
|
86
92
|
*/
|
|
87
93
|
previousTotalRegistrations: string | null;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {string}
|
|
97
|
+
* @memberof ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject
|
|
98
|
+
*/
|
|
99
|
+
previousTotalFirstDepositors: string | null;
|
|
88
100
|
/**
|
|
89
101
|
*
|
|
90
102
|
* @type {string}
|
|
@@ -104,6 +116,7 @@ export interface ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject {
|
|
|
104
116
|
*/
|
|
105
117
|
export function instanceOfApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject(value: object): value is ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObject {
|
|
106
118
|
if (!('totalRegistrations' in value) || value['totalRegistrations'] === undefined) return false;
|
|
119
|
+
if (!('totalFirstDepositors' in value) || value['totalFirstDepositors'] === undefined) return false;
|
|
107
120
|
if (!('totalDepositors' in value) || value['totalDepositors'] === undefined) return false;
|
|
108
121
|
if (!('totalBettors' in value) || value['totalBettors'] === undefined) return false;
|
|
109
122
|
if (!('registrationToFTD' in value) || value['registrationToFTD'] === undefined) return false;
|
|
@@ -114,6 +127,7 @@ export function instanceOfApiAdminDashboardV2PlayerActivityGet200ResponseRespons
|
|
|
114
127
|
if (!('newPlayers' in value) || value['newPlayers'] === undefined) return false;
|
|
115
128
|
if (!('churnedPlayers' in value) || value['churnedPlayers'] === undefined) return false;
|
|
116
129
|
if (!('previousTotalRegistrations' in value) || value['previousTotalRegistrations'] === undefined) return false;
|
|
130
|
+
if (!('previousTotalFirstDepositors' in value) || value['previousTotalFirstDepositors'] === undefined) return false;
|
|
117
131
|
if (!('previousTotalDepositors' in value) || value['previousTotalDepositors'] === undefined) return false;
|
|
118
132
|
if (!('previousTotalBettors' in value) || value['previousTotalBettors'] === undefined) return false;
|
|
119
133
|
return true;
|
|
@@ -130,6 +144,7 @@ export function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFro
|
|
|
130
144
|
return {
|
|
131
145
|
|
|
132
146
|
'totalRegistrations': json['totalRegistrations'],
|
|
147
|
+
'totalFirstDepositors': json['totalFirstDepositors'],
|
|
133
148
|
'totalDepositors': json['totalDepositors'],
|
|
134
149
|
'totalBettors': json['totalBettors'],
|
|
135
150
|
'registrationToFTD': json['registrationToFTD'],
|
|
@@ -140,6 +155,7 @@ export function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFro
|
|
|
140
155
|
'newPlayers': json['newPlayers'],
|
|
141
156
|
'churnedPlayers': json['churnedPlayers'],
|
|
142
157
|
'previousTotalRegistrations': json['previousTotalRegistrations'],
|
|
158
|
+
'previousTotalFirstDepositors': json['previousTotalFirstDepositors'],
|
|
143
159
|
'previousTotalDepositors': json['previousTotalDepositors'],
|
|
144
160
|
'previousTotalBettors': json['previousTotalBettors'],
|
|
145
161
|
};
|
|
@@ -157,6 +173,7 @@ export function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFro
|
|
|
157
173
|
return {
|
|
158
174
|
|
|
159
175
|
'totalRegistrations': value['totalRegistrations'],
|
|
176
|
+
'totalFirstDepositors': value['totalFirstDepositors'],
|
|
160
177
|
'totalDepositors': value['totalDepositors'],
|
|
161
178
|
'totalBettors': value['totalBettors'],
|
|
162
179
|
'registrationToFTD': value['registrationToFTD'],
|
|
@@ -167,6 +184,7 @@ export function ApiAdminDashboardV2PlayerActivityGet200ResponseResponseObjectFro
|
|
|
167
184
|
'newPlayers': value['newPlayers'],
|
|
168
185
|
'churnedPlayers': value['churnedPlayers'],
|
|
169
186
|
'previousTotalRegistrations': value['previousTotalRegistrations'],
|
|
187
|
+
'previousTotalFirstDepositors': value['previousTotalFirstDepositors'],
|
|
170
188
|
'previousTotalDepositors': value['previousTotalDepositors'],
|
|
171
189
|
'previousTotalBettors': value['previousTotalBettors'],
|
|
172
190
|
};
|