@gambulls-org/gambulls-apis 3.0.734 → 3.0.736
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/.openapi-generator/FILES +6 -0
- package/apis/UserBalanceApi.js +35 -0
- package/apis/UserBalanceApi.ts +41 -0
- package/models/ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInner.js +2 -0
- package/models/ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInner.ts +8 -0
- package/models/ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner.js +8 -0
- package/models/ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner.ts +18 -0
- package/models/ApiAdminDepositBonusIdGet200ResponseResponseObject.js +12 -0
- package/models/ApiAdminDepositBonusIdGet200ResponseResponseObject.ts +27 -0
- package/models/ApiAdminDepositBonusPostRequest.js +6 -0
- package/models/ApiAdminDepositBonusPostRequest.ts +24 -0
- package/models/ApiAdminDepositBonusPut200ResponseResponseObject.js +12 -0
- package/models/ApiAdminDepositBonusPut200ResponseResponseObject.ts +27 -0
- package/models/ApiAdminDepositBonusPutRequest.js +6 -0
- package/models/ApiAdminDepositBonusPutRequest.ts +24 -0
- package/models/ApiAdminRakebackEventEventIdGet200ResponseResponseObject.js +4 -0
- package/models/ApiAdminRakebackEventEventIdGet200ResponseResponseObject.ts +9 -0
- package/models/ApiAdminRakebackEventEventIdPutRequest.js +2 -0
- package/models/ApiAdminRakebackEventEventIdPutRequest.ts +8 -0
- package/models/ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner.js +4 -0
- package/models/ApiAdminRakebackEventGet200ResponseResponseObjectItemsInner.ts +9 -0
- package/models/ApiAdminRakebackEventPostRequest.js +2 -0
- package/models/ApiAdminRakebackEventPostRequest.ts +8 -0
- package/models/ApiUserDepositBonusActiveGet200Response.js +61 -0
- package/models/ApiUserDepositBonusActiveGet200Response.ts +100 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObject.js +114 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObject.ts +205 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewards.js +61 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewards.ts +106 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsLossback.js +66 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsLossback.ts +102 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsPercentage.js +66 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsPercentage.ts +102 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsTiered.js +58 -0
- package/models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsTiered.ts +84 -0
- package/models/index.js +6 -0
- package/models/index.ts +6 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -724,6 +724,12 @@ models/ApiUserChangePasswordPostRequest.ts
|
|
|
724
724
|
models/ApiUserChangePasswordPostRequestMetadata.ts
|
|
725
725
|
models/ApiUserChangePasswordPostRequestMetadataGeo.ts
|
|
726
726
|
models/ApiUserChatMessagePostRequest.ts
|
|
727
|
+
models/ApiUserDepositBonusActiveGet200Response.ts
|
|
728
|
+
models/ApiUserDepositBonusActiveGet200ResponseResponseObject.ts
|
|
729
|
+
models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewards.ts
|
|
730
|
+
models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsLossback.ts
|
|
731
|
+
models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsPercentage.ts
|
|
732
|
+
models/ApiUserDepositBonusActiveGet200ResponseResponseObjectRewardsTiered.ts
|
|
727
733
|
models/ApiUserDepositWalletGet200Response.ts
|
|
728
734
|
models/ApiUserDepositWalletGet200ResponseResponseObject.ts
|
|
729
735
|
models/ApiUserDocumentGet200Response.ts
|
package/apis/UserBalanceApi.js
CHANGED
|
@@ -196,5 +196,40 @@ class UserBalanceApi extends runtime.BaseAPI {
|
|
|
196
196
|
return yield response.value();
|
|
197
197
|
});
|
|
198
198
|
}
|
|
199
|
+
/**
|
|
200
|
+
* Get Active Deposit Bonus
|
|
201
|
+
*/
|
|
202
|
+
apiUserDepositBonusActiveGetRaw(initOverrides) {
|
|
203
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
204
|
+
const queryParameters = {};
|
|
205
|
+
const headerParameters = {};
|
|
206
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
207
|
+
headerParameters["api-key"] = yield this.configuration.apiKey("api-key"); // ApiKeyAuth authentication
|
|
208
|
+
}
|
|
209
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
210
|
+
const token = this.configuration.accessToken;
|
|
211
|
+
const tokenString = yield token("BearerAuth", []);
|
|
212
|
+
if (tokenString) {
|
|
213
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
214
|
+
}
|
|
215
|
+
}
|
|
216
|
+
const response = yield this.request({
|
|
217
|
+
path: `/api/user/deposit-bonus/active`,
|
|
218
|
+
method: 'GET',
|
|
219
|
+
headers: headerParameters,
|
|
220
|
+
query: queryParameters,
|
|
221
|
+
}, initOverrides);
|
|
222
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ApiUserDepositBonusActiveGet200ResponseFromJSON)(jsonValue));
|
|
223
|
+
});
|
|
224
|
+
}
|
|
225
|
+
/**
|
|
226
|
+
* Get Active Deposit Bonus
|
|
227
|
+
*/
|
|
228
|
+
apiUserDepositBonusActiveGet(initOverrides) {
|
|
229
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
230
|
+
const response = yield this.apiUserDepositBonusActiveGetRaw(initOverrides);
|
|
231
|
+
return yield response.value();
|
|
232
|
+
});
|
|
233
|
+
}
|
|
199
234
|
}
|
|
200
235
|
exports.UserBalanceApi = UserBalanceApi;
|
package/apis/UserBalanceApi.ts
CHANGED
|
@@ -21,6 +21,7 @@ import type {
|
|
|
21
21
|
ApiUserBalanceMainGet200Response,
|
|
22
22
|
ApiUserBalanceTransferVaultPost200Response,
|
|
23
23
|
ApiUserBalanceTransferVaultPostRequest,
|
|
24
|
+
ApiUserDepositBonusActiveGet200Response,
|
|
24
25
|
} from '../models/index';
|
|
25
26
|
import {
|
|
26
27
|
ApiHealthCheckGet200ResponseFromJSON,
|
|
@@ -35,6 +36,8 @@ import {
|
|
|
35
36
|
ApiUserBalanceTransferVaultPost200ResponseToJSON,
|
|
36
37
|
ApiUserBalanceTransferVaultPostRequestFromJSON,
|
|
37
38
|
ApiUserBalanceTransferVaultPostRequestToJSON,
|
|
39
|
+
ApiUserDepositBonusActiveGet200ResponseFromJSON,
|
|
40
|
+
ApiUserDepositBonusActiveGet200ResponseToJSON,
|
|
38
41
|
} from '../models/index';
|
|
39
42
|
|
|
40
43
|
export interface ApiUserBalanceClaimPostOperationRequest {
|
|
@@ -208,4 +211,42 @@ export class UserBalanceApi extends runtime.BaseAPI {
|
|
|
208
211
|
return await response.value();
|
|
209
212
|
}
|
|
210
213
|
|
|
214
|
+
/**
|
|
215
|
+
* Get Active Deposit Bonus
|
|
216
|
+
*/
|
|
217
|
+
async apiUserDepositBonusActiveGetRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiUserDepositBonusActiveGet200Response>> {
|
|
218
|
+
const queryParameters: any = {};
|
|
219
|
+
|
|
220
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
221
|
+
|
|
222
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
223
|
+
headerParameters["api-key"] = await this.configuration.apiKey("api-key"); // ApiKeyAuth authentication
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
227
|
+
const token = this.configuration.accessToken;
|
|
228
|
+
const tokenString = await token("BearerAuth", []);
|
|
229
|
+
|
|
230
|
+
if (tokenString) {
|
|
231
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
const response = await this.request({
|
|
235
|
+
path: `/api/user/deposit-bonus/active`,
|
|
236
|
+
method: 'GET',
|
|
237
|
+
headers: headerParameters,
|
|
238
|
+
query: queryParameters,
|
|
239
|
+
}, initOverrides);
|
|
240
|
+
|
|
241
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiUserDepositBonusActiveGet200ResponseFromJSON(jsonValue));
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
/**
|
|
245
|
+
* Get Active Deposit Bonus
|
|
246
|
+
*/
|
|
247
|
+
async apiUserDepositBonusActiveGet(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiUserDepositBonusActiveGet200Response> {
|
|
248
|
+
const response = await this.apiUserDepositBonusActiveGetRaw(initOverrides);
|
|
249
|
+
return await response.value();
|
|
250
|
+
}
|
|
251
|
+
|
|
211
252
|
}
|
|
@@ -41,6 +41,7 @@ function ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInnerFro
|
|
|
41
41
|
'id': json['id'],
|
|
42
42
|
'gameId': json['gameId'],
|
|
43
43
|
'gameName': json['gameName'],
|
|
44
|
+
'providerName': json['providerName'] == null ? undefined : json['providerName'],
|
|
44
45
|
};
|
|
45
46
|
}
|
|
46
47
|
function ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInnerToJSON(json) {
|
|
@@ -54,5 +55,6 @@ function ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInnerToJ
|
|
|
54
55
|
'id': value['id'],
|
|
55
56
|
'gameId': value['gameId'],
|
|
56
57
|
'gameName': value['gameName'],
|
|
58
|
+
'providerName': value['providerName'],
|
|
57
59
|
};
|
|
58
60
|
}
|
|
@@ -37,6 +37,12 @@ export interface ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGames
|
|
|
37
37
|
* @memberof ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInner
|
|
38
38
|
*/
|
|
39
39
|
gameName: string;
|
|
40
|
+
/**
|
|
41
|
+
*
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesInner
|
|
44
|
+
*/
|
|
45
|
+
providerName?: string;
|
|
40
46
|
}
|
|
41
47
|
|
|
42
48
|
/**
|
|
@@ -62,6 +68,7 @@ export function ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesI
|
|
|
62
68
|
'id': json['id'],
|
|
63
69
|
'gameId': json['gameId'],
|
|
64
70
|
'gameName': json['gameName'],
|
|
71
|
+
'providerName': json['providerName'] == null ? undefined : json['providerName'],
|
|
65
72
|
};
|
|
66
73
|
}
|
|
67
74
|
|
|
@@ -79,6 +86,7 @@ export function ApiAdminBonusBonusIdGet200ResponseResponseObjectRestrictedGamesI
|
|
|
79
86
|
'id': value['id'],
|
|
80
87
|
'gameId': value['gameId'],
|
|
81
88
|
'gameName': value['gameName'],
|
|
89
|
+
'providerName': value['providerName'],
|
|
82
90
|
};
|
|
83
91
|
}
|
|
84
92
|
|
|
@@ -56,6 +56,10 @@ function instanceOfApiAdminDepositBonusGet200ResponseResponseObjectItemsInner(va
|
|
|
56
56
|
return false;
|
|
57
57
|
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
58
58
|
return false;
|
|
59
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined)
|
|
60
|
+
return false;
|
|
61
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined)
|
|
62
|
+
return false;
|
|
59
63
|
if (!('createdBy' in value) || value['createdBy'] === undefined)
|
|
60
64
|
return false;
|
|
61
65
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined)
|
|
@@ -88,6 +92,8 @@ function ApiAdminDepositBonusGet200ResponseResponseObjectItemsInnerFromJSONTyped
|
|
|
88
92
|
'status': json['status'],
|
|
89
93
|
'startDate': json['startDate'],
|
|
90
94
|
'endDate': json['endDate'],
|
|
95
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
96
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
91
97
|
'createdBy': json['createdBy'],
|
|
92
98
|
'updatedBy': json['updatedBy'],
|
|
93
99
|
'createdAt': json['createdAt'],
|
|
@@ -115,6 +121,8 @@ function ApiAdminDepositBonusGet200ResponseResponseObjectItemsInnerToJSONTyped(v
|
|
|
115
121
|
'status': value['status'],
|
|
116
122
|
'startDate': value['startDate'],
|
|
117
123
|
'endDate': value['endDate'],
|
|
124
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
125
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
118
126
|
'createdBy': value['createdBy'],
|
|
119
127
|
'updatedBy': value['updatedBy'],
|
|
120
128
|
'createdAt': value['createdAt'],
|
|
@@ -99,6 +99,18 @@ export interface ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner {
|
|
|
99
99
|
* @memberof ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner
|
|
100
100
|
*/
|
|
101
101
|
endDate: string;
|
|
102
|
+
/**
|
|
103
|
+
*
|
|
104
|
+
* @type {boolean}
|
|
105
|
+
* @memberof ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner
|
|
106
|
+
*/
|
|
107
|
+
isAllowedMultiAccount: boolean;
|
|
108
|
+
/**
|
|
109
|
+
*
|
|
110
|
+
* @type {number}
|
|
111
|
+
* @memberof ApiAdminDepositBonusGet200ResponseResponseObjectItemsInner
|
|
112
|
+
*/
|
|
113
|
+
maxInstancesPerUser: number;
|
|
102
114
|
/**
|
|
103
115
|
*
|
|
104
116
|
* @type {string}
|
|
@@ -159,6 +171,8 @@ export function instanceOfApiAdminDepositBonusGet200ResponseResponseObjectItemsI
|
|
|
159
171
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
160
172
|
if (!('startDate' in value) || value['startDate'] === undefined) return false;
|
|
161
173
|
if (!('endDate' in value) || value['endDate'] === undefined) return false;
|
|
174
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined) return false;
|
|
175
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined) return false;
|
|
162
176
|
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
163
177
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
164
178
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
@@ -189,6 +203,8 @@ export function ApiAdminDepositBonusGet200ResponseResponseObjectItemsInnerFromJS
|
|
|
189
203
|
'status': json['status'],
|
|
190
204
|
'startDate': json['startDate'],
|
|
191
205
|
'endDate': json['endDate'],
|
|
206
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
207
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
192
208
|
'createdBy': json['createdBy'],
|
|
193
209
|
'updatedBy': json['updatedBy'],
|
|
194
210
|
'createdAt': json['createdAt'],
|
|
@@ -220,6 +236,8 @@ export function ApiAdminDepositBonusGet200ResponseResponseObjectItemsInnerFromJS
|
|
|
220
236
|
'status': value['status'],
|
|
221
237
|
'startDate': value['startDate'],
|
|
222
238
|
'endDate': value['endDate'],
|
|
239
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
240
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
223
241
|
'createdBy': value['createdBy'],
|
|
224
242
|
'updatedBy': value['updatedBy'],
|
|
225
243
|
'createdAt': value['createdAt'],
|
|
@@ -59,6 +59,12 @@ function instanceOfApiAdminDepositBonusIdGet200ResponseResponseObject(value) {
|
|
|
59
59
|
return false;
|
|
60
60
|
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
61
61
|
return false;
|
|
62
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined)
|
|
63
|
+
return false;
|
|
64
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined)
|
|
65
|
+
return false;
|
|
66
|
+
if (!('termsAndConditions' in value) || value['termsAndConditions'] === undefined)
|
|
67
|
+
return false;
|
|
62
68
|
if (!('createdBy' in value) || value['createdBy'] === undefined)
|
|
63
69
|
return false;
|
|
64
70
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined)
|
|
@@ -97,6 +103,9 @@ function ApiAdminDepositBonusIdGet200ResponseResponseObjectFromJSONTyped(json, i
|
|
|
97
103
|
'status': json['status'],
|
|
98
104
|
'startDate': json['startDate'],
|
|
99
105
|
'endDate': json['endDate'],
|
|
106
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
107
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
108
|
+
'termsAndConditions': json['termsAndConditions'],
|
|
100
109
|
'createdBy': json['createdBy'],
|
|
101
110
|
'updatedBy': json['updatedBy'],
|
|
102
111
|
'createdAt': json['createdAt'],
|
|
@@ -127,6 +136,9 @@ function ApiAdminDepositBonusIdGet200ResponseResponseObjectToJSONTyped(value, ig
|
|
|
127
136
|
'status': value['status'],
|
|
128
137
|
'startDate': value['startDate'],
|
|
129
138
|
'endDate': value['endDate'],
|
|
139
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
140
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
141
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
130
142
|
'createdBy': value['createdBy'],
|
|
131
143
|
'updatedBy': value['updatedBy'],
|
|
132
144
|
'createdAt': value['createdAt'],
|
|
@@ -120,6 +120,24 @@ export interface ApiAdminDepositBonusIdGet200ResponseResponseObject {
|
|
|
120
120
|
* @memberof ApiAdminDepositBonusIdGet200ResponseResponseObject
|
|
121
121
|
*/
|
|
122
122
|
endDate: string;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof ApiAdminDepositBonusIdGet200ResponseResponseObject
|
|
127
|
+
*/
|
|
128
|
+
isAllowedMultiAccount: boolean;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {number}
|
|
132
|
+
* @memberof ApiAdminDepositBonusIdGet200ResponseResponseObject
|
|
133
|
+
*/
|
|
134
|
+
maxInstancesPerUser: number;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof ApiAdminDepositBonusIdGet200ResponseResponseObject
|
|
139
|
+
*/
|
|
140
|
+
termsAndConditions: string | null;
|
|
123
141
|
/**
|
|
124
142
|
*
|
|
125
143
|
* @type {string}
|
|
@@ -198,6 +216,9 @@ export function instanceOfApiAdminDepositBonusIdGet200ResponseResponseObject(val
|
|
|
198
216
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
199
217
|
if (!('startDate' in value) || value['startDate'] === undefined) return false;
|
|
200
218
|
if (!('endDate' in value) || value['endDate'] === undefined) return false;
|
|
219
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined) return false;
|
|
220
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined) return false;
|
|
221
|
+
if (!('termsAndConditions' in value) || value['termsAndConditions'] === undefined) return false;
|
|
201
222
|
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
202
223
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
203
224
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
@@ -231,6 +252,9 @@ export function ApiAdminDepositBonusIdGet200ResponseResponseObjectFromJSONTyped(
|
|
|
231
252
|
'status': json['status'],
|
|
232
253
|
'startDate': json['startDate'],
|
|
233
254
|
'endDate': json['endDate'],
|
|
255
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
256
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
257
|
+
'termsAndConditions': json['termsAndConditions'],
|
|
234
258
|
'createdBy': json['createdBy'],
|
|
235
259
|
'updatedBy': json['updatedBy'],
|
|
236
260
|
'createdAt': json['createdAt'],
|
|
@@ -265,6 +289,9 @@ export function ApiAdminDepositBonusIdGet200ResponseResponseObjectFromJSONTyped(
|
|
|
265
289
|
'status': value['status'],
|
|
266
290
|
'startDate': value['startDate'],
|
|
267
291
|
'endDate': value['endDate'],
|
|
292
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
293
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
294
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
268
295
|
'createdBy': value['createdBy'],
|
|
269
296
|
'updatedBy': value['updatedBy'],
|
|
270
297
|
'createdAt': value['createdAt'],
|
|
@@ -56,6 +56,9 @@ function ApiAdminDepositBonusPostRequestFromJSONTyped(json, ignoreDiscriminator)
|
|
|
56
56
|
'details': (json['details'].map(ApiAdminDepositBonusPutRequestDetailsInner_1.ApiAdminDepositBonusPutRequestDetailsInnerFromJSON)),
|
|
57
57
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
58
58
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
59
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'] == null ? undefined : json['isAllowedMultiAccount'],
|
|
60
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'] == null ? undefined : json['maxInstancesPerUser'],
|
|
61
|
+
'termsAndConditions': json['termsAndConditions'] == null ? undefined : json['termsAndConditions'],
|
|
59
62
|
};
|
|
60
63
|
}
|
|
61
64
|
function ApiAdminDepositBonusPostRequestToJSON(json) {
|
|
@@ -78,5 +81,8 @@ function ApiAdminDepositBonusPostRequestToJSONTyped(value, ignoreDiscriminator =
|
|
|
78
81
|
'details': (value['details'].map(ApiAdminDepositBonusPutRequestDetailsInner_1.ApiAdminDepositBonusPutRequestDetailsInnerToJSON)),
|
|
79
82
|
'targetUserIds': value['targetUserIds'],
|
|
80
83
|
'targetGroupIds': value['targetGroupIds'],
|
|
84
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
85
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
86
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
81
87
|
};
|
|
82
88
|
}
|
|
@@ -120,6 +120,24 @@ export interface ApiAdminDepositBonusPostRequest {
|
|
|
120
120
|
* @memberof ApiAdminDepositBonusPostRequest
|
|
121
121
|
*/
|
|
122
122
|
targetGroupIds?: Array<string>;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof ApiAdminDepositBonusPostRequest
|
|
127
|
+
*/
|
|
128
|
+
isAllowedMultiAccount?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {number}
|
|
132
|
+
* @memberof ApiAdminDepositBonusPostRequest
|
|
133
|
+
*/
|
|
134
|
+
maxInstancesPerUser?: number;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof ApiAdminDepositBonusPostRequest
|
|
139
|
+
*/
|
|
140
|
+
termsAndConditions?: string | null;
|
|
123
141
|
}
|
|
124
142
|
|
|
125
143
|
/**
|
|
@@ -155,6 +173,9 @@ export function ApiAdminDepositBonusPostRequestFromJSONTyped(json: any, ignoreDi
|
|
|
155
173
|
'details': ((json['details'] as Array<any>).map(ApiAdminDepositBonusPutRequestDetailsInnerFromJSON)),
|
|
156
174
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
157
175
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
176
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'] == null ? undefined : json['isAllowedMultiAccount'],
|
|
177
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'] == null ? undefined : json['maxInstancesPerUser'],
|
|
178
|
+
'termsAndConditions': json['termsAndConditions'] == null ? undefined : json['termsAndConditions'],
|
|
158
179
|
};
|
|
159
180
|
}
|
|
160
181
|
|
|
@@ -181,6 +202,9 @@ export function ApiAdminDepositBonusPostRequestFromJSONTyped(json: any, ignoreDi
|
|
|
181
202
|
'details': ((value['details'] as Array<any>).map(ApiAdminDepositBonusPutRequestDetailsInnerToJSON)),
|
|
182
203
|
'targetUserIds': value['targetUserIds'],
|
|
183
204
|
'targetGroupIds': value['targetGroupIds'],
|
|
205
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
206
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
207
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
184
208
|
};
|
|
185
209
|
}
|
|
186
210
|
|
|
@@ -55,6 +55,12 @@ function instanceOfApiAdminDepositBonusPut200ResponseResponseObject(value) {
|
|
|
55
55
|
return false;
|
|
56
56
|
if (!('endDate' in value) || value['endDate'] === undefined)
|
|
57
57
|
return false;
|
|
58
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined)
|
|
59
|
+
return false;
|
|
60
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined)
|
|
61
|
+
return false;
|
|
62
|
+
if (!('termsAndConditions' in value) || value['termsAndConditions'] === undefined)
|
|
63
|
+
return false;
|
|
58
64
|
if (!('createdBy' in value) || value['createdBy'] === undefined)
|
|
59
65
|
return false;
|
|
60
66
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined)
|
|
@@ -85,6 +91,9 @@ function ApiAdminDepositBonusPut200ResponseResponseObjectFromJSONTyped(json, ign
|
|
|
85
91
|
'status': json['status'],
|
|
86
92
|
'startDate': json['startDate'],
|
|
87
93
|
'endDate': json['endDate'],
|
|
94
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
95
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
96
|
+
'termsAndConditions': json['termsAndConditions'],
|
|
88
97
|
'createdBy': json['createdBy'],
|
|
89
98
|
'updatedBy': json['updatedBy'],
|
|
90
99
|
'createdAt': json['createdAt'],
|
|
@@ -111,6 +120,9 @@ function ApiAdminDepositBonusPut200ResponseResponseObjectToJSONTyped(value, igno
|
|
|
111
120
|
'status': value['status'],
|
|
112
121
|
'startDate': value['startDate'],
|
|
113
122
|
'endDate': value['endDate'],
|
|
123
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
124
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
125
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
114
126
|
'createdBy': value['createdBy'],
|
|
115
127
|
'updatedBy': value['updatedBy'],
|
|
116
128
|
'createdAt': value['createdAt'],
|
|
@@ -91,6 +91,24 @@ export interface ApiAdminDepositBonusPut200ResponseResponseObject {
|
|
|
91
91
|
* @memberof ApiAdminDepositBonusPut200ResponseResponseObject
|
|
92
92
|
*/
|
|
93
93
|
endDate: string;
|
|
94
|
+
/**
|
|
95
|
+
*
|
|
96
|
+
* @type {boolean}
|
|
97
|
+
* @memberof ApiAdminDepositBonusPut200ResponseResponseObject
|
|
98
|
+
*/
|
|
99
|
+
isAllowedMultiAccount: boolean;
|
|
100
|
+
/**
|
|
101
|
+
*
|
|
102
|
+
* @type {number}
|
|
103
|
+
* @memberof ApiAdminDepositBonusPut200ResponseResponseObject
|
|
104
|
+
*/
|
|
105
|
+
maxInstancesPerUser: number;
|
|
106
|
+
/**
|
|
107
|
+
*
|
|
108
|
+
* @type {string}
|
|
109
|
+
* @memberof ApiAdminDepositBonusPut200ResponseResponseObject
|
|
110
|
+
*/
|
|
111
|
+
termsAndConditions: string | null;
|
|
94
112
|
/**
|
|
95
113
|
*
|
|
96
114
|
* @type {string}
|
|
@@ -145,6 +163,9 @@ export function instanceOfApiAdminDepositBonusPut200ResponseResponseObject(value
|
|
|
145
163
|
if (!('status' in value) || value['status'] === undefined) return false;
|
|
146
164
|
if (!('startDate' in value) || value['startDate'] === undefined) return false;
|
|
147
165
|
if (!('endDate' in value) || value['endDate'] === undefined) return false;
|
|
166
|
+
if (!('isAllowedMultiAccount' in value) || value['isAllowedMultiAccount'] === undefined) return false;
|
|
167
|
+
if (!('maxInstancesPerUser' in value) || value['maxInstancesPerUser'] === undefined) return false;
|
|
168
|
+
if (!('termsAndConditions' in value) || value['termsAndConditions'] === undefined) return false;
|
|
148
169
|
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
149
170
|
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
150
171
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
@@ -174,6 +195,9 @@ export function ApiAdminDepositBonusPut200ResponseResponseObjectFromJSONTyped(js
|
|
|
174
195
|
'status': json['status'],
|
|
175
196
|
'startDate': json['startDate'],
|
|
176
197
|
'endDate': json['endDate'],
|
|
198
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'],
|
|
199
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'],
|
|
200
|
+
'termsAndConditions': json['termsAndConditions'],
|
|
177
201
|
'createdBy': json['createdBy'],
|
|
178
202
|
'updatedBy': json['updatedBy'],
|
|
179
203
|
'createdAt': json['createdAt'],
|
|
@@ -204,6 +228,9 @@ export function ApiAdminDepositBonusPut200ResponseResponseObjectFromJSONTyped(js
|
|
|
204
228
|
'status': value['status'],
|
|
205
229
|
'startDate': value['startDate'],
|
|
206
230
|
'endDate': value['endDate'],
|
|
231
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
232
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
233
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
207
234
|
'createdBy': value['createdBy'],
|
|
208
235
|
'updatedBy': value['updatedBy'],
|
|
209
236
|
'createdAt': value['createdAt'],
|
|
@@ -56,6 +56,9 @@ function ApiAdminDepositBonusPutRequestFromJSONTyped(json, ignoreDiscriminator)
|
|
|
56
56
|
'details': json['details'] == null ? undefined : (json['details'].map(ApiAdminDepositBonusPutRequestDetailsInner_1.ApiAdminDepositBonusPutRequestDetailsInnerFromJSON)),
|
|
57
57
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
58
58
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
59
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'] == null ? undefined : json['isAllowedMultiAccount'],
|
|
60
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'] == null ? undefined : json['maxInstancesPerUser'],
|
|
61
|
+
'termsAndConditions': json['termsAndConditions'] == null ? undefined : json['termsAndConditions'],
|
|
59
62
|
'id': json['id'],
|
|
60
63
|
};
|
|
61
64
|
}
|
|
@@ -79,6 +82,9 @@ function ApiAdminDepositBonusPutRequestToJSONTyped(value, ignoreDiscriminator =
|
|
|
79
82
|
'details': value['details'] == null ? undefined : (value['details'].map(ApiAdminDepositBonusPutRequestDetailsInner_1.ApiAdminDepositBonusPutRequestDetailsInnerToJSON)),
|
|
80
83
|
'targetUserIds': value['targetUserIds'],
|
|
81
84
|
'targetGroupIds': value['targetGroupIds'],
|
|
85
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
86
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
87
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
82
88
|
'id': value['id'],
|
|
83
89
|
};
|
|
84
90
|
}
|
|
@@ -120,6 +120,24 @@ export interface ApiAdminDepositBonusPutRequest {
|
|
|
120
120
|
* @memberof ApiAdminDepositBonusPutRequest
|
|
121
121
|
*/
|
|
122
122
|
targetGroupIds?: Array<string>;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {boolean}
|
|
126
|
+
* @memberof ApiAdminDepositBonusPutRequest
|
|
127
|
+
*/
|
|
128
|
+
isAllowedMultiAccount?: boolean;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {number}
|
|
132
|
+
* @memberof ApiAdminDepositBonusPutRequest
|
|
133
|
+
*/
|
|
134
|
+
maxInstancesPerUser?: number;
|
|
135
|
+
/**
|
|
136
|
+
*
|
|
137
|
+
* @type {string}
|
|
138
|
+
* @memberof ApiAdminDepositBonusPutRequest
|
|
139
|
+
*/
|
|
140
|
+
termsAndConditions?: string | null;
|
|
123
141
|
/**
|
|
124
142
|
*
|
|
125
143
|
* @type {string}
|
|
@@ -161,6 +179,9 @@ export function ApiAdminDepositBonusPutRequestFromJSONTyped(json: any, ignoreDis
|
|
|
161
179
|
'details': json['details'] == null ? undefined : ((json['details'] as Array<any>).map(ApiAdminDepositBonusPutRequestDetailsInnerFromJSON)),
|
|
162
180
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
163
181
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
182
|
+
'isAllowedMultiAccount': json['isAllowedMultiAccount'] == null ? undefined : json['isAllowedMultiAccount'],
|
|
183
|
+
'maxInstancesPerUser': json['maxInstancesPerUser'] == null ? undefined : json['maxInstancesPerUser'],
|
|
184
|
+
'termsAndConditions': json['termsAndConditions'] == null ? undefined : json['termsAndConditions'],
|
|
164
185
|
'id': json['id'],
|
|
165
186
|
};
|
|
166
187
|
}
|
|
@@ -188,6 +209,9 @@ export function ApiAdminDepositBonusPutRequestFromJSONTyped(json: any, ignoreDis
|
|
|
188
209
|
'details': value['details'] == null ? undefined : ((value['details'] as Array<any>).map(ApiAdminDepositBonusPutRequestDetailsInnerToJSON)),
|
|
189
210
|
'targetUserIds': value['targetUserIds'],
|
|
190
211
|
'targetGroupIds': value['targetGroupIds'],
|
|
212
|
+
'isAllowedMultiAccount': value['isAllowedMultiAccount'],
|
|
213
|
+
'maxInstancesPerUser': value['maxInstancesPerUser'],
|
|
214
|
+
'termsAndConditions': value['termsAndConditions'],
|
|
191
215
|
'id': value['id'],
|
|
192
216
|
};
|
|
193
217
|
}
|
|
@@ -58,6 +58,8 @@ function instanceOfApiAdminRakebackEventEventIdGet200ResponseResponseObject(valu
|
|
|
58
58
|
return false;
|
|
59
59
|
if (!('targetProviders' in value) || value['targetProviders'] === undefined)
|
|
60
60
|
return false;
|
|
61
|
+
if (!('targetGames' in value) || value['targetGames'] === undefined)
|
|
62
|
+
return false;
|
|
61
63
|
return true;
|
|
62
64
|
}
|
|
63
65
|
function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -85,6 +87,7 @@ function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectFromJSONTyped(j
|
|
|
85
87
|
'targetUsers': (json['targetUsers'].map(ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInner_1.ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInnerFromJSON)),
|
|
86
88
|
'targetGroups': (json['targetGroups'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
87
89
|
'targetProviders': (json['targetProviders'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
90
|
+
'targetGames': (json['targetGames'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
88
91
|
};
|
|
89
92
|
}
|
|
90
93
|
function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -112,5 +115,6 @@ function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectToJSONTyped(val
|
|
|
112
115
|
'targetUsers': (value['targetUsers'].map(ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInner_1.ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInnerToJSON)),
|
|
113
116
|
'targetGroups': (value['targetGroups'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
114
117
|
'targetProviders': (value['targetProviders'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
118
|
+
'targetGames': (value['targetGames'].map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner_1.ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
115
119
|
};
|
|
116
120
|
}
|
|
@@ -136,6 +136,12 @@ export interface ApiAdminRakebackEventEventIdGet200ResponseResponseObject {
|
|
|
136
136
|
* @memberof ApiAdminRakebackEventEventIdGet200ResponseResponseObject
|
|
137
137
|
*/
|
|
138
138
|
targetProviders: Array<ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner>;
|
|
139
|
+
/**
|
|
140
|
+
*
|
|
141
|
+
* @type {Array<ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner>}
|
|
142
|
+
* @memberof ApiAdminRakebackEventEventIdGet200ResponseResponseObject
|
|
143
|
+
*/
|
|
144
|
+
targetGames: Array<ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInner>;
|
|
139
145
|
}
|
|
140
146
|
|
|
141
147
|
/**
|
|
@@ -159,6 +165,7 @@ export function instanceOfApiAdminRakebackEventEventIdGet200ResponseResponseObje
|
|
|
159
165
|
if (!('targetUsers' in value) || value['targetUsers'] === undefined) return false;
|
|
160
166
|
if (!('targetGroups' in value) || value['targetGroups'] === undefined) return false;
|
|
161
167
|
if (!('targetProviders' in value) || value['targetProviders'] === undefined) return false;
|
|
168
|
+
if (!('targetGames' in value) || value['targetGames'] === undefined) return false;
|
|
162
169
|
return true;
|
|
163
170
|
}
|
|
164
171
|
|
|
@@ -189,6 +196,7 @@ export function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectFromJSON
|
|
|
189
196
|
'targetUsers': ((json['targetUsers'] as Array<any>).map(ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInnerFromJSON)),
|
|
190
197
|
'targetGroups': ((json['targetGroups'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
191
198
|
'targetProviders': ((json['targetProviders'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
199
|
+
'targetGames': ((json['targetGames'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerFromJSON)),
|
|
192
200
|
};
|
|
193
201
|
}
|
|
194
202
|
|
|
@@ -220,6 +228,7 @@ export function ApiAdminRakebackEventEventIdGet200ResponseResponseObjectFromJSON
|
|
|
220
228
|
'targetUsers': ((value['targetUsers'] as Array<any>).map(ApiAdminRakebackEventEventIdGet200ResponseResponseObjectTargetUsersInnerToJSON)),
|
|
221
229
|
'targetGroups': ((value['targetGroups'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
222
230
|
'targetProviders': ((value['targetProviders'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
231
|
+
'targetGames': ((value['targetGames'] as Array<any>).map(ApiAdminGamesFilterDataGet200ResponseResponseObjectProvidersInnerToJSON)),
|
|
223
232
|
};
|
|
224
233
|
}
|
|
225
234
|
|
|
@@ -47,6 +47,7 @@ function ApiAdminRakebackEventEventIdPutRequestFromJSONTyped(json, ignoreDiscrim
|
|
|
47
47
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
48
48
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
49
49
|
'targetProviderIds': json['targetProviderIds'] == null ? undefined : json['targetProviderIds'],
|
|
50
|
+
'targetGameIds': json['targetGameIds'] == null ? undefined : json['targetGameIds'],
|
|
50
51
|
};
|
|
51
52
|
}
|
|
52
53
|
function ApiAdminRakebackEventEventIdPutRequestToJSON(json) {
|
|
@@ -70,5 +71,6 @@ function ApiAdminRakebackEventEventIdPutRequestToJSONTyped(value, ignoreDiscrimi
|
|
|
70
71
|
'targetGroupIds': value['targetGroupIds'],
|
|
71
72
|
'targetUserIds': value['targetUserIds'],
|
|
72
73
|
'targetProviderIds': value['targetProviderIds'],
|
|
74
|
+
'targetGameIds': value['targetGameIds'],
|
|
73
75
|
};
|
|
74
76
|
}
|
|
@@ -112,6 +112,12 @@ export interface ApiAdminRakebackEventEventIdPutRequest {
|
|
|
112
112
|
* @memberof ApiAdminRakebackEventEventIdPutRequest
|
|
113
113
|
*/
|
|
114
114
|
targetProviderIds?: Array<string>;
|
|
115
|
+
/**
|
|
116
|
+
*
|
|
117
|
+
* @type {Array<string>}
|
|
118
|
+
* @memberof ApiAdminRakebackEventEventIdPutRequest
|
|
119
|
+
*/
|
|
120
|
+
targetGameIds?: Array<string>;
|
|
115
121
|
}
|
|
116
122
|
|
|
117
123
|
/**
|
|
@@ -144,6 +150,7 @@ export function ApiAdminRakebackEventEventIdPutRequestFromJSONTyped(json: any, i
|
|
|
144
150
|
'targetGroupIds': json['targetGroupIds'] == null ? undefined : json['targetGroupIds'],
|
|
145
151
|
'targetUserIds': json['targetUserIds'] == null ? undefined : json['targetUserIds'],
|
|
146
152
|
'targetProviderIds': json['targetProviderIds'] == null ? undefined : json['targetProviderIds'],
|
|
153
|
+
'targetGameIds': json['targetGameIds'] == null ? undefined : json['targetGameIds'],
|
|
147
154
|
};
|
|
148
155
|
}
|
|
149
156
|
|
|
@@ -171,6 +178,7 @@ export function ApiAdminRakebackEventEventIdPutRequestFromJSONTyped(json: any, i
|
|
|
171
178
|
'targetGroupIds': value['targetGroupIds'],
|
|
172
179
|
'targetUserIds': value['targetUserIds'],
|
|
173
180
|
'targetProviderIds': value['targetProviderIds'],
|
|
181
|
+
'targetGameIds': value['targetGameIds'],
|
|
174
182
|
};
|
|
175
183
|
}
|
|
176
184
|
|