@takaro/apiclient 0.0.11 → 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.
- package/dist/generated/api.d.ts +784 -21
- package/dist/generated/api.js +448 -8
- package/dist/generated/api.js.map +1 -1
- package/dist/generated/base.d.ts +2 -2
- package/dist/generated/base.js +2 -2
- package/dist/generated/common.d.ts +2 -2
- package/dist/generated/common.js +2 -2
- package/dist/generated/configuration.d.ts +2 -2
- package/dist/generated/configuration.js +2 -2
- package/dist/generated/index.d.ts +2 -2
- package/dist/generated/index.js +2 -2
- package/dist/lib/baseClient.d.ts +1 -0
- package/dist/lib/baseClient.js +3 -2
- package/dist/lib/baseClient.js.map +1 -1
- package/dist/lib/client.d.ts +2 -1
- package/dist/lib/client.js +6 -1
- package/dist/lib/client.js.map +1 -1
- package/package.json +2 -2
- package/src/generated/api.ts +1157 -62
- package/src/generated/base.ts +2 -2
- package/src/generated/common.ts +2 -2
- package/src/generated/configuration.ts +2 -2
- package/src/generated/index.ts +2 -2
- package/src/lib/baseClient.ts +4 -2
- package/src/lib/client.ts +11 -0
package/dist/generated/api.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Takaro
|
|
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: development -
|
|
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).
|
|
@@ -87,6 +87,49 @@ export interface AllowedFilters {
|
|
|
87
87
|
*/
|
|
88
88
|
id?: Array<string>;
|
|
89
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
|
+
}
|
|
90
133
|
/**
|
|
91
134
|
*
|
|
92
135
|
* @export
|
|
@@ -95,10 +138,10 @@ export interface AllowedFilters {
|
|
|
95
138
|
export interface BanDTO {
|
|
96
139
|
/**
|
|
97
140
|
*
|
|
98
|
-
* @type {
|
|
141
|
+
* @type {IGamePlayer}
|
|
99
142
|
* @memberof BanDTO
|
|
100
143
|
*/
|
|
101
|
-
player:
|
|
144
|
+
player: IGamePlayer;
|
|
102
145
|
/**
|
|
103
146
|
*
|
|
104
147
|
* @type {string}
|
|
@@ -112,6 +155,105 @@ export interface BanDTO {
|
|
|
112
155
|
*/
|
|
113
156
|
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
114
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
|
+
}
|
|
115
257
|
/**
|
|
116
258
|
*
|
|
117
259
|
* @export
|
|
@@ -150,6 +292,177 @@ export interface BanPlayerOutputDTO {
|
|
|
150
292
|
*/
|
|
151
293
|
meta: MetadataOutput;
|
|
152
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
|
+
}
|
|
153
466
|
/**
|
|
154
467
|
*
|
|
155
468
|
* @export
|
|
@@ -806,6 +1119,19 @@ export interface CommandUpdateDTO {
|
|
|
806
1119
|
*/
|
|
807
1120
|
arguments?: Array<CommandArgumentCreateDTO>;
|
|
808
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
|
+
}
|
|
809
1135
|
/**
|
|
810
1136
|
*
|
|
811
1137
|
* @export
|
|
@@ -4022,6 +4348,37 @@ export declare const ITakaroQuerySortDirectionEnum: {
|
|
|
4022
4348
|
readonly Desc: "desc";
|
|
4023
4349
|
};
|
|
4024
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;
|
|
4363
|
+
/**
|
|
4364
|
+
*
|
|
4365
|
+
* @type {boolean}
|
|
4366
|
+
* @memberof ImportInputDTO
|
|
4367
|
+
*/
|
|
4368
|
+
players: boolean;
|
|
4369
|
+
/**
|
|
4370
|
+
*
|
|
4371
|
+
* @type {boolean}
|
|
4372
|
+
* @memberof ImportInputDTO
|
|
4373
|
+
*/
|
|
4374
|
+
currency: boolean;
|
|
4375
|
+
/**
|
|
4376
|
+
*
|
|
4377
|
+
* @type {boolean}
|
|
4378
|
+
* @memberof ImportInputDTO
|
|
4379
|
+
*/
|
|
4380
|
+
shop: boolean;
|
|
4381
|
+
}
|
|
4025
4382
|
/**
|
|
4026
4383
|
*
|
|
4027
4384
|
* @export
|
|
@@ -4054,6 +4411,56 @@ export interface ImportOutputDTOAPI {
|
|
|
4054
4411
|
*/
|
|
4055
4412
|
meta: MetadataOutput;
|
|
4056
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
|
+
}
|
|
4057
4464
|
/**
|
|
4058
4465
|
*
|
|
4059
4466
|
* @export
|
|
@@ -5123,6 +5530,37 @@ export interface NOTDOMAINSCOPEDTakaroModelDTO {
|
|
|
5123
5530
|
* @export
|
|
5124
5531
|
*/
|
|
5125
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
|
+
}
|
|
5126
5564
|
/**
|
|
5127
5565
|
*
|
|
5128
5566
|
* @export
|
|
@@ -5598,10 +6036,16 @@ export interface PlayerOnGameServerSearchInputAllowedFilters {
|
|
|
5598
6036
|
export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
|
|
5599
6037
|
/**
|
|
5600
6038
|
*
|
|
5601
|
-
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6039
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6040
|
+
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
6041
|
+
*/
|
|
6042
|
+
lastSeen?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6043
|
+
/**
|
|
6044
|
+
*
|
|
6045
|
+
* @type {number}
|
|
5602
6046
|
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
5603
6047
|
*/
|
|
5604
|
-
|
|
6048
|
+
playtimeSeconds?: number;
|
|
5605
6049
|
/**
|
|
5606
6050
|
*
|
|
5607
6051
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -5742,6 +6186,12 @@ export interface PlayerOnGameServerUpdateDTO {
|
|
|
5742
6186
|
* @memberof PlayerOnGameServerUpdateDTO
|
|
5743
6187
|
*/
|
|
5744
6188
|
online: boolean;
|
|
6189
|
+
/**
|
|
6190
|
+
*
|
|
6191
|
+
* @type {number}
|
|
6192
|
+
* @memberof PlayerOnGameServerUpdateDTO
|
|
6193
|
+
*/
|
|
6194
|
+
playtimeSeconds?: number;
|
|
5745
6195
|
}
|
|
5746
6196
|
/**
|
|
5747
6197
|
*
|
|
@@ -5840,6 +6290,12 @@ export interface PlayerOnGameserverOutputDTO {
|
|
|
5840
6290
|
* @memberof PlayerOnGameserverOutputDTO
|
|
5841
6291
|
*/
|
|
5842
6292
|
lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6293
|
+
/**
|
|
6294
|
+
*
|
|
6295
|
+
* @type {number}
|
|
6296
|
+
* @memberof PlayerOnGameserverOutputDTO
|
|
6297
|
+
*/
|
|
6298
|
+
playtimeSeconds: number;
|
|
5843
6299
|
/**
|
|
5844
6300
|
*
|
|
5845
6301
|
* @type {string}
|
|
@@ -5980,6 +6436,12 @@ export interface PlayerOnGameserverOutputWithRolesDTO {
|
|
|
5980
6436
|
* @memberof PlayerOnGameserverOutputWithRolesDTO
|
|
5981
6437
|
*/
|
|
5982
6438
|
lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6439
|
+
/**
|
|
6440
|
+
*
|
|
6441
|
+
* @type {number}
|
|
6442
|
+
* @memberof PlayerOnGameserverOutputWithRolesDTO
|
|
6443
|
+
*/
|
|
6444
|
+
playtimeSeconds: number;
|
|
5983
6445
|
}
|
|
5984
6446
|
/**
|
|
5985
6447
|
*
|
|
@@ -6078,6 +6540,12 @@ export interface PlayerOutputDTO {
|
|
|
6078
6540
|
* @memberof PlayerOutputDTO
|
|
6079
6541
|
*/
|
|
6080
6542
|
steamLevel?: number;
|
|
6543
|
+
/**
|
|
6544
|
+
*
|
|
6545
|
+
* @type {number}
|
|
6546
|
+
* @memberof PlayerOutputDTO
|
|
6547
|
+
*/
|
|
6548
|
+
playtimeSeconds: number;
|
|
6081
6549
|
/**
|
|
6082
6550
|
*
|
|
6083
6551
|
* @type {Array<PlayerOnGameserverOutputDTO>}
|
|
@@ -6230,6 +6698,12 @@ export interface PlayerOutputWithRolesDTO {
|
|
|
6230
6698
|
* @memberof PlayerOutputWithRolesDTO
|
|
6231
6699
|
*/
|
|
6232
6700
|
steamLevel?: number;
|
|
6701
|
+
/**
|
|
6702
|
+
*
|
|
6703
|
+
* @type {number}
|
|
6704
|
+
* @memberof PlayerOutputWithRolesDTO
|
|
6705
|
+
*/
|
|
6706
|
+
playtimeSeconds: number;
|
|
6233
6707
|
/**
|
|
6234
6708
|
*
|
|
6235
6709
|
* @type {Array<PlayerOnGameserverOutputDTO>}
|
|
@@ -6391,6 +6865,55 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
6391
6865
|
*/
|
|
6392
6866
|
id?: Array<string>;
|
|
6393
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;
|
|
6916
|
+
}
|
|
6394
6917
|
/**
|
|
6395
6918
|
*
|
|
6396
6919
|
* @export
|
|
@@ -6411,16 +6934,16 @@ export interface PlayerSearchInputDTO {
|
|
|
6411
6934
|
search?: PlayerSearchInputAllowedFilters;
|
|
6412
6935
|
/**
|
|
6413
6936
|
*
|
|
6414
|
-
* @type {
|
|
6937
|
+
* @type {PlayerSearchInputAllowedRangeFilter}
|
|
6415
6938
|
* @memberof PlayerSearchInputDTO
|
|
6416
6939
|
*/
|
|
6417
|
-
greaterThan?:
|
|
6940
|
+
greaterThan?: PlayerSearchInputAllowedRangeFilter;
|
|
6418
6941
|
/**
|
|
6419
6942
|
*
|
|
6420
|
-
* @type {
|
|
6943
|
+
* @type {PlayerSearchInputAllowedRangeFilter}
|
|
6421
6944
|
* @memberof PlayerSearchInputDTO
|
|
6422
6945
|
*/
|
|
6423
|
-
lessThan?:
|
|
6946
|
+
lessThan?: PlayerSearchInputAllowedRangeFilter;
|
|
6424
6947
|
/**
|
|
6425
6948
|
*
|
|
6426
6949
|
* @type {number}
|
|
@@ -6487,6 +7010,12 @@ export interface PlayerUpdateDTO {
|
|
|
6487
7010
|
* @memberof PlayerUpdateDTO
|
|
6488
7011
|
*/
|
|
6489
7012
|
epicOnlineServicesId?: string;
|
|
7013
|
+
/**
|
|
7014
|
+
*
|
|
7015
|
+
* @type {number}
|
|
7016
|
+
* @memberof PlayerUpdateDTO
|
|
7017
|
+
*/
|
|
7018
|
+
playtimeSeconds?: number;
|
|
6490
7019
|
}
|
|
6491
7020
|
/**
|
|
6492
7021
|
*
|
|
@@ -7657,6 +8186,12 @@ export interface ShopOrderSearchInputAllowedFilters {
|
|
|
7657
8186
|
* @memberof ShopOrderSearchInputAllowedFilters
|
|
7658
8187
|
*/
|
|
7659
8188
|
listingId?: Array<string>;
|
|
8189
|
+
/**
|
|
8190
|
+
*
|
|
8191
|
+
* @type {Array<string>}
|
|
8192
|
+
* @memberof ShopOrderSearchInputAllowedFilters
|
|
8193
|
+
*/
|
|
8194
|
+
gameServerId?: Array<string>;
|
|
7660
8195
|
/**
|
|
7661
8196
|
*
|
|
7662
8197
|
* @type {Array<string>}
|
|
@@ -9354,6 +9889,201 @@ export interface VariableUpdateDTO {
|
|
|
9354
9889
|
*/
|
|
9355
9890
|
moduleId?: string;
|
|
9356
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
|
+
}
|
|
9357
10087
|
/**
|
|
9358
10088
|
* CommandApi - axios parameter creator
|
|
9359
10089
|
* @export
|
|
@@ -11081,7 +11811,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
|
|
|
11081
11811
|
* @param {*} [options] Override http request option.
|
|
11082
11812
|
* @throws {RequiredError}
|
|
11083
11813
|
*/
|
|
11084
|
-
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
11814
|
+
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportStatusOutputDTOAPI>>;
|
|
11085
11815
|
/**
|
|
11086
11816
|
* Get all module installations for a gameserver
|
|
11087
11817
|
* @summary Get installed modules
|
|
@@ -11293,7 +12023,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
|
|
|
11293
12023
|
* @param {*} [options] Override http request option.
|
|
11294
12024
|
* @throws {RequiredError}
|
|
11295
12025
|
*/
|
|
11296
|
-
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
12026
|
+
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ImportStatusOutputDTOAPI>;
|
|
11297
12027
|
/**
|
|
11298
12028
|
* Get all module installations for a gameserver
|
|
11299
12029
|
* @summary Get installed modules
|
|
@@ -11511,7 +12241,7 @@ export declare class GameServerApi extends BaseAPI {
|
|
|
11511
12241
|
* @throws {RequiredError}
|
|
11512
12242
|
* @memberof GameServerApi
|
|
11513
12243
|
*/
|
|
11514
|
-
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
12244
|
+
gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportStatusOutputDTOAPI, any>>;
|
|
11515
12245
|
/**
|
|
11516
12246
|
* Get all module installations for a gameserver
|
|
11517
12247
|
* @summary Get installed modules
|
|
@@ -13776,17 +14506,25 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13776
14506
|
* @throws {RequiredError}
|
|
13777
14507
|
*/
|
|
13778
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>;
|
|
13779
14517
|
/**
|
|
13780
14518
|
* Required permissions: `READ_PLAYERS`
|
|
13781
14519
|
* @summary Get currency stats
|
|
13782
14520
|
* @param {string} gameServerId
|
|
13783
|
-
* @param {string} playerId
|
|
14521
|
+
* @param {string} [playerId]
|
|
13784
14522
|
* @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
|
|
13785
14523
|
* @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
|
|
13786
14524
|
* @param {*} [options] Override http request option.
|
|
13787
14525
|
* @throws {RequiredError}
|
|
13788
14526
|
*/
|
|
13789
|
-
statsControllerGetCurrencyStats: (gameServerId: string, playerId
|
|
14527
|
+
statsControllerGetCurrencyStats: (gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13790
14528
|
/**
|
|
13791
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`
|
|
13792
14530
|
* @summary Get event count over time
|
|
@@ -13852,17 +14590,25 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
|
|
|
13852
14590
|
* @throws {RequiredError}
|
|
13853
14591
|
*/
|
|
13854
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>>;
|
|
13855
14601
|
/**
|
|
13856
14602
|
* Required permissions: `READ_PLAYERS`
|
|
13857
14603
|
* @summary Get currency stats
|
|
13858
14604
|
* @param {string} gameServerId
|
|
13859
|
-
* @param {string} playerId
|
|
14605
|
+
* @param {string} [playerId]
|
|
13860
14606
|
* @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
|
|
13861
14607
|
* @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
|
|
13862
14608
|
* @param {*} [options] Override http request option.
|
|
13863
14609
|
* @throws {RequiredError}
|
|
13864
14610
|
*/
|
|
13865
|
-
statsControllerGetCurrencyStats(gameServerId: string, playerId
|
|
14611
|
+
statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
|
|
13866
14612
|
/**
|
|
13867
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`
|
|
13868
14614
|
* @summary Get event count over time
|
|
@@ -13928,17 +14674,25 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
13928
14674
|
* @throws {RequiredError}
|
|
13929
14675
|
*/
|
|
13930
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>;
|
|
13931
14685
|
/**
|
|
13932
14686
|
* Required permissions: `READ_PLAYERS`
|
|
13933
14687
|
* @summary Get currency stats
|
|
13934
14688
|
* @param {string} gameServerId
|
|
13935
|
-
* @param {string} playerId
|
|
14689
|
+
* @param {string} [playerId]
|
|
13936
14690
|
* @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
|
|
13937
14691
|
* @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
|
|
13938
14692
|
* @param {*} [options] Override http request option.
|
|
13939
14693
|
* @throws {RequiredError}
|
|
13940
14694
|
*/
|
|
13941
|
-
statsControllerGetCurrencyStats(gameServerId: string, playerId
|
|
14695
|
+
statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): AxiosPromise<StatsOutputDTOAPI>;
|
|
13942
14696
|
/**
|
|
13943
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`
|
|
13944
14698
|
* @summary Get event count over time
|
|
@@ -14007,18 +14761,27 @@ export declare class StatsApi extends BaseAPI {
|
|
|
14007
14761
|
* @memberof StatsApi
|
|
14008
14762
|
*/
|
|
14009
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>>;
|
|
14010
14773
|
/**
|
|
14011
14774
|
* Required permissions: `READ_PLAYERS`
|
|
14012
14775
|
* @summary Get currency stats
|
|
14013
14776
|
* @param {string} gameServerId
|
|
14014
|
-
* @param {string} playerId
|
|
14777
|
+
* @param {string} [playerId]
|
|
14015
14778
|
* @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
|
|
14016
14779
|
* @param {StatsControllerGetPingStatsStartDateParameter} [endDate]
|
|
14017
14780
|
* @param {*} [options] Override http request option.
|
|
14018
14781
|
* @throws {RequiredError}
|
|
14019
14782
|
* @memberof StatsApi
|
|
14020
14783
|
*/
|
|
14021
|
-
statsControllerGetCurrencyStats(gameServerId: string, playerId
|
|
14784
|
+
statsControllerGetCurrencyStats(gameServerId: string, playerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
|
|
14022
14785
|
/**
|
|
14023
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`
|
|
14024
14787
|
* @summary Get event count over time
|