@gambulls-org/gambulls-apis 3.0.95 → 3.0.96

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.
Files changed (72) hide show
  1. package/.idea/gambulls-apis.iml +11 -11
  2. package/.idea/modules.xml +7 -7
  3. package/.idea/vcs.xml +5 -5
  4. package/.openapi-generator/FILES +457 -454
  5. package/.openapi-generator-ignore +23 -23
  6. package/README.md +19 -19
  7. package/api.ts +10356 -10356
  8. package/apis/AdminAffiliateApi.js +17 -7
  9. package/apis/AdminAppConfigApi.js +17 -7
  10. package/apis/AdminAuthApi.js +17 -7
  11. package/apis/AdminBonusApi.js +17 -7
  12. package/apis/AdminCategoryApi.js +17 -7
  13. package/apis/AdminChatApi.js +17 -7
  14. package/apis/AdminDashboardApi.js +17 -7
  15. package/apis/AdminExchangeApi.js +17 -7
  16. package/apis/AdminGamesApi.js +17 -7
  17. package/apis/AdminGroupApi.js +17 -7
  18. package/apis/AdminLoyaltyApi.js +17 -7
  19. package/apis/AdminManagementApi.js +17 -7
  20. package/apis/AdminMenuApi.js +17 -7
  21. package/apis/AdminPaymentSystemApi.js +17 -7
  22. package/apis/AdminPinnedMessageApi.js +17 -7
  23. package/apis/AdminPolicyApi.js +17 -7
  24. package/apis/AdminProvidersApi.js +17 -7
  25. package/apis/AdminUserManagementApi.js +17 -7
  26. package/apis/AuthApi.js +17 -7
  27. package/apis/CMSApi.js +17 -7
  28. package/apis/CronDataCleanupApi.js +17 -7
  29. package/apis/HealthCheckApi.js +17 -7
  30. package/apis/PublicGamesApi.js +95 -8
  31. package/apis/PublicGamesApi.ts +95 -0
  32. package/apis/PublicPolicyApi.js +17 -7
  33. package/apis/RGSApi.js +17 -7
  34. package/apis/RGSV2Api.js +17 -7
  35. package/apis/TatumApi.js +17 -7
  36. package/apis/TestForNonProductionOnlyApi.js +17 -7
  37. package/apis/UserAffiliateApi.js +17 -7
  38. package/apis/UserAvatarApi.js +17 -7
  39. package/apis/UserBalanceApi.js +17 -7
  40. package/apis/UserBonusApi.js +17 -7
  41. package/apis/UserDepositApi.js +17 -7
  42. package/apis/UserDocumentApi.js +17 -7
  43. package/apis/UserGamesApi.js +17 -7
  44. package/apis/UserLoyaltyApi.js +17 -7
  45. package/apis/UserModeratorApi.js +17 -7
  46. package/apis/UserNotificationApi.js +17 -7
  47. package/apis/UserPreferencesApi.js +17 -7
  48. package/apis/UserProfileApi.js +17 -7
  49. package/apis/UserResponsibleGamingApi.js +17 -7
  50. package/apis/UserStatisticApi.js +17 -7
  51. package/apis/UserTippingApi.js +17 -7
  52. package/apis/UserTransactionHistoryApi.js +17 -7
  53. package/apis/UserWithdrawalApi.js +17 -7
  54. package/base.ts +86 -86
  55. package/common.ts +150 -150
  56. package/configuration.ts +110 -110
  57. package/git_push.sh +57 -57
  58. package/hooks.json +8 -8
  59. package/models/ApiCronDataCleanupTriggerPost200ResponseResponseObject.js +15 -3
  60. package/models/ApiCronDataCleanupTriggerPost200ResponseResponseObject.ts +44 -3
  61. package/models/ApiPublicGamesSeoGet200Response.js +61 -0
  62. package/models/ApiPublicGamesSeoGet200Response.ts +100 -0
  63. package/models/ApiPublicGamesSeoGet200ResponseResponseObject.js +67 -0
  64. package/models/ApiPublicGamesSeoGet200ResponseResponseObject.ts +110 -0
  65. package/models/ApiPublicGamesSeoGet200ResponseResponseObjectItemsInner.js +78 -0
  66. package/models/ApiPublicGamesSeoGet200ResponseResponseObjectItemsInner.ts +129 -0
  67. package/models/index.js +3 -0
  68. package/models/index.ts +3 -0
  69. package/openapitools.json +7 -7
  70. package/package.json +26 -26
  71. package/tsconfig.json +108 -108
  72. 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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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
+ };
@@ -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];
@@ -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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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 (mod) {
32
- if (mod && mod.__esModule) return mod;
33
- var result = {};
34
- if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
35
- __setModuleDefault(result, mod);
36
- return result;
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) {