@gambulls-org/gambulls-apis 3.0.122 → 3.0.124

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.
@@ -378,6 +378,7 @@ exports.ApiUserBonusListGetSortByEnum = {
378
378
  Amount: 'amount',
379
379
  AmountMax: 'amountMax',
380
380
  CashOutMax: 'cashOutMax',
381
+ IsCashOutMaxMultiplier: 'isCashOutMaxMultiplier',
381
382
  IsPercentage: 'isPercentage',
382
383
  Type: 'type',
383
384
  IsVisible: 'isVisible',
@@ -437,6 +437,7 @@ export const ApiUserBonusListGetSortByEnum = {
437
437
  Amount: 'amount',
438
438
  AmountMax: 'amountMax',
439
439
  CashOutMax: 'cashOutMax',
440
+ IsCashOutMaxMultiplier: 'isCashOutMaxMultiplier',
440
441
  IsPercentage: 'isPercentage',
441
442
  Type: 'type',
442
443
  IsVisible: 'isVisible',
@@ -60,6 +60,8 @@ function instanceOfApiAdminBonusBonusIdGet200ResponseResponseObject(value) {
60
60
  return false;
61
61
  if (!('cashOutMax' in value) || value['cashOutMax'] === undefined)
62
62
  return false;
63
+ if (!('isCashOutMaxMultiplier' in value) || value['isCashOutMaxMultiplier'] === undefined)
64
+ return false;
63
65
  if (!('isMultiAccountAllowed' in value) || value['isMultiAccountAllowed'] === undefined)
64
66
  return false;
65
67
  if (!('whichAccountDeductFirst' in value) || value['whichAccountDeductFirst'] === undefined)
@@ -148,6 +150,7 @@ function ApiAdminBonusBonusIdGet200ResponseResponseObjectFromJSONTyped(json, ign
148
150
  'amount': json['amount'],
149
151
  'amountMax': json['amountMax'],
150
152
  'cashOutMax': json['cashOutMax'],
153
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'],
151
154
  'isMultiAccountAllowed': json['isMultiAccountAllowed'],
152
155
  'whichAccountDeductFirst': json['whichAccountDeductFirst'],
153
156
  'isPercentage': json['isPercentage'],
@@ -201,6 +204,7 @@ function ApiAdminBonusBonusIdGet200ResponseResponseObjectToJSONTyped(value, igno
201
204
  'amount': value['amount'],
202
205
  'amountMax': value['amountMax'],
203
206
  'cashOutMax': value['cashOutMax'],
207
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
204
208
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
205
209
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
206
210
  'isPercentage': value['isPercentage'],
@@ -103,6 +103,12 @@ export interface ApiAdminBonusBonusIdGet200ResponseResponseObject {
103
103
  * @memberof ApiAdminBonusBonusIdGet200ResponseResponseObject
104
104
  */
105
105
  cashOutMax: string | null;
106
+ /**
107
+ *
108
+ * @type {boolean}
109
+ * @memberof ApiAdminBonusBonusIdGet200ResponseResponseObject
110
+ */
111
+ isCashOutMaxMultiplier: boolean;
106
112
  /**
107
113
  *
108
114
  * @type {boolean}
@@ -349,6 +355,7 @@ export function instanceOfApiAdminBonusBonusIdGet200ResponseResponseObject(value
349
355
  if (!('amount' in value) || value['amount'] === undefined) return false;
350
356
  if (!('amountMax' in value) || value['amountMax'] === undefined) return false;
351
357
  if (!('cashOutMax' in value) || value['cashOutMax'] === undefined) return false;
358
+ if (!('isCashOutMaxMultiplier' in value) || value['isCashOutMaxMultiplier'] === undefined) return false;
352
359
  if (!('isMultiAccountAllowed' in value) || value['isMultiAccountAllowed'] === undefined) return false;
353
360
  if (!('whichAccountDeductFirst' in value) || value['whichAccountDeductFirst'] === undefined) return false;
354
361
  if (!('isPercentage' in value) || value['isPercentage'] === undefined) return false;
@@ -405,6 +412,7 @@ export function ApiAdminBonusBonusIdGet200ResponseResponseObjectFromJSONTyped(js
405
412
  'amount': json['amount'],
406
413
  'amountMax': json['amountMax'],
407
414
  'cashOutMax': json['cashOutMax'],
415
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'],
408
416
  'isMultiAccountAllowed': json['isMultiAccountAllowed'],
409
417
  'whichAccountDeductFirst': json['whichAccountDeductFirst'],
410
418
  'isPercentage': json['isPercentage'],
@@ -462,6 +470,7 @@ export function ApiAdminBonusBonusIdGet200ResponseResponseObjectFromJSONTyped(js
462
470
  'amount': value['amount'],
463
471
  'amountMax': value['amountMax'],
464
472
  'cashOutMax': value['cashOutMax'],
473
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
465
474
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
466
475
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
467
476
  'isPercentage': value['isPercentage'],
@@ -81,6 +81,7 @@ function ApiAdminBonusPostRequestFromJSONTyped(json, ignoreDiscriminator) {
81
81
  'amount': json['amount'],
82
82
  'amountMax': json['amountMax'] == null ? undefined : json['amountMax'],
83
83
  'cashOutMax': json['cashOutMax'] == null ? undefined : json['cashOutMax'],
84
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'] == null ? undefined : json['isCashOutMaxMultiplier'],
84
85
  'isMultiAccountAllowed': json['isMultiAccountAllowed'] == null ? undefined : json['isMultiAccountAllowed'],
85
86
  'whichAccountDeductFirst': json['whichAccountDeductFirst'] == null ? undefined : json['whichAccountDeductFirst'],
86
87
  'isPercentage': json['isPercentage'] == null ? undefined : json['isPercentage'],
@@ -120,6 +121,7 @@ function ApiAdminBonusPostRequestToJSONTyped(value, ignoreDiscriminator = false)
120
121
  'amount': value['amount'],
121
122
  'amountMax': value['amountMax'],
122
123
  'cashOutMax': value['cashOutMax'],
124
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
123
125
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
124
126
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
125
127
  'isPercentage': value['isPercentage'],
@@ -76,6 +76,12 @@ export interface ApiAdminBonusPostRequest {
76
76
  * @memberof ApiAdminBonusPostRequest
77
77
  */
78
78
  cashOutMax?: number;
79
+ /**
80
+ *
81
+ * @type {boolean}
82
+ * @memberof ApiAdminBonusPostRequest
83
+ */
84
+ isCashOutMaxMultiplier?: boolean;
79
85
  /**
80
86
  *
81
87
  * @type {boolean}
@@ -273,6 +279,7 @@ export function ApiAdminBonusPostRequestFromJSONTyped(json: any, ignoreDiscrimin
273
279
  'amount': json['amount'],
274
280
  'amountMax': json['amountMax'] == null ? undefined : json['amountMax'],
275
281
  'cashOutMax': json['cashOutMax'] == null ? undefined : json['cashOutMax'],
282
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'] == null ? undefined : json['isCashOutMaxMultiplier'],
276
283
  'isMultiAccountAllowed': json['isMultiAccountAllowed'] == null ? undefined : json['isMultiAccountAllowed'],
277
284
  'whichAccountDeductFirst': json['whichAccountDeductFirst'] == null ? undefined : json['whichAccountDeductFirst'],
278
285
  'isPercentage': json['isPercentage'] == null ? undefined : json['isPercentage'],
@@ -316,6 +323,7 @@ export function ApiAdminBonusPostRequestFromJSONTyped(json: any, ignoreDiscrimin
316
323
  'amount': value['amount'],
317
324
  'amountMax': value['amountMax'],
318
325
  'cashOutMax': value['cashOutMax'],
326
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
319
327
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
320
328
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
321
329
  'isPercentage': value['isPercentage'],
@@ -66,6 +66,7 @@ function ApiAdminBonusPutRequestFromJSONTyped(json, ignoreDiscriminator) {
66
66
  'amount': json['amount'] == null ? undefined : json['amount'],
67
67
  'amountMax': json['amountMax'] == null ? undefined : json['amountMax'],
68
68
  'cashOutMax': json['cashOutMax'] == null ? undefined : json['cashOutMax'],
69
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'] == null ? undefined : json['isCashOutMaxMultiplier'],
69
70
  'isMultiAccountAllowed': json['isMultiAccountAllowed'] == null ? undefined : json['isMultiAccountAllowed'],
70
71
  'whichAccountDeductFirst': json['whichAccountDeductFirst'] == null ? undefined : json['whichAccountDeductFirst'],
71
72
  'isPercentage': json['isPercentage'] == null ? undefined : json['isPercentage'],
@@ -104,6 +105,7 @@ function ApiAdminBonusPutRequestToJSONTyped(value, ignoreDiscriminator = false)
104
105
  'amount': value['amount'],
105
106
  'amountMax': value['amountMax'],
106
107
  'cashOutMax': value['cashOutMax'],
108
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
107
109
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
108
110
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
109
111
  'isPercentage': value['isPercentage'],
@@ -67,6 +67,12 @@ export interface ApiAdminBonusPutRequest {
67
67
  * @memberof ApiAdminBonusPutRequest
68
68
  */
69
69
  cashOutMax?: number;
70
+ /**
71
+ *
72
+ * @type {boolean}
73
+ * @memberof ApiAdminBonusPutRequest
74
+ */
75
+ isCashOutMaxMultiplier?: boolean;
70
76
  /**
71
77
  *
72
78
  * @type {boolean}
@@ -246,6 +252,7 @@ export function ApiAdminBonusPutRequestFromJSONTyped(json: any, ignoreDiscrimina
246
252
  'amount': json['amount'] == null ? undefined : json['amount'],
247
253
  'amountMax': json['amountMax'] == null ? undefined : json['amountMax'],
248
254
  'cashOutMax': json['cashOutMax'] == null ? undefined : json['cashOutMax'],
255
+ 'isCashOutMaxMultiplier': json['isCashOutMaxMultiplier'] == null ? undefined : json['isCashOutMaxMultiplier'],
249
256
  'isMultiAccountAllowed': json['isMultiAccountAllowed'] == null ? undefined : json['isMultiAccountAllowed'],
250
257
  'whichAccountDeductFirst': json['whichAccountDeductFirst'] == null ? undefined : json['whichAccountDeductFirst'],
251
258
  'isPercentage': json['isPercentage'] == null ? undefined : json['isPercentage'],
@@ -288,6 +295,7 @@ export function ApiAdminBonusPutRequestFromJSONTyped(json: any, ignoreDiscrimina
288
295
  'amount': value['amount'],
289
296
  'amountMax': value['amountMax'],
290
297
  'cashOutMax': value['cashOutMax'],
298
+ 'isCashOutMaxMultiplier': value['isCashOutMaxMultiplier'],
291
299
  'isMultiAccountAllowed': value['isMultiAccountAllowed'],
292
300
  'whichAccountDeductFirst': value['whichAccountDeductFirst'],
293
301
  'isPercentage': value['isPercentage'],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gambulls-org/gambulls-apis",
3
- "version": "3.0.122",
3
+ "version": "3.0.124",
4
4
  "main": "index.ts",
5
5
  "scripts": {
6
6
  "build": "tsc",