@gambulls-org/gambulls-apis 3.0.95 → 3.0.97
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/.idea/gambulls-apis.iml +11 -11
- package/.idea/modules.xml +7 -7
- package/.idea/vcs.xml +5 -5
- package/.openapi-generator/FILES +457 -454
- package/.openapi-generator-ignore +23 -23
- package/README.md +19 -19
- package/api.ts +10356 -10356
- package/apis/AdminAffiliateApi.js +17 -7
- package/apis/AdminAppConfigApi.js +17 -7
- package/apis/AdminAuthApi.js +17 -7
- package/apis/AdminBonusApi.js +17 -7
- package/apis/AdminCategoryApi.js +17 -7
- package/apis/AdminChatApi.js +17 -7
- package/apis/AdminDashboardApi.js +17 -7
- package/apis/AdminExchangeApi.js +17 -7
- package/apis/AdminGamesApi.js +17 -7
- package/apis/AdminGroupApi.js +17 -7
- package/apis/AdminLoyaltyApi.js +17 -7
- package/apis/AdminManagementApi.js +17 -7
- package/apis/AdminMenuApi.js +17 -7
- package/apis/AdminPaymentSystemApi.js +17 -7
- package/apis/AdminPinnedMessageApi.js +17 -7
- package/apis/AdminPolicyApi.js +17 -7
- package/apis/AdminProvidersApi.js +17 -7
- package/apis/AdminUserManagementApi.js +17 -7
- package/apis/AuthApi.js +17 -7
- package/apis/CMSApi.js +17 -7
- package/apis/CronDataCleanupApi.js +17 -7
- package/apis/HealthCheckApi.js +17 -7
- package/apis/PublicGamesApi.js +95 -8
- package/apis/PublicGamesApi.ts +95 -0
- package/apis/PublicPolicyApi.js +17 -7
- package/apis/RGSApi.js +17 -7
- package/apis/RGSV2Api.js +17 -7
- package/apis/TatumApi.js +17 -7
- package/apis/TestForNonProductionOnlyApi.js +17 -7
- package/apis/UserAffiliateApi.js +17 -7
- package/apis/UserAvatarApi.js +17 -7
- package/apis/UserBalanceApi.js +17 -7
- package/apis/UserBonusApi.js +17 -7
- package/apis/UserDepositApi.js +17 -7
- package/apis/UserDocumentApi.js +17 -7
- package/apis/UserGamesApi.js +17 -7
- package/apis/UserLoyaltyApi.js +17 -7
- package/apis/UserModeratorApi.js +17 -7
- package/apis/UserNotificationApi.js +17 -7
- package/apis/UserPreferencesApi.js +17 -7
- package/apis/UserProfileApi.js +17 -7
- package/apis/UserResponsibleGamingApi.js +17 -7
- package/apis/UserStatisticApi.js +17 -7
- package/apis/UserTippingApi.js +17 -7
- package/apis/UserTransactionHistoryApi.js +17 -7
- package/apis/UserWithdrawalApi.js +17 -7
- package/base.ts +86 -86
- package/common.ts +150 -150
- package/configuration.ts +110 -110
- package/git_push.sh +57 -57
- package/hooks.json +8 -8
- package/models/ApiCronDataCleanupTriggerPost200ResponseResponseObject.js +15 -3
- package/models/ApiCronDataCleanupTriggerPost200ResponseResponseObject.ts +44 -3
- package/models/ApiPublicGamesSeoGet200Response.js +61 -0
- package/models/ApiPublicGamesSeoGet200Response.ts +100 -0
- package/models/ApiPublicGamesSeoGet200ResponseResponseObject.js +67 -0
- package/models/ApiPublicGamesSeoGet200ResponseResponseObject.ts +110 -0
- package/models/ApiPublicGamesSeoGet200ResponseResponseObjectItemsInner.js +78 -0
- package/models/ApiPublicGamesSeoGet200ResponseResponseObjectItemsInner.ts +129 -0
- package/models/index.js +3 -0
- package/models/index.ts +3 -0
- package/openapitools.json +7 -7
- package/package.json +26 -26
- package/tsconfig.json +108 -108
- package/workflow.sh +40 -40
package/apis/CMSApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/HealthCheckApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/PublicGamesApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -45,7 +55,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
45
55
|
});
|
|
46
56
|
};
|
|
47
57
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
48
|
-
exports.ApiPublicGamesLastBetGetSortOrderEnum = exports.ApiPublicGamesLastBetGetSortByEnum = exports.ApiPublicGamesGetSortOrderEnum = exports.ApiPublicGamesGetSortByEnum = exports.PublicGamesApi = void 0;
|
|
58
|
+
exports.ApiPublicGamesSeoGetCategoryEnum = exports.ApiPublicGamesLastBetGetSortOrderEnum = exports.ApiPublicGamesLastBetGetSortByEnum = exports.ApiPublicGamesGetSortOrderEnum = exports.ApiPublicGamesGetSortByEnum = exports.PublicGamesApi = void 0;
|
|
49
59
|
const runtime = __importStar(require("../runtime"));
|
|
50
60
|
const index_1 = require("../models/index");
|
|
51
61
|
/**
|
|
@@ -246,6 +256,53 @@ class PublicGamesApi extends runtime.BaseAPI {
|
|
|
246
256
|
return yield response.value();
|
|
247
257
|
});
|
|
248
258
|
}
|
|
259
|
+
/**
|
|
260
|
+
* Get Games Paginated for SEO
|
|
261
|
+
*/
|
|
262
|
+
apiPublicGamesSeoGetRaw(requestParameters, initOverrides) {
|
|
263
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
264
|
+
const queryParameters = {};
|
|
265
|
+
if (requestParameters['page'] != null) {
|
|
266
|
+
queryParameters['page'] = requestParameters['page'];
|
|
267
|
+
}
|
|
268
|
+
if (requestParameters['pageSize'] != null) {
|
|
269
|
+
queryParameters['pageSize'] = requestParameters['pageSize'];
|
|
270
|
+
}
|
|
271
|
+
if (requestParameters['provider'] != null) {
|
|
272
|
+
queryParameters['provider'] = requestParameters['provider'];
|
|
273
|
+
}
|
|
274
|
+
if (requestParameters['category'] != null) {
|
|
275
|
+
queryParameters['category'] = requestParameters['category'];
|
|
276
|
+
}
|
|
277
|
+
const headerParameters = {};
|
|
278
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
279
|
+
headerParameters["api-key"] = yield this.configuration.apiKey("api-key"); // ApiKeyAuth authentication
|
|
280
|
+
}
|
|
281
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
282
|
+
const token = this.configuration.accessToken;
|
|
283
|
+
const tokenString = yield token("BearerAuth", []);
|
|
284
|
+
if (tokenString) {
|
|
285
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
286
|
+
}
|
|
287
|
+
}
|
|
288
|
+
const response = yield this.request({
|
|
289
|
+
path: `/api/public/games/seo`,
|
|
290
|
+
method: 'GET',
|
|
291
|
+
headers: headerParameters,
|
|
292
|
+
query: queryParameters,
|
|
293
|
+
}, initOverrides);
|
|
294
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ApiPublicGamesSeoGet200ResponseFromJSON)(jsonValue));
|
|
295
|
+
});
|
|
296
|
+
}
|
|
297
|
+
/**
|
|
298
|
+
* Get Games Paginated for SEO
|
|
299
|
+
*/
|
|
300
|
+
apiPublicGamesSeoGet() {
|
|
301
|
+
return __awaiter(this, arguments, void 0, function* (requestParameters = {}, initOverrides) {
|
|
302
|
+
const response = yield this.apiPublicGamesSeoGetRaw(requestParameters, initOverrides);
|
|
303
|
+
return yield response.value();
|
|
304
|
+
});
|
|
305
|
+
}
|
|
249
306
|
/**
|
|
250
307
|
* Games Get by Slug
|
|
251
308
|
*/
|
|
@@ -368,3 +425,33 @@ exports.ApiPublicGamesLastBetGetSortOrderEnum = {
|
|
|
368
425
|
Asc: 'asc',
|
|
369
426
|
Desc: 'desc'
|
|
370
427
|
};
|
|
428
|
+
/**
|
|
429
|
+
* @export
|
|
430
|
+
*/
|
|
431
|
+
exports.ApiPublicGamesSeoGetCategoryEnum = {
|
|
432
|
+
Popular: 'popular',
|
|
433
|
+
NewReleases: 'new-releases',
|
|
434
|
+
Football: 'football',
|
|
435
|
+
Blackjack: 'blackjack',
|
|
436
|
+
Roulette: 'roulette',
|
|
437
|
+
Slot: 'slot',
|
|
438
|
+
VideoSlots: 'video-slots',
|
|
439
|
+
VideoPoker: 'video-poker',
|
|
440
|
+
Baccarat: 'baccarat',
|
|
441
|
+
FantasySport: 'fantasy-sport',
|
|
442
|
+
HorsesRacing: 'horses-racing',
|
|
443
|
+
TurboGames: 'turbo-games',
|
|
444
|
+
FreeSpin: 'free-spin',
|
|
445
|
+
ScratchGames: 'scratch-games',
|
|
446
|
+
Keno: 'keno',
|
|
447
|
+
Poker: 'poker',
|
|
448
|
+
Bingo: 'bingo',
|
|
449
|
+
LiveCasino: 'live-casino',
|
|
450
|
+
Other: 'other',
|
|
451
|
+
TvGames: 'tv-games',
|
|
452
|
+
GameShows: 'game-shows',
|
|
453
|
+
Belote: 'belote',
|
|
454
|
+
Cycling: 'cycling',
|
|
455
|
+
GreyhoundRacing: 'greyhound-racing',
|
|
456
|
+
Pasoor: 'pasoor'
|
|
457
|
+
};
|
package/apis/PublicGamesApi.ts
CHANGED
|
@@ -18,6 +18,7 @@ import type {
|
|
|
18
18
|
ApiAdminRateFiatvsfiatGet200Response,
|
|
19
19
|
ApiPublicGamesFilterDataGet200Response,
|
|
20
20
|
ApiPublicGamesGet200Response,
|
|
21
|
+
ApiPublicGamesSeoGet200Response,
|
|
21
22
|
ApiPublicGamesSlugGet200Response,
|
|
22
23
|
ApiUserAvatarPut200Response,
|
|
23
24
|
ApiUserLastBetGet200Response,
|
|
@@ -29,6 +30,8 @@ import {
|
|
|
29
30
|
ApiPublicGamesFilterDataGet200ResponseToJSON,
|
|
30
31
|
ApiPublicGamesGet200ResponseFromJSON,
|
|
31
32
|
ApiPublicGamesGet200ResponseToJSON,
|
|
33
|
+
ApiPublicGamesSeoGet200ResponseFromJSON,
|
|
34
|
+
ApiPublicGamesSeoGet200ResponseToJSON,
|
|
32
35
|
ApiPublicGamesSlugGet200ResponseFromJSON,
|
|
33
36
|
ApiPublicGamesSlugGet200ResponseToJSON,
|
|
34
37
|
ApiUserAvatarPut200ResponseFromJSON,
|
|
@@ -57,6 +60,13 @@ export interface ApiPublicGamesLastBetGetRequest {
|
|
|
57
60
|
sortOrder?: ApiPublicGamesLastBetGetSortOrderEnum;
|
|
58
61
|
}
|
|
59
62
|
|
|
63
|
+
export interface ApiPublicGamesSeoGetRequest {
|
|
64
|
+
page?: number;
|
|
65
|
+
pageSize?: number;
|
|
66
|
+
provider?: string;
|
|
67
|
+
category?: ApiPublicGamesSeoGetCategoryEnum;
|
|
68
|
+
}
|
|
69
|
+
|
|
60
70
|
export interface ApiPublicGamesSlugGetRequest {
|
|
61
71
|
slug: string;
|
|
62
72
|
}
|
|
@@ -302,6 +312,60 @@ export class PublicGamesApi extends runtime.BaseAPI {
|
|
|
302
312
|
return await response.value();
|
|
303
313
|
}
|
|
304
314
|
|
|
315
|
+
/**
|
|
316
|
+
* Get Games Paginated for SEO
|
|
317
|
+
*/
|
|
318
|
+
async apiPublicGamesSeoGetRaw(requestParameters: ApiPublicGamesSeoGetRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiPublicGamesSeoGet200Response>> {
|
|
319
|
+
const queryParameters: any = {};
|
|
320
|
+
|
|
321
|
+
if (requestParameters['page'] != null) {
|
|
322
|
+
queryParameters['page'] = requestParameters['page'];
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
if (requestParameters['pageSize'] != null) {
|
|
326
|
+
queryParameters['pageSize'] = requestParameters['pageSize'];
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
if (requestParameters['provider'] != null) {
|
|
330
|
+
queryParameters['provider'] = requestParameters['provider'];
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
if (requestParameters['category'] != null) {
|
|
334
|
+
queryParameters['category'] = requestParameters['category'];
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
const headerParameters: runtime.HTTPHeaders = {};
|
|
338
|
+
|
|
339
|
+
if (this.configuration && this.configuration.apiKey) {
|
|
340
|
+
headerParameters["api-key"] = await this.configuration.apiKey("api-key"); // ApiKeyAuth authentication
|
|
341
|
+
}
|
|
342
|
+
|
|
343
|
+
if (this.configuration && this.configuration.accessToken) {
|
|
344
|
+
const token = this.configuration.accessToken;
|
|
345
|
+
const tokenString = await token("BearerAuth", []);
|
|
346
|
+
|
|
347
|
+
if (tokenString) {
|
|
348
|
+
headerParameters["Authorization"] = `Bearer ${tokenString}`;
|
|
349
|
+
}
|
|
350
|
+
}
|
|
351
|
+
const response = await this.request({
|
|
352
|
+
path: `/api/public/games/seo`,
|
|
353
|
+
method: 'GET',
|
|
354
|
+
headers: headerParameters,
|
|
355
|
+
query: queryParameters,
|
|
356
|
+
}, initOverrides);
|
|
357
|
+
|
|
358
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiPublicGamesSeoGet200ResponseFromJSON(jsonValue));
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
/**
|
|
362
|
+
* Get Games Paginated for SEO
|
|
363
|
+
*/
|
|
364
|
+
async apiPublicGamesSeoGet(requestParameters: ApiPublicGamesSeoGetRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiPublicGamesSeoGet200Response> {
|
|
365
|
+
const response = await this.apiPublicGamesSeoGetRaw(requestParameters, initOverrides);
|
|
366
|
+
return await response.value();
|
|
367
|
+
}
|
|
368
|
+
|
|
305
369
|
/**
|
|
306
370
|
* Games Get by Slug
|
|
307
371
|
*/
|
|
@@ -439,3 +503,34 @@ export const ApiPublicGamesLastBetGetSortOrderEnum = {
|
|
|
439
503
|
Desc: 'desc'
|
|
440
504
|
} as const;
|
|
441
505
|
export type ApiPublicGamesLastBetGetSortOrderEnum = typeof ApiPublicGamesLastBetGetSortOrderEnum[keyof typeof ApiPublicGamesLastBetGetSortOrderEnum];
|
|
506
|
+
/**
|
|
507
|
+
* @export
|
|
508
|
+
*/
|
|
509
|
+
export const ApiPublicGamesSeoGetCategoryEnum = {
|
|
510
|
+
Popular: 'popular',
|
|
511
|
+
NewReleases: 'new-releases',
|
|
512
|
+
Football: 'football',
|
|
513
|
+
Blackjack: 'blackjack',
|
|
514
|
+
Roulette: 'roulette',
|
|
515
|
+
Slot: 'slot',
|
|
516
|
+
VideoSlots: 'video-slots',
|
|
517
|
+
VideoPoker: 'video-poker',
|
|
518
|
+
Baccarat: 'baccarat',
|
|
519
|
+
FantasySport: 'fantasy-sport',
|
|
520
|
+
HorsesRacing: 'horses-racing',
|
|
521
|
+
TurboGames: 'turbo-games',
|
|
522
|
+
FreeSpin: 'free-spin',
|
|
523
|
+
ScratchGames: 'scratch-games',
|
|
524
|
+
Keno: 'keno',
|
|
525
|
+
Poker: 'poker',
|
|
526
|
+
Bingo: 'bingo',
|
|
527
|
+
LiveCasino: 'live-casino',
|
|
528
|
+
Other: 'other',
|
|
529
|
+
TvGames: 'tv-games',
|
|
530
|
+
GameShows: 'game-shows',
|
|
531
|
+
Belote: 'belote',
|
|
532
|
+
Cycling: 'cycling',
|
|
533
|
+
GreyhoundRacing: 'greyhound-racing',
|
|
534
|
+
Pasoor: 'pasoor'
|
|
535
|
+
} as const;
|
|
536
|
+
export type ApiPublicGamesSeoGetCategoryEnum = typeof ApiPublicGamesSeoGetCategoryEnum[keyof typeof ApiPublicGamesSeoGetCategoryEnum];
|
package/apis/PublicPolicyApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/RGSApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/RGSV2Api.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/TatumApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/UserAffiliateApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/UserAvatarApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/UserBalanceApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|
package/apis/UserBonusApi.js
CHANGED
|
@@ -28,13 +28,23 @@ var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (
|
|
|
28
28
|
}) : function(o, v) {
|
|
29
29
|
o["default"] = v;
|
|
30
30
|
});
|
|
31
|
-
var __importStar = (this && this.__importStar) || function (
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
};
|
|
31
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
32
|
+
var ownKeys = function(o) {
|
|
33
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
34
|
+
var ar = [];
|
|
35
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
36
|
+
return ar;
|
|
37
|
+
};
|
|
38
|
+
return ownKeys(o);
|
|
39
|
+
};
|
|
40
|
+
return function (mod) {
|
|
41
|
+
if (mod && mod.__esModule) return mod;
|
|
42
|
+
var result = {};
|
|
43
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
44
|
+
__setModuleDefault(result, mod);
|
|
45
|
+
return result;
|
|
46
|
+
};
|
|
47
|
+
})();
|
|
38
48
|
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
39
49
|
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
40
50
|
return new (P || (P = Promise))(function (resolve, reject) {
|