@gambulls-org/gambulls-apis 3.0.290 → 3.0.291
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.
|
@@ -58,6 +58,14 @@ function instanceOfApiAdminDashboardStatsGet200ResponseResponseObject(value) {
|
|
|
58
58
|
return false;
|
|
59
59
|
if (!('previousggr' in value) || value['previousggr'] === undefined)
|
|
60
60
|
return false;
|
|
61
|
+
if (!('totalwager' in value) || value['totalwager'] === undefined)
|
|
62
|
+
return false;
|
|
63
|
+
if (!('totalwin' in value) || value['totalwin'] === undefined)
|
|
64
|
+
return false;
|
|
65
|
+
if (!('previoustotalwager' in value) || value['previoustotalwager'] === undefined)
|
|
66
|
+
return false;
|
|
67
|
+
if (!('previoustotalwin' in value) || value['previoustotalwin'] === undefined)
|
|
68
|
+
return false;
|
|
61
69
|
return true;
|
|
62
70
|
}
|
|
63
71
|
function ApiAdminDashboardStatsGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -86,6 +94,10 @@ function ApiAdminDashboardStatsGet200ResponseResponseObjectFromJSONTyped(json, i
|
|
|
86
94
|
'previouspercentrepeatdeposits': json['previouspercentrepeatdeposits'],
|
|
87
95
|
'ggr': json['ggr'],
|
|
88
96
|
'previousggr': json['previousggr'],
|
|
97
|
+
'totalwager': json['totalwager'],
|
|
98
|
+
'totalwin': json['totalwin'],
|
|
99
|
+
'previoustotalwager': json['previoustotalwager'],
|
|
100
|
+
'previoustotalwin': json['previoustotalwin'],
|
|
89
101
|
};
|
|
90
102
|
}
|
|
91
103
|
function ApiAdminDashboardStatsGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -114,5 +126,9 @@ function ApiAdminDashboardStatsGet200ResponseResponseObjectToJSONTyped(value, ig
|
|
|
114
126
|
'previouspercentrepeatdeposits': value['previouspercentrepeatdeposits'],
|
|
115
127
|
'ggr': value['ggr'],
|
|
116
128
|
'previousggr': value['previousggr'],
|
|
129
|
+
'totalwager': value['totalwager'],
|
|
130
|
+
'totalwin': value['totalwin'],
|
|
131
|
+
'previoustotalwager': value['previoustotalwager'],
|
|
132
|
+
'previoustotalwin': value['previoustotalwin'],
|
|
117
133
|
};
|
|
118
134
|
}
|
|
@@ -127,6 +127,30 @@ export interface ApiAdminDashboardStatsGet200ResponseResponseObject {
|
|
|
127
127
|
* @memberof ApiAdminDashboardStatsGet200ResponseResponseObject
|
|
128
128
|
*/
|
|
129
129
|
previousggr: string | null;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {string}
|
|
133
|
+
* @memberof ApiAdminDashboardStatsGet200ResponseResponseObject
|
|
134
|
+
*/
|
|
135
|
+
totalwager: string | null;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {string}
|
|
139
|
+
* @memberof ApiAdminDashboardStatsGet200ResponseResponseObject
|
|
140
|
+
*/
|
|
141
|
+
totalwin: string | null;
|
|
142
|
+
/**
|
|
143
|
+
*
|
|
144
|
+
* @type {string}
|
|
145
|
+
* @memberof ApiAdminDashboardStatsGet200ResponseResponseObject
|
|
146
|
+
*/
|
|
147
|
+
previoustotalwager: string | null;
|
|
148
|
+
/**
|
|
149
|
+
*
|
|
150
|
+
* @type {string}
|
|
151
|
+
* @memberof ApiAdminDashboardStatsGet200ResponseResponseObject
|
|
152
|
+
*/
|
|
153
|
+
previoustotalwin: string | null;
|
|
130
154
|
}
|
|
131
155
|
|
|
132
156
|
/**
|
|
@@ -151,6 +175,10 @@ export function instanceOfApiAdminDashboardStatsGet200ResponseResponseObject(val
|
|
|
151
175
|
if (!('previouspercentrepeatdeposits' in value) || value['previouspercentrepeatdeposits'] === undefined) return false;
|
|
152
176
|
if (!('ggr' in value) || value['ggr'] === undefined) return false;
|
|
153
177
|
if (!('previousggr' in value) || value['previousggr'] === undefined) return false;
|
|
178
|
+
if (!('totalwager' in value) || value['totalwager'] === undefined) return false;
|
|
179
|
+
if (!('totalwin' in value) || value['totalwin'] === undefined) return false;
|
|
180
|
+
if (!('previoustotalwager' in value) || value['previoustotalwager'] === undefined) return false;
|
|
181
|
+
if (!('previoustotalwin' in value) || value['previoustotalwin'] === undefined) return false;
|
|
154
182
|
return true;
|
|
155
183
|
}
|
|
156
184
|
|
|
@@ -182,6 +210,10 @@ export function ApiAdminDashboardStatsGet200ResponseResponseObjectFromJSONTyped(
|
|
|
182
210
|
'previouspercentrepeatdeposits': json['previouspercentrepeatdeposits'],
|
|
183
211
|
'ggr': json['ggr'],
|
|
184
212
|
'previousggr': json['previousggr'],
|
|
213
|
+
'totalwager': json['totalwager'],
|
|
214
|
+
'totalwin': json['totalwin'],
|
|
215
|
+
'previoustotalwager': json['previoustotalwager'],
|
|
216
|
+
'previoustotalwin': json['previoustotalwin'],
|
|
185
217
|
};
|
|
186
218
|
}
|
|
187
219
|
|
|
@@ -214,6 +246,10 @@ export function ApiAdminDashboardStatsGet200ResponseResponseObjectFromJSONTyped(
|
|
|
214
246
|
'previouspercentrepeatdeposits': value['previouspercentrepeatdeposits'],
|
|
215
247
|
'ggr': value['ggr'],
|
|
216
248
|
'previousggr': value['previousggr'],
|
|
249
|
+
'totalwager': value['totalwager'],
|
|
250
|
+
'totalwin': value['totalwin'],
|
|
251
|
+
'previoustotalwager': value['previoustotalwager'],
|
|
252
|
+
'previoustotalwin': value['previoustotalwin'],
|
|
217
253
|
};
|
|
218
254
|
}
|
|
219
255
|
|