@gambulls-org/gambulls-apis 3.0.620 → 3.0.622
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 +2 -0
- package/apis/JackpotApi.js +1 -1
- package/apis/JackpotApi.ts +6 -3
- package/models/ApiJackpotLaunchPost200Response.js +61 -0
- package/models/ApiJackpotLaunchPost200Response.ts +100 -0
- package/models/ApiJackpotLaunchPost200ResponseResponseObject.js +54 -0
- package/models/ApiJackpotLaunchPost200ResponseResponseObject.ts +75 -0
- package/models/index.js +2 -0
- package/models/index.ts +2 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -476,6 +476,8 @@ models/ApiJackpotCallbackBalancePostRequest.ts
|
|
|
476
476
|
models/ApiJackpotCallbackCreditPostRequest.ts
|
|
477
477
|
models/ApiJackpotCallbackDebitPostRequest.ts
|
|
478
478
|
models/ApiJackpotCallbackRollbackPostRequest.ts
|
|
479
|
+
models/ApiJackpotLaunchPost200Response.ts
|
|
480
|
+
models/ApiJackpotLaunchPost200ResponseResponseObject.ts
|
|
479
481
|
models/ApiJackpotLaunchPostRequest.ts
|
|
480
482
|
models/ApiPublicGamesFilterDataGet200Response.ts
|
|
481
483
|
models/ApiPublicGamesFilterDataGet200ResponseResponseObject.ts
|
package/apis/JackpotApi.js
CHANGED
|
@@ -332,7 +332,7 @@ class JackpotApi extends runtime.BaseAPI {
|
|
|
332
332
|
query: queryParameters,
|
|
333
333
|
body: (0, index_1.ApiJackpotLaunchPostRequestToJSON)(requestParameters['apiJackpotLaunchPostRequest']),
|
|
334
334
|
}, initOverrides);
|
|
335
|
-
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.
|
|
335
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.ApiJackpotLaunchPost200ResponseFromJSON)(jsonValue));
|
|
336
336
|
});
|
|
337
337
|
}
|
|
338
338
|
/**
|
package/apis/JackpotApi.ts
CHANGED
|
@@ -20,6 +20,7 @@ import type {
|
|
|
20
20
|
ApiJackpotCallbackCreditPostRequest,
|
|
21
21
|
ApiJackpotCallbackDebitPostRequest,
|
|
22
22
|
ApiJackpotCallbackRollbackPostRequest,
|
|
23
|
+
ApiJackpotLaunchPost200Response,
|
|
23
24
|
ApiJackpotLaunchPostRequest,
|
|
24
25
|
ApiUserAvatarPut200Response,
|
|
25
26
|
} from '../models/index';
|
|
@@ -34,6 +35,8 @@ import {
|
|
|
34
35
|
ApiJackpotCallbackDebitPostRequestToJSON,
|
|
35
36
|
ApiJackpotCallbackRollbackPostRequestFromJSON,
|
|
36
37
|
ApiJackpotCallbackRollbackPostRequestToJSON,
|
|
38
|
+
ApiJackpotLaunchPost200ResponseFromJSON,
|
|
39
|
+
ApiJackpotLaunchPost200ResponseToJSON,
|
|
37
40
|
ApiJackpotLaunchPostRequestFromJSON,
|
|
38
41
|
ApiJackpotLaunchPostRequestToJSON,
|
|
39
42
|
ApiUserAvatarPut200ResponseFromJSON,
|
|
@@ -353,7 +356,7 @@ export class JackpotApi extends runtime.BaseAPI {
|
|
|
353
356
|
/**
|
|
354
357
|
* Jackpot - Launch Game Session
|
|
355
358
|
*/
|
|
356
|
-
async apiJackpotLaunchPostRaw(requestParameters: ApiJackpotLaunchPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<
|
|
359
|
+
async apiJackpotLaunchPostRaw(requestParameters: ApiJackpotLaunchPostOperationRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<ApiJackpotLaunchPost200Response>> {
|
|
357
360
|
const queryParameters: any = {};
|
|
358
361
|
|
|
359
362
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
@@ -380,13 +383,13 @@ export class JackpotApi extends runtime.BaseAPI {
|
|
|
380
383
|
body: ApiJackpotLaunchPostRequestToJSON(requestParameters['apiJackpotLaunchPostRequest']),
|
|
381
384
|
}, initOverrides);
|
|
382
385
|
|
|
383
|
-
return new runtime.JSONApiResponse(response, (jsonValue) =>
|
|
386
|
+
return new runtime.JSONApiResponse(response, (jsonValue) => ApiJackpotLaunchPost200ResponseFromJSON(jsonValue));
|
|
384
387
|
}
|
|
385
388
|
|
|
386
389
|
/**
|
|
387
390
|
* Jackpot - Launch Game Session
|
|
388
391
|
*/
|
|
389
|
-
async apiJackpotLaunchPost(requestParameters: ApiJackpotLaunchPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<
|
|
392
|
+
async apiJackpotLaunchPost(requestParameters: ApiJackpotLaunchPostOperationRequest = {}, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<ApiJackpotLaunchPost200Response> {
|
|
390
393
|
const response = await this.apiJackpotLaunchPostRaw(requestParameters, initOverrides);
|
|
391
394
|
return await response.value();
|
|
392
395
|
}
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfApiJackpotLaunchPost200Response = instanceOfApiJackpotLaunchPost200Response;
|
|
17
|
+
exports.ApiJackpotLaunchPost200ResponseFromJSON = ApiJackpotLaunchPost200ResponseFromJSON;
|
|
18
|
+
exports.ApiJackpotLaunchPost200ResponseFromJSONTyped = ApiJackpotLaunchPost200ResponseFromJSONTyped;
|
|
19
|
+
exports.ApiJackpotLaunchPost200ResponseToJSON = ApiJackpotLaunchPost200ResponseToJSON;
|
|
20
|
+
exports.ApiJackpotLaunchPost200ResponseToJSONTyped = ApiJackpotLaunchPost200ResponseToJSONTyped;
|
|
21
|
+
const ApiJackpotLaunchPost200ResponseResponseObject_1 = require("./ApiJackpotLaunchPost200ResponseResponseObject");
|
|
22
|
+
/**
|
|
23
|
+
* Check if a given object implements the ApiJackpotLaunchPost200Response interface.
|
|
24
|
+
*/
|
|
25
|
+
function instanceOfApiJackpotLaunchPost200Response(value) {
|
|
26
|
+
if (!('success' in value) || value['success'] === undefined)
|
|
27
|
+
return false;
|
|
28
|
+
if (!('message' in value) || value['message'] === undefined)
|
|
29
|
+
return false;
|
|
30
|
+
if (!('statusCode' in value) || value['statusCode'] === undefined)
|
|
31
|
+
return false;
|
|
32
|
+
return true;
|
|
33
|
+
}
|
|
34
|
+
function ApiJackpotLaunchPost200ResponseFromJSON(json) {
|
|
35
|
+
return ApiJackpotLaunchPost200ResponseFromJSONTyped(json, false);
|
|
36
|
+
}
|
|
37
|
+
function ApiJackpotLaunchPost200ResponseFromJSONTyped(json, ignoreDiscriminator) {
|
|
38
|
+
if (json == null) {
|
|
39
|
+
return json;
|
|
40
|
+
}
|
|
41
|
+
return {
|
|
42
|
+
'success': json['success'],
|
|
43
|
+
'message': json['message'],
|
|
44
|
+
'responseObject': json['responseObject'] == null ? undefined : (0, ApiJackpotLaunchPost200ResponseResponseObject_1.ApiJackpotLaunchPost200ResponseResponseObjectFromJSON)(json['responseObject']),
|
|
45
|
+
'statusCode': json['statusCode'],
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
function ApiJackpotLaunchPost200ResponseToJSON(json) {
|
|
49
|
+
return ApiJackpotLaunchPost200ResponseToJSONTyped(json, false);
|
|
50
|
+
}
|
|
51
|
+
function ApiJackpotLaunchPost200ResponseToJSONTyped(value, ignoreDiscriminator = false) {
|
|
52
|
+
if (value == null) {
|
|
53
|
+
return value;
|
|
54
|
+
}
|
|
55
|
+
return {
|
|
56
|
+
'success': value['success'],
|
|
57
|
+
'message': value['message'],
|
|
58
|
+
'responseObject': (0, ApiJackpotLaunchPost200ResponseResponseObject_1.ApiJackpotLaunchPost200ResponseResponseObjectToJSON)(value['responseObject']),
|
|
59
|
+
'statusCode': value['statusCode'],
|
|
60
|
+
};
|
|
61
|
+
}
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { ApiJackpotLaunchPost200ResponseResponseObject } from './ApiJackpotLaunchPost200ResponseResponseObject';
|
|
17
|
+
import {
|
|
18
|
+
ApiJackpotLaunchPost200ResponseResponseObjectFromJSON,
|
|
19
|
+
ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped,
|
|
20
|
+
ApiJackpotLaunchPost200ResponseResponseObjectToJSON,
|
|
21
|
+
ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped,
|
|
22
|
+
} from './ApiJackpotLaunchPost200ResponseResponseObject';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface ApiJackpotLaunchPost200Response
|
|
28
|
+
*/
|
|
29
|
+
export interface ApiJackpotLaunchPost200Response {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {boolean}
|
|
33
|
+
* @memberof ApiJackpotLaunchPost200Response
|
|
34
|
+
*/
|
|
35
|
+
success: boolean;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof ApiJackpotLaunchPost200Response
|
|
40
|
+
*/
|
|
41
|
+
message: string;
|
|
42
|
+
/**
|
|
43
|
+
*
|
|
44
|
+
* @type {ApiJackpotLaunchPost200ResponseResponseObject}
|
|
45
|
+
* @memberof ApiJackpotLaunchPost200Response
|
|
46
|
+
*/
|
|
47
|
+
responseObject?: ApiJackpotLaunchPost200ResponseResponseObject;
|
|
48
|
+
/**
|
|
49
|
+
*
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof ApiJackpotLaunchPost200Response
|
|
52
|
+
*/
|
|
53
|
+
statusCode: number;
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
/**
|
|
57
|
+
* Check if a given object implements the ApiJackpotLaunchPost200Response interface.
|
|
58
|
+
*/
|
|
59
|
+
export function instanceOfApiJackpotLaunchPost200Response(value: object): value is ApiJackpotLaunchPost200Response {
|
|
60
|
+
if (!('success' in value) || value['success'] === undefined) return false;
|
|
61
|
+
if (!('message' in value) || value['message'] === undefined) return false;
|
|
62
|
+
if (!('statusCode' in value) || value['statusCode'] === undefined) return false;
|
|
63
|
+
return true;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export function ApiJackpotLaunchPost200ResponseFromJSON(json: any): ApiJackpotLaunchPost200Response {
|
|
67
|
+
return ApiJackpotLaunchPost200ResponseFromJSONTyped(json, false);
|
|
68
|
+
}
|
|
69
|
+
|
|
70
|
+
export function ApiJackpotLaunchPost200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiJackpotLaunchPost200Response {
|
|
71
|
+
if (json == null) {
|
|
72
|
+
return json;
|
|
73
|
+
}
|
|
74
|
+
return {
|
|
75
|
+
|
|
76
|
+
'success': json['success'],
|
|
77
|
+
'message': json['message'],
|
|
78
|
+
'responseObject': json['responseObject'] == null ? undefined : ApiJackpotLaunchPost200ResponseResponseObjectFromJSON(json['responseObject']),
|
|
79
|
+
'statusCode': json['statusCode'],
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function ApiJackpotLaunchPost200ResponseToJSON(json: any): ApiJackpotLaunchPost200Response {
|
|
84
|
+
return ApiJackpotLaunchPost200ResponseToJSONTyped(json, false);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function ApiJackpotLaunchPost200ResponseToJSONTyped(value?: ApiJackpotLaunchPost200Response | null, ignoreDiscriminator: boolean = false): any {
|
|
88
|
+
if (value == null) {
|
|
89
|
+
return value;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return {
|
|
93
|
+
|
|
94
|
+
'success': value['success'],
|
|
95
|
+
'message': value['message'],
|
|
96
|
+
'responseObject': ApiJackpotLaunchPost200ResponseResponseObjectToJSON(value['responseObject']),
|
|
97
|
+
'statusCode': value['statusCode'],
|
|
98
|
+
};
|
|
99
|
+
}
|
|
100
|
+
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/* tslint:disable */
|
|
3
|
+
/* eslint-disable */
|
|
4
|
+
/**
|
|
5
|
+
* Swagger API
|
|
6
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
7
|
+
*
|
|
8
|
+
* The version of the OpenAPI document: 1.0.0
|
|
9
|
+
*
|
|
10
|
+
*
|
|
11
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
12
|
+
* https://openapi-generator.tech
|
|
13
|
+
* Do not edit the class manually.
|
|
14
|
+
*/
|
|
15
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
+
exports.instanceOfApiJackpotLaunchPost200ResponseResponseObject = instanceOfApiJackpotLaunchPost200ResponseResponseObject;
|
|
17
|
+
exports.ApiJackpotLaunchPost200ResponseResponseObjectFromJSON = ApiJackpotLaunchPost200ResponseResponseObjectFromJSON;
|
|
18
|
+
exports.ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped = ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped;
|
|
19
|
+
exports.ApiJackpotLaunchPost200ResponseResponseObjectToJSON = ApiJackpotLaunchPost200ResponseResponseObjectToJSON;
|
|
20
|
+
exports.ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped = ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped;
|
|
21
|
+
/**
|
|
22
|
+
* Check if a given object implements the ApiJackpotLaunchPost200ResponseResponseObject interface.
|
|
23
|
+
*/
|
|
24
|
+
function instanceOfApiJackpotLaunchPost200ResponseResponseObject(value) {
|
|
25
|
+
if (!('sessionToken' in value) || value['sessionToken'] === undefined)
|
|
26
|
+
return false;
|
|
27
|
+
if (!('launchUrl' in value) || value['launchUrl'] === undefined)
|
|
28
|
+
return false;
|
|
29
|
+
return true;
|
|
30
|
+
}
|
|
31
|
+
function ApiJackpotLaunchPost200ResponseResponseObjectFromJSON(json) {
|
|
32
|
+
return ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped(json, false);
|
|
33
|
+
}
|
|
34
|
+
function ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped(json, ignoreDiscriminator) {
|
|
35
|
+
if (json == null) {
|
|
36
|
+
return json;
|
|
37
|
+
}
|
|
38
|
+
return {
|
|
39
|
+
'sessionToken': json['sessionToken'],
|
|
40
|
+
'launchUrl': json['launchUrl'],
|
|
41
|
+
};
|
|
42
|
+
}
|
|
43
|
+
function ApiJackpotLaunchPost200ResponseResponseObjectToJSON(json) {
|
|
44
|
+
return ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
function ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped(value, ignoreDiscriminator = false) {
|
|
47
|
+
if (value == null) {
|
|
48
|
+
return value;
|
|
49
|
+
}
|
|
50
|
+
return {
|
|
51
|
+
'sessionToken': value['sessionToken'],
|
|
52
|
+
'launchUrl': value['launchUrl'],
|
|
53
|
+
};
|
|
54
|
+
}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Swagger API
|
|
5
|
+
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface ApiJackpotLaunchPost200ResponseResponseObject
|
|
20
|
+
*/
|
|
21
|
+
export interface ApiJackpotLaunchPost200ResponseResponseObject {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof ApiJackpotLaunchPost200ResponseResponseObject
|
|
26
|
+
*/
|
|
27
|
+
sessionToken: string;
|
|
28
|
+
/**
|
|
29
|
+
*
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof ApiJackpotLaunchPost200ResponseResponseObject
|
|
32
|
+
*/
|
|
33
|
+
launchUrl: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the ApiJackpotLaunchPost200ResponseResponseObject interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfApiJackpotLaunchPost200ResponseResponseObject(value: object): value is ApiJackpotLaunchPost200ResponseResponseObject {
|
|
40
|
+
if (!('sessionToken' in value) || value['sessionToken'] === undefined) return false;
|
|
41
|
+
if (!('launchUrl' in value) || value['launchUrl'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function ApiJackpotLaunchPost200ResponseResponseObjectFromJSON(json: any): ApiJackpotLaunchPost200ResponseResponseObject {
|
|
46
|
+
return ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function ApiJackpotLaunchPost200ResponseResponseObjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApiJackpotLaunchPost200ResponseResponseObject {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'sessionToken': json['sessionToken'],
|
|
56
|
+
'launchUrl': json['launchUrl'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function ApiJackpotLaunchPost200ResponseResponseObjectToJSON(json: any): ApiJackpotLaunchPost200ResponseResponseObject {
|
|
61
|
+
return ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function ApiJackpotLaunchPost200ResponseResponseObjectToJSONTyped(value?: ApiJackpotLaunchPost200ResponseResponseObject | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'sessionToken': value['sessionToken'],
|
|
72
|
+
'launchUrl': value['launchUrl'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
package/models/index.js
CHANGED
|
@@ -422,6 +422,8 @@ __exportStar(require("./ApiJackpotCallbackBalancePostRequest"), exports);
|
|
|
422
422
|
__exportStar(require("./ApiJackpotCallbackCreditPostRequest"), exports);
|
|
423
423
|
__exportStar(require("./ApiJackpotCallbackDebitPostRequest"), exports);
|
|
424
424
|
__exportStar(require("./ApiJackpotCallbackRollbackPostRequest"), exports);
|
|
425
|
+
__exportStar(require("./ApiJackpotLaunchPost200Response"), exports);
|
|
426
|
+
__exportStar(require("./ApiJackpotLaunchPost200ResponseResponseObject"), exports);
|
|
425
427
|
__exportStar(require("./ApiJackpotLaunchPostRequest"), exports);
|
|
426
428
|
__exportStar(require("./ApiPublicGamesFilterDataGet200Response"), exports);
|
|
427
429
|
__exportStar(require("./ApiPublicGamesFilterDataGet200ResponseResponseObject"), exports);
|
package/models/index.ts
CHANGED
|
@@ -406,6 +406,8 @@ export * from './ApiJackpotCallbackBalancePostRequest';
|
|
|
406
406
|
export * from './ApiJackpotCallbackCreditPostRequest';
|
|
407
407
|
export * from './ApiJackpotCallbackDebitPostRequest';
|
|
408
408
|
export * from './ApiJackpotCallbackRollbackPostRequest';
|
|
409
|
+
export * from './ApiJackpotLaunchPost200Response';
|
|
410
|
+
export * from './ApiJackpotLaunchPost200ResponseResponseObject';
|
|
409
411
|
export * from './ApiJackpotLaunchPostRequest';
|
|
410
412
|
export * from './ApiPublicGamesFilterDataGet200Response';
|
|
411
413
|
export * from './ApiPublicGamesFilterDataGet200ResponseResponseObject';
|