@takaro/apiclient 0.0.10 → 0.0.13

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.
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Takaro API
2
+ * Takaro app-api
3
3
  * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
4
4
  *
5
- * The version of the OpenAPI document: unset
5
+ * The version of the OpenAPI document: development - 3b2d157a1e9a975202df8d28b26a2df38fa03417
6
6
  * Contact: support@takaro.io
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -74,6 +74,62 @@ export declare const ActivityInputDTODataTypeEnum: {
74
74
  readonly Players: "players";
75
75
  };
76
76
  export type ActivityInputDTODataTypeEnum = (typeof ActivityInputDTODataTypeEnum)[keyof typeof ActivityInputDTODataTypeEnum];
77
+ /**
78
+ *
79
+ * @export
80
+ * @interface AllowedFilters
81
+ */
82
+ export interface AllowedFilters {
83
+ /**
84
+ *
85
+ * @type {Array<string>}
86
+ * @memberof AllowedFilters
87
+ */
88
+ id?: Array<string>;
89
+ }
90
+ /**
91
+ *
92
+ * @export
93
+ * @interface BanCreateDTO
94
+ */
95
+ export interface BanCreateDTO {
96
+ /**
97
+ *
98
+ * @type {string}
99
+ * @memberof BanCreateDTO
100
+ */
101
+ gameServerId: string;
102
+ /**
103
+ *
104
+ * @type {string}
105
+ * @memberof BanCreateDTO
106
+ */
107
+ playerId: string;
108
+ /**
109
+ *
110
+ * @type {boolean}
111
+ * @memberof BanCreateDTO
112
+ */
113
+ takaroManaged?: boolean;
114
+ /**
115
+ *
116
+ * @type {boolean}
117
+ * @memberof BanCreateDTO
118
+ */
119
+ isGlobal?: boolean;
120
+ /**
121
+ *
122
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
123
+ * @memberof BanCreateDTO
124
+ */
125
+ until?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
126
+ /**
127
+ *
128
+ * @type {string}
129
+ * @memberof BanCreateDTO
130
+ */
131
+ reason?: string;
132
+ }
77
133
  /**
78
134
  *
79
135
  * @export
@@ -82,10 +138,10 @@ export type ActivityInputDTODataTypeEnum = (typeof ActivityInputDTODataTypeEnum)
82
138
  export interface BanDTO {
83
139
  /**
84
140
  *
85
- * @type {IPlayerReferenceDTO}
141
+ * @type {IGamePlayer}
86
142
  * @memberof BanDTO
87
143
  */
88
- player: IPlayerReferenceDTO;
144
+ player: IGamePlayer;
89
145
  /**
90
146
  *
91
147
  * @type {string}
@@ -99,6 +155,105 @@ export interface BanDTO {
99
155
  */
100
156
  expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
101
157
  }
158
+ /**
159
+ *
160
+ * @export
161
+ * @interface BanOutputArrayDTOAPI
162
+ */
163
+ export interface BanOutputArrayDTOAPI {
164
+ /**
165
+ *
166
+ * @type {Array<BanOutputDTO>}
167
+ * @memberof BanOutputArrayDTOAPI
168
+ */
169
+ data: Array<BanOutputDTO>;
170
+ /**
171
+ *
172
+ * @type {MetadataOutput}
173
+ * @memberof BanOutputArrayDTOAPI
174
+ */
175
+ meta: MetadataOutput;
176
+ }
177
+ /**
178
+ *
179
+ * @export
180
+ * @interface BanOutputDTO
181
+ */
182
+ export interface BanOutputDTO {
183
+ /**
184
+ *
185
+ * @type {string}
186
+ * @memberof BanOutputDTO
187
+ */
188
+ id: string;
189
+ /**
190
+ *
191
+ * @type {string}
192
+ * @memberof BanOutputDTO
193
+ */
194
+ gameServerId: string;
195
+ /**
196
+ *
197
+ * @type {string}
198
+ * @memberof BanOutputDTO
199
+ */
200
+ playerId: string;
201
+ /**
202
+ *
203
+ * @type {boolean}
204
+ * @memberof BanOutputDTO
205
+ */
206
+ takaroManaged: boolean;
207
+ /**
208
+ *
209
+ * @type {boolean}
210
+ * @memberof BanOutputDTO
211
+ */
212
+ isGlobal: boolean;
213
+ /**
214
+ *
215
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
216
+ * @memberof BanOutputDTO
217
+ */
218
+ until?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
219
+ /**
220
+ *
221
+ * @type {string}
222
+ * @memberof BanOutputDTO
223
+ */
224
+ reason?: string;
225
+ /**
226
+ *
227
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
228
+ * @memberof BanOutputDTO
229
+ */
230
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
231
+ /**
232
+ *
233
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
234
+ * @memberof BanOutputDTO
235
+ */
236
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
237
+ }
238
+ /**
239
+ *
240
+ * @export
241
+ * @interface BanOutputDTOAPI
242
+ */
243
+ export interface BanOutputDTOAPI {
244
+ /**
245
+ *
246
+ * @type {BanOutputDTO}
247
+ * @memberof BanOutputDTOAPI
248
+ */
249
+ data: BanOutputDTO;
250
+ /**
251
+ *
252
+ * @type {MetadataOutput}
253
+ * @memberof BanOutputDTOAPI
254
+ */
255
+ meta: MetadataOutput;
256
+ }
102
257
  /**
103
258
  *
104
259
  * @export
@@ -137,6 +292,177 @@ export interface BanPlayerOutputDTO {
137
292
  */
138
293
  meta: MetadataOutput;
139
294
  }
295
+ /**
296
+ *
297
+ * @export
298
+ * @interface BanSearchInputAllowedFilters
299
+ */
300
+ export interface BanSearchInputAllowedFilters {
301
+ /**
302
+ *
303
+ * @type {Array<string>}
304
+ * @memberof BanSearchInputAllowedFilters
305
+ */
306
+ gameServerId?: Array<string>;
307
+ /**
308
+ *
309
+ * @type {Array<string>}
310
+ * @memberof BanSearchInputAllowedFilters
311
+ */
312
+ playerId?: Array<string>;
313
+ /**
314
+ *
315
+ * @type {Array<boolean>}
316
+ * @memberof BanSearchInputAllowedFilters
317
+ */
318
+ takaroManaged?: Array<boolean>;
319
+ /**
320
+ *
321
+ * @type {Array<boolean>}
322
+ * @memberof BanSearchInputAllowedFilters
323
+ */
324
+ isGlobal?: Array<boolean>;
325
+ /**
326
+ *
327
+ * @type {Array<string>}
328
+ * @memberof BanSearchInputAllowedFilters
329
+ */
330
+ id?: Array<string>;
331
+ }
332
+ /**
333
+ *
334
+ * @export
335
+ * @interface BanSearchInputAllowedRangeFilter
336
+ */
337
+ export interface BanSearchInputAllowedRangeFilter {
338
+ /**
339
+ *
340
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
341
+ * @memberof BanSearchInputAllowedRangeFilter
342
+ */
343
+ until?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
344
+ /**
345
+ *
346
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
347
+ * @memberof BanSearchInputAllowedRangeFilter
348
+ */
349
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
350
+ /**
351
+ *
352
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
353
+ * @memberof BanSearchInputAllowedRangeFilter
354
+ */
355
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
356
+ }
357
+ /**
358
+ *
359
+ * @export
360
+ * @interface BanSearchInputDTO
361
+ */
362
+ export interface BanSearchInputDTO {
363
+ /**
364
+ *
365
+ * @type {BanSearchInputAllowedFilters}
366
+ * @memberof BanSearchInputDTO
367
+ */
368
+ filters?: BanSearchInputAllowedFilters;
369
+ /**
370
+ *
371
+ * @type {BanSearchInputAllowedFilters}
372
+ * @memberof BanSearchInputDTO
373
+ */
374
+ search?: BanSearchInputAllowedFilters;
375
+ /**
376
+ *
377
+ * @type {BanSearchInputAllowedRangeFilter}
378
+ * @memberof BanSearchInputDTO
379
+ */
380
+ greaterThan?: BanSearchInputAllowedRangeFilter;
381
+ /**
382
+ *
383
+ * @type {BanSearchInputAllowedRangeFilter}
384
+ * @memberof BanSearchInputDTO
385
+ */
386
+ lessThan?: BanSearchInputAllowedRangeFilter;
387
+ /**
388
+ *
389
+ * @type {number}
390
+ * @memberof BanSearchInputDTO
391
+ */
392
+ page?: number;
393
+ /**
394
+ *
395
+ * @type {number}
396
+ * @memberof BanSearchInputDTO
397
+ */
398
+ limit?: number;
399
+ /**
400
+ *
401
+ * @type {string}
402
+ * @memberof BanSearchInputDTO
403
+ */
404
+ sortBy?: string;
405
+ /**
406
+ *
407
+ * @type {string}
408
+ * @memberof BanSearchInputDTO
409
+ */
410
+ sortDirection?: BanSearchInputDTOSortDirectionEnum;
411
+ /**
412
+ *
413
+ * @type {Array<string>}
414
+ * @memberof BanSearchInputDTO
415
+ */
416
+ extend?: Array<string>;
417
+ }
418
+ export declare const BanSearchInputDTOSortDirectionEnum: {
419
+ readonly Asc: "asc";
420
+ readonly Desc: "desc";
421
+ };
422
+ export type BanSearchInputDTOSortDirectionEnum = (typeof BanSearchInputDTOSortDirectionEnum)[keyof typeof BanSearchInputDTOSortDirectionEnum];
423
+ /**
424
+ *
425
+ * @export
426
+ * @interface BanUpdateDTO
427
+ */
428
+ export interface BanUpdateDTO {
429
+ /**
430
+ *
431
+ * @type {string}
432
+ * @memberof BanUpdateDTO
433
+ */
434
+ gameServerId: string;
435
+ /**
436
+ *
437
+ * @type {string}
438
+ * @memberof BanUpdateDTO
439
+ */
440
+ playerId: string;
441
+ /**
442
+ *
443
+ * @type {boolean}
444
+ * @memberof BanUpdateDTO
445
+ */
446
+ takaroManaged?: boolean;
447
+ /**
448
+ *
449
+ * @type {boolean}
450
+ * @memberof BanUpdateDTO
451
+ */
452
+ isGlobal?: boolean;
453
+ /**
454
+ *
455
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
456
+ * @memberof BanUpdateDTO
457
+ */
458
+ until?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
459
+ /**
460
+ *
461
+ * @type {string}
462
+ * @memberof BanUpdateDTO
463
+ */
464
+ reason?: string;
465
+ }
140
466
  /**
141
467
  *
142
468
  * @export
@@ -646,12 +972,6 @@ export interface CommandOutputDTOAPI {
646
972
  * @interface CommandSearchInputAllowedFilters
647
973
  */
648
974
  export interface CommandSearchInputAllowedFilters {
649
- /**
650
- *
651
- * @type {Array<string>}
652
- * @memberof CommandSearchInputAllowedFilters
653
- */
654
- id?: Array<string>;
655
975
  /**
656
976
  *
657
977
  * @type {Array<string>}
@@ -670,6 +990,12 @@ export interface CommandSearchInputAllowedFilters {
670
990
  * @memberof CommandSearchInputAllowedFilters
671
991
  */
672
992
  enabled?: Array<boolean>;
993
+ /**
994
+ *
995
+ * @type {Array<string>}
996
+ * @memberof CommandSearchInputAllowedFilters
997
+ */
998
+ id?: Array<string>;
673
999
  }
674
1000
  /**
675
1001
  *
@@ -793,6 +1119,19 @@ export interface CommandUpdateDTO {
793
1119
  */
794
1120
  arguments?: Array<CommandArgumentCreateDTO>;
795
1121
  }
1122
+ /**
1123
+ *
1124
+ * @export
1125
+ * @interface CountryStatsInputDTO
1126
+ */
1127
+ export interface CountryStatsInputDTO {
1128
+ /**
1129
+ *
1130
+ * @type {Array<string>}
1131
+ * @memberof CountryStatsInputDTO
1132
+ */
1133
+ gameServerId?: Array<string>;
1134
+ }
796
1135
  /**
797
1136
  *
798
1137
  * @export
@@ -922,19 +1261,19 @@ export interface CronJobSearchInputAllowedFilters {
922
1261
  * @type {Array<string>}
923
1262
  * @memberof CronJobSearchInputAllowedFilters
924
1263
  */
925
- id?: Array<string>;
1264
+ moduleId?: Array<string>;
926
1265
  /**
927
1266
  *
928
1267
  * @type {Array<string>}
929
1268
  * @memberof CronJobSearchInputAllowedFilters
930
1269
  */
931
- moduleId?: Array<string>;
1270
+ name?: Array<string>;
932
1271
  /**
933
1272
  *
934
1273
  * @type {Array<string>}
935
1274
  * @memberof CronJobSearchInputAllowedFilters
936
1275
  */
937
- name?: Array<string>;
1276
+ id?: Array<string>;
938
1277
  }
939
1278
  /**
940
1279
  *
@@ -1276,6 +1615,12 @@ export interface DomainOutputDTOAPI {
1276
1615
  * @interface DomainSearchInputAllowedFilters
1277
1616
  */
1278
1617
  export interface DomainSearchInputAllowedFilters {
1618
+ /**
1619
+ *
1620
+ * @type {Array<string>}
1621
+ * @memberof DomainSearchInputAllowedFilters
1622
+ */
1623
+ id?: Array<string>;
1279
1624
  /**
1280
1625
  *
1281
1626
  * @type {Array<string>}
@@ -2277,7 +2622,19 @@ export interface FunctionSearchInputAllowedFilters {
2277
2622
  * @type {Array<string>}
2278
2623
  * @memberof FunctionSearchInputAllowedFilters
2279
2624
  */
2280
- id: Array<string>;
2625
+ moduleId?: Array<string>;
2626
+ /**
2627
+ *
2628
+ * @type {Array<string>}
2629
+ * @memberof FunctionSearchInputAllowedFilters
2630
+ */
2631
+ name?: Array<string>;
2632
+ /**
2633
+ *
2634
+ * @type {Array<string>}
2635
+ * @memberof FunctionSearchInputAllowedFilters
2636
+ */
2637
+ id?: Array<string>;
2281
2638
  }
2282
2639
  /**
2283
2640
  *
@@ -2500,12 +2857,6 @@ export interface GameServerOutputDTOAPI {
2500
2857
  * @interface GameServerSearchInputAllowedFilters
2501
2858
  */
2502
2859
  export interface GameServerSearchInputAllowedFilters {
2503
- /**
2504
- *
2505
- * @type {Array<string>}
2506
- * @memberof GameServerSearchInputAllowedFilters
2507
- */
2508
- id?: Array<string>;
2509
2860
  /**
2510
2861
  *
2511
2862
  * @type {Array<string>}
@@ -2530,6 +2881,12 @@ export interface GameServerSearchInputAllowedFilters {
2530
2881
  * @memberof GameServerSearchInputAllowedFilters
2531
2882
  */
2532
2883
  enabled?: Array<boolean>;
2884
+ /**
2885
+ *
2886
+ * @type {Array<string>}
2887
+ * @memberof GameServerSearchInputAllowedFilters
2888
+ */
2889
+ id?: Array<string>;
2533
2890
  }
2534
2891
  export declare const GameServerSearchInputAllowedFiltersTypeEnum: {
2535
2892
  readonly Mock: "MOCK";
@@ -2758,6 +3115,7 @@ export declare const GetSettingsInputKeysEnum: {
2758
3115
  readonly ServerChatName: "serverChatName";
2759
3116
  readonly EconomyEnabled: "economyEnabled";
2760
3117
  readonly CurrencyName: "currencyName";
3118
+ readonly DeveloperMode: "developerMode";
2761
3119
  };
2762
3120
  export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
2763
3121
  /**
@@ -2948,6 +3306,12 @@ export interface GuildSearchInputAllowedFilters {
2948
3306
  * @memberof GuildSearchInputAllowedFilters
2949
3307
  */
2950
3308
  takaroEnabled?: Array<boolean>;
3309
+ /**
3310
+ *
3311
+ * @type {Array<string>}
3312
+ * @memberof GuildSearchInputAllowedFilters
3313
+ */
3314
+ id?: Array<string>;
2951
3315
  }
2952
3316
  /**
2953
3317
  *
@@ -3301,25 +3665,25 @@ export interface HookSearchInputAllowedFilters {
3301
3665
  * @type {Array<string>}
3302
3666
  * @memberof HookSearchInputAllowedFilters
3303
3667
  */
3304
- id?: Array<string>;
3668
+ moduleId?: Array<string>;
3305
3669
  /**
3306
3670
  *
3307
3671
  * @type {Array<string>}
3308
3672
  * @memberof HookSearchInputAllowedFilters
3309
3673
  */
3310
- moduleId?: Array<string>;
3674
+ name?: Array<string>;
3311
3675
  /**
3312
3676
  *
3313
3677
  * @type {Array<string>}
3314
3678
  * @memberof HookSearchInputAllowedFilters
3315
3679
  */
3316
- name?: Array<string>;
3680
+ eventType?: Array<HookSearchInputAllowedFiltersEventTypeEnum>;
3317
3681
  /**
3318
3682
  *
3319
3683
  * @type {Array<string>}
3320
3684
  * @memberof HookSearchInputAllowedFilters
3321
3685
  */
3322
- eventType?: Array<HookSearchInputAllowedFiltersEventTypeEnum>;
3686
+ id?: Array<string>;
3323
3687
  }
3324
3688
  export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
3325
3689
  readonly Log: "log";
@@ -3959,31 +4323,62 @@ export interface ITakaroQuery {
3959
4323
  * @type {number}
3960
4324
  * @memberof ITakaroQuery
3961
4325
  */
3962
- limit?: number;
4326
+ limit?: number;
4327
+ /**
4328
+ *
4329
+ * @type {string}
4330
+ * @memberof ITakaroQuery
4331
+ */
4332
+ sortBy?: string;
4333
+ /**
4334
+ *
4335
+ * @type {string}
4336
+ * @memberof ITakaroQuery
4337
+ */
4338
+ sortDirection?: ITakaroQuerySortDirectionEnum;
4339
+ /**
4340
+ *
4341
+ * @type {Array<string>}
4342
+ * @memberof ITakaroQuery
4343
+ */
4344
+ extend?: Array<string>;
4345
+ }
4346
+ export declare const ITakaroQuerySortDirectionEnum: {
4347
+ readonly Asc: "asc";
4348
+ readonly Desc: "desc";
4349
+ };
4350
+ export type ITakaroQuerySortDirectionEnum = (typeof ITakaroQuerySortDirectionEnum)[keyof typeof ITakaroQuerySortDirectionEnum];
4351
+ /**
4352
+ *
4353
+ * @export
4354
+ * @interface ImportInputDTO
4355
+ */
4356
+ export interface ImportInputDTO {
4357
+ /**
4358
+ *
4359
+ * @type {boolean}
4360
+ * @memberof ImportInputDTO
4361
+ */
4362
+ roles: boolean;
3963
4363
  /**
3964
4364
  *
3965
- * @type {string}
3966
- * @memberof ITakaroQuery
4365
+ * @type {boolean}
4366
+ * @memberof ImportInputDTO
3967
4367
  */
3968
- sortBy?: string;
4368
+ players: boolean;
3969
4369
  /**
3970
4370
  *
3971
- * @type {string}
3972
- * @memberof ITakaroQuery
4371
+ * @type {boolean}
4372
+ * @memberof ImportInputDTO
3973
4373
  */
3974
- sortDirection?: ITakaroQuerySortDirectionEnum;
4374
+ currency: boolean;
3975
4375
  /**
3976
4376
  *
3977
- * @type {Array<string>}
3978
- * @memberof ITakaroQuery
4377
+ * @type {boolean}
4378
+ * @memberof ImportInputDTO
3979
4379
  */
3980
- extend?: Array<string>;
4380
+ shop: boolean;
3981
4381
  }
3982
- export declare const ITakaroQuerySortDirectionEnum: {
3983
- readonly Asc: "asc";
3984
- readonly Desc: "desc";
3985
- };
3986
- export type ITakaroQuerySortDirectionEnum = (typeof ITakaroQuerySortDirectionEnum)[keyof typeof ITakaroQuerySortDirectionEnum];
3987
4382
  /**
3988
4383
  *
3989
4384
  * @export
@@ -4016,6 +4411,56 @@ export interface ImportOutputDTOAPI {
4016
4411
  */
4017
4412
  meta: MetadataOutput;
4018
4413
  }
4414
+ /**
4415
+ *
4416
+ * @export
4417
+ * @interface ImportStatusOutputDTO
4418
+ */
4419
+ export interface ImportStatusOutputDTO {
4420
+ /**
4421
+ *
4422
+ * @type {string}
4423
+ * @memberof ImportStatusOutputDTO
4424
+ */
4425
+ id: string;
4426
+ /**
4427
+ *
4428
+ * @type {string}
4429
+ * @memberof ImportStatusOutputDTO
4430
+ */
4431
+ status: ImportStatusOutputDTOStatusEnum;
4432
+ /**
4433
+ *
4434
+ * @type {string}
4435
+ * @memberof ImportStatusOutputDTO
4436
+ */
4437
+ failedReason?: string;
4438
+ }
4439
+ export declare const ImportStatusOutputDTOStatusEnum: {
4440
+ readonly Pending: "pending";
4441
+ readonly Completed: "completed";
4442
+ readonly Failed: "failed";
4443
+ };
4444
+ export type ImportStatusOutputDTOStatusEnum = (typeof ImportStatusOutputDTOStatusEnum)[keyof typeof ImportStatusOutputDTOStatusEnum];
4445
+ /**
4446
+ *
4447
+ * @export
4448
+ * @interface ImportStatusOutputDTOAPI
4449
+ */
4450
+ export interface ImportStatusOutputDTOAPI {
4451
+ /**
4452
+ *
4453
+ * @type {ImportStatusOutputDTO}
4454
+ * @memberof ImportStatusOutputDTOAPI
4455
+ */
4456
+ data: ImportStatusOutputDTO;
4457
+ /**
4458
+ *
4459
+ * @type {MetadataOutput}
4460
+ * @memberof ImportStatusOutputDTOAPI
4461
+ */
4462
+ meta: MetadataOutput;
4463
+ }
4019
4464
  /**
4020
4465
  *
4021
4466
  * @export
@@ -4177,25 +4622,25 @@ export interface ItemSearchInputAllowedFilters {
4177
4622
  * @type {Array<string>}
4178
4623
  * @memberof ItemSearchInputAllowedFilters
4179
4624
  */
4180
- id?: Array<string>;
4625
+ name?: Array<string>;
4181
4626
  /**
4182
4627
  *
4183
4628
  * @type {Array<string>}
4184
4629
  * @memberof ItemSearchInputAllowedFilters
4185
4630
  */
4186
- name?: Array<string>;
4631
+ code?: Array<string>;
4187
4632
  /**
4188
4633
  *
4189
4634
  * @type {Array<string>}
4190
4635
  * @memberof ItemSearchInputAllowedFilters
4191
4636
  */
4192
- code?: Array<string>;
4637
+ gameserverId?: Array<string>;
4193
4638
  /**
4194
4639
  *
4195
4640
  * @type {Array<string>}
4196
4641
  * @memberof ItemSearchInputAllowedFilters
4197
4642
  */
4198
- gameserverId?: Array<string>;
4643
+ id?: Array<string>;
4199
4644
  }
4200
4645
  /**
4201
4646
  *
@@ -4460,59 +4905,59 @@ export interface LoginOutputDTOAPI {
4460
4905
  /**
4461
4906
  *
4462
4907
  * @export
4463
- * @interface MeOutoutDTO
4908
+ * @interface MeOutoutDTOAPI
4909
+ */
4910
+ export interface MeOutoutDTOAPI {
4911
+ /**
4912
+ *
4913
+ * @type {MeOutputDTO}
4914
+ * @memberof MeOutoutDTOAPI
4915
+ */
4916
+ data: MeOutputDTO;
4917
+ /**
4918
+ *
4919
+ * @type {MetadataOutput}
4920
+ * @memberof MeOutoutDTOAPI
4921
+ */
4922
+ meta: MetadataOutput;
4923
+ }
4924
+ /**
4925
+ *
4926
+ * @export
4927
+ * @interface MeOutputDTO
4464
4928
  */
4465
- export interface MeOutoutDTO {
4929
+ export interface MeOutputDTO {
4466
4930
  /**
4467
4931
  *
4468
4932
  * @type {UserOutputWithRolesDTO}
4469
- * @memberof MeOutoutDTO
4933
+ * @memberof MeOutputDTO
4470
4934
  */
4471
4935
  user: UserOutputWithRolesDTO;
4472
4936
  /**
4473
4937
  *
4474
4938
  * @type {Array<DomainOutputDTO>}
4475
- * @memberof MeOutoutDTO
4939
+ * @memberof MeOutputDTO
4476
4940
  */
4477
4941
  domains: Array<DomainOutputDTO>;
4478
4942
  /**
4479
4943
  *
4480
4944
  * @type {string}
4481
- * @memberof MeOutoutDTO
4945
+ * @memberof MeOutputDTO
4482
4946
  */
4483
4947
  domain: string;
4484
4948
  /**
4485
4949
  *
4486
4950
  * @type {PlayerOutputWithRolesDTO}
4487
- * @memberof MeOutoutDTO
4951
+ * @memberof MeOutputDTO
4488
4952
  */
4489
4953
  player?: PlayerOutputWithRolesDTO;
4490
4954
  /**
4491
4955
  *
4492
4956
  * @type {Array<PlayerOnGameserverOutputDTO>}
4493
- * @memberof MeOutoutDTO
4957
+ * @memberof MeOutputDTO
4494
4958
  */
4495
4959
  pogs: Array<PlayerOnGameserverOutputDTO>;
4496
4960
  }
4497
- /**
4498
- *
4499
- * @export
4500
- * @interface MeOutoutDTOAPI
4501
- */
4502
- export interface MeOutoutDTOAPI {
4503
- /**
4504
- *
4505
- * @type {MeOutoutDTO}
4506
- * @memberof MeOutoutDTOAPI
4507
- */
4508
- data: MeOutoutDTO;
4509
- /**
4510
- *
4511
- * @type {MetadataOutput}
4512
- * @memberof MeOutoutDTOAPI
4513
- */
4514
- meta: MetadataOutput;
4515
- }
4516
4961
  /**
4517
4962
  *
4518
4963
  * @export
@@ -4944,13 +5389,13 @@ export interface ModuleSearchInputAllowedFilters {
4944
5389
  * @type {Array<string>}
4945
5390
  * @memberof ModuleSearchInputAllowedFilters
4946
5391
  */
4947
- id?: Array<string>;
5392
+ name?: Array<string>;
4948
5393
  /**
4949
5394
  *
4950
5395
  * @type {Array<string>}
4951
5396
  * @memberof ModuleSearchInputAllowedFilters
4952
5397
  */
4953
- name?: Array<string>;
5398
+ id?: Array<string>;
4954
5399
  }
4955
5400
  /**
4956
5401
  *
@@ -5085,6 +5530,37 @@ export interface NOTDOMAINSCOPEDTakaroModelDTO {
5085
5530
  * @export
5086
5531
  */
5087
5532
  export type NOTDOMAINSCOPEDTakaroModelDTOCreatedAt = string;
5533
+ /**
5534
+ *
5535
+ * @export
5536
+ * @interface OptionalPogStatsInputDTO
5537
+ */
5538
+ export interface OptionalPogStatsInputDTO {
5539
+ /**
5540
+ *
5541
+ * @type {string}
5542
+ * @memberof OptionalPogStatsInputDTO
5543
+ */
5544
+ gameServerId: string;
5545
+ /**
5546
+ *
5547
+ * @type {string}
5548
+ * @memberof OptionalPogStatsInputDTO
5549
+ */
5550
+ playerId?: string;
5551
+ /**
5552
+ *
5553
+ * @type {StatsControllerGetPingStatsStartDateParameter}
5554
+ * @memberof OptionalPogStatsInputDTO
5555
+ */
5556
+ startDate?: StatsControllerGetPingStatsStartDateParameter;
5557
+ /**
5558
+ *
5559
+ * @type {StatsControllerGetPingStatsStartDateParameter}
5560
+ * @memberof OptionalPogStatsInputDTO
5561
+ */
5562
+ endDate?: StatsControllerGetPingStatsStartDateParameter;
5563
+ }
5088
5564
  /**
5089
5565
  *
5090
5566
  * @export
@@ -5226,6 +5702,7 @@ export declare const ParamKeyKeyEnum: {
5226
5702
  readonly ServerChatName: "serverChatName";
5227
5703
  readonly EconomyEnabled: "economyEnabled";
5228
5704
  readonly CurrencyName: "currencyName";
5705
+ readonly DeveloperMode: "developerMode";
5229
5706
  };
5230
5707
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
5231
5708
  /**
@@ -5520,12 +5997,6 @@ export interface PlayerOnGameServerCreateDTO {
5520
5997
  * @interface PlayerOnGameServerSearchInputAllowedFilters
5521
5998
  */
5522
5999
  export interface PlayerOnGameServerSearchInputAllowedFilters {
5523
- /**
5524
- *
5525
- * @type {Array<string>}
5526
- * @memberof PlayerOnGameServerSearchInputAllowedFilters
5527
- */
5528
- id?: Array<string>;
5529
6000
  /**
5530
6001
  *
5531
6002
  * @type {Array<string>}
@@ -5550,6 +6021,12 @@ export interface PlayerOnGameServerSearchInputAllowedFilters {
5550
6021
  * @memberof PlayerOnGameServerSearchInputAllowedFilters
5551
6022
  */
5552
6023
  online?: Array<boolean>;
6024
+ /**
6025
+ *
6026
+ * @type {Array<string>}
6027
+ * @memberof PlayerOnGameServerSearchInputAllowedFilters
6028
+ */
6029
+ id?: Array<string>;
5553
6030
  }
5554
6031
  /**
5555
6032
  *
@@ -5563,6 +6040,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
5563
6040
  * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
5564
6041
  */
5565
6042
  lastSeen?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6043
+ /**
6044
+ *
6045
+ * @type {number}
6046
+ * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
6047
+ */
6048
+ playtimeSeconds?: number;
5566
6049
  /**
5567
6050
  *
5568
6051
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -5703,6 +6186,12 @@ export interface PlayerOnGameServerUpdateDTO {
5703
6186
  * @memberof PlayerOnGameServerUpdateDTO
5704
6187
  */
5705
6188
  online: boolean;
6189
+ /**
6190
+ *
6191
+ * @type {number}
6192
+ * @memberof PlayerOnGameServerUpdateDTO
6193
+ */
6194
+ playtimeSeconds?: number;
5706
6195
  }
5707
6196
  /**
5708
6197
  *
@@ -5801,6 +6290,12 @@ export interface PlayerOnGameserverOutputDTO {
5801
6290
  * @memberof PlayerOnGameserverOutputDTO
5802
6291
  */
5803
6292
  lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6293
+ /**
6294
+ *
6295
+ * @type {number}
6296
+ * @memberof PlayerOnGameserverOutputDTO
6297
+ */
6298
+ playtimeSeconds: number;
5804
6299
  /**
5805
6300
  *
5806
6301
  * @type {string}
@@ -5941,6 +6436,12 @@ export interface PlayerOnGameserverOutputWithRolesDTO {
5941
6436
  * @memberof PlayerOnGameserverOutputWithRolesDTO
5942
6437
  */
5943
6438
  lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6439
+ /**
6440
+ *
6441
+ * @type {number}
6442
+ * @memberof PlayerOnGameserverOutputWithRolesDTO
6443
+ */
6444
+ playtimeSeconds: number;
5944
6445
  }
5945
6446
  /**
5946
6447
  *
@@ -6039,6 +6540,12 @@ export interface PlayerOutputDTO {
6039
6540
  * @memberof PlayerOutputDTO
6040
6541
  */
6041
6542
  steamLevel?: number;
6543
+ /**
6544
+ *
6545
+ * @type {number}
6546
+ * @memberof PlayerOutputDTO
6547
+ */
6548
+ playtimeSeconds: number;
6042
6549
  /**
6043
6550
  *
6044
6551
  * @type {Array<PlayerOnGameserverOutputDTO>}
@@ -6191,6 +6698,12 @@ export interface PlayerOutputWithRolesDTO {
6191
6698
  * @memberof PlayerOutputWithRolesDTO
6192
6699
  */
6193
6700
  steamLevel?: number;
6701
+ /**
6702
+ *
6703
+ * @type {number}
6704
+ * @memberof PlayerOutputWithRolesDTO
6705
+ */
6706
+ playtimeSeconds: number;
6194
6707
  /**
6195
6708
  *
6196
6709
  * @type {Array<PlayerOnGameserverOutputDTO>}
@@ -6303,12 +6816,6 @@ export interface PlayerRoleAssignmentOutputDTO {
6303
6816
  * @interface PlayerSearchInputAllowedFilters
6304
6817
  */
6305
6818
  export interface PlayerSearchInputAllowedFilters {
6306
- /**
6307
- *
6308
- * @type {Array<string>}
6309
- * @memberof PlayerSearchInputAllowedFilters
6310
- */
6311
- id?: Array<string>;
6312
6819
  /**
6313
6820
  *
6314
6821
  * @type {Array<string>}
@@ -6345,6 +6852,67 @@ export interface PlayerSearchInputAllowedFilters {
6345
6852
  * @memberof PlayerSearchInputAllowedFilters
6346
6853
  */
6347
6854
  steamVacBanned?: Array<boolean>;
6855
+ /**
6856
+ *
6857
+ * @type {Array<string>}
6858
+ * @memberof PlayerSearchInputAllowedFilters
6859
+ */
6860
+ roleId?: Array<string>;
6861
+ /**
6862
+ *
6863
+ * @type {Array<string>}
6864
+ * @memberof PlayerSearchInputAllowedFilters
6865
+ */
6866
+ id?: Array<string>;
6867
+ }
6868
+ /**
6869
+ *
6870
+ * @export
6871
+ * @interface PlayerSearchInputAllowedRangeFilter
6872
+ */
6873
+ export interface PlayerSearchInputAllowedRangeFilter {
6874
+ /**
6875
+ *
6876
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6877
+ * @memberof PlayerSearchInputAllowedRangeFilter
6878
+ */
6879
+ steamAccountCreated?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6880
+ /**
6881
+ *
6882
+ * @type {number}
6883
+ * @memberof PlayerSearchInputAllowedRangeFilter
6884
+ */
6885
+ steamDaysSinceLastBan?: number;
6886
+ /**
6887
+ *
6888
+ * @type {number}
6889
+ * @memberof PlayerSearchInputAllowedRangeFilter
6890
+ */
6891
+ steamNumberOfVACBans?: number;
6892
+ /**
6893
+ *
6894
+ * @type {number}
6895
+ * @memberof PlayerSearchInputAllowedRangeFilter
6896
+ */
6897
+ steamLevel?: number;
6898
+ /**
6899
+ *
6900
+ * @type {number}
6901
+ * @memberof PlayerSearchInputAllowedRangeFilter
6902
+ */
6903
+ playtimeSeconds?: number;
6904
+ /**
6905
+ *
6906
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6907
+ * @memberof PlayerSearchInputAllowedRangeFilter
6908
+ */
6909
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6910
+ /**
6911
+ *
6912
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6913
+ * @memberof PlayerSearchInputAllowedRangeFilter
6914
+ */
6915
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6348
6916
  }
6349
6917
  /**
6350
6918
  *
@@ -6366,16 +6934,16 @@ export interface PlayerSearchInputDTO {
6366
6934
  search?: PlayerSearchInputAllowedFilters;
6367
6935
  /**
6368
6936
  *
6369
- * @type {any}
6937
+ * @type {PlayerSearchInputAllowedRangeFilter}
6370
6938
  * @memberof PlayerSearchInputDTO
6371
6939
  */
6372
- greaterThan?: any;
6940
+ greaterThan?: PlayerSearchInputAllowedRangeFilter;
6373
6941
  /**
6374
6942
  *
6375
- * @type {any}
6943
+ * @type {PlayerSearchInputAllowedRangeFilter}
6376
6944
  * @memberof PlayerSearchInputDTO
6377
6945
  */
6378
- lessThan?: any;
6946
+ lessThan?: PlayerSearchInputAllowedRangeFilter;
6379
6947
  /**
6380
6948
  *
6381
6949
  * @type {number}
@@ -6442,6 +7010,12 @@ export interface PlayerUpdateDTO {
6442
7010
  * @memberof PlayerUpdateDTO
6443
7011
  */
6444
7012
  epicOnlineServicesId?: string;
7013
+ /**
7014
+ *
7015
+ * @type {number}
7016
+ * @memberof PlayerUpdateDTO
7017
+ */
7018
+ playtimeSeconds?: number;
6445
7019
  }
6446
7020
  /**
6447
7021
  *
@@ -6738,6 +7312,12 @@ export interface RoleSearchInputAllowedFilters {
6738
7312
  * @memberof RoleSearchInputAllowedFilters
6739
7313
  */
6740
7314
  name?: Array<string>;
7315
+ /**
7316
+ *
7317
+ * @type {Array<string>}
7318
+ * @memberof RoleSearchInputAllowedFilters
7319
+ */
7320
+ id?: Array<string>;
6741
7321
  }
6742
7322
  /**
6743
7323
  *
@@ -6979,6 +7559,12 @@ export interface Settings {
6979
7559
  * @memberof Settings
6980
7560
  */
6981
7561
  currencyName: string;
7562
+ /**
7563
+ *
7564
+ * @type {string}
7565
+ * @memberof Settings
7566
+ */
7567
+ developerMode: string;
6982
7568
  /**
6983
7569
  *
6984
7570
  * @type {string}
@@ -7047,6 +7633,7 @@ export declare const SettingsOutputDTOKeyEnum: {
7047
7633
  readonly ServerChatName: "serverChatName";
7048
7634
  readonly EconomyEnabled: "economyEnabled";
7049
7635
  readonly CurrencyName: "currencyName";
7636
+ readonly DeveloperMode: "developerMode";
7050
7637
  };
7051
7638
  export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
7052
7639
  export declare const SettingsOutputDTOTypeEnum: {
@@ -7450,6 +8037,12 @@ export interface ShopOrderCreateDTO {
7450
8037
  * @memberof ShopOrderCreateDTO
7451
8038
  */
7452
8039
  listingId: string;
8040
+ /**
8041
+ *
8042
+ * @type {string}
8043
+ * @memberof ShopOrderCreateDTO
8044
+ */
8045
+ userId?: string;
7453
8046
  /**
7454
8047
  *
7455
8048
  * @type {number}
@@ -7468,7 +8061,7 @@ export interface ShopOrderCreateInternalDTO {
7468
8061
  * @type {string}
7469
8062
  * @memberof ShopOrderCreateInternalDTO
7470
8063
  */
7471
- userId: string;
8064
+ userId?: string;
7472
8065
  /**
7473
8066
  *
7474
8067
  * @type {string}
@@ -7592,13 +8185,13 @@ export interface ShopOrderSearchInputAllowedFilters {
7592
8185
  * @type {Array<string>}
7593
8186
  * @memberof ShopOrderSearchInputAllowedFilters
7594
8187
  */
7595
- id?: Array<string>;
8188
+ listingId?: Array<string>;
7596
8189
  /**
7597
8190
  *
7598
8191
  * @type {Array<string>}
7599
8192
  * @memberof ShopOrderSearchInputAllowedFilters
7600
8193
  */
7601
- listingId?: Array<string>;
8194
+ gameServerId?: Array<string>;
7602
8195
  /**
7603
8196
  *
7604
8197
  * @type {Array<string>}
@@ -7617,6 +8210,12 @@ export interface ShopOrderSearchInputAllowedFilters {
7617
8210
  * @memberof ShopOrderSearchInputAllowedFilters
7618
8211
  */
7619
8212
  status?: Array<string>;
8213
+ /**
8214
+ *
8215
+ * @type {Array<string>}
8216
+ * @memberof ShopOrderSearchInputAllowedFilters
8217
+ */
8218
+ id?: Array<string>;
7620
8219
  }
7621
8220
  /**
7622
8221
  *
@@ -7827,12 +8426,6 @@ export interface TakaroEventCommandDetails {
7827
8426
  * @interface TakaroEventCommandExecuted
7828
8427
  */
7829
8428
  export interface TakaroEventCommandExecuted {
7830
- /**
7831
- *
7832
- * @type {any}
7833
- * @memberof TakaroEventCommandExecuted
7834
- */
7835
- data: any;
7836
8429
  /**
7837
8430
  *
7838
8431
  * @type {TakaroEventFunctionResult}
@@ -7877,12 +8470,6 @@ export interface TakaroEventCronjobDetails {
7877
8470
  * @interface TakaroEventCronjobExecuted
7878
8471
  */
7879
8472
  export interface TakaroEventCronjobExecuted {
7880
- /**
7881
- *
7882
- * @type {any}
7883
- * @memberof TakaroEventCronjobExecuted
7884
- */
7885
- data: any;
7886
8473
  /**
7887
8474
  *
7888
8475
  * @type {TakaroEventFunctionResult}
@@ -8015,12 +8602,6 @@ export interface TakaroEventHookDetails {
8015
8602
  * @interface TakaroEventHookExecuted
8016
8603
  */
8017
8604
  export interface TakaroEventHookExecuted {
8018
- /**
8019
- *
8020
- * @type {any}
8021
- * @memberof TakaroEventHookExecuted
8022
- */
8023
- data: any;
8024
8605
  /**
8025
8606
  *
8026
8607
  * @type {TakaroEventFunctionResult}
@@ -8866,6 +9447,18 @@ export interface UserSearchInputAllowedFilters {
8866
9447
  * @memberof UserSearchInputAllowedFilters
8867
9448
  */
8868
9449
  playerId?: Array<string>;
9450
+ /**
9451
+ *
9452
+ * @type {Array<string>}
9453
+ * @memberof UserSearchInputAllowedFilters
9454
+ */
9455
+ roleId?: Array<string>;
9456
+ /**
9457
+ *
9458
+ * @type {Array<string>}
9459
+ * @memberof UserSearchInputAllowedFilters
9460
+ */
9461
+ id?: Array<string>;
8869
9462
  }
8870
9463
  /**
8871
9464
  *
@@ -9161,31 +9754,31 @@ export interface VariableSearchInputAllowedFilters {
9161
9754
  * @type {Array<string>}
9162
9755
  * @memberof VariableSearchInputAllowedFilters
9163
9756
  */
9164
- id?: Array<string>;
9757
+ key?: Array<string>;
9165
9758
  /**
9166
9759
  *
9167
9760
  * @type {Array<string>}
9168
9761
  * @memberof VariableSearchInputAllowedFilters
9169
9762
  */
9170
- key?: Array<string>;
9763
+ gameServerId?: Array<string>;
9171
9764
  /**
9172
9765
  *
9173
9766
  * @type {Array<string>}
9174
9767
  * @memberof VariableSearchInputAllowedFilters
9175
9768
  */
9176
- gameServerId?: Array<string>;
9769
+ playerId?: Array<string>;
9177
9770
  /**
9178
9771
  *
9179
9772
  * @type {Array<string>}
9180
9773
  * @memberof VariableSearchInputAllowedFilters
9181
9774
  */
9182
- playerId?: Array<string>;
9775
+ moduleId?: Array<string>;
9183
9776
  /**
9184
9777
  *
9185
9778
  * @type {Array<string>}
9186
9779
  * @memberof VariableSearchInputAllowedFilters
9187
9780
  */
9188
- moduleId?: Array<string>;
9781
+ id?: Array<string>;
9189
9782
  }
9190
9783
  /**
9191
9784
  *
@@ -9296,6 +9889,201 @@ export interface VariableUpdateDTO {
9296
9889
  */
9297
9890
  moduleId?: string;
9298
9891
  }
9892
+ /**
9893
+ * BanApi - axios parameter creator
9894
+ * @export
9895
+ */
9896
+ export declare const BanApiAxiosParamCreator: (configuration?: Configuration) => {
9897
+ /**
9898
+ * Required permissions: `MANAGE_PLAYERS`
9899
+ * @summary Create
9900
+ * @param {BanCreateDTO} [banCreateDTO] BanCreateDTO
9901
+ * @param {*} [options] Override http request option.
9902
+ * @throws {RequiredError}
9903
+ */
9904
+ banControllerCreate: (banCreateDTO?: BanCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9905
+ /**
9906
+ * Required permissions: `MANAGE_PLAYERS`
9907
+ * @summary Delete
9908
+ * @param {string} id
9909
+ * @param {*} [options] Override http request option.
9910
+ * @throws {RequiredError}
9911
+ */
9912
+ banControllerDelete: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9913
+ /**
9914
+ * Required permissions: `READ_PLAYERS`
9915
+ * @summary Get one
9916
+ * @param {string} id
9917
+ * @param {*} [options] Override http request option.
9918
+ * @throws {RequiredError}
9919
+ */
9920
+ banControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9921
+ /**
9922
+ * Required permissions: `READ_PLAYERS`
9923
+ * @summary Search
9924
+ * @param {BanSearchInputDTO} [banSearchInputDTO] BanSearchInputDTO
9925
+ * @param {*} [options] Override http request option.
9926
+ * @throws {RequiredError}
9927
+ */
9928
+ banControllerSearch: (banSearchInputDTO?: BanSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9929
+ /**
9930
+ * Required permissions: `MANAGE_PLAYERS`
9931
+ * @summary Update
9932
+ * @param {string} id
9933
+ * @param {BanUpdateDTO} [banUpdateDTO] BanUpdateDTO
9934
+ * @param {*} [options] Override http request option.
9935
+ * @throws {RequiredError}
9936
+ */
9937
+ banControllerUpdate: (id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9938
+ };
9939
+ /**
9940
+ * BanApi - functional programming interface
9941
+ * @export
9942
+ */
9943
+ export declare const BanApiFp: (configuration?: Configuration) => {
9944
+ /**
9945
+ * Required permissions: `MANAGE_PLAYERS`
9946
+ * @summary Create
9947
+ * @param {BanCreateDTO} [banCreateDTO] BanCreateDTO
9948
+ * @param {*} [options] Override http request option.
9949
+ * @throws {RequiredError}
9950
+ */
9951
+ banControllerCreate(banCreateDTO?: BanCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputDTOAPI>>;
9952
+ /**
9953
+ * Required permissions: `MANAGE_PLAYERS`
9954
+ * @summary Delete
9955
+ * @param {string} id
9956
+ * @param {*} [options] Override http request option.
9957
+ * @throws {RequiredError}
9958
+ */
9959
+ banControllerDelete(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
9960
+ /**
9961
+ * Required permissions: `READ_PLAYERS`
9962
+ * @summary Get one
9963
+ * @param {string} id
9964
+ * @param {*} [options] Override http request option.
9965
+ * @throws {RequiredError}
9966
+ */
9967
+ banControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputDTOAPI>>;
9968
+ /**
9969
+ * Required permissions: `READ_PLAYERS`
9970
+ * @summary Search
9971
+ * @param {BanSearchInputDTO} [banSearchInputDTO] BanSearchInputDTO
9972
+ * @param {*} [options] Override http request option.
9973
+ * @throws {RequiredError}
9974
+ */
9975
+ banControllerSearch(banSearchInputDTO?: BanSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputArrayDTOAPI>>;
9976
+ /**
9977
+ * Required permissions: `MANAGE_PLAYERS`
9978
+ * @summary Update
9979
+ * @param {string} id
9980
+ * @param {BanUpdateDTO} [banUpdateDTO] BanUpdateDTO
9981
+ * @param {*} [options] Override http request option.
9982
+ * @throws {RequiredError}
9983
+ */
9984
+ banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputDTOAPI>>;
9985
+ };
9986
+ /**
9987
+ * BanApi - factory interface
9988
+ * @export
9989
+ */
9990
+ export declare const BanApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9991
+ /**
9992
+ * Required permissions: `MANAGE_PLAYERS`
9993
+ * @summary Create
9994
+ * @param {BanCreateDTO} [banCreateDTO] BanCreateDTO
9995
+ * @param {*} [options] Override http request option.
9996
+ * @throws {RequiredError}
9997
+ */
9998
+ banControllerCreate(banCreateDTO?: BanCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputDTOAPI>;
9999
+ /**
10000
+ * Required permissions: `MANAGE_PLAYERS`
10001
+ * @summary Delete
10002
+ * @param {string} id
10003
+ * @param {*} [options] Override http request option.
10004
+ * @throws {RequiredError}
10005
+ */
10006
+ banControllerDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
10007
+ /**
10008
+ * Required permissions: `READ_PLAYERS`
10009
+ * @summary Get one
10010
+ * @param {string} id
10011
+ * @param {*} [options] Override http request option.
10012
+ * @throws {RequiredError}
10013
+ */
10014
+ banControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputDTOAPI>;
10015
+ /**
10016
+ * Required permissions: `READ_PLAYERS`
10017
+ * @summary Search
10018
+ * @param {BanSearchInputDTO} [banSearchInputDTO] BanSearchInputDTO
10019
+ * @param {*} [options] Override http request option.
10020
+ * @throws {RequiredError}
10021
+ */
10022
+ banControllerSearch(banSearchInputDTO?: BanSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputArrayDTOAPI>;
10023
+ /**
10024
+ * Required permissions: `MANAGE_PLAYERS`
10025
+ * @summary Update
10026
+ * @param {string} id
10027
+ * @param {BanUpdateDTO} [banUpdateDTO] BanUpdateDTO
10028
+ * @param {*} [options] Override http request option.
10029
+ * @throws {RequiredError}
10030
+ */
10031
+ banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputDTOAPI>;
10032
+ };
10033
+ /**
10034
+ * BanApi - object-oriented interface
10035
+ * @export
10036
+ * @class BanApi
10037
+ * @extends {BaseAPI}
10038
+ */
10039
+ export declare class BanApi extends BaseAPI {
10040
+ /**
10041
+ * Required permissions: `MANAGE_PLAYERS`
10042
+ * @summary Create
10043
+ * @param {BanCreateDTO} [banCreateDTO] BanCreateDTO
10044
+ * @param {*} [options] Override http request option.
10045
+ * @throws {RequiredError}
10046
+ * @memberof BanApi
10047
+ */
10048
+ banControllerCreate(banCreateDTO?: BanCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputDTOAPI, any>>;
10049
+ /**
10050
+ * Required permissions: `MANAGE_PLAYERS`
10051
+ * @summary Delete
10052
+ * @param {string} id
10053
+ * @param {*} [options] Override http request option.
10054
+ * @throws {RequiredError}
10055
+ * @memberof BanApi
10056
+ */
10057
+ banControllerDelete(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
10058
+ /**
10059
+ * Required permissions: `READ_PLAYERS`
10060
+ * @summary Get one
10061
+ * @param {string} id
10062
+ * @param {*} [options] Override http request option.
10063
+ * @throws {RequiredError}
10064
+ * @memberof BanApi
10065
+ */
10066
+ banControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputDTOAPI, any>>;
10067
+ /**
10068
+ * Required permissions: `READ_PLAYERS`
10069
+ * @summary Search
10070
+ * @param {BanSearchInputDTO} [banSearchInputDTO] BanSearchInputDTO
10071
+ * @param {*} [options] Override http request option.
10072
+ * @throws {RequiredError}
10073
+ * @memberof BanApi
10074
+ */
10075
+ banControllerSearch(banSearchInputDTO?: BanSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputArrayDTOAPI, any>>;
10076
+ /**
10077
+ * Required permissions: `MANAGE_PLAYERS`
10078
+ * @summary Update
10079
+ * @param {string} id
10080
+ * @param {BanUpdateDTO} [banUpdateDTO] BanUpdateDTO
10081
+ * @param {*} [options] Override http request option.
10082
+ * @throws {RequiredError}
10083
+ * @memberof BanApi
10084
+ */
10085
+ banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputDTOAPI, any>>;
10086
+ }
9299
10087
  /**
9300
10088
  * CommandApi - axios parameter creator
9301
10089
  * @export
@@ -9490,7 +10278,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9490
10278
  * @param {*} [options] Override http request option.
9491
10279
  * @throws {RequiredError}
9492
10280
  */
9493
- commandControllerCreate(commandCreateDTO?: CommandCreateDTO, options?: any): AxiosPromise<CommandOutputDTOAPI>;
10281
+ commandControllerCreate(commandCreateDTO?: CommandCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
9494
10282
  /**
9495
10283
  * Required permissions: `MANAGE_MODULES`
9496
10284
  * @summary Create argument
@@ -9498,7 +10286,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9498
10286
  * @param {*} [options] Override http request option.
9499
10287
  * @throws {RequiredError}
9500
10288
  */
9501
- commandControllerCreateArgument(commandArgumentCreateDTO?: CommandArgumentCreateDTO, options?: any): AxiosPromise<CommandArgumentDTOAPI>;
10289
+ commandControllerCreateArgument(commandArgumentCreateDTO?: CommandArgumentCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
9502
10290
  /**
9503
10291
  * Required permissions: `READ_MODULES`
9504
10292
  * @summary Get executions
@@ -9508,7 +10296,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9508
10296
  * @param {*} [options] Override http request option.
9509
10297
  * @throws {RequiredError}
9510
10298
  */
9511
- commandControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: any): AxiosPromise<EventOutputArrayDTOAPI>;
10299
+ commandControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
9512
10300
  /**
9513
10301
  * Required permissions: `READ_MODULES`
9514
10302
  * @summary Get one
@@ -9516,7 +10304,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9516
10304
  * @param {*} [options] Override http request option.
9517
10305
  * @throws {RequiredError}
9518
10306
  */
9519
- commandControllerGetOne(id: string, options?: any): AxiosPromise<CommandOutputDTOAPI>;
10307
+ commandControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
9520
10308
  /**
9521
10309
  * Required permissions: `MANAGE_MODULES`
9522
10310
  * @summary Remove
@@ -9524,7 +10312,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9524
10312
  * @param {*} [options] Override http request option.
9525
10313
  * @throws {RequiredError}
9526
10314
  */
9527
- commandControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
10315
+ commandControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
9528
10316
  /**
9529
10317
  * Required permissions: `MANAGE_MODULES`
9530
10318
  * @summary Remove argument
@@ -9532,7 +10320,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9532
10320
  * @param {*} [options] Override http request option.
9533
10321
  * @throws {RequiredError}
9534
10322
  */
9535
- commandControllerRemoveArgument(id: string, options?: any): AxiosPromise<APIOutput>;
10323
+ commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
9536
10324
  /**
9537
10325
  * Required permissions: `READ_MODULES`
9538
10326
  * @summary Search
@@ -9540,7 +10328,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9540
10328
  * @param {*} [options] Override http request option.
9541
10329
  * @throws {RequiredError}
9542
10330
  */
9543
- commandControllerSearch(commandSearchInputDTO?: CommandSearchInputDTO, options?: any): AxiosPromise<CommandOutputArrayDTOAPI>;
10331
+ commandControllerSearch(commandSearchInputDTO?: CommandSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputArrayDTOAPI>;
9544
10332
  /**
9545
10333
  * Required permissions: `MANAGE_MODULES`
9546
10334
  * @summary Trigger
@@ -9549,7 +10337,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9549
10337
  * @param {*} [options] Override http request option.
9550
10338
  * @throws {RequiredError}
9551
10339
  */
9552
- commandControllerTrigger(id: string, commandTriggerDTO?: CommandTriggerDTO, options?: any): AxiosPromise<void>;
10340
+ commandControllerTrigger(id: string, commandTriggerDTO?: CommandTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9553
10341
  /**
9554
10342
  * Required permissions: `MANAGE_MODULES`
9555
10343
  * @summary Update
@@ -9558,7 +10346,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9558
10346
  * @param {*} [options] Override http request option.
9559
10347
  * @throws {RequiredError}
9560
10348
  */
9561
- commandControllerUpdate(id: string, commandUpdateDTO?: CommandUpdateDTO, options?: any): AxiosPromise<CommandOutputDTOAPI>;
10349
+ commandControllerUpdate(id: string, commandUpdateDTO?: CommandUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandOutputDTOAPI>;
9562
10350
  /**
9563
10351
  * Required permissions: `MANAGE_MODULES`
9564
10352
  * @summary Update argument
@@ -9567,7 +10355,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
9567
10355
  * @param {*} [options] Override http request option.
9568
10356
  * @throws {RequiredError}
9569
10357
  */
9570
- commandControllerUpdateArgument(id: string, commandArgumentUpdateDTO?: CommandArgumentUpdateDTO, options?: any): AxiosPromise<CommandArgumentDTOAPI>;
10358
+ commandControllerUpdateArgument(id: string, commandArgumentUpdateDTO?: CommandArgumentUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandArgumentDTOAPI>;
9571
10359
  };
9572
10360
  /**
9573
10361
  * CommandApi - object-oriented interface
@@ -9814,7 +10602,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9814
10602
  * @param {*} [options] Override http request option.
9815
10603
  * @throws {RequiredError}
9816
10604
  */
9817
- cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: any): AxiosPromise<CronJobOutputDTOAPI>;
10605
+ cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
9818
10606
  /**
9819
10607
  * Required permissions: `READ_MODULES`
9820
10608
  * @summary Get executions
@@ -9824,7 +10612,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9824
10612
  * @param {*} [options] Override http request option.
9825
10613
  * @throws {RequiredError}
9826
10614
  */
9827
- cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: any): AxiosPromise<EventOutputArrayDTOAPI>;
10615
+ cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
9828
10616
  /**
9829
10617
  * Required permissions: `READ_MODULES`
9830
10618
  * @summary Get one
@@ -9832,7 +10620,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9832
10620
  * @param {*} [options] Override http request option.
9833
10621
  * @throws {RequiredError}
9834
10622
  */
9835
- cronJobControllerGetOne(id: string, options?: any): AxiosPromise<CronJobOutputDTOAPI>;
10623
+ cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
9836
10624
  /**
9837
10625
  * Required permissions: `MANAGE_MODULES`
9838
10626
  * @summary Remove
@@ -9840,7 +10628,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9840
10628
  * @param {*} [options] Override http request option.
9841
10629
  * @throws {RequiredError}
9842
10630
  */
9843
- cronJobControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
10631
+ cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
9844
10632
  /**
9845
10633
  * Required permissions: `READ_MODULES`
9846
10634
  * @summary Search
@@ -9848,7 +10636,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9848
10636
  * @param {*} [options] Override http request option.
9849
10637
  * @throws {RequiredError}
9850
10638
  */
9851
- cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: any): AxiosPromise<CronJobOutputArrayDTOAPI>;
10639
+ cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputArrayDTOAPI>;
9852
10640
  /**
9853
10641
  * Required permissions: `MANAGE_MODULES`
9854
10642
  * @summary Trigger
@@ -9856,7 +10644,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9856
10644
  * @param {*} [options] Override http request option.
9857
10645
  * @throws {RequiredError}
9858
10646
  */
9859
- cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: any): AxiosPromise<void>;
10647
+ cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9860
10648
  /**
9861
10649
  * Required permissions: `MANAGE_MODULES`
9862
10650
  * @summary Update
@@ -9865,7 +10653,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
9865
10653
  * @param {*} [options] Override http request option.
9866
10654
  * @throws {RequiredError}
9867
10655
  */
9868
- cronJobControllerUpdate(id: string, cronJobUpdateDTO?: CronJobUpdateDTO, options?: any): AxiosPromise<CronJobOutputDTOAPI>;
10656
+ cronJobControllerUpdate(id: string, cronJobUpdateDTO?: CronJobUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
9869
10657
  };
9870
10658
  /**
9871
10659
  * CronJobApi - object-oriented interface
@@ -10030,7 +10818,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
10030
10818
  * @param {*} [options] Override http request option.
10031
10819
  * @throws {RequiredError}
10032
10820
  */
10033
- discordControllerGetInvite(options?: any): AxiosPromise<DiscordInviteOutputDTO>;
10821
+ discordControllerGetInvite(options?: RawAxiosRequestConfig): AxiosPromise<DiscordInviteOutputDTO>;
10034
10822
  /**
10035
10823
  *
10036
10824
  * @summary Search
@@ -10038,7 +10826,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
10038
10826
  * @param {*} [options] Override http request option.
10039
10827
  * @throws {RequiredError}
10040
10828
  */
10041
- discordControllerSearch(guildSearchInputDTO?: GuildSearchInputDTO, options?: any): AxiosPromise<GuildOutputArrayDTOAPI>;
10829
+ discordControllerSearch(guildSearchInputDTO?: GuildSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<GuildOutputArrayDTOAPI>;
10042
10830
  /**
10043
10831
  *
10044
10832
  * @summary Send message
@@ -10047,7 +10835,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
10047
10835
  * @param {*} [options] Override http request option.
10048
10836
  * @throws {RequiredError}
10049
10837
  */
10050
- discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: any): AxiosPromise<APIOutput>;
10838
+ discordControllerSendMessage(id: string, sendMessageInputDTO?: SendMessageInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
10051
10839
  /**
10052
10840
  *
10053
10841
  * @summary Update guild
@@ -10056,7 +10844,7 @@ export declare const DiscordApiFactory: (configuration?: Configuration, basePath
10056
10844
  * @param {*} [options] Override http request option.
10057
10845
  * @throws {RequiredError}
10058
10846
  */
10059
- discordControllerUpdateGuild(id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: any): AxiosPromise<GuildOutputDTOAPI>;
10847
+ discordControllerUpdateGuild(id: string, guildApiUpdateDTO?: GuildApiUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<GuildOutputDTOAPI>;
10060
10848
  };
10061
10849
  /**
10062
10850
  * DiscordApi - object-oriented interface
@@ -10225,7 +11013,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10225
11013
  * @param {*} [options] Override http request option.
10226
11014
  * @throws {RequiredError}
10227
11015
  */
10228
- domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: any): AxiosPromise<DomainCreateOutputDTOAPI>;
11016
+ domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
10229
11017
  /**
10230
11018
  *
10231
11019
  * @summary Get one
@@ -10233,7 +11021,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10233
11021
  * @param {*} [options] Override http request option.
10234
11022
  * @throws {RequiredError}
10235
11023
  */
10236
- domainControllerGetOne(id: string, options?: any): AxiosPromise<DomainOutputDTOAPI>;
11024
+ domainControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<DomainOutputDTOAPI>;
10237
11025
  /**
10238
11026
  *
10239
11027
  * @summary Get token
@@ -10241,7 +11029,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10241
11029
  * @param {*} [options] Override http request option.
10242
11030
  * @throws {RequiredError}
10243
11031
  */
10244
- domainControllerGetToken(tokenInputDTO?: TokenInputDTO, options?: any): AxiosPromise<TokenOutputDTOAPI>;
11032
+ domainControllerGetToken(tokenInputDTO?: TokenInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<TokenOutputDTOAPI>;
10245
11033
  /**
10246
11034
  *
10247
11035
  * @summary Remove
@@ -10249,7 +11037,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10249
11037
  * @param {*} [options] Override http request option.
10250
11038
  * @throws {RequiredError}
10251
11039
  */
10252
- domainControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
11040
+ domainControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
10253
11041
  /**
10254
11042
  *
10255
11043
  * @summary Search
@@ -10257,7 +11045,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10257
11045
  * @param {*} [options] Override http request option.
10258
11046
  * @throws {RequiredError}
10259
11047
  */
10260
- domainControllerSearch(domainSearchInputDTO?: DomainSearchInputDTO, options?: any): AxiosPromise<DomainOutputArrayDTOAPI>;
11048
+ domainControllerSearch(domainSearchInputDTO?: DomainSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainOutputArrayDTOAPI>;
10261
11049
  /**
10262
11050
  *
10263
11051
  * @summary Update
@@ -10266,7 +11054,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
10266
11054
  * @param {*} [options] Override http request option.
10267
11055
  * @throws {RequiredError}
10268
11056
  */
10269
- domainControllerUpdate(id: string, domainUpdateInputDTO?: DomainUpdateInputDTO, options?: any): AxiosPromise<DomainOutputDTOAPI>;
11057
+ domainControllerUpdate(id: string, domainUpdateInputDTO?: DomainUpdateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainOutputDTOAPI>;
10270
11058
  };
10271
11059
  /**
10272
11060
  * DomainApi - object-oriented interface
@@ -10419,7 +11207,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
10419
11207
  * @param {*} [options] Override http request option.
10420
11208
  * @throws {RequiredError}
10421
11209
  */
10422
- eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: any): AxiosPromise<EventOutputDTO>;
11210
+ eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
10423
11211
  /**
10424
11212
  * Fetches events where cronjob, hook and command failed. Supports all the common query parameters Required permissions: `READ_MODULES`, `READ_EVENTS`
10425
11213
  * @summary Get failed functions
@@ -10427,7 +11215,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
10427
11215
  * @param {*} [options] Override http request option.
10428
11216
  * @throws {RequiredError}
10429
11217
  */
10430
- eventControllerGetFailedFunctions(eventSearchInputDTO?: EventSearchInputDTO, options?: any): AxiosPromise<EventOutputArrayDTOAPI>;
11218
+ eventControllerGetFailedFunctions(eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
10431
11219
  /**
10432
11220
  * Required permissions: `READ_EVENTS`
10433
11221
  * @summary Get one
@@ -10435,7 +11223,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
10435
11223
  * @param {*} [options] Override http request option.
10436
11224
  * @throws {RequiredError}
10437
11225
  */
10438
- eventControllerGetOne(id: string, options?: any): AxiosPromise<EventOutputDTO>;
11226
+ eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
10439
11227
  /**
10440
11228
  * Required permissions: `READ_EVENTS`
10441
11229
  * @summary Search
@@ -10443,7 +11231,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
10443
11231
  * @param {*} [options] Override http request option.
10444
11232
  * @throws {RequiredError}
10445
11233
  */
10446
- eventControllerSearch(eventSearchInputDTO?: EventSearchInputDTO, options?: any): AxiosPromise<EventOutputArrayDTOAPI>;
11234
+ eventControllerSearch(eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
10447
11235
  };
10448
11236
  /**
10449
11237
  * EventApi - object-oriented interface
@@ -10543,14 +11331,14 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
10543
11331
  * @param {*} [options] Override http request option.
10544
11332
  * @throws {RequiredError}
10545
11333
  */
10546
- externalAuthControllerAuthDiscord(redirect: string, options?: any): AxiosPromise<void>;
11334
+ externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
10547
11335
  /**
10548
11336
  *
10549
11337
  * @summary Auth discord return
10550
11338
  * @param {*} [options] Override http request option.
10551
11339
  * @throws {RequiredError}
10552
11340
  */
10553
- externalAuthControllerAuthDiscordReturn(options?: any): AxiosPromise<void>;
11341
+ externalAuthControllerAuthDiscordReturn(options?: RawAxiosRequestConfig): AxiosPromise<void>;
10554
11342
  };
10555
11343
  /**
10556
11344
  * ExternalAuthApi - object-oriented interface
@@ -10683,7 +11471,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
10683
11471
  * @param {*} [options] Override http request option.
10684
11472
  * @throws {RequiredError}
10685
11473
  */
10686
- functionControllerCreate(functionCreateDTO?: FunctionCreateDTO, options?: any): AxiosPromise<FunctionOutputDTOAPI>;
11474
+ functionControllerCreate(functionCreateDTO?: FunctionCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<FunctionOutputDTOAPI>;
10687
11475
  /**
10688
11476
  * Required permissions: `READ_MODULES`
10689
11477
  * @summary Get one
@@ -10691,7 +11479,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
10691
11479
  * @param {*} [options] Override http request option.
10692
11480
  * @throws {RequiredError}
10693
11481
  */
10694
- functionControllerGetOne(id: string, options?: any): AxiosPromise<FunctionOutputDTOAPI>;
11482
+ functionControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<FunctionOutputDTOAPI>;
10695
11483
  /**
10696
11484
  * Required permissions: `MANAGE_MODULES`
10697
11485
  * @summary Remove
@@ -10699,7 +11487,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
10699
11487
  * @param {*} [options] Override http request option.
10700
11488
  * @throws {RequiredError}
10701
11489
  */
10702
- functionControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
11490
+ functionControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
10703
11491
  /**
10704
11492
  * Required permissions: `READ_MODULES`
10705
11493
  * @summary Search
@@ -10707,7 +11495,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
10707
11495
  * @param {*} [options] Override http request option.
10708
11496
  * @throws {RequiredError}
10709
11497
  */
10710
- functionControllerSearch(functionSearchInputDTO?: FunctionSearchInputDTO, options?: any): AxiosPromise<FunctionOutputArrayDTOAPI>;
11498
+ functionControllerSearch(functionSearchInputDTO?: FunctionSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<FunctionOutputArrayDTOAPI>;
10711
11499
  /**
10712
11500
  * Required permissions: `MANAGE_MODULES`
10713
11501
  * @summary Update
@@ -10716,7 +11504,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
10716
11504
  * @param {*} [options] Override http request option.
10717
11505
  * @throws {RequiredError}
10718
11506
  */
10719
- functionControllerUpdate(id: string, functionUpdateDTO?: FunctionUpdateDTO, options?: any): AxiosPromise<FunctionOutputDTOAPI>;
11507
+ functionControllerUpdate(id: string, functionUpdateDTO?: FunctionUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<FunctionOutputDTOAPI>;
10720
11508
  };
10721
11509
  /**
10722
11510
  * FunctionApi - object-oriented interface
@@ -10922,6 +11710,14 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10922
11710
  * @throws {RequiredError}
10923
11711
  */
10924
11712
  gameServerControllerSendMessage: (id: string, messageSendInputDTO?: MessageSendInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11713
+ /**
11714
+ * Shuts down the gameserver. This is a \'soft\' shutdown, meaning the gameserver will be stopped gracefully. If the gameserver is not reachable, this will have no effect. Note that most hosting providers will automatically restart the gameserver after a shutdown, which makes this operation act as a \'restart\' instead. Required permissions: `MANAGE_GAMESERVERS`
11715
+ * @summary Shutdown
11716
+ * @param {string} id
11717
+ * @param {*} [options] Override http request option.
11718
+ * @throws {RequiredError}
11719
+ */
11720
+ gameServerControllerShutdown: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10925
11721
  /**
10926
11722
  * Teleport a player to a location. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
10927
11723
  * @summary Teleport player
@@ -11015,7 +11811,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
11015
11811
  * @param {*} [options] Override http request option.
11016
11812
  * @throws {RequiredError}
11017
11813
  */
11018
- gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportOutputDTOAPI>>;
11814
+ gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportStatusOutputDTOAPI>>;
11019
11815
  /**
11020
11816
  * Get all module installations for a gameserver
11021
11817
  * @summary Get installed modules
@@ -11126,6 +11922,14 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
11126
11922
  * @throws {RequiredError}
11127
11923
  */
11128
11924
  gameServerControllerSendMessage(id: string, messageSendInputDTO?: MessageSendInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
11925
+ /**
11926
+ * Shuts down the gameserver. This is a \'soft\' shutdown, meaning the gameserver will be stopped gracefully. If the gameserver is not reachable, this will have no effect. Note that most hosting providers will automatically restart the gameserver after a shutdown, which makes this operation act as a \'restart\' instead. Required permissions: `MANAGE_GAMESERVERS`
11927
+ * @summary Shutdown
11928
+ * @param {string} id
11929
+ * @param {*} [options] Override http request option.
11930
+ * @throws {RequiredError}
11931
+ */
11932
+ gameServerControllerShutdown(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11129
11933
  /**
11130
11934
  * Teleport a player to a location. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11131
11935
  * @summary Teleport player
@@ -11194,7 +11998,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11194
11998
  * @param {*} [options] Override http request option.
11195
11999
  * @throws {RequiredError}
11196
12000
  */
11197
- gameServerControllerBanPlayer(gameServerId: string, playerId: string, banPlayerInputDTO?: BanPlayerInputDTO, options?: any): AxiosPromise<APIOutput>;
12001
+ gameServerControllerBanPlayer(gameServerId: string, playerId: string, banPlayerInputDTO?: BanPlayerInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11198
12002
  /**
11199
12003
  * Create a gameserver Required permissions: `MANAGE_GAMESERVERS`
11200
12004
  * @summary Create
@@ -11202,7 +12006,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11202
12006
  * @param {*} [options] Override http request option.
11203
12007
  * @throws {RequiredError}
11204
12008
  */
11205
- gameServerControllerCreate(gameServerCreateDTO?: GameServerCreateDTO, options?: any): AxiosPromise<GameServerOutputDTOAPI>;
12009
+ gameServerControllerCreate(gameServerCreateDTO?: GameServerCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputDTOAPI>;
11206
12010
  /**
11207
12011
  * Execute a raw command on a gameserver. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11208
12012
  * @summary Execute command
@@ -11211,7 +12015,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11211
12015
  * @param {*} [options] Override http request option.
11212
12016
  * @throws {RequiredError}
11213
12017
  */
11214
- gameServerControllerExecuteCommand(id: string, commandExecuteInputDTO?: CommandExecuteInputDTO, options?: any): AxiosPromise<CommandExecuteDTOAPI>;
12018
+ gameServerControllerExecuteCommand(id: string, commandExecuteInputDTO?: CommandExecuteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CommandExecuteDTOAPI>;
11215
12019
  /**
11216
12020
  * Fetch status of an import from CSMM Required permissions: `MANAGE_GAMESERVERS`
11217
12021
  * @summary Get import
@@ -11219,7 +12023,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11219
12023
  * @param {*} [options] Override http request option.
11220
12024
  * @throws {RequiredError}
11221
12025
  */
11222
- gameServerControllerGetImport(id: string, options?: any): AxiosPromise<ImportOutputDTOAPI>;
12026
+ gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ImportStatusOutputDTOAPI>;
11223
12027
  /**
11224
12028
  * Get all module installations for a gameserver
11225
12029
  * @summary Get installed modules
@@ -11227,7 +12031,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11227
12031
  * @param {*} [options] Override http request option.
11228
12032
  * @throws {RequiredError}
11229
12033
  */
11230
- gameServerControllerGetInstalledModules(id: string, options?: any): AxiosPromise<ModuleInstallationOutputArrayDTOAPI>;
12034
+ gameServerControllerGetInstalledModules(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputArrayDTOAPI>;
11231
12035
  /**
11232
12036
  * Get a module installation by id
11233
12037
  * @summary Get module installation
@@ -11236,7 +12040,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11236
12040
  * @param {*} [options] Override http request option.
11237
12041
  * @throws {RequiredError}
11238
12042
  */
11239
- gameServerControllerGetModuleInstallation(gameServerId: string, moduleId: string, options?: any): AxiosPromise<ModuleInstallationOutputDTOAPI>;
12043
+ gameServerControllerGetModuleInstallation(gameServerId: string, moduleId: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
11240
12044
  /**
11241
12045
  * Fetch a gameserver by id
11242
12046
  * @summary Get one
@@ -11244,7 +12048,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11244
12048
  * @param {*} [options] Override http request option.
11245
12049
  * @throws {RequiredError}
11246
12050
  */
11247
- gameServerControllerGetOne(id: string, options?: any): AxiosPromise<GameServerOutputDTOAPI>;
12051
+ gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputDTOAPI>;
11248
12052
  /**
11249
12053
  * Fetch a list of players on a gameserver. Requires gameserver to be online and reachable. Required permissions: `READ_PLAYERS`
11250
12054
  * @summary Get players
@@ -11252,14 +12056,14 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11252
12056
  * @param {*} [options] Override http request option.
11253
12057
  * @throws {RequiredError}
11254
12058
  */
11255
- gameServerControllerGetPlayers(id: string, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12059
+ gameServerControllerGetPlayers(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
11256
12060
  /**
11257
12061
  * Fetch gameserver types (7dtd, Rust, ...)
11258
12062
  * @summary Get types
11259
12063
  * @param {*} [options] Override http request option.
11260
12064
  * @throws {RequiredError}
11261
12065
  */
11262
- gameServerControllerGetTypes(options?: any): AxiosPromise<GameServerTypesOutputDTOAPI>;
12066
+ gameServerControllerGetTypes(options?: RawAxiosRequestConfig): AxiosPromise<GameServerTypesOutputDTOAPI>;
11263
12067
  /**
11264
12068
  * Give an item to a player. Requires gameserver to be online and reachable. Depending on the underlying game implementation, it\'s possible that the item is dropped on the ground instead of placed directly in the player\'s inventory. Required permissions: `MANAGE_GAMESERVERS`
11265
12069
  * @summary Give item
@@ -11269,14 +12073,14 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11269
12073
  * @param {*} [options] Override http request option.
11270
12074
  * @throws {RequiredError}
11271
12075
  */
11272
- gameServerControllerGiveItem(gameServerId: string, playerId: string, giveItemInputDTO?: GiveItemInputDTO, options?: any): AxiosPromise<void>;
12076
+ gameServerControllerGiveItem(gameServerId: string, playerId: string, giveItemInputDTO?: GiveItemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11273
12077
  /**
11274
12078
  * Import a gameserver from CSMM. Required permissions: `MANAGE_GAMESERVERS`
11275
12079
  * @summary Import from csmm
11276
12080
  * @param {*} [options] Override http request option.
11277
12081
  * @throws {RequiredError}
11278
12082
  */
11279
- gameServerControllerImportFromCSMM(options?: any): AxiosPromise<ImportOutputDTOAPI>;
12083
+ gameServerControllerImportFromCSMM(options?: RawAxiosRequestConfig): AxiosPromise<ImportOutputDTOAPI>;
11280
12084
  /**
11281
12085
  * Install a module on a gameserver. If the module is already installed, it will be updated. Required permissions: `MANAGE_GAMESERVERS`
11282
12086
  * @summary Install module
@@ -11286,7 +12090,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11286
12090
  * @param {*} [options] Override http request option.
11287
12091
  * @throws {RequiredError}
11288
12092
  */
11289
- gameServerControllerInstallModule(gameServerId: string, moduleId: string, moduleInstallDTO?: ModuleInstallDTO, options?: any): AxiosPromise<ModuleInstallationOutputDTOAPI>;
12093
+ gameServerControllerInstallModule(gameServerId: string, moduleId: string, moduleInstallDTO?: ModuleInstallDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
11290
12094
  /**
11291
12095
  * Kick a player from a gameserver. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11292
12096
  * @summary Kick player
@@ -11296,7 +12100,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11296
12100
  * @param {*} [options] Override http request option.
11297
12101
  * @throws {RequiredError}
11298
12102
  */
11299
- gameServerControllerKickPlayer(gameServerId: string, playerId: string, kickPlayerInputDTO?: KickPlayerInputDTO, options?: any): AxiosPromise<APIOutput>;
12103
+ gameServerControllerKickPlayer(gameServerId: string, playerId: string, kickPlayerInputDTO?: KickPlayerInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11300
12104
  /**
11301
12105
  * List bans for a gameserver. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11302
12106
  * @summary List bans
@@ -11304,7 +12108,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11304
12108
  * @param {*} [options] Override http request option.
11305
12109
  * @throws {RequiredError}
11306
12110
  */
11307
- gameServerControllerListBans(id: string, options?: any): AxiosPromise<BanPlayerOutputDTO>;
12111
+ gameServerControllerListBans(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BanPlayerOutputDTO>;
11308
12112
  /**
11309
12113
  * Delete a gameserver Required permissions: `MANAGE_GAMESERVERS`
11310
12114
  * @summary Remove
@@ -11312,7 +12116,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11312
12116
  * @param {*} [options] Override http request option.
11313
12117
  * @throws {RequiredError}
11314
12118
  */
11315
- gameServerControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
12119
+ gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11316
12120
  /**
11317
12121
  * Fetch gameservers
11318
12122
  * @summary Search
@@ -11320,7 +12124,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11320
12124
  * @param {*} [options] Override http request option.
11321
12125
  * @throws {RequiredError}
11322
12126
  */
11323
- gameServerControllerSearch(gameServerSearchInputDTO?: GameServerSearchInputDTO, options?: any): AxiosPromise<GameServerOutputArrayDTOAPI>;
12127
+ gameServerControllerSearch(gameServerSearchInputDTO?: GameServerSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputArrayDTOAPI>;
11324
12128
  /**
11325
12129
  * Send a message in gameserver chat. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11326
12130
  * @summary Send message
@@ -11329,7 +12133,15 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11329
12133
  * @param {*} [options] Override http request option.
11330
12134
  * @throws {RequiredError}
11331
12135
  */
11332
- gameServerControllerSendMessage(id: string, messageSendInputDTO?: MessageSendInputDTO, options?: any): AxiosPromise<APIOutput>;
12136
+ gameServerControllerSendMessage(id: string, messageSendInputDTO?: MessageSendInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
12137
+ /**
12138
+ * Shuts down the gameserver. This is a \'soft\' shutdown, meaning the gameserver will be stopped gracefully. If the gameserver is not reachable, this will have no effect. Note that most hosting providers will automatically restart the gameserver after a shutdown, which makes this operation act as a \'restart\' instead. Required permissions: `MANAGE_GAMESERVERS`
12139
+ * @summary Shutdown
12140
+ * @param {string} id
12141
+ * @param {*} [options] Override http request option.
12142
+ * @throws {RequiredError}
12143
+ */
12144
+ gameServerControllerShutdown(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11333
12145
  /**
11334
12146
  * Teleport a player to a location. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11335
12147
  * @summary Teleport player
@@ -11339,7 +12151,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11339
12151
  * @param {*} [options] Override http request option.
11340
12152
  * @throws {RequiredError}
11341
12153
  */
11342
- gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: any): AxiosPromise<APIOutput>;
12154
+ gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11343
12155
  /**
11344
12156
  * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11345
12157
  * @summary Test reachability
@@ -11347,7 +12159,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11347
12159
  * @param {*} [options] Override http request option.
11348
12160
  * @throws {RequiredError}
11349
12161
  */
11350
- gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: any): AxiosPromise<GameServerTestReachabilityDTOAPI>;
12162
+ gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerTestReachabilityDTOAPI>;
11351
12163
  /**
11352
12164
  * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11353
12165
  * @summary Test reachability for id
@@ -11355,7 +12167,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11355
12167
  * @param {*} [options] Override http request option.
11356
12168
  * @throws {RequiredError}
11357
12169
  */
11358
- gameServerControllerTestReachabilityForId(id: string, options?: any): AxiosPromise<GameServerTestReachabilityDTOAPI>;
12170
+ gameServerControllerTestReachabilityForId(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GameServerTestReachabilityDTOAPI>;
11359
12171
  /**
11360
12172
  * Unban a player from a gameserver. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11361
12173
  * @summary Unban player
@@ -11364,7 +12176,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11364
12176
  * @param {*} [options] Override http request option.
11365
12177
  * @throws {RequiredError}
11366
12178
  */
11367
- gameServerControllerUnbanPlayer(gameServerId: string, playerId: string, options?: any): AxiosPromise<APIOutput>;
12179
+ gameServerControllerUnbanPlayer(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11368
12180
  /**
11369
12181
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`
11370
12182
  * @summary Uninstall module
@@ -11373,7 +12185,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11373
12185
  * @param {*} [options] Override http request option.
11374
12186
  * @throws {RequiredError}
11375
12187
  */
11376
- gameServerControllerUninstallModule(gameServerId: string, moduleId: string, options?: any): AxiosPromise<ModuleInstallationOutputDTOAPI>;
12188
+ gameServerControllerUninstallModule(gameServerId: string, moduleId: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
11377
12189
  /**
11378
12190
  * Update a gameserver Required permissions: `MANAGE_GAMESERVERS`
11379
12191
  * @summary Update
@@ -11382,7 +12194,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11382
12194
  * @param {*} [options] Override http request option.
11383
12195
  * @throws {RequiredError}
11384
12196
  */
11385
- gameServerControllerUpdate(id: string, gameServerUpdateDTO?: GameServerUpdateDTO, options?: any): AxiosPromise<GameServerOutputDTOAPI>;
12197
+ gameServerControllerUpdate(id: string, gameServerUpdateDTO?: GameServerUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputDTOAPI>;
11386
12198
  };
11387
12199
  /**
11388
12200
  * GameServerApi - object-oriented interface
@@ -11429,7 +12241,7 @@ export declare class GameServerApi extends BaseAPI {
11429
12241
  * @throws {RequiredError}
11430
12242
  * @memberof GameServerApi
11431
12243
  */
11432
- gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportOutputDTOAPI, any>>;
12244
+ gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportStatusOutputDTOAPI, any>>;
11433
12245
  /**
11434
12246
  * Get all module installations for a gameserver
11435
12247
  * @summary Get installed modules
@@ -11553,6 +12365,15 @@ export declare class GameServerApi extends BaseAPI {
11553
12365
  * @memberof GameServerApi
11554
12366
  */
11555
12367
  gameServerControllerSendMessage(id: string, messageSendInputDTO?: MessageSendInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
12368
+ /**
12369
+ * Shuts down the gameserver. This is a \'soft\' shutdown, meaning the gameserver will be stopped gracefully. If the gameserver is not reachable, this will have no effect. Note that most hosting providers will automatically restart the gameserver after a shutdown, which makes this operation act as a \'restart\' instead. Required permissions: `MANAGE_GAMESERVERS`
12370
+ * @summary Shutdown
12371
+ * @param {string} id
12372
+ * @param {*} [options] Override http request option.
12373
+ * @throws {RequiredError}
12374
+ * @memberof GameServerApi
12375
+ */
12376
+ gameServerControllerShutdown(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
11556
12377
  /**
11557
12378
  * Teleport a player to a location. Requires gameserver to be online and reachable. Required permissions: `MANAGE_GAMESERVERS`
11558
12379
  * @summary Teleport player
@@ -11755,7 +12576,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11755
12576
  * @param {*} [options] Override http request option.
11756
12577
  * @throws {RequiredError}
11757
12578
  */
11758
- hookControllerCreate(hookCreateDTO?: HookCreateDTO, options?: any): AxiosPromise<HookOutputDTOAPI>;
12579
+ hookControllerCreate(hookCreateDTO?: HookCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputDTOAPI>;
11759
12580
  /**
11760
12581
  * Required permissions: `READ_MODULES`
11761
12582
  * @summary Get executions
@@ -11765,7 +12586,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11765
12586
  * @param {*} [options] Override http request option.
11766
12587
  * @throws {RequiredError}
11767
12588
  */
11768
- hookControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: any): AxiosPromise<EventOutputArrayDTOAPI>;
12589
+ hookControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
11769
12590
  /**
11770
12591
  * Required permissions: `READ_MODULES`
11771
12592
  * @summary Get one
@@ -11773,7 +12594,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11773
12594
  * @param {*} [options] Override http request option.
11774
12595
  * @throws {RequiredError}
11775
12596
  */
11776
- hookControllerGetOne(id: string, options?: any): AxiosPromise<HookOutputDTOAPI>;
12597
+ hookControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputDTOAPI>;
11777
12598
  /**
11778
12599
  * Required permissions: `MANAGE_MODULES`
11779
12600
  * @summary Remove
@@ -11781,7 +12602,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11781
12602
  * @param {*} [options] Override http request option.
11782
12603
  * @throws {RequiredError}
11783
12604
  */
11784
- hookControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
12605
+ hookControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
11785
12606
  /**
11786
12607
  * Required permissions: `READ_MODULES`
11787
12608
  * @summary Search
@@ -11789,7 +12610,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11789
12610
  * @param {*} [options] Override http request option.
11790
12611
  * @throws {RequiredError}
11791
12612
  */
11792
- hookControllerSearch(hookSearchInputDTO?: HookSearchInputDTO, options?: any): AxiosPromise<HookOutputArrayDTOAPI>;
12613
+ hookControllerSearch(hookSearchInputDTO?: HookSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputArrayDTOAPI>;
11793
12614
  /**
11794
12615
  * Trigger a hook. This is used for testing purposes, the event will not actually be created but the hook-logic will be executed. You can pass any data you want, but it must validate against the corresponding event metadata. Eg to trigger the `chat-message` event, you must pass an object with a `message` property Required permissions: `MANAGE_MODULES`
11795
12616
  * @summary Trigger
@@ -11797,7 +12618,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11797
12618
  * @param {*} [options] Override http request option.
11798
12619
  * @throws {RequiredError}
11799
12620
  */
11800
- hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: any): AxiosPromise<void>;
12621
+ hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11801
12622
  /**
11802
12623
  * Required permissions: `MANAGE_MODULES`
11803
12624
  * @summary Update
@@ -11806,7 +12627,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
11806
12627
  * @param {*} [options] Override http request option.
11807
12628
  * @throws {RequiredError}
11808
12629
  */
11809
- hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: any): AxiosPromise<HookOutputDTOAPI>;
12630
+ hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputDTOAPI>;
11810
12631
  };
11811
12632
  /**
11812
12633
  * HookApi - object-oriented interface
@@ -11938,7 +12759,7 @@ export declare const ItemApiFactory: (configuration?: Configuration, basePath?:
11938
12759
  * @param {*} [options] Override http request option.
11939
12760
  * @throws {RequiredError}
11940
12761
  */
11941
- itemControllerFindOne(id: string, options?: any): AxiosPromise<ItemOutputDTOAPI>;
12762
+ itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputDTOAPI>;
11942
12763
  /**
11943
12764
  * Required permissions: `READ_ITEMS`
11944
12765
  * @summary Search
@@ -11946,7 +12767,7 @@ export declare const ItemApiFactory: (configuration?: Configuration, basePath?:
11946
12767
  * @param {*} [options] Override http request option.
11947
12768
  * @throws {RequiredError}
11948
12769
  */
11949
- itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: any): AxiosPromise<ItemOutputArrayDTOAPI>;
12770
+ itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputArrayDTOAPI>;
11950
12771
  };
11951
12772
  /**
11952
12773
  * ItemApi - object-oriented interface
@@ -12067,35 +12888,35 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
12067
12888
  * @param {*} [options] Override http request option.
12068
12889
  * @throws {RequiredError}
12069
12890
  */
12070
- metaGetHealth(options?: any): AxiosPromise<HealthOutputDTO>;
12891
+ metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
12071
12892
  /**
12072
12893
  *
12073
12894
  * @summary Get metrics
12074
12895
  * @param {*} [options] Override http request option.
12075
12896
  * @throws {RequiredError}
12076
12897
  */
12077
- metaGetMetrics(options?: any): AxiosPromise<void>;
12898
+ metaGetMetrics(options?: RawAxiosRequestConfig): AxiosPromise<void>;
12078
12899
  /**
12079
12900
  *
12080
12901
  * @summary Get open api
12081
12902
  * @param {*} [options] Override http request option.
12082
12903
  * @throws {RequiredError}
12083
12904
  */
12084
- metaGetOpenApi(options?: any): AxiosPromise<void>;
12905
+ metaGetOpenApi(options?: RawAxiosRequestConfig): AxiosPromise<void>;
12085
12906
  /**
12086
12907
  *
12087
12908
  * @summary Get open api html
12088
12909
  * @param {*} [options] Override http request option.
12089
12910
  * @throws {RequiredError}
12090
12911
  */
12091
- metaGetOpenApiHtml(options?: any): AxiosPromise<void>;
12912
+ metaGetOpenApiHtml(options?: RawAxiosRequestConfig): AxiosPromise<void>;
12092
12913
  /**
12093
12914
  *
12094
12915
  * @summary Get readiness
12095
12916
  * @param {*} [options] Override http request option.
12096
12917
  * @throws {RequiredError}
12097
12918
  */
12098
- metaGetReadiness(options?: any): AxiosPromise<HealthOutputDTO>;
12919
+ metaGetReadiness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
12099
12920
  };
12100
12921
  /**
12101
12922
  * MetaApi - object-oriented interface
@@ -12283,7 +13104,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12283
13104
  * @param {*} [options] Override http request option.
12284
13105
  * @throws {RequiredError}
12285
13106
  */
12286
- moduleControllerCreate(moduleCreateDTO?: ModuleCreateDTO, options?: any): AxiosPromise<ModuleOutputDTOAPI>;
13107
+ moduleControllerCreate(moduleCreateDTO?: ModuleCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputDTOAPI>;
12287
13108
  /**
12288
13109
  * Required permissions: `READ_MODULES`
12289
13110
  * @summary Export
@@ -12291,7 +13112,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12291
13112
  * @param {*} [options] Override http request option.
12292
13113
  * @throws {RequiredError}
12293
13114
  */
12294
- moduleControllerExport(id: string, options?: any): AxiosPromise<ModuleExportDTOAPI>;
13115
+ moduleControllerExport(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleExportDTOAPI>;
12295
13116
  /**
12296
13117
  * Required permissions: `READ_MODULES`
12297
13118
  * @summary Get one
@@ -12299,7 +13120,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12299
13120
  * @param {*} [options] Override http request option.
12300
13121
  * @throws {RequiredError}
12301
13122
  */
12302
- moduleControllerGetOne(id: string, options?: any): AxiosPromise<ModuleOutputDTOAPI>;
13123
+ moduleControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputDTOAPI>;
12303
13124
  /**
12304
13125
  * Required permissions: `MANAGE_MODULES`
12305
13126
  * @summary Import
@@ -12307,7 +13128,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12307
13128
  * @param {*} [options] Override http request option.
12308
13129
  * @throws {RequiredError}
12309
13130
  */
12310
- moduleControllerImport(builtinModule?: BuiltinModule, options?: any): AxiosPromise<void>;
13131
+ moduleControllerImport(builtinModule?: BuiltinModule, options?: RawAxiosRequestConfig): AxiosPromise<void>;
12311
13132
  /**
12312
13133
  * Required permissions: `MANAGE_MODULES`
12313
13134
  * @summary Remove
@@ -12315,7 +13136,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12315
13136
  * @param {*} [options] Override http request option.
12316
13137
  * @throws {RequiredError}
12317
13138
  */
12318
- moduleControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
13139
+ moduleControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
12319
13140
  /**
12320
13141
  * Required permissions: `READ_MODULES`
12321
13142
  * @summary Search
@@ -12323,7 +13144,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12323
13144
  * @param {*} [options] Override http request option.
12324
13145
  * @throws {RequiredError}
12325
13146
  */
12326
- moduleControllerSearch(moduleSearchInputDTO?: ModuleSearchInputDTO, options?: any): AxiosPromise<ModuleOutputArrayDTOAPI>;
13147
+ moduleControllerSearch(moduleSearchInputDTO?: ModuleSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputArrayDTOAPI>;
12327
13148
  /**
12328
13149
  * Required permissions: `MANAGE_MODULES`
12329
13150
  * @summary Update
@@ -12332,7 +13153,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
12332
13153
  * @param {*} [options] Override http request option.
12333
13154
  * @throws {RequiredError}
12334
13155
  */
12335
- moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: any): AxiosPromise<ModuleOutputDTOAPI>;
13156
+ moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputDTOAPI>;
12336
13157
  };
12337
13158
  /**
12338
13159
  * ModuleApi - object-oriented interface
@@ -12518,14 +13339,14 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
12518
13339
  * @param {*} [options] Override http request option.
12519
13340
  * @throws {RequiredError}
12520
13341
  */
12521
- playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: any): AxiosPromise<APIOutput>;
13342
+ playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
12522
13343
  /**
12523
13344
  * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.
12524
13345
  * @summary Get current player
12525
13346
  * @param {*} [options] Override http request option.
12526
13347
  * @throws {RequiredError}
12527
13348
  */
12528
- playerControllerGetMe(options?: any): AxiosPromise<PlayerMeOutputDTO>;
13349
+ playerControllerGetMe(options?: RawAxiosRequestConfig): AxiosPromise<PlayerMeOutputDTO>;
12529
13350
  /**
12530
13351
  * Required permissions: `READ_PLAYERS`
12531
13352
  * @summary Get one
@@ -12533,7 +13354,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
12533
13354
  * @param {*} [options] Override http request option.
12534
13355
  * @throws {RequiredError}
12535
13356
  */
12536
- playerControllerGetOne(id: string, options?: any): AxiosPromise<PlayerOutputWithRolesDTOAPI>;
13357
+ playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOutputWithRolesDTOAPI>;
12537
13358
  /**
12538
13359
  * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`
12539
13360
  * @summary Remove role
@@ -12543,7 +13364,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
12543
13364
  * @param {*} [options] Override http request option.
12544
13365
  * @throws {RequiredError}
12545
13366
  */
12546
- playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: any): AxiosPromise<APIOutput>;
13367
+ playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
12547
13368
  /**
12548
13369
  * Required permissions: `READ_PLAYERS`
12549
13370
  * @summary Search
@@ -12551,7 +13372,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
12551
13372
  * @param {*} [options] Override http request option.
12552
13373
  * @throws {RequiredError}
12553
13374
  */
12554
- playerControllerSearch(playerSearchInputDTO?: PlayerSearchInputDTO, options?: any): AxiosPromise<PlayerOutputArrayDTOAPI>;
13375
+ playerControllerSearch(playerSearchInputDTO?: PlayerSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOutputArrayDTOAPI>;
12555
13376
  };
12556
13377
  /**
12557
13378
  * PlayerApi - object-oriented interface
@@ -12751,7 +13572,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12751
13572
  * @param {*} [options] Override http request option.
12752
13573
  * @throws {RequiredError}
12753
13574
  */
12754
- playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
13575
+ playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12755
13576
  /**
12756
13577
  * Required permissions: `MANAGE_PLAYERS`
12757
13578
  * @summary Deduct currency
@@ -12761,7 +13582,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12761
13582
  * @param {*} [options] Override http request option.
12762
13583
  * @throws {RequiredError}
12763
13584
  */
12764
- playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
13585
+ playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12765
13586
  /**
12766
13587
  * Required permissions: `READ_PLAYERS`
12767
13588
  * @summary Get one
@@ -12770,7 +13591,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12770
13591
  * @param {*} [options] Override http request option.
12771
13592
  * @throws {RequiredError}
12772
13593
  */
12773
- playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
13594
+ playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12774
13595
  /**
12775
13596
  * Required permissions: `READ_PLAYERS`
12776
13597
  * @summary Search
@@ -12778,7 +13599,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12778
13599
  * @param {*} [options] Override http request option.
12779
13600
  * @throws {RequiredError}
12780
13601
  */
12781
- playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: any): AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>;
13602
+ playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>;
12782
13603
  /**
12783
13604
  * Required permissions: `MANAGE_PLAYERS`
12784
13605
  * @summary Set currency
@@ -12788,7 +13609,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12788
13609
  * @param {*} [options] Override http request option.
12789
13610
  * @throws {RequiredError}
12790
13611
  */
12791
- playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
13612
+ playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12792
13613
  /**
12793
13614
  * Required permissions: `MANAGE_PLAYERS`
12794
13615
  * @summary Transact between players
@@ -12799,7 +13620,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
12799
13620
  * @param {*} [options] Override http request option.
12800
13621
  * @throws {RequiredError}
12801
13622
  */
12802
- playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
13623
+ playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
12803
13624
  };
12804
13625
  /**
12805
13626
  * PlayerOnGameServerApi - object-oriented interface
@@ -12886,17 +13707,6 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
12886
13707
  * @throws {RequiredError}
12887
13708
  */
12888
13709
  roleControllerCreate: (roleCreateInputDTO?: RoleCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12889
- /**
12890
- * Required permissions: `READ_ROLES`, `READ_PLAYERS`, `READ_USERS`
12891
- * @summary Get members
12892
- * @param {string} id
12893
- * @param {string} [gameServerId]
12894
- * @param {number} [page]
12895
- * @param {number} [limit]
12896
- * @param {*} [options] Override http request option.
12897
- * @throws {RequiredError}
12898
- */
12899
- roleControllerGetMembers: (id: string, gameServerId?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12900
13710
  /**
12901
13711
  * Required permissions: `READ_ROLES`
12902
13712
  * @summary Get one
@@ -12951,17 +13761,6 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
12951
13761
  * @throws {RequiredError}
12952
13762
  */
12953
13763
  roleControllerCreate(roleCreateInputDTO?: RoleCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleOutputDTOAPI>>;
12954
- /**
12955
- * Required permissions: `READ_ROLES`, `READ_PLAYERS`, `READ_USERS`
12956
- * @summary Get members
12957
- * @param {string} id
12958
- * @param {string} [gameServerId]
12959
- * @param {number} [page]
12960
- * @param {number} [limit]
12961
- * @param {*} [options] Override http request option.
12962
- * @throws {RequiredError}
12963
- */
12964
- roleControllerGetMembers(id: string, gameServerId?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleMembersOutputDTOAPI>>;
12965
13764
  /**
12966
13765
  * Required permissions: `READ_ROLES`
12967
13766
  * @summary Get one
@@ -13015,18 +13814,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
13015
13814
  * @param {*} [options] Override http request option.
13016
13815
  * @throws {RequiredError}
13017
13816
  */
13018
- roleControllerCreate(roleCreateInputDTO?: RoleCreateInputDTO, options?: any): AxiosPromise<RoleOutputDTOAPI>;
13019
- /**
13020
- * Required permissions: `READ_ROLES`, `READ_PLAYERS`, `READ_USERS`
13021
- * @summary Get members
13022
- * @param {string} id
13023
- * @param {string} [gameServerId]
13024
- * @param {number} [page]
13025
- * @param {number} [limit]
13026
- * @param {*} [options] Override http request option.
13027
- * @throws {RequiredError}
13028
- */
13029
- roleControllerGetMembers(id: string, gameServerId?: string, page?: number, limit?: number, options?: any): AxiosPromise<RoleMembersOutputDTOAPI>;
13817
+ roleControllerCreate(roleCreateInputDTO?: RoleCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputDTOAPI>;
13030
13818
  /**
13031
13819
  * Required permissions: `READ_ROLES`
13032
13820
  * @summary Get one
@@ -13034,14 +13822,14 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
13034
13822
  * @param {*} [options] Override http request option.
13035
13823
  * @throws {RequiredError}
13036
13824
  */
13037
- roleControllerGetOne(id: string, options?: any): AxiosPromise<RoleOutputDTOAPI>;
13825
+ roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputDTOAPI>;
13038
13826
  /**
13039
13827
  *
13040
13828
  * @summary Get permissions
13041
13829
  * @param {*} [options] Override http request option.
13042
13830
  * @throws {RequiredError}
13043
13831
  */
13044
- roleControllerGetPermissions(options?: any): AxiosPromise<PermissionOutputDTOAPI>;
13832
+ roleControllerGetPermissions(options?: RawAxiosRequestConfig): AxiosPromise<PermissionOutputDTOAPI>;
13045
13833
  /**
13046
13834
  * Required permissions: `MANAGE_ROLES`
13047
13835
  * @summary Remove
@@ -13049,7 +13837,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
13049
13837
  * @param {*} [options] Override http request option.
13050
13838
  * @throws {RequiredError}
13051
13839
  */
13052
- roleControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
13840
+ roleControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
13053
13841
  /**
13054
13842
  * Required permissions: `READ_ROLES`
13055
13843
  * @summary Search
@@ -13057,7 +13845,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
13057
13845
  * @param {*} [options] Override http request option.
13058
13846
  * @throws {RequiredError}
13059
13847
  */
13060
- roleControllerSearch(roleSearchInputDTO?: RoleSearchInputDTO, options?: any): AxiosPromise<RoleOutputArrayDTOAPI>;
13848
+ roleControllerSearch(roleSearchInputDTO?: RoleSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputArrayDTOAPI>;
13061
13849
  /**
13062
13850
  * Required permissions: `MANAGE_ROLES`
13063
13851
  * @summary Update
@@ -13066,7 +13854,7 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
13066
13854
  * @param {*} [options] Override http request option.
13067
13855
  * @throws {RequiredError}
13068
13856
  */
13069
- roleControllerUpdate(id: string, roleUpdateInputDTO?: RoleUpdateInputDTO, options?: any): AxiosPromise<RoleOutputDTOAPI>;
13857
+ roleControllerUpdate(id: string, roleUpdateInputDTO?: RoleUpdateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputDTOAPI>;
13070
13858
  };
13071
13859
  /**
13072
13860
  * RoleApi - object-oriented interface
@@ -13084,18 +13872,6 @@ export declare class RoleApi extends BaseAPI {
13084
13872
  * @memberof RoleApi
13085
13873
  */
13086
13874
  roleControllerCreate(roleCreateInputDTO?: RoleCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleOutputDTOAPI, any>>;
13087
- /**
13088
- * Required permissions: `READ_ROLES`, `READ_PLAYERS`, `READ_USERS`
13089
- * @summary Get members
13090
- * @param {string} id
13091
- * @param {string} [gameServerId]
13092
- * @param {number} [page]
13093
- * @param {number} [limit]
13094
- * @param {*} [options] Override http request option.
13095
- * @throws {RequiredError}
13096
- * @memberof RoleApi
13097
- */
13098
- roleControllerGetMembers(id: string, gameServerId?: string, page?: number, limit?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleMembersOutputDTOAPI, any>>;
13099
13875
  /**
13100
13876
  * Required permissions: `READ_ROLES`
13101
13877
  * @summary Get one
@@ -13239,7 +14015,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
13239
14015
  * @param {*} [options] Override http request option.
13240
14016
  * @throws {RequiredError}
13241
14017
  */
13242
- settingsControllerDelete(key: string, gameServerId?: string, options?: any): AxiosPromise<APIOutput>;
14018
+ settingsControllerDelete(key: string, gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
13243
14019
  /**
13244
14020
  *
13245
14021
  * @summary Get
@@ -13248,7 +14024,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
13248
14024
  * @param {*} [options] Override http request option.
13249
14025
  * @throws {RequiredError}
13250
14026
  */
13251
- settingsControllerGet(keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: any): AxiosPromise<SettingsOutputArrayDTOAPI>;
14027
+ settingsControllerGet(keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<SettingsOutputArrayDTOAPI>;
13252
14028
  /**
13253
14029
  *
13254
14030
  * @summary Get one
@@ -13257,7 +14033,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
13257
14033
  * @param {*} [options] Override http request option.
13258
14034
  * @throws {RequiredError}
13259
14035
  */
13260
- settingsControllerGetOne(key: string, gameServerId?: string, options?: any): AxiosPromise<SettingsOutputDTOAPI>;
14036
+ settingsControllerGetOne(key: string, gameServerId?: string, options?: RawAxiosRequestConfig): AxiosPromise<SettingsOutputDTOAPI>;
13261
14037
  /**
13262
14038
  * Required permissions: `MANAGE_SETTINGS`
13263
14039
  * @summary Set
@@ -13266,7 +14042,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
13266
14042
  * @param {*} [options] Override http request option.
13267
14043
  * @throws {RequiredError}
13268
14044
  */
13269
- settingsControllerSet(key: string, settingsSetDTO?: SettingsSetDTO, options?: any): AxiosPromise<SettingsOutputDTOAPI>;
14045
+ settingsControllerSet(key: string, settingsSetDTO?: SettingsSetDTO, options?: RawAxiosRequestConfig): AxiosPromise<SettingsOutputDTOAPI>;
13270
14046
  };
13271
14047
  /**
13272
14048
  * SettingsApi - object-oriented interface
@@ -13324,6 +14100,7 @@ export declare const SettingsControllerGetKeysEnum: {
13324
14100
  readonly ServerChatName: "serverChatName";
13325
14101
  readonly EconomyEnabled: "economyEnabled";
13326
14102
  readonly CurrencyName: "currencyName";
14103
+ readonly DeveloperMode: "developerMode";
13327
14104
  };
13328
14105
  export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
13329
14106
  /**
@@ -13432,7 +14209,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
13432
14209
  * @param {*} [options] Override http request option.
13433
14210
  * @throws {RequiredError}
13434
14211
  */
13435
- shopListingControllerCreate(shopListingCreateDTO?: ShopListingCreateDTO, options?: any): AxiosPromise<ShopListingOutputDTOAPI>;
14212
+ shopListingControllerCreate(shopListingCreateDTO?: ShopListingCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopListingOutputDTOAPI>;
13436
14213
  /**
13437
14214
  * Required permissions: `MANAGE_SHOP_LISTINGS`
13438
14215
  * @summary Delete
@@ -13440,7 +14217,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
13440
14217
  * @param {*} [options] Override http request option.
13441
14218
  * @throws {RequiredError}
13442
14219
  */
13443
- shopListingControllerDelete(id: string, options?: any): AxiosPromise<APIOutput>;
14220
+ shopListingControllerDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
13444
14221
  /**
13445
14222
  *
13446
14223
  * @summary Get one
@@ -13448,7 +14225,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
13448
14225
  * @param {*} [options] Override http request option.
13449
14226
  * @throws {RequiredError}
13450
14227
  */
13451
- shopListingControllerGetOne(id: string, options?: any): AxiosPromise<ShopListingOutputDTOAPI>;
14228
+ shopListingControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopListingOutputDTOAPI>;
13452
14229
  /**
13453
14230
  *
13454
14231
  * @summary Search
@@ -13456,7 +14233,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
13456
14233
  * @param {*} [options] Override http request option.
13457
14234
  * @throws {RequiredError}
13458
14235
  */
13459
- shopListingControllerSearch(shopListingSearchInputDTO?: ShopListingSearchInputDTO, options?: any): AxiosPromise<ShopListingOutputArrayDTOAPI>;
14236
+ shopListingControllerSearch(shopListingSearchInputDTO?: ShopListingSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopListingOutputArrayDTOAPI>;
13460
14237
  /**
13461
14238
  * Required permissions: `MANAGE_SHOP_LISTINGS`
13462
14239
  * @summary Update
@@ -13465,7 +14242,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
13465
14242
  * @param {*} [options] Override http request option.
13466
14243
  * @throws {RequiredError}
13467
14244
  */
13468
- shopListingControllerUpdate(id: string, shopListingUpdateDTO?: ShopListingUpdateDTO, options?: any): AxiosPromise<ShopListingOutputDTOAPI>;
14245
+ shopListingControllerUpdate(id: string, shopListingUpdateDTO?: ShopListingUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopListingOutputDTOAPI>;
13469
14246
  };
13470
14247
  /**
13471
14248
  * ShopListingApi - object-oriented interface
@@ -13625,7 +14402,7 @@ export declare const ShopOrderApiFactory: (configuration?: Configuration, basePa
13625
14402
  * @param {*} [options] Override http request option.
13626
14403
  * @throws {RequiredError}
13627
14404
  */
13628
- shopOrderControllerCancel(id: string, options?: any): AxiosPromise<ShopOrderOutputDTOAPI>;
14405
+ shopOrderControllerCancel(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI>;
13629
14406
  /**
13630
14407
  * Claiming an order will mark it as completed and give the user the item in-game
13631
14408
  * @summary Claim an order
@@ -13633,7 +14410,7 @@ export declare const ShopOrderApiFactory: (configuration?: Configuration, basePa
13633
14410
  * @param {*} [options] Override http request option.
13634
14411
  * @throws {RequiredError}
13635
14412
  */
13636
- shopOrderControllerClaim(id: string, options?: any): AxiosPromise<ShopOrderOutputDTOAPI>;
14413
+ shopOrderControllerClaim(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI>;
13637
14414
  /**
13638
14415
  *
13639
14416
  * @summary Create
@@ -13641,7 +14418,7 @@ export declare const ShopOrderApiFactory: (configuration?: Configuration, basePa
13641
14418
  * @param {*} [options] Override http request option.
13642
14419
  * @throws {RequiredError}
13643
14420
  */
13644
- shopOrderControllerCreate(shopOrderCreateDTO?: ShopOrderCreateDTO, options?: any): AxiosPromise<ShopOrderOutputDTOAPI>;
14421
+ shopOrderControllerCreate(shopOrderCreateDTO?: ShopOrderCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI>;
13645
14422
  /**
13646
14423
  * Get an order by its ID. This endpoint only returns orders that belong to the caller. When the caller has permission to view all orders, they can get any order.
13647
14424
  * @summary Get order by ID
@@ -13649,7 +14426,7 @@ export declare const ShopOrderApiFactory: (configuration?: Configuration, basePa
13649
14426
  * @param {*} [options] Override http request option.
13650
14427
  * @throws {RequiredError}
13651
14428
  */
13652
- shopOrderControllerGetOne(id: string, options?: any): AxiosPromise<ShopOrderOutputDTOAPI>;
14429
+ shopOrderControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputDTOAPI>;
13653
14430
  /**
13654
14431
  * Search for orders. By default, this endpoint only returns your own orders. When the caller has permission to view all orders, they can search for all orders.
13655
14432
  * @summary Search orders
@@ -13657,7 +14434,7 @@ export declare const ShopOrderApiFactory: (configuration?: Configuration, basePa
13657
14434
  * @param {*} [options] Override http request option.
13658
14435
  * @throws {RequiredError}
13659
14436
  */
13660
- shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: any): AxiosPromise<ShopOrderOutputArrayDTOAPI>;
14437
+ shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopOrderOutputArrayDTOAPI>;
13661
14438
  };
13662
14439
  /**
13663
14440
  * ShopOrderApi - object-oriented interface
@@ -13729,17 +14506,25 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13729
14506
  * @throws {RequiredError}
13730
14507
  */
13731
14508
  statsControllerGetActivityStats: (timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14509
+ /**
14510
+ * Calculates how many players are from each country. Returns a count per country (ISO3166). Required permissions: `READ_PLAYERS`
14511
+ * @summary Get statistics about the countries of the players
14512
+ * @param {Array<string>} [gameServerId]
14513
+ * @param {*} [options] Override http request option.
14514
+ * @throws {RequiredError}
14515
+ */
14516
+ statsControllerGetCountryStats: (gameServerId?: Array<string>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13732
14517
  /**
13733
14518
  * Required permissions: `READ_PLAYERS`
13734
14519
  * @summary Get currency stats
13735
14520
  * @param {string} gameServerId
13736
- * @param {string} playerId
14521
+ * @param {string} [playerId]
13737
14522
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
13738
14523
  * @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
13739
14524
  * @param {*} [options] Override http request option.
13740
14525
  * @throws {RequiredError}
13741
14526
  */
13742
- statsControllerGetCurrencyStats: (gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
14527
+ statsControllerGetCurrencyStats: (gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13743
14528
  /**
13744
14529
  * Calculates how many times an event type has occured over `bucketStep` time. Supports different filters and can return multiple series at a time. Required permissions: `READ_PLAYERS`
13745
14530
  * @summary Get event count over time
@@ -13805,17 +14590,25 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13805
14590
  * @throws {RequiredError}
13806
14591
  */
13807
14592
  statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
14593
+ /**
14594
+ * Calculates how many players are from each country. Returns a count per country (ISO3166). Required permissions: `READ_PLAYERS`
14595
+ * @summary Get statistics about the countries of the players
14596
+ * @param {Array<string>} [gameServerId]
14597
+ * @param {*} [options] Override http request option.
14598
+ * @throws {RequiredError}
14599
+ */
14600
+ statsControllerGetCountryStats(gameServerId?: Array<string>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13808
14601
  /**
13809
14602
  * Required permissions: `READ_PLAYERS`
13810
14603
  * @summary Get currency stats
13811
14604
  * @param {string} gameServerId
13812
- * @param {string} playerId
14605
+ * @param {string} [playerId]
13813
14606
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
13814
14607
  * @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
13815
14608
  * @param {*} [options] Override http request option.
13816
14609
  * @throws {RequiredError}
13817
14610
  */
13818
- statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
14611
+ statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13819
14612
  /**
13820
14613
  * Calculates how many times an event type has occured over `bucketStep` time. Supports different filters and can return multiple series at a time. Required permissions: `READ_PLAYERS`
13821
14614
  * @summary Get event count over time
@@ -13880,18 +14673,26 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13880
14673
  * @param {*} [options] Override http request option.
13881
14674
  * @throws {RequiredError}
13882
14675
  */
13883
- statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14676
+ statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
14677
+ /**
14678
+ * Calculates how many players are from each country. Returns a count per country (ISO3166). Required permissions: `READ_PLAYERS`
14679
+ * @summary Get statistics about the countries of the players
14680
+ * @param {Array<string>} [gameServerId]
14681
+ * @param {*} [options] Override http request option.
14682
+ * @throws {RequiredError}
14683
+ */
14684
+ statsControllerGetCountryStats(gameServerId?: Array<string>, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13884
14685
  /**
13885
14686
  * Required permissions: `READ_PLAYERS`
13886
14687
  * @summary Get currency stats
13887
14688
  * @param {string} gameServerId
13888
- * @param {string} playerId
14689
+ * @param {string} [playerId]
13889
14690
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
13890
14691
  * @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
13891
14692
  * @param {*} [options] Override http request option.
13892
14693
  * @throws {RequiredError}
13893
14694
  */
13894
- statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14695
+ statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13895
14696
  /**
13896
14697
  * Calculates how many times an event type has occured over `bucketStep` time. Supports different filters and can return multiple series at a time. Required permissions: `READ_PLAYERS`
13897
14698
  * @summary Get event count over time
@@ -13907,7 +14708,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13907
14708
  * @param {*} [options] Override http request option.
13908
14709
  * @throws {RequiredError}
13909
14710
  */
13910
- statsControllerGetEventsCount(eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14711
+ statsControllerGetEventsCount(eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13911
14712
  /**
13912
14713
  * The roundtrip time for reachability tests between Takaro and the game server
13913
14714
  * @summary Get latency stats
@@ -13917,7 +14718,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13917
14718
  * @param {*} [options] Override http request option.
13918
14719
  * @throws {RequiredError}
13919
14720
  */
13920
- statsControllerGetLatencyStats(gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14721
+ statsControllerGetLatencyStats(gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13921
14722
  /**
13922
14723
  * Required permissions: `READ_PLAYERS`
13923
14724
  * @summary Get ping stats
@@ -13928,7 +14729,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13928
14729
  * @param {*} [options] Override http request option.
13929
14730
  * @throws {RequiredError}
13930
14731
  */
13931
- statsControllerGetPingStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14732
+ statsControllerGetPingStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13932
14733
  /**
13933
14734
  * Required permissions: `READ_PLAYERS`
13934
14735
  * @summary Get player online stats
@@ -13938,7 +14739,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13938
14739
  * @param {*} [options] Override http request option.
13939
14740
  * @throws {RequiredError}
13940
14741
  */
13941
- statsControllerGetPlayerOnlineStats(gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
14742
+ statsControllerGetPlayerOnlineStats(gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
13942
14743
  };
13943
14744
  /**
13944
14745
  * StatsApi - object-oriented interface
@@ -13960,18 +14761,27 @@ export declare class StatsApi extends BaseAPI {
13960
14761
  * @memberof StatsApi
13961
14762
  */
13962
14763
  statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
14764
+ /**
14765
+ * Calculates how many players are from each country. Returns a count per country (ISO3166). Required permissions: `READ_PLAYERS`
14766
+ * @summary Get statistics about the countries of the players
14767
+ * @param {Array<string>} [gameServerId]
14768
+ * @param {*} [options] Override http request option.
14769
+ * @throws {RequiredError}
14770
+ * @memberof StatsApi
14771
+ */
14772
+ statsControllerGetCountryStats(gameServerId?: Array<string>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13963
14773
  /**
13964
14774
  * Required permissions: `READ_PLAYERS`
13965
14775
  * @summary Get currency stats
13966
14776
  * @param {string} gameServerId
13967
- * @param {string} playerId
14777
+ * @param {string} [playerId]
13968
14778
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
13969
14779
  * @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
13970
14780
  * @param {*} [options] Override http request option.
13971
14781
  * @throws {RequiredError}
13972
14782
  * @memberof StatsApi
13973
14783
  */
13974
- statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
14784
+ statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13975
14785
  /**
13976
14786
  * Calculates how many times an event type has occured over `bucketStep` time. Supports different filters and can return multiple series at a time. Required permissions: `READ_PLAYERS`
13977
14787
  * @summary Get event count over time
@@ -14351,7 +15161,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14351
15161
  * @param {*} [options] Override http request option.
14352
15162
  * @throws {RequiredError}
14353
15163
  */
14354
- userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: any): AxiosPromise<APIOutput>;
15164
+ userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14355
15165
  /**
14356
15166
  * Required permissions: `MANAGE_USERS`
14357
15167
  * @summary Create
@@ -14359,14 +15169,14 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14359
15169
  * @param {*} [options] Override http request option.
14360
15170
  * @throws {RequiredError}
14361
15171
  */
14362
- userControllerCreate(userCreateInputDTO?: UserCreateInputDTO, options?: any): AxiosPromise<UserOutputDTOAPI>;
15172
+ userControllerCreate(userCreateInputDTO?: UserCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
14363
15173
  /**
14364
15174
  * Unset the selected domain for the user, this will clear the domain cookie. On the next request, the backend will set this again.
14365
15175
  * @summary Unset the selected domain for the user
14366
15176
  * @param {*} [options] Override http request option.
14367
15177
  * @throws {RequiredError}
14368
15178
  */
14369
- userControllerDeleteSelectedDomainCookie(options?: any): AxiosPromise<void>;
15179
+ userControllerDeleteSelectedDomainCookie(options?: RawAxiosRequestConfig): AxiosPromise<void>;
14370
15180
  /**
14371
15181
  * Required permissions: `READ_USERS`
14372
15182
  * @summary Get one
@@ -14374,7 +15184,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14374
15184
  * @param {*} [options] Override http request option.
14375
15185
  * @throws {RequiredError}
14376
15186
  */
14377
- userControllerGetOne(id: string, options?: any): AxiosPromise<UserOutputDTOAPI>;
15187
+ userControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
14378
15188
  /**
14379
15189
  * Required permissions: `MANAGE_USERS`
14380
15190
  * @summary Invite
@@ -14382,7 +15192,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14382
15192
  * @param {*} [options] Override http request option.
14383
15193
  * @throws {RequiredError}
14384
15194
  */
14385
- userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: any): AxiosPromise<UserOutputDTOAPI>;
15195
+ userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
14386
15196
  /**
14387
15197
  * Link your player profile to Takaro, allowing web access for things like shop and stats. To get the code, use the /link command in the game.
14388
15198
  * @summary Link player profile
@@ -14390,7 +15200,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14390
15200
  * @param {*} [options] Override http request option.
14391
15201
  * @throws {RequiredError}
14392
15202
  */
14393
- userControllerLinkPlayerProfile(linkPlayerUnauthedInputDTO?: LinkPlayerUnauthedInputDTO, options?: any): AxiosPromise<void>;
15203
+ userControllerLinkPlayerProfile(linkPlayerUnauthedInputDTO?: LinkPlayerUnauthedInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
14394
15204
  /**
14395
15205
  *
14396
15206
  * @summary Login
@@ -14398,21 +15208,21 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14398
15208
  * @param {*} [options] Override http request option.
14399
15209
  * @throws {RequiredError}
14400
15210
  */
14401
- userControllerLogin(loginDTO?: LoginDTO, options?: any): AxiosPromise<LoginOutputDTOAPI>;
15211
+ userControllerLogin(loginDTO?: LoginDTO, options?: RawAxiosRequestConfig): AxiosPromise<LoginOutputDTOAPI>;
14402
15212
  /**
14403
15213
  *
14404
15214
  * @summary Logout
14405
15215
  * @param {*} [options] Override http request option.
14406
15216
  * @throws {RequiredError}
14407
15217
  */
14408
- userControllerLogout(options?: any): AxiosPromise<APIOutput>;
15218
+ userControllerLogout(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14409
15219
  /**
14410
15220
  * Get the current user and the domains that the user has access to. Note that you can only make requests in the scope of a single domain. In order to switch the domain, you need to use the domain selection endpoints
14411
15221
  * @summary Get the current logged in user
14412
15222
  * @param {*} [options] Override http request option.
14413
15223
  * @throws {RequiredError}
14414
15224
  */
14415
- userControllerMe(options?: any): AxiosPromise<MeOutoutDTOAPI>;
15225
+ userControllerMe(options?: RawAxiosRequestConfig): AxiosPromise<MeOutoutDTOAPI>;
14416
15226
  /**
14417
15227
  * Required permissions: `MANAGE_USERS`
14418
15228
  * @summary Remove
@@ -14420,7 +15230,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14420
15230
  * @param {*} [options] Override http request option.
14421
15231
  * @throws {RequiredError}
14422
15232
  */
14423
- userControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
15233
+ userControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14424
15234
  /**
14425
15235
  * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`
14426
15236
  * @summary Remove role
@@ -14429,7 +15239,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14429
15239
  * @param {*} [options] Override http request option.
14430
15240
  * @throws {RequiredError}
14431
15241
  */
14432
- userControllerRemoveRole(id: string, roleId: string, options?: any): AxiosPromise<APIOutput>;
15242
+ userControllerRemoveRole(id: string, roleId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14433
15243
  /**
14434
15244
  * Required permissions: `READ_USERS`
14435
15245
  * @summary Search
@@ -14437,7 +15247,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14437
15247
  * @param {*} [options] Override http request option.
14438
15248
  * @throws {RequiredError}
14439
15249
  */
14440
- userControllerSearch(userSearchInputDTO?: UserSearchInputDTO, options?: any): AxiosPromise<UserOutputArrayDTOAPI>;
15250
+ userControllerSearch(userSearchInputDTO?: UserSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputArrayDTOAPI>;
14441
15251
  /**
14442
15252
  * One user can have multiple domains, this endpoint is a helper to set the selected domain for the user
14443
15253
  * @summary Set the selected domain for the user
@@ -14445,7 +15255,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14445
15255
  * @param {*} [options] Override http request option.
14446
15256
  * @throws {RequiredError}
14447
15257
  */
14448
- userControllerSetSelectedDomain(domainId: string, options?: any): AxiosPromise<void>;
15258
+ userControllerSetSelectedDomain(domainId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
14449
15259
  /**
14450
15260
  * Required permissions: `MANAGE_USERS`
14451
15261
  * @summary Update
@@ -14454,7 +15264,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
14454
15264
  * @param {*} [options] Override http request option.
14455
15265
  * @throws {RequiredError}
14456
15266
  */
14457
- userControllerUpdate(id: string, userUpdateDTO?: UserUpdateDTO, options?: any): AxiosPromise<UserOutputDTOAPI>;
15267
+ userControllerUpdate(id: string, userUpdateDTO?: UserUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
14458
15268
  };
14459
15269
  /**
14460
15270
  * UserApi - object-oriented interface
@@ -14697,7 +15507,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
14697
15507
  * @param {*} [options] Override http request option.
14698
15508
  * @throws {RequiredError}
14699
15509
  */
14700
- variableControllerCreate(variableCreateDTO?: VariableCreateDTO, options?: any): AxiosPromise<VariableOutputDTOAPI>;
15510
+ variableControllerCreate(variableCreateDTO?: VariableCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputDTOAPI>;
14701
15511
  /**
14702
15512
  * Required permissions: `MANAGE_VARIABLES`
14703
15513
  * @summary Delete
@@ -14705,7 +15515,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
14705
15515
  * @param {*} [options] Override http request option.
14706
15516
  * @throws {RequiredError}
14707
15517
  */
14708
- variableControllerDelete(id: string, options?: any): AxiosPromise<APIOutput>;
15518
+ variableControllerDelete(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
14709
15519
  /**
14710
15520
  * Required permissions: `READ_VARIABLES`
14711
15521
  * @summary Find one
@@ -14713,7 +15523,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
14713
15523
  * @param {*} [options] Override http request option.
14714
15524
  * @throws {RequiredError}
14715
15525
  */
14716
- variableControllerFindOne(id: string, options?: any): AxiosPromise<VariableOutputDTOAPI>;
15526
+ variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputDTOAPI>;
14717
15527
  /**
14718
15528
  * Required permissions: `READ_VARIABLES`
14719
15529
  * @summary Search
@@ -14721,7 +15531,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
14721
15531
  * @param {*} [options] Override http request option.
14722
15532
  * @throws {RequiredError}
14723
15533
  */
14724
- variableControllerSearch(variableSearchInputDTO?: VariableSearchInputDTO, options?: any): AxiosPromise<VariableOutputArrayDTOAPI>;
15534
+ variableControllerSearch(variableSearchInputDTO?: VariableSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputArrayDTOAPI>;
14725
15535
  /**
14726
15536
  * Required permissions: `MANAGE_VARIABLES`
14727
15537
  * @summary Update
@@ -14730,7 +15540,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
14730
15540
  * @param {*} [options] Override http request option.
14731
15541
  * @throws {RequiredError}
14732
15542
  */
14733
- variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: any): AxiosPromise<VariableOutputDTOAPI>;
15543
+ variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputDTOAPI>;
14734
15544
  };
14735
15545
  /**
14736
15546
  * VariableApi - object-oriented interface