@gambulls-org/gambulls-apis 3.0.358 → 3.0.360
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 +564 -564
- package/.openapi-generator-ignore +23 -23
- package/README.md +16 -16
- package/api.ts +10356 -10356
- package/apis/AdminAffiliateApi.js +7 -17
- package/apis/AdminAppConfigApi.js +7 -17
- package/apis/AdminAuthApi.js +7 -17
- package/apis/AdminBannerApi.js +7 -17
- package/apis/AdminBonusApi.js +7 -17
- package/apis/AdminCategoryApi.js +7 -17
- package/apis/AdminChatApi.js +7 -17
- package/apis/AdminDashboardApi.js +7 -17
- package/apis/AdminExchangeApi.js +7 -17
- package/apis/AdminFileManagementApi.js +7 -17
- package/apis/AdminGamesApi.js +7 -17
- package/apis/AdminGroupApi.js +7 -17
- package/apis/AdminIBankRollApi.js +7 -17
- package/apis/AdminLoyaltyApi.js +7 -17
- package/apis/AdminManagementApi.js +7 -17
- package/apis/AdminMenuApi.js +7 -17
- package/apis/AdminPaymentSystemApi.js +7 -17
- package/apis/AdminPinnedMessageApi.js +7 -17
- package/apis/AdminPolicyApi.js +7 -17
- package/apis/AdminProvidersApi.js +7 -17
- package/apis/AdminRakebackEventApi.js +7 -17
- package/apis/AdminReportApi.js +7 -17
- package/apis/AdminSportApi.js +7 -17
- package/apis/AdminUserManagementApi.js +7 -17
- package/apis/AuthApi.js +7 -17
- package/apis/CMSApi.js +7 -17
- package/apis/CronDataCleanupApi.js +7 -17
- package/apis/CronRecoveryApi.js +7 -17
- package/apis/HealthCheckApi.js +7 -17
- package/apis/PublicBannerApi.js +7 -17
- package/apis/PublicGamesApi.js +7 -17
- package/apis/PublicPolicyApi.js +7 -17
- package/apis/RGSApi.js +7 -17
- package/apis/RGSV2Api.js +7 -17
- package/apis/SportsbookApi.js +7 -17
- package/apis/TatumApi.js +7 -17
- package/apis/TestForNonProductionOnlyApi.js +7 -17
- package/apis/UserAffiliateApi.js +7 -17
- package/apis/UserAvatarApi.js +7 -17
- package/apis/UserBalanceApi.js +7 -17
- package/apis/UserBonusApi.js +7 -17
- package/apis/UserDepositApi.js +7 -17
- package/apis/UserDocumentApi.js +7 -17
- package/apis/UserGamesApi.js +7 -17
- package/apis/UserLoyaltyApi.js +7 -17
- package/apis/UserModeratorApi.js +7 -17
- package/apis/UserNotificationApi.js +7 -17
- package/apis/UserPreferencesApi.js +7 -17
- package/apis/UserProfileApi.js +7 -17
- package/apis/UserResponsibleGamingApi.js +7 -17
- package/apis/UserSportsbookApi.js +7 -17
- package/apis/UserStatisticApi.js +7 -17
- package/apis/UserTippingApi.js +7 -17
- package/apis/UserTransactionHistoryApi.js +7 -17
- package/apis/UserUploadApi.js +7 -17
- package/apis/UserWagerApi.js +7 -17
- package/apis/UserWithdrawalApi.js +7 -17
- 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/ApiAdminIbankrollBetFeedGet200ResponseResponseObject.js +12 -0
- package/models/ApiAdminIbankrollBetFeedGet200ResponseResponseObject.ts +27 -0
- package/models/ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner.js +16 -0
- package/models/ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner.ts +36 -0
- package/models/ApiAdminIbankrollBetFeedGetFilterParameter.js +11 -2
- package/models/ApiAdminIbankrollBetFeedGetFilterParameter.ts +42 -3
- package/openapitools.json +7 -7
- package/package.json +26 -26
- package/tsconfig.json +108 -108
- package/workflow.sh +40 -40
package/configuration.ts
CHANGED
|
@@ -1,110 +1,110 @@
|
|
|
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
|
-
|
|
16
|
-
export interface ConfigurationParameters {
|
|
17
|
-
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
18
|
-
username?: string;
|
|
19
|
-
password?: string;
|
|
20
|
-
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
21
|
-
basePath?: string;
|
|
22
|
-
serverIndex?: number;
|
|
23
|
-
baseOptions?: any;
|
|
24
|
-
formDataCtor?: new () => any;
|
|
25
|
-
}
|
|
26
|
-
|
|
27
|
-
export class Configuration {
|
|
28
|
-
/**
|
|
29
|
-
* parameter for apiKey security
|
|
30
|
-
* @param name security name
|
|
31
|
-
* @memberof Configuration
|
|
32
|
-
*/
|
|
33
|
-
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
34
|
-
/**
|
|
35
|
-
* parameter for basic security
|
|
36
|
-
*
|
|
37
|
-
* @type {string}
|
|
38
|
-
* @memberof Configuration
|
|
39
|
-
*/
|
|
40
|
-
username?: string;
|
|
41
|
-
/**
|
|
42
|
-
* parameter for basic security
|
|
43
|
-
*
|
|
44
|
-
* @type {string}
|
|
45
|
-
* @memberof Configuration
|
|
46
|
-
*/
|
|
47
|
-
password?: string;
|
|
48
|
-
/**
|
|
49
|
-
* parameter for oauth2 security
|
|
50
|
-
* @param name security name
|
|
51
|
-
* @param scopes oauth2 scope
|
|
52
|
-
* @memberof Configuration
|
|
53
|
-
*/
|
|
54
|
-
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
55
|
-
/**
|
|
56
|
-
* override base path
|
|
57
|
-
*
|
|
58
|
-
* @type {string}
|
|
59
|
-
* @memberof Configuration
|
|
60
|
-
*/
|
|
61
|
-
basePath?: string;
|
|
62
|
-
/**
|
|
63
|
-
* override server index
|
|
64
|
-
*
|
|
65
|
-
* @type {number}
|
|
66
|
-
* @memberof Configuration
|
|
67
|
-
*/
|
|
68
|
-
serverIndex?: number;
|
|
69
|
-
/**
|
|
70
|
-
* base options for axios calls
|
|
71
|
-
*
|
|
72
|
-
* @type {any}
|
|
73
|
-
* @memberof Configuration
|
|
74
|
-
*/
|
|
75
|
-
baseOptions?: any;
|
|
76
|
-
/**
|
|
77
|
-
* The FormData constructor that will be used to create multipart form data
|
|
78
|
-
* requests. You can inject this here so that execution environments that
|
|
79
|
-
* do not support the FormData class can still run the generated client.
|
|
80
|
-
*
|
|
81
|
-
* @type {new () => FormData}
|
|
82
|
-
*/
|
|
83
|
-
formDataCtor?: new () => any;
|
|
84
|
-
|
|
85
|
-
constructor(param: ConfigurationParameters = {}) {
|
|
86
|
-
this.apiKey = param.apiKey;
|
|
87
|
-
this.username = param.username;
|
|
88
|
-
this.password = param.password;
|
|
89
|
-
this.accessToken = param.accessToken;
|
|
90
|
-
this.basePath = param.basePath;
|
|
91
|
-
this.serverIndex = param.serverIndex;
|
|
92
|
-
this.baseOptions = param.baseOptions;
|
|
93
|
-
this.formDataCtor = param.formDataCtor;
|
|
94
|
-
}
|
|
95
|
-
|
|
96
|
-
/**
|
|
97
|
-
* Check if the given MIME is a JSON MIME.
|
|
98
|
-
* JSON MIME examples:
|
|
99
|
-
* application/json
|
|
100
|
-
* application/json; charset=UTF8
|
|
101
|
-
* APPLICATION/JSON
|
|
102
|
-
* application/vnd.company+json
|
|
103
|
-
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
104
|
-
* @return True if the given MIME is JSON, false otherwise.
|
|
105
|
-
*/
|
|
106
|
-
public isJsonMime(mime: string): boolean {
|
|
107
|
-
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
|
|
108
|
-
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
|
|
109
|
-
}
|
|
110
|
-
}
|
|
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
|
+
|
|
16
|
+
export interface ConfigurationParameters {
|
|
17
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
18
|
+
username?: string;
|
|
19
|
+
password?: string;
|
|
20
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
21
|
+
basePath?: string;
|
|
22
|
+
serverIndex?: number;
|
|
23
|
+
baseOptions?: any;
|
|
24
|
+
formDataCtor?: new () => any;
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export class Configuration {
|
|
28
|
+
/**
|
|
29
|
+
* parameter for apiKey security
|
|
30
|
+
* @param name security name
|
|
31
|
+
* @memberof Configuration
|
|
32
|
+
*/
|
|
33
|
+
apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
|
|
34
|
+
/**
|
|
35
|
+
* parameter for basic security
|
|
36
|
+
*
|
|
37
|
+
* @type {string}
|
|
38
|
+
* @memberof Configuration
|
|
39
|
+
*/
|
|
40
|
+
username?: string;
|
|
41
|
+
/**
|
|
42
|
+
* parameter for basic security
|
|
43
|
+
*
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof Configuration
|
|
46
|
+
*/
|
|
47
|
+
password?: string;
|
|
48
|
+
/**
|
|
49
|
+
* parameter for oauth2 security
|
|
50
|
+
* @param name security name
|
|
51
|
+
* @param scopes oauth2 scope
|
|
52
|
+
* @memberof Configuration
|
|
53
|
+
*/
|
|
54
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
|
|
55
|
+
/**
|
|
56
|
+
* override base path
|
|
57
|
+
*
|
|
58
|
+
* @type {string}
|
|
59
|
+
* @memberof Configuration
|
|
60
|
+
*/
|
|
61
|
+
basePath?: string;
|
|
62
|
+
/**
|
|
63
|
+
* override server index
|
|
64
|
+
*
|
|
65
|
+
* @type {number}
|
|
66
|
+
* @memberof Configuration
|
|
67
|
+
*/
|
|
68
|
+
serverIndex?: number;
|
|
69
|
+
/**
|
|
70
|
+
* base options for axios calls
|
|
71
|
+
*
|
|
72
|
+
* @type {any}
|
|
73
|
+
* @memberof Configuration
|
|
74
|
+
*/
|
|
75
|
+
baseOptions?: any;
|
|
76
|
+
/**
|
|
77
|
+
* The FormData constructor that will be used to create multipart form data
|
|
78
|
+
* requests. You can inject this here so that execution environments that
|
|
79
|
+
* do not support the FormData class can still run the generated client.
|
|
80
|
+
*
|
|
81
|
+
* @type {new () => FormData}
|
|
82
|
+
*/
|
|
83
|
+
formDataCtor?: new () => any;
|
|
84
|
+
|
|
85
|
+
constructor(param: ConfigurationParameters = {}) {
|
|
86
|
+
this.apiKey = param.apiKey;
|
|
87
|
+
this.username = param.username;
|
|
88
|
+
this.password = param.password;
|
|
89
|
+
this.accessToken = param.accessToken;
|
|
90
|
+
this.basePath = param.basePath;
|
|
91
|
+
this.serverIndex = param.serverIndex;
|
|
92
|
+
this.baseOptions = param.baseOptions;
|
|
93
|
+
this.formDataCtor = param.formDataCtor;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* Check if the given MIME is a JSON MIME.
|
|
98
|
+
* JSON MIME examples:
|
|
99
|
+
* application/json
|
|
100
|
+
* application/json; charset=UTF8
|
|
101
|
+
* APPLICATION/JSON
|
|
102
|
+
* application/vnd.company+json
|
|
103
|
+
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
104
|
+
* @return True if the given MIME is JSON, false otherwise.
|
|
105
|
+
*/
|
|
106
|
+
public isJsonMime(mime: string): boolean {
|
|
107
|
+
const jsonMime: RegExp = new RegExp('^(application\/json|[^;/ \t]+\/[^;/ \t]+[+]json)[ \t]*(;.*)?$', 'i');
|
|
108
|
+
return mime !== null && (jsonMime.test(mime) || mime.toLowerCase() === 'application/json-patch+json');
|
|
109
|
+
}
|
|
110
|
+
}
|
package/git_push.sh
CHANGED
|
@@ -1,57 +1,57 @@
|
|
|
1
|
-
#!/bin/sh
|
|
2
|
-
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
|
3
|
-
#
|
|
4
|
-
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
|
|
5
|
-
|
|
6
|
-
git_user_id=$1
|
|
7
|
-
git_repo_id=$2
|
|
8
|
-
release_note=$3
|
|
9
|
-
git_host=$4
|
|
10
|
-
|
|
11
|
-
if [ "$git_host" = "" ]; then
|
|
12
|
-
git_host="github.com"
|
|
13
|
-
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
|
|
14
|
-
fi
|
|
15
|
-
|
|
16
|
-
if [ "$git_user_id" = "" ]; then
|
|
17
|
-
git_user_id="GIT_USER_ID"
|
|
18
|
-
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
|
|
19
|
-
fi
|
|
20
|
-
|
|
21
|
-
if [ "$git_repo_id" = "" ]; then
|
|
22
|
-
git_repo_id="GIT_REPO_ID"
|
|
23
|
-
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
|
|
24
|
-
fi
|
|
25
|
-
|
|
26
|
-
if [ "$release_note" = "" ]; then
|
|
27
|
-
release_note="Minor update"
|
|
28
|
-
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
|
|
29
|
-
fi
|
|
30
|
-
|
|
31
|
-
# Initialize the local directory as a Git repository
|
|
32
|
-
git init
|
|
33
|
-
|
|
34
|
-
# Adds the files in the local repository and stages them for commit.
|
|
35
|
-
git add .
|
|
36
|
-
|
|
37
|
-
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
|
38
|
-
git commit -m "$release_note"
|
|
39
|
-
|
|
40
|
-
# Sets the new remote
|
|
41
|
-
git_remote=$(git remote)
|
|
42
|
-
if [ "$git_remote" = "" ]; then # git remote not defined
|
|
43
|
-
|
|
44
|
-
if [ "$GIT_TOKEN" = "" ]; then
|
|
45
|
-
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
|
46
|
-
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
|
|
47
|
-
else
|
|
48
|
-
git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git
|
|
49
|
-
fi
|
|
50
|
-
|
|
51
|
-
fi
|
|
52
|
-
|
|
53
|
-
git pull origin master
|
|
54
|
-
|
|
55
|
-
# Pushes (Forces) the changes in the local repository up to the remote repository
|
|
56
|
-
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
|
|
57
|
-
git push origin master 2>&1 | grep -v 'To https'
|
|
1
|
+
#!/bin/sh
|
|
2
|
+
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
|
3
|
+
#
|
|
4
|
+
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
|
|
5
|
+
|
|
6
|
+
git_user_id=$1
|
|
7
|
+
git_repo_id=$2
|
|
8
|
+
release_note=$3
|
|
9
|
+
git_host=$4
|
|
10
|
+
|
|
11
|
+
if [ "$git_host" = "" ]; then
|
|
12
|
+
git_host="github.com"
|
|
13
|
+
echo "[INFO] No command line input provided. Set \$git_host to $git_host"
|
|
14
|
+
fi
|
|
15
|
+
|
|
16
|
+
if [ "$git_user_id" = "" ]; then
|
|
17
|
+
git_user_id="GIT_USER_ID"
|
|
18
|
+
echo "[INFO] No command line input provided. Set \$git_user_id to $git_user_id"
|
|
19
|
+
fi
|
|
20
|
+
|
|
21
|
+
if [ "$git_repo_id" = "" ]; then
|
|
22
|
+
git_repo_id="GIT_REPO_ID"
|
|
23
|
+
echo "[INFO] No command line input provided. Set \$git_repo_id to $git_repo_id"
|
|
24
|
+
fi
|
|
25
|
+
|
|
26
|
+
if [ "$release_note" = "" ]; then
|
|
27
|
+
release_note="Minor update"
|
|
28
|
+
echo "[INFO] No command line input provided. Set \$release_note to $release_note"
|
|
29
|
+
fi
|
|
30
|
+
|
|
31
|
+
# Initialize the local directory as a Git repository
|
|
32
|
+
git init
|
|
33
|
+
|
|
34
|
+
# Adds the files in the local repository and stages them for commit.
|
|
35
|
+
git add .
|
|
36
|
+
|
|
37
|
+
# Commits the tracked changes and prepares them to be pushed to a remote repository.
|
|
38
|
+
git commit -m "$release_note"
|
|
39
|
+
|
|
40
|
+
# Sets the new remote
|
|
41
|
+
git_remote=$(git remote)
|
|
42
|
+
if [ "$git_remote" = "" ]; then # git remote not defined
|
|
43
|
+
|
|
44
|
+
if [ "$GIT_TOKEN" = "" ]; then
|
|
45
|
+
echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
|
|
46
|
+
git remote add origin https://${git_host}/${git_user_id}/${git_repo_id}.git
|
|
47
|
+
else
|
|
48
|
+
git remote add origin https://${git_user_id}:"${GIT_TOKEN}"@${git_host}/${git_user_id}/${git_repo_id}.git
|
|
49
|
+
fi
|
|
50
|
+
|
|
51
|
+
fi
|
|
52
|
+
|
|
53
|
+
git pull origin master
|
|
54
|
+
|
|
55
|
+
# Pushes (Forces) the changes in the local repository up to the remote repository
|
|
56
|
+
echo "Git pushing to https://${git_host}/${git_user_id}/${git_repo_id}.git"
|
|
57
|
+
git push origin master 2>&1 | grep -v 'To https'
|
package/hooks.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
[
|
|
2
|
-
{
|
|
3
|
-
"id": "trigger-workflow",
|
|
4
|
-
"execute-command": "/home/dzkfzn/gambulls-apis/workflow.sh",
|
|
5
|
-
"command-working-directory": "/home/dzkfzn/gambulls-apis",
|
|
6
|
-
"response-message": "Triggered workflow successfully"
|
|
7
|
-
}
|
|
8
|
-
]
|
|
1
|
+
[
|
|
2
|
+
{
|
|
3
|
+
"id": "trigger-workflow",
|
|
4
|
+
"execute-command": "/home/dzkfzn/gambulls-apis/workflow.sh",
|
|
5
|
+
"command-working-directory": "/home/dzkfzn/gambulls-apis",
|
|
6
|
+
"response-message": "Triggered workflow successfully"
|
|
7
|
+
}
|
|
8
|
+
]
|
|
@@ -41,6 +41,12 @@ function instanceOfApiAdminIbankrollBetFeedGet200ResponseResponseObject(value) {
|
|
|
41
41
|
return false;
|
|
42
42
|
if (!('overallRunningRtp' in value) || value['overallRunningRtp'] === undefined)
|
|
43
43
|
return false;
|
|
44
|
+
if (!('totalTheoreticalGGR' in value) || value['totalTheoreticalGGR'] === undefined)
|
|
45
|
+
return false;
|
|
46
|
+
if (!('totalCasinoOwed' in value) || value['totalCasinoOwed'] === undefined)
|
|
47
|
+
return false;
|
|
48
|
+
if (!('totalIbNetPosition' in value) || value['totalIbNetPosition'] === undefined)
|
|
49
|
+
return false;
|
|
44
50
|
return true;
|
|
45
51
|
}
|
|
46
52
|
function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectFromJSON(json) {
|
|
@@ -60,6 +66,9 @@ function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectFromJSONTyped(json,
|
|
|
60
66
|
'totalPayouts': json['totalPayouts'],
|
|
61
67
|
'ggr': json['ggr'],
|
|
62
68
|
'overallRunningRtp': json['overallRunningRtp'],
|
|
69
|
+
'totalTheoreticalGGR': json['totalTheoreticalGGR'],
|
|
70
|
+
'totalCasinoOwed': json['totalCasinoOwed'],
|
|
71
|
+
'totalIbNetPosition': json['totalIbNetPosition'],
|
|
63
72
|
};
|
|
64
73
|
}
|
|
65
74
|
function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectToJSON(json) {
|
|
@@ -79,5 +88,8 @@ function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectToJSONTyped(value,
|
|
|
79
88
|
'totalPayouts': value['totalPayouts'],
|
|
80
89
|
'ggr': value['ggr'],
|
|
81
90
|
'overallRunningRtp': value['overallRunningRtp'],
|
|
91
|
+
'totalTheoreticalGGR': value['totalTheoreticalGGR'],
|
|
92
|
+
'totalCasinoOwed': value['totalCasinoOwed'],
|
|
93
|
+
'totalIbNetPosition': value['totalIbNetPosition'],
|
|
82
94
|
};
|
|
83
95
|
}
|
|
@@ -81,6 +81,24 @@ export interface ApiAdminIbankrollBetFeedGet200ResponseResponseObject {
|
|
|
81
81
|
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObject
|
|
82
82
|
*/
|
|
83
83
|
overallRunningRtp: string;
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {string}
|
|
87
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObject
|
|
88
|
+
*/
|
|
89
|
+
totalTheoreticalGGR: string;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {string}
|
|
93
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObject
|
|
94
|
+
*/
|
|
95
|
+
totalCasinoOwed: string;
|
|
96
|
+
/**
|
|
97
|
+
*
|
|
98
|
+
* @type {string}
|
|
99
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObject
|
|
100
|
+
*/
|
|
101
|
+
totalIbNetPosition: string;
|
|
84
102
|
}
|
|
85
103
|
|
|
86
104
|
/**
|
|
@@ -96,6 +114,9 @@ export function instanceOfApiAdminIbankrollBetFeedGet200ResponseResponseObject(v
|
|
|
96
114
|
if (!('totalPayouts' in value) || value['totalPayouts'] === undefined) return false;
|
|
97
115
|
if (!('ggr' in value) || value['ggr'] === undefined) return false;
|
|
98
116
|
if (!('overallRunningRtp' in value) || value['overallRunningRtp'] === undefined) return false;
|
|
117
|
+
if (!('totalTheoreticalGGR' in value) || value['totalTheoreticalGGR'] === undefined) return false;
|
|
118
|
+
if (!('totalCasinoOwed' in value) || value['totalCasinoOwed'] === undefined) return false;
|
|
119
|
+
if (!('totalIbNetPosition' in value) || value['totalIbNetPosition'] === undefined) return false;
|
|
99
120
|
return true;
|
|
100
121
|
}
|
|
101
122
|
|
|
@@ -118,6 +139,9 @@ export function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectFromJSONType
|
|
|
118
139
|
'totalPayouts': json['totalPayouts'],
|
|
119
140
|
'ggr': json['ggr'],
|
|
120
141
|
'overallRunningRtp': json['overallRunningRtp'],
|
|
142
|
+
'totalTheoreticalGGR': json['totalTheoreticalGGR'],
|
|
143
|
+
'totalCasinoOwed': json['totalCasinoOwed'],
|
|
144
|
+
'totalIbNetPosition': json['totalIbNetPosition'],
|
|
121
145
|
};
|
|
122
146
|
}
|
|
123
147
|
|
|
@@ -141,6 +165,9 @@ export function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectFromJSONType
|
|
|
141
165
|
'totalPayouts': value['totalPayouts'],
|
|
142
166
|
'ggr': value['ggr'],
|
|
143
167
|
'overallRunningRtp': value['overallRunningRtp'],
|
|
168
|
+
'totalTheoreticalGGR': value['totalTheoreticalGGR'],
|
|
169
|
+
'totalCasinoOwed': value['totalCasinoOwed'],
|
|
170
|
+
'totalIbNetPosition': value['totalIbNetPosition'],
|
|
144
171
|
};
|
|
145
172
|
}
|
|
146
173
|
|
|
@@ -54,6 +54,14 @@ function instanceOfApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInne
|
|
|
54
54
|
return false;
|
|
55
55
|
if (!('createdAt' in value) || value['createdAt'] === undefined)
|
|
56
56
|
return false;
|
|
57
|
+
if (!('theoreticalGGR' in value) || value['theoreticalGGR'] === undefined)
|
|
58
|
+
return false;
|
|
59
|
+
if (!('casinoOwed' in value) || value['casinoOwed'] === undefined)
|
|
60
|
+
return false;
|
|
61
|
+
if (!('ibNetPosition' in value) || value['ibNetPosition'] === undefined)
|
|
62
|
+
return false;
|
|
63
|
+
if (!('isStreamer' in value) || value['isStreamer'] === undefined)
|
|
64
|
+
return false;
|
|
57
65
|
return true;
|
|
58
66
|
}
|
|
59
67
|
function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerFromJSON(json) {
|
|
@@ -80,6 +88,10 @@ function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerFromJSONT
|
|
|
80
88
|
'multiplier': json['multiplier'],
|
|
81
89
|
'currency': json['currency'],
|
|
82
90
|
'createdAt': (new Date(json['createdAt'])),
|
|
91
|
+
'theoreticalGGR': json['theoreticalGGR'],
|
|
92
|
+
'casinoOwed': json['casinoOwed'],
|
|
93
|
+
'ibNetPosition': json['ibNetPosition'],
|
|
94
|
+
'isStreamer': json['isStreamer'],
|
|
83
95
|
};
|
|
84
96
|
}
|
|
85
97
|
function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerToJSON(json) {
|
|
@@ -106,5 +118,9 @@ function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerToJSONTyp
|
|
|
106
118
|
'multiplier': value['multiplier'],
|
|
107
119
|
'currency': value['currency'],
|
|
108
120
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
121
|
+
'theoreticalGGR': value['theoreticalGGR'],
|
|
122
|
+
'casinoOwed': value['casinoOwed'],
|
|
123
|
+
'ibNetPosition': value['ibNetPosition'],
|
|
124
|
+
'isStreamer': value['isStreamer'],
|
|
109
125
|
};
|
|
110
126
|
}
|
|
@@ -115,6 +115,30 @@ export interface ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
|
115
115
|
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
116
116
|
*/
|
|
117
117
|
createdAt: Date;
|
|
118
|
+
/**
|
|
119
|
+
*
|
|
120
|
+
* @type {number}
|
|
121
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
122
|
+
*/
|
|
123
|
+
theoreticalGGR: number | null;
|
|
124
|
+
/**
|
|
125
|
+
*
|
|
126
|
+
* @type {number}
|
|
127
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
128
|
+
*/
|
|
129
|
+
casinoOwed: number | null;
|
|
130
|
+
/**
|
|
131
|
+
*
|
|
132
|
+
* @type {number}
|
|
133
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
134
|
+
*/
|
|
135
|
+
ibNetPosition: number | null;
|
|
136
|
+
/**
|
|
137
|
+
*
|
|
138
|
+
* @type {boolean}
|
|
139
|
+
* @memberof ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInner
|
|
140
|
+
*/
|
|
141
|
+
isStreamer: boolean;
|
|
118
142
|
}
|
|
119
143
|
|
|
120
144
|
/**
|
|
@@ -137,6 +161,10 @@ export function instanceOfApiAdminIbankrollBetFeedGet200ResponseResponseObjectIt
|
|
|
137
161
|
if (!('multiplier' in value) || value['multiplier'] === undefined) return false;
|
|
138
162
|
if (!('currency' in value) || value['currency'] === undefined) return false;
|
|
139
163
|
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
164
|
+
if (!('theoreticalGGR' in value) || value['theoreticalGGR'] === undefined) return false;
|
|
165
|
+
if (!('casinoOwed' in value) || value['casinoOwed'] === undefined) return false;
|
|
166
|
+
if (!('ibNetPosition' in value) || value['ibNetPosition'] === undefined) return false;
|
|
167
|
+
if (!('isStreamer' in value) || value['isStreamer'] === undefined) return false;
|
|
140
168
|
return true;
|
|
141
169
|
}
|
|
142
170
|
|
|
@@ -166,6 +194,10 @@ export function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerFr
|
|
|
166
194
|
'multiplier': json['multiplier'],
|
|
167
195
|
'currency': json['currency'],
|
|
168
196
|
'createdAt': (new Date(json['createdAt'])),
|
|
197
|
+
'theoreticalGGR': json['theoreticalGGR'],
|
|
198
|
+
'casinoOwed': json['casinoOwed'],
|
|
199
|
+
'ibNetPosition': json['ibNetPosition'],
|
|
200
|
+
'isStreamer': json['isStreamer'],
|
|
169
201
|
};
|
|
170
202
|
}
|
|
171
203
|
|
|
@@ -196,6 +228,10 @@ export function ApiAdminIbankrollBetFeedGet200ResponseResponseObjectItemsInnerFr
|
|
|
196
228
|
'multiplier': value['multiplier'],
|
|
197
229
|
'currency': value['currency'],
|
|
198
230
|
'createdAt': ((value['createdAt']).toISOString()),
|
|
231
|
+
'theoreticalGGR': value['theoreticalGGR'],
|
|
232
|
+
'casinoOwed': value['casinoOwed'],
|
|
233
|
+
'ibNetPosition': value['ibNetPosition'],
|
|
234
|
+
'isStreamer': value['isStreamer'],
|
|
199
235
|
};
|
|
200
236
|
}
|
|
201
237
|
|
|
@@ -20,6 +20,7 @@ exports.ApiAdminIbankrollBetFeedGetFilterParameterToJSON = ApiAdminIbankrollBetF
|
|
|
20
20
|
exports.ApiAdminIbankrollBetFeedGetFilterParameterToJSONTyped = ApiAdminIbankrollBetFeedGetFilterParameterToJSONTyped;
|
|
21
21
|
const ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAt_1 = require("./ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAt");
|
|
22
22
|
const ApiAdminRakebackEventGetFilterParameterIsActive_1 = require("./ApiAdminRakebackEventGetFilterParameterIsActive");
|
|
23
|
+
const ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1 = require("./ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount");
|
|
23
24
|
const ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId_1 = require("./ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId");
|
|
24
25
|
/**
|
|
25
26
|
* Check if a given object implements the ApiAdminIbankrollBetFeedGetFilterParameter interface.
|
|
@@ -44,7 +45,11 @@ function ApiAdminIbankrollBetFeedGetFilterParameterFromJSONTyped(json, ignoreDis
|
|
|
44
45
|
'categoryName': json['categoryName'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetIdFromJSON)(json['categoryName']),
|
|
45
46
|
'isBonusBalance': json['isBonusBalance'] == null ? undefined : (0, ApiAdminRakebackEventGetFilterParameterIsActive_1.ApiAdminRakebackEventGetFilterParameterIsActiveFromJSON)(json['isBonusBalance']),
|
|
46
47
|
'createdAt': json['createdAt'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAt_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAtFromJSON)(json['createdAt']),
|
|
47
|
-
'
|
|
48
|
+
'isStreamer': json['isStreamer'] == null ? undefined : (0, ApiAdminRakebackEventGetFilterParameterIsActive_1.ApiAdminRakebackEventGetFilterParameterIsActiveFromJSON)(json['isStreamer']),
|
|
49
|
+
'betAmount': json['betAmount'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON)(json['betAmount']),
|
|
50
|
+
'payout': json['payout'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON)(json['payout']),
|
|
51
|
+
'multiplier': json['multiplier'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON)(json['multiplier']),
|
|
52
|
+
'theoreticalRtp': json['theoreticalRtp'] == null ? undefined : (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON)(json['theoreticalRtp']),
|
|
48
53
|
};
|
|
49
54
|
}
|
|
50
55
|
function ApiAdminIbankrollBetFeedGetFilterParameterToJSON(json) {
|
|
@@ -64,6 +69,10 @@ function ApiAdminIbankrollBetFeedGetFilterParameterToJSONTyped(value, ignoreDisc
|
|
|
64
69
|
'categoryName': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetIdToJSON)(value['categoryName']),
|
|
65
70
|
'isBonusBalance': (0, ApiAdminRakebackEventGetFilterParameterIsActive_1.ApiAdminRakebackEventGetFilterParameterIsActiveToJSON)(value['isBonusBalance']),
|
|
66
71
|
'createdAt': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAt_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAtToJSON)(value['createdAt']),
|
|
67
|
-
'
|
|
72
|
+
'isStreamer': (0, ApiAdminRakebackEventGetFilterParameterIsActive_1.ApiAdminRakebackEventGetFilterParameterIsActiveToJSON)(value['isStreamer']),
|
|
73
|
+
'betAmount': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON)(value['betAmount']),
|
|
74
|
+
'payout': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON)(value['payout']),
|
|
75
|
+
'multiplier': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON)(value['multiplier']),
|
|
76
|
+
'theoreticalRtp': (0, ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount_1.ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON)(value['theoreticalRtp']),
|
|
68
77
|
};
|
|
69
78
|
}
|
|
@@ -27,6 +27,13 @@ import {
|
|
|
27
27
|
ApiAdminRakebackEventGetFilterParameterIsActiveToJSON,
|
|
28
28
|
ApiAdminRakebackEventGetFilterParameterIsActiveToJSONTyped,
|
|
29
29
|
} from './ApiAdminRakebackEventGetFilterParameterIsActive';
|
|
30
|
+
import type { ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount } from './ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount';
|
|
31
|
+
import {
|
|
32
|
+
ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON,
|
|
33
|
+
ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSONTyped,
|
|
34
|
+
ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON,
|
|
35
|
+
ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSONTyped,
|
|
36
|
+
} from './ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount';
|
|
30
37
|
import type { ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId } from './ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetId';
|
|
31
38
|
import {
|
|
32
39
|
ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetIdFromJSON,
|
|
@@ -100,7 +107,31 @@ export interface ApiAdminIbankrollBetFeedGetFilterParameter {
|
|
|
100
107
|
* @type {ApiAdminRakebackEventGetFilterParameterIsActive}
|
|
101
108
|
* @memberof ApiAdminIbankrollBetFeedGetFilterParameter
|
|
102
109
|
*/
|
|
103
|
-
|
|
110
|
+
isStreamer?: ApiAdminRakebackEventGetFilterParameterIsActive;
|
|
111
|
+
/**
|
|
112
|
+
*
|
|
113
|
+
* @type {ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount}
|
|
114
|
+
* @memberof ApiAdminIbankrollBetFeedGetFilterParameter
|
|
115
|
+
*/
|
|
116
|
+
betAmount?: ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount;
|
|
117
|
+
/**
|
|
118
|
+
*
|
|
119
|
+
* @type {ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount}
|
|
120
|
+
* @memberof ApiAdminIbankrollBetFeedGetFilterParameter
|
|
121
|
+
*/
|
|
122
|
+
payout?: ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount;
|
|
123
|
+
/**
|
|
124
|
+
*
|
|
125
|
+
* @type {ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount}
|
|
126
|
+
* @memberof ApiAdminIbankrollBetFeedGetFilterParameter
|
|
127
|
+
*/
|
|
128
|
+
multiplier?: ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount;
|
|
129
|
+
/**
|
|
130
|
+
*
|
|
131
|
+
* @type {ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount}
|
|
132
|
+
* @memberof ApiAdminIbankrollBetFeedGetFilterParameter
|
|
133
|
+
*/
|
|
134
|
+
theoreticalRtp?: ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmount;
|
|
104
135
|
}
|
|
105
136
|
|
|
106
137
|
/**
|
|
@@ -129,7 +160,11 @@ export function ApiAdminIbankrollBetFeedGetFilterParameterFromJSONTyped(json: an
|
|
|
129
160
|
'categoryName': json['categoryName'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetIdFromJSON(json['categoryName']),
|
|
130
161
|
'isBonusBalance': json['isBonusBalance'] == null ? undefined : ApiAdminRakebackEventGetFilterParameterIsActiveFromJSON(json['isBonusBalance']),
|
|
131
162
|
'createdAt': json['createdAt'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAtFromJSON(json['createdAt']),
|
|
132
|
-
'
|
|
163
|
+
'isStreamer': json['isStreamer'] == null ? undefined : ApiAdminRakebackEventGetFilterParameterIsActiveFromJSON(json['isStreamer']),
|
|
164
|
+
'betAmount': json['betAmount'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON(json['betAmount']),
|
|
165
|
+
'payout': json['payout'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON(json['payout']),
|
|
166
|
+
'multiplier': json['multiplier'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON(json['multiplier']),
|
|
167
|
+
'theoreticalRtp': json['theoreticalRtp'] == null ? undefined : ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountFromJSON(json['theoreticalRtp']),
|
|
133
168
|
};
|
|
134
169
|
}
|
|
135
170
|
|
|
@@ -153,7 +188,11 @@ export function ApiAdminIbankrollBetFeedGetFilterParameterFromJSONTyped(json: an
|
|
|
153
188
|
'categoryName': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetIdToJSON(value['categoryName']),
|
|
154
189
|
'isBonusBalance': ApiAdminRakebackEventGetFilterParameterIsActiveToJSON(value['isBonusBalance']),
|
|
155
190
|
'createdAt': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterCreatedAtToJSON(value['createdAt']),
|
|
156
|
-
'
|
|
191
|
+
'isStreamer': ApiAdminRakebackEventGetFilterParameterIsActiveToJSON(value['isStreamer']),
|
|
192
|
+
'betAmount': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON(value['betAmount']),
|
|
193
|
+
'payout': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON(value['payout']),
|
|
194
|
+
'multiplier': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON(value['multiplier']),
|
|
195
|
+
'theoreticalRtp': ApiAdminUsersUserIdBetwinHistoryGetFilterParameterBetAmountToJSON(value['theoreticalRtp']),
|
|
157
196
|
};
|
|
158
197
|
}
|
|
159
198
|
|