@takaro/apiclient 0.0.5 → 0.0.7

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,9 +1,9 @@
1
1
  /**
2
- *
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: 1.0.0
6
- *
5
+ * The version of the OpenAPI document: auto-generate-api-client
6
+ * Contact: support@takaro.io
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
9
  * https://openapi-generator.tech
@@ -1288,6 +1288,12 @@ export interface DomainSearchInputAllowedFilters {
1288
1288
  * @memberof DomainSearchInputAllowedFilters
1289
1289
  */
1290
1290
  state?: Array<DomainSearchInputAllowedFiltersStateEnum>;
1291
+ /**
1292
+ *
1293
+ * @type {Array<string>}
1294
+ * @memberof DomainSearchInputAllowedFilters
1295
+ */
1296
+ externalReference?: Array<string>;
1291
1297
  }
1292
1298
  export declare const DomainSearchInputAllowedFiltersStateEnum: {
1293
1299
  readonly Active: "ACTIVE";
@@ -5055,7 +5061,6 @@ export declare const PERMISSIONS: {
5055
5061
  readonly ManageRoles: "MANAGE_ROLES";
5056
5062
  readonly ReadRoles: "READ_ROLES";
5057
5063
  readonly ManageGameservers: "MANAGE_GAMESERVERS";
5058
- readonly ReadGameservers: "READ_GAMESERVERS";
5059
5064
  readonly ReadModules: "READ_MODULES";
5060
5065
  readonly ManageModules: "MANAGE_MODULES";
5061
5066
  readonly ReadPlayers: "READ_PLAYERS";
@@ -5385,6 +5390,25 @@ export interface PlayerCreateDTO {
5385
5390
  */
5386
5391
  epicOnlineServicesId?: string;
5387
5392
  }
5393
+ /**
5394
+ *
5395
+ * @export
5396
+ * @interface PlayerMeOutputDTO
5397
+ */
5398
+ export interface PlayerMeOutputDTO {
5399
+ /**
5400
+ *
5401
+ * @type {PlayerOutputWithRolesDTO}
5402
+ * @memberof PlayerMeOutputDTO
5403
+ */
5404
+ player: PlayerOutputWithRolesDTO;
5405
+ /**
5406
+ *
5407
+ * @type {Array<PlayerOnGameserverOutputArrayDTOAPI>}
5408
+ * @memberof PlayerMeOutputDTO
5409
+ */
5410
+ pogs: Array<PlayerOnGameserverOutputArrayDTOAPI>;
5411
+ }
5388
5412
  /**
5389
5413
  *
5390
5414
  * @export
@@ -5929,6 +5953,12 @@ export interface PlayerOutputDTO {
5929
5953
  * @memberof PlayerOutputDTO
5930
5954
  */
5931
5955
  steamNumberOfVACBans?: number;
5956
+ /**
5957
+ *
5958
+ * @type {number}
5959
+ * @memberof PlayerOutputDTO
5960
+ */
5961
+ steamLevel?: number;
5932
5962
  /**
5933
5963
  *
5934
5964
  * @type {Array<PlayerOnGameserverOutputDTO>}
@@ -6075,6 +6105,12 @@ export interface PlayerOutputWithRolesDTO {
6075
6105
  * @memberof PlayerOutputWithRolesDTO
6076
6106
  */
6077
6107
  steamNumberOfVACBans?: number;
6108
+ /**
6109
+ *
6110
+ * @type {number}
6111
+ * @memberof PlayerOutputWithRolesDTO
6112
+ */
6113
+ steamLevel?: number;
6078
6114
  /**
6079
6115
  *
6080
6116
  * @type {Array<PlayerOnGameserverOutputDTO>}
@@ -7643,10 +7679,10 @@ export interface TakaroEventCommandExecuted {
7643
7679
  data: any;
7644
7680
  /**
7645
7681
  *
7646
- * @type {Array<TakaroEventFunctionResult>}
7682
+ * @type {TakaroEventFunctionResult}
7647
7683
  * @memberof TakaroEventCommandExecuted
7648
7684
  */
7649
- result: Array<TakaroEventFunctionResult>;
7685
+ result: TakaroEventFunctionResult;
7650
7686
  /**
7651
7687
  *
7652
7688
  * @type {TakaroEventCommandDetails}
@@ -7693,10 +7729,10 @@ export interface TakaroEventCronjobExecuted {
7693
7729
  data: any;
7694
7730
  /**
7695
7731
  *
7696
- * @type {Array<TakaroEventFunctionResult>}
7732
+ * @type {TakaroEventFunctionResult}
7697
7733
  * @memberof TakaroEventCronjobExecuted
7698
7734
  */
7699
- result: Array<TakaroEventFunctionResult>;
7735
+ result: TakaroEventFunctionResult;
7700
7736
  /**
7701
7737
  *
7702
7738
  * @type {TakaroEventCronjobDetails}
@@ -7831,10 +7867,10 @@ export interface TakaroEventHookExecuted {
7831
7867
  data: any;
7832
7868
  /**
7833
7869
  *
7834
- * @type {Array<TakaroEventFunctionResult>}
7870
+ * @type {TakaroEventFunctionResult}
7835
7871
  * @memberof TakaroEventHookExecuted
7836
7872
  */
7837
- result: Array<TakaroEventFunctionResult>;
7873
+ result: TakaroEventFunctionResult;
7838
7874
  /**
7839
7875
  *
7840
7876
  * @type {TakaroEventHookDetails}
@@ -10603,7 +10639,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10603
10639
  */
10604
10640
  gameServerControllerGetImport: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10605
10641
  /**
10606
- * Get all module installations for a gameserver Required permissions: `READ_GAMESERVERS`
10642
+ * Get all module installations for a gameserver
10607
10643
  * @summary Get installed modules
10608
10644
  * @param {string} id
10609
10645
  * @param {*} [options] Override http request option.
@@ -10611,7 +10647,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10611
10647
  */
10612
10648
  gameServerControllerGetInstalledModules: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10613
10649
  /**
10614
- * Get a module installation by id Required permissions: `READ_GAMESERVERS`
10650
+ * Get a module installation by id
10615
10651
  * @summary Get module installation
10616
10652
  * @param {string} gameServerId
10617
10653
  * @param {string} moduleId
@@ -10620,7 +10656,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10620
10656
  */
10621
10657
  gameServerControllerGetModuleInstallation: (gameServerId: string, moduleId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10622
10658
  /**
10623
- * Fetch a gameserver by id Required permissions: `READ_GAMESERVERS`
10659
+ * Fetch a gameserver by id
10624
10660
  * @summary Get one
10625
10661
  * @param {string} id
10626
10662
  * @param {*} [options] Override http request option.
@@ -10636,7 +10672,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10636
10672
  */
10637
10673
  gameServerControllerGetPlayers: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10638
10674
  /**
10639
- * Fetch gameserver types (7dtd, Rust, ...) Required permissions: `READ_GAMESERVERS`
10675
+ * Fetch gameserver types (7dtd, Rust, ...)
10640
10676
  * @summary Get types
10641
10677
  * @param {*} [options] Override http request option.
10642
10678
  * @throws {RequiredError}
@@ -10696,7 +10732,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10696
10732
  */
10697
10733
  gameServerControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10698
10734
  /**
10699
- * Fetch gameservers Required permissions: `READ_GAMESERVERS`
10735
+ * Fetch gameservers
10700
10736
  * @summary Search
10701
10737
  * @param {GameServerSearchInputDTO} [gameServerSearchInputDTO] GameServerSearchInputDTO
10702
10738
  * @param {*} [options] Override http request option.
@@ -10723,7 +10759,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10723
10759
  */
10724
10760
  gameServerControllerTeleportPlayer: (gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10725
10761
  /**
10726
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
10762
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
10727
10763
  * @summary Test reachability
10728
10764
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
10729
10765
  * @param {*} [options] Override http request option.
@@ -10731,7 +10767,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
10731
10767
  */
10732
10768
  gameServerControllerTestReachability: (gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10733
10769
  /**
10734
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
10770
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
10735
10771
  * @summary Test reachability for id
10736
10772
  * @param {string} id
10737
10773
  * @param {*} [options] Override http request option.
@@ -10807,7 +10843,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10807
10843
  */
10808
10844
  gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ImportOutputDTOAPI>>;
10809
10845
  /**
10810
- * Get all module installations for a gameserver Required permissions: `READ_GAMESERVERS`
10846
+ * Get all module installations for a gameserver
10811
10847
  * @summary Get installed modules
10812
10848
  * @param {string} id
10813
10849
  * @param {*} [options] Override http request option.
@@ -10815,7 +10851,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10815
10851
  */
10816
10852
  gameServerControllerGetInstalledModules(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputArrayDTOAPI>>;
10817
10853
  /**
10818
- * Get a module installation by id Required permissions: `READ_GAMESERVERS`
10854
+ * Get a module installation by id
10819
10855
  * @summary Get module installation
10820
10856
  * @param {string} gameServerId
10821
10857
  * @param {string} moduleId
@@ -10824,7 +10860,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10824
10860
  */
10825
10861
  gameServerControllerGetModuleInstallation(gameServerId: string, moduleId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputDTOAPI>>;
10826
10862
  /**
10827
- * Fetch a gameserver by id Required permissions: `READ_GAMESERVERS`
10863
+ * Fetch a gameserver by id
10828
10864
  * @summary Get one
10829
10865
  * @param {string} id
10830
10866
  * @param {*} [options] Override http request option.
@@ -10840,7 +10876,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10840
10876
  */
10841
10877
  gameServerControllerGetPlayers(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
10842
10878
  /**
10843
- * Fetch gameserver types (7dtd, Rust, ...) Required permissions: `READ_GAMESERVERS`
10879
+ * Fetch gameserver types (7dtd, Rust, ...)
10844
10880
  * @summary Get types
10845
10881
  * @param {*} [options] Override http request option.
10846
10882
  * @throws {RequiredError}
@@ -10900,7 +10936,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10900
10936
  */
10901
10937
  gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
10902
10938
  /**
10903
- * Fetch gameservers Required permissions: `READ_GAMESERVERS`
10939
+ * Fetch gameservers
10904
10940
  * @summary Search
10905
10941
  * @param {GameServerSearchInputDTO} [gameServerSearchInputDTO] GameServerSearchInputDTO
10906
10942
  * @param {*} [options] Override http request option.
@@ -10927,7 +10963,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10927
10963
  */
10928
10964
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
10929
10965
  /**
10930
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
10966
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
10931
10967
  * @summary Test reachability
10932
10968
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
10933
10969
  * @param {*} [options] Override http request option.
@@ -10935,7 +10971,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
10935
10971
  */
10936
10972
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GameServerTestReachabilityDTOAPI>>;
10937
10973
  /**
10938
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
10974
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
10939
10975
  * @summary Test reachability for id
10940
10976
  * @param {string} id
10941
10977
  * @param {*} [options] Override http request option.
@@ -11011,7 +11047,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11011
11047
  */
11012
11048
  gameServerControllerGetImport(id: string, options?: any): AxiosPromise<ImportOutputDTOAPI>;
11013
11049
  /**
11014
- * Get all module installations for a gameserver Required permissions: `READ_GAMESERVERS`
11050
+ * Get all module installations for a gameserver
11015
11051
  * @summary Get installed modules
11016
11052
  * @param {string} id
11017
11053
  * @param {*} [options] Override http request option.
@@ -11019,7 +11055,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11019
11055
  */
11020
11056
  gameServerControllerGetInstalledModules(id: string, options?: any): AxiosPromise<ModuleInstallationOutputArrayDTOAPI>;
11021
11057
  /**
11022
- * Get a module installation by id Required permissions: `READ_GAMESERVERS`
11058
+ * Get a module installation by id
11023
11059
  * @summary Get module installation
11024
11060
  * @param {string} gameServerId
11025
11061
  * @param {string} moduleId
@@ -11028,7 +11064,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11028
11064
  */
11029
11065
  gameServerControllerGetModuleInstallation(gameServerId: string, moduleId: string, options?: any): AxiosPromise<ModuleInstallationOutputDTOAPI>;
11030
11066
  /**
11031
- * Fetch a gameserver by id Required permissions: `READ_GAMESERVERS`
11067
+ * Fetch a gameserver by id
11032
11068
  * @summary Get one
11033
11069
  * @param {string} id
11034
11070
  * @param {*} [options] Override http request option.
@@ -11044,7 +11080,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11044
11080
  */
11045
11081
  gameServerControllerGetPlayers(id: string, options?: any): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
11046
11082
  /**
11047
- * Fetch gameserver types (7dtd, Rust, ...) Required permissions: `READ_GAMESERVERS`
11083
+ * Fetch gameserver types (7dtd, Rust, ...)
11048
11084
  * @summary Get types
11049
11085
  * @param {*} [options] Override http request option.
11050
11086
  * @throws {RequiredError}
@@ -11104,7 +11140,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11104
11140
  */
11105
11141
  gameServerControllerRemove(id: string, options?: any): AxiosPromise<APIOutput>;
11106
11142
  /**
11107
- * Fetch gameservers Required permissions: `READ_GAMESERVERS`
11143
+ * Fetch gameservers
11108
11144
  * @summary Search
11109
11145
  * @param {GameServerSearchInputDTO} [gameServerSearchInputDTO] GameServerSearchInputDTO
11110
11146
  * @param {*} [options] Override http request option.
@@ -11131,7 +11167,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11131
11167
  */
11132
11168
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: any): AxiosPromise<APIOutput>;
11133
11169
  /**
11134
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
11170
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11135
11171
  * @summary Test reachability
11136
11172
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
11137
11173
  * @param {*} [options] Override http request option.
@@ -11139,7 +11175,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
11139
11175
  */
11140
11176
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: any): AxiosPromise<GameServerTestReachabilityDTOAPI>;
11141
11177
  /**
11142
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
11178
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11143
11179
  * @summary Test reachability for id
11144
11180
  * @param {string} id
11145
11181
  * @param {*} [options] Override http request option.
@@ -11221,7 +11257,7 @@ export declare class GameServerApi extends BaseAPI {
11221
11257
  */
11222
11258
  gameServerControllerGetImport(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ImportOutputDTOAPI, any>>;
11223
11259
  /**
11224
- * Get all module installations for a gameserver Required permissions: `READ_GAMESERVERS`
11260
+ * Get all module installations for a gameserver
11225
11261
  * @summary Get installed modules
11226
11262
  * @param {string} id
11227
11263
  * @param {*} [options] Override http request option.
@@ -11230,7 +11266,7 @@ export declare class GameServerApi extends BaseAPI {
11230
11266
  */
11231
11267
  gameServerControllerGetInstalledModules(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputArrayDTOAPI, any>>;
11232
11268
  /**
11233
- * Get a module installation by id Required permissions: `READ_GAMESERVERS`
11269
+ * Get a module installation by id
11234
11270
  * @summary Get module installation
11235
11271
  * @param {string} gameServerId
11236
11272
  * @param {string} moduleId
@@ -11240,7 +11276,7 @@ export declare class GameServerApi extends BaseAPI {
11240
11276
  */
11241
11277
  gameServerControllerGetModuleInstallation(gameServerId: string, moduleId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputDTOAPI, any>>;
11242
11278
  /**
11243
- * Fetch a gameserver by id Required permissions: `READ_GAMESERVERS`
11279
+ * Fetch a gameserver by id
11244
11280
  * @summary Get one
11245
11281
  * @param {string} id
11246
11282
  * @param {*} [options] Override http request option.
@@ -11258,7 +11294,7 @@ export declare class GameServerApi extends BaseAPI {
11258
11294
  */
11259
11295
  gameServerControllerGetPlayers(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
11260
11296
  /**
11261
- * Fetch gameserver types (7dtd, Rust, ...) Required permissions: `READ_GAMESERVERS`
11297
+ * Fetch gameserver types (7dtd, Rust, ...)
11262
11298
  * @summary Get types
11263
11299
  * @param {*} [options] Override http request option.
11264
11300
  * @throws {RequiredError}
@@ -11325,7 +11361,7 @@ export declare class GameServerApi extends BaseAPI {
11325
11361
  */
11326
11362
  gameServerControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
11327
11363
  /**
11328
- * Fetch gameservers Required permissions: `READ_GAMESERVERS`
11364
+ * Fetch gameservers
11329
11365
  * @summary Search
11330
11366
  * @param {GameServerSearchInputDTO} [gameServerSearchInputDTO] GameServerSearchInputDTO
11331
11367
  * @param {*} [options] Override http request option.
@@ -11355,7 +11391,7 @@ export declare class GameServerApi extends BaseAPI {
11355
11391
  */
11356
11392
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
11357
11393
  /**
11358
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
11394
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11359
11395
  * @summary Test reachability
11360
11396
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
11361
11397
  * @param {*} [options] Override http request option.
@@ -11364,7 +11400,7 @@ export declare class GameServerApi extends BaseAPI {
11364
11400
  */
11365
11401
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GameServerTestReachabilityDTOAPI, any>>;
11366
11402
  /**
11367
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details. Required permissions: `READ_GAMESERVERS`
11403
+ * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.
11368
11404
  * @summary Test reachability for id
11369
11405
  * @param {string} id
11370
11406
  * @param {*} [options] Override http request option.
@@ -12211,6 +12247,13 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
12211
12247
  * @throws {RequiredError}
12212
12248
  */
12213
12249
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12250
+ /**
12251
+ * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.
12252
+ * @summary Get current player
12253
+ * @param {*} [options] Override http request option.
12254
+ * @throws {RequiredError}
12255
+ */
12256
+ playerControllerGetMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12214
12257
  /**
12215
12258
  * Required permissions: `READ_PLAYERS`
12216
12259
  * @summary Get one
@@ -12253,6 +12296,13 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
12253
12296
  * @throws {RequiredError}
12254
12297
  */
12255
12298
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
12299
+ /**
12300
+ * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.
12301
+ * @summary Get current player
12302
+ * @param {*} [options] Override http request option.
12303
+ * @throws {RequiredError}
12304
+ */
12305
+ playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerMeOutputDTO>>;
12256
12306
  /**
12257
12307
  * Required permissions: `READ_PLAYERS`
12258
12308
  * @summary Get one
@@ -12295,6 +12345,13 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
12295
12345
  * @throws {RequiredError}
12296
12346
  */
12297
12347
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: any): AxiosPromise<APIOutput>;
12348
+ /**
12349
+ * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.
12350
+ * @summary Get current player
12351
+ * @param {*} [options] Override http request option.
12352
+ * @throws {RequiredError}
12353
+ */
12354
+ playerControllerGetMe(options?: any): AxiosPromise<PlayerMeOutputDTO>;
12298
12355
  /**
12299
12356
  * Required permissions: `READ_PLAYERS`
12300
12357
  * @summary Get one
@@ -12340,6 +12397,14 @@ export declare class PlayerApi extends BaseAPI {
12340
12397
  * @memberof PlayerApi
12341
12398
  */
12342
12399
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
12400
+ /**
12401
+ * Get the player that is currently authenticated. This is a low-privilege route, returning limited data.
12402
+ * @summary Get current player
12403
+ * @param {*} [options] Override http request option.
12404
+ * @throws {RequiredError}
12405
+ * @memberof PlayerApi
12406
+ */
12407
+ playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerMeOutputDTO, any>>;
12343
12408
  /**
12344
12409
  * Required permissions: `READ_PLAYERS`
12345
12410
  * @summary Get one
@@ -12873,7 +12938,7 @@ export declare const SettingsApiAxiosParamCreator: (configuration?: Configuratio
12873
12938
  */
12874
12939
  settingsControllerDelete: (key: string, gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12875
12940
  /**
12876
- * Required permissions: `READ_SETTINGS`
12941
+ *
12877
12942
  * @summary Get
12878
12943
  * @param {Array<SettingsControllerGetKeysEnum>} [keys]
12879
12944
  * @param {string} [gameServerId]
@@ -12882,7 +12947,7 @@ export declare const SettingsApiAxiosParamCreator: (configuration?: Configuratio
12882
12947
  */
12883
12948
  settingsControllerGet: (keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12884
12949
  /**
12885
- * Required permissions: `READ_SETTINGS`
12950
+ *
12886
12951
  * @summary Get one
12887
12952
  * @param {string} key
12888
12953
  * @param {string} [gameServerId]
@@ -12915,7 +12980,7 @@ export declare const SettingsApiFp: (configuration?: Configuration) => {
12915
12980
  */
12916
12981
  settingsControllerDelete(key: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
12917
12982
  /**
12918
- * Required permissions: `READ_SETTINGS`
12983
+ *
12919
12984
  * @summary Get
12920
12985
  * @param {Array<SettingsControllerGetKeysEnum>} [keys]
12921
12986
  * @param {string} [gameServerId]
@@ -12924,7 +12989,7 @@ export declare const SettingsApiFp: (configuration?: Configuration) => {
12924
12989
  */
12925
12990
  settingsControllerGet(keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SettingsOutputArrayDTOAPI>>;
12926
12991
  /**
12927
- * Required permissions: `READ_SETTINGS`
12992
+ *
12928
12993
  * @summary Get one
12929
12994
  * @param {string} key
12930
12995
  * @param {string} [gameServerId]
@@ -12957,7 +13022,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
12957
13022
  */
12958
13023
  settingsControllerDelete(key: string, gameServerId?: string, options?: any): AxiosPromise<APIOutput>;
12959
13024
  /**
12960
- * Required permissions: `READ_SETTINGS`
13025
+ *
12961
13026
  * @summary Get
12962
13027
  * @param {Array<SettingsControllerGetKeysEnum>} [keys]
12963
13028
  * @param {string} [gameServerId]
@@ -12966,7 +13031,7 @@ export declare const SettingsApiFactory: (configuration?: Configuration, basePat
12966
13031
  */
12967
13032
  settingsControllerGet(keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: any): AxiosPromise<SettingsOutputArrayDTOAPI>;
12968
13033
  /**
12969
- * Required permissions: `READ_SETTINGS`
13034
+ *
12970
13035
  * @summary Get one
12971
13036
  * @param {string} key
12972
13037
  * @param {string} [gameServerId]
@@ -13002,7 +13067,7 @@ export declare class SettingsApi extends BaseAPI {
13002
13067
  */
13003
13068
  settingsControllerDelete(key: string, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
13004
13069
  /**
13005
- * Required permissions: `READ_SETTINGS`
13070
+ *
13006
13071
  * @summary Get
13007
13072
  * @param {Array<SettingsControllerGetKeysEnum>} [keys]
13008
13073
  * @param {string} [gameServerId]
@@ -13012,7 +13077,7 @@ export declare class SettingsApi extends BaseAPI {
13012
13077
  */
13013
13078
  settingsControllerGet(keys?: Array<SettingsControllerGetKeysEnum>, gameServerId?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SettingsOutputArrayDTOAPI, any>>;
13014
13079
  /**
13015
- * Required permissions: `READ_SETTINGS`
13080
+ *
13016
13081
  * @summary Get one
13017
13082
  * @param {string} key
13018
13083
  * @param {string} [gameServerId]
@@ -13434,7 +13499,7 @@ export declare class ShopOrderApi extends BaseAPI {
13434
13499
  */
13435
13500
  export declare const StatsApiAxiosParamCreator: (configuration?: Configuration) => {
13436
13501
  /**
13437
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13502
+ * Required permissions: `READ_PLAYERS`
13438
13503
  * @summary Get activity stats
13439
13504
  * @param {StatsControllerGetActivityStatsTimeTypeEnum} timeType
13440
13505
  * @param {StatsControllerGetActivityStatsDataTypeEnum} dataType
@@ -13446,7 +13511,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13446
13511
  */
13447
13512
  statsControllerGetActivityStats: (timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13448
13513
  /**
13449
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13514
+ * Required permissions: `READ_PLAYERS`
13450
13515
  * @summary Get currency stats
13451
13516
  * @param {string} gameServerId
13452
13517
  * @param {string} playerId
@@ -13457,7 +13522,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13457
13522
  */
13458
13523
  statsControllerGetCurrencyStats: (gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13459
13524
  /**
13460
- * 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_GAMESERVERS`, `READ_PLAYERS`
13525
+ * 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`
13461
13526
  * @summary Get event count over time
13462
13527
  * @param {StatsControllerGetEventsCountEventNameEnum} eventName
13463
13528
  * @param {StatsControllerGetEventsCountBucketStepEnum} bucketStep
@@ -13473,7 +13538,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13473
13538
  */
13474
13539
  statsControllerGetEventsCount: (eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13475
13540
  /**
13476
- * The roundtrip time for reachability tests between Takaro and the game server Required permissions: `READ_GAMESERVERS`
13541
+ * The roundtrip time for reachability tests between Takaro and the game server
13477
13542
  * @summary Get latency stats
13478
13543
  * @param {string} gameServerId
13479
13544
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13483,7 +13548,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13483
13548
  */
13484
13549
  statsControllerGetLatencyStats: (gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13485
13550
  /**
13486
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13551
+ * Required permissions: `READ_PLAYERS`
13487
13552
  * @summary Get ping stats
13488
13553
  * @param {string} gameServerId
13489
13554
  * @param {string} playerId
@@ -13494,7 +13559,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13494
13559
  */
13495
13560
  statsControllerGetPingStats: (gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13496
13561
  /**
13497
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13562
+ * Required permissions: `READ_PLAYERS`
13498
13563
  * @summary Get player online stats
13499
13564
  * @param {string} [gameServerId]
13500
13565
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13510,7 +13575,7 @@ export declare const StatsApiAxiosParamCreator: (configuration?: Configuration)
13510
13575
  */
13511
13576
  export declare const StatsApiFp: (configuration?: Configuration) => {
13512
13577
  /**
13513
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13578
+ * Required permissions: `READ_PLAYERS`
13514
13579
  * @summary Get activity stats
13515
13580
  * @param {StatsControllerGetActivityStatsTimeTypeEnum} timeType
13516
13581
  * @param {StatsControllerGetActivityStatsDataTypeEnum} dataType
@@ -13522,7 +13587,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13522
13587
  */
13523
13588
  statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13524
13589
  /**
13525
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13590
+ * Required permissions: `READ_PLAYERS`
13526
13591
  * @summary Get currency stats
13527
13592
  * @param {string} gameServerId
13528
13593
  * @param {string} playerId
@@ -13533,7 +13598,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13533
13598
  */
13534
13599
  statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13535
13600
  /**
13536
- * 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_GAMESERVERS`, `READ_PLAYERS`
13601
+ * 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`
13537
13602
  * @summary Get event count over time
13538
13603
  * @param {StatsControllerGetEventsCountEventNameEnum} eventName
13539
13604
  * @param {StatsControllerGetEventsCountBucketStepEnum} bucketStep
@@ -13549,7 +13614,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13549
13614
  */
13550
13615
  statsControllerGetEventsCount(eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13551
13616
  /**
13552
- * The roundtrip time for reachability tests between Takaro and the game server Required permissions: `READ_GAMESERVERS`
13617
+ * The roundtrip time for reachability tests between Takaro and the game server
13553
13618
  * @summary Get latency stats
13554
13619
  * @param {string} gameServerId
13555
13620
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13559,7 +13624,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13559
13624
  */
13560
13625
  statsControllerGetLatencyStats(gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13561
13626
  /**
13562
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13627
+ * Required permissions: `READ_PLAYERS`
13563
13628
  * @summary Get ping stats
13564
13629
  * @param {string} gameServerId
13565
13630
  * @param {string} playerId
@@ -13570,7 +13635,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13570
13635
  */
13571
13636
  statsControllerGetPingStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StatsOutputDTOAPI>>;
13572
13637
  /**
13573
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13638
+ * Required permissions: `READ_PLAYERS`
13574
13639
  * @summary Get player online stats
13575
13640
  * @param {string} [gameServerId]
13576
13641
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13586,7 +13651,7 @@ export declare const StatsApiFp: (configuration?: Configuration) => {
13586
13651
  */
13587
13652
  export declare const StatsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
13588
13653
  /**
13589
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13654
+ * Required permissions: `READ_PLAYERS`
13590
13655
  * @summary Get activity stats
13591
13656
  * @param {StatsControllerGetActivityStatsTimeTypeEnum} timeType
13592
13657
  * @param {StatsControllerGetActivityStatsDataTypeEnum} dataType
@@ -13598,7 +13663,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13598
13663
  */
13599
13664
  statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
13600
13665
  /**
13601
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13666
+ * Required permissions: `READ_PLAYERS`
13602
13667
  * @summary Get currency stats
13603
13668
  * @param {string} gameServerId
13604
13669
  * @param {string} playerId
@@ -13609,7 +13674,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13609
13674
  */
13610
13675
  statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
13611
13676
  /**
13612
- * 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_GAMESERVERS`, `READ_PLAYERS`
13677
+ * 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`
13613
13678
  * @summary Get event count over time
13614
13679
  * @param {StatsControllerGetEventsCountEventNameEnum} eventName
13615
13680
  * @param {StatsControllerGetEventsCountBucketStepEnum} bucketStep
@@ -13625,7 +13690,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13625
13690
  */
13626
13691
  statsControllerGetEventsCount(eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
13627
13692
  /**
13628
- * The roundtrip time for reachability tests between Takaro and the game server Required permissions: `READ_GAMESERVERS`
13693
+ * The roundtrip time for reachability tests between Takaro and the game server
13629
13694
  * @summary Get latency stats
13630
13695
  * @param {string} gameServerId
13631
13696
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13635,7 +13700,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13635
13700
  */
13636
13701
  statsControllerGetLatencyStats(gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
13637
13702
  /**
13638
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13703
+ * Required permissions: `READ_PLAYERS`
13639
13704
  * @summary Get ping stats
13640
13705
  * @param {string} gameServerId
13641
13706
  * @param {string} playerId
@@ -13646,7 +13711,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13646
13711
  */
13647
13712
  statsControllerGetPingStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: any): AxiosPromise<StatsOutputDTOAPI>;
13648
13713
  /**
13649
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13714
+ * Required permissions: `READ_PLAYERS`
13650
13715
  * @summary Get player online stats
13651
13716
  * @param {string} [gameServerId]
13652
13717
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13664,7 +13729,7 @@ export declare const StatsApiFactory: (configuration?: Configuration, basePath?:
13664
13729
  */
13665
13730
  export declare class StatsApi extends BaseAPI {
13666
13731
  /**
13667
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13732
+ * Required permissions: `READ_PLAYERS`
13668
13733
  * @summary Get activity stats
13669
13734
  * @param {StatsControllerGetActivityStatsTimeTypeEnum} timeType
13670
13735
  * @param {StatsControllerGetActivityStatsDataTypeEnum} dataType
@@ -13677,7 +13742,7 @@ export declare class StatsApi extends BaseAPI {
13677
13742
  */
13678
13743
  statsControllerGetActivityStats(timeType: StatsControllerGetActivityStatsTimeTypeEnum, dataType: StatsControllerGetActivityStatsDataTypeEnum, gameServerId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13679
13744
  /**
13680
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13745
+ * Required permissions: `READ_PLAYERS`
13681
13746
  * @summary Get currency stats
13682
13747
  * @param {string} gameServerId
13683
13748
  * @param {string} playerId
@@ -13689,7 +13754,7 @@ export declare class StatsApi extends BaseAPI {
13689
13754
  */
13690
13755
  statsControllerGetCurrencyStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13691
13756
  /**
13692
- * 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_GAMESERVERS`, `READ_PLAYERS`
13757
+ * 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`
13693
13758
  * @summary Get event count over time
13694
13759
  * @param {StatsControllerGetEventsCountEventNameEnum} eventName
13695
13760
  * @param {StatsControllerGetEventsCountBucketStepEnum} bucketStep
@@ -13706,7 +13771,7 @@ export declare class StatsApi extends BaseAPI {
13706
13771
  */
13707
13772
  statsControllerGetEventsCount(eventName: StatsControllerGetEventsCountEventNameEnum, bucketStep: StatsControllerGetEventsCountBucketStepEnum, sumBy?: Array<StatsControllerGetEventsCountSumByEnum>, gameServerId?: string, moduleId?: string, playerId?: string, userId?: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13708
13773
  /**
13709
- * The roundtrip time for reachability tests between Takaro and the game server Required permissions: `READ_GAMESERVERS`
13774
+ * The roundtrip time for reachability tests between Takaro and the game server
13710
13775
  * @summary Get latency stats
13711
13776
  * @param {string} gameServerId
13712
13777
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]
@@ -13717,7 +13782,7 @@ export declare class StatsApi extends BaseAPI {
13717
13782
  */
13718
13783
  statsControllerGetLatencyStats(gameServerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13719
13784
  /**
13720
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13785
+ * Required permissions: `READ_PLAYERS`
13721
13786
  * @summary Get ping stats
13722
13787
  * @param {string} gameServerId
13723
13788
  * @param {string} playerId
@@ -13729,7 +13794,7 @@ export declare class StatsApi extends BaseAPI {
13729
13794
  */
13730
13795
  statsControllerGetPingStats(gameServerId: string, playerId: string, startDate?: StatsControllerGetPingStatsStartDateParameter, endDate?: StatsControllerGetPingStatsStartDateParameter, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StatsOutputDTOAPI, any>>;
13731
13796
  /**
13732
- * Required permissions: `READ_GAMESERVERS`, `READ_PLAYERS`
13797
+ * Required permissions: `READ_PLAYERS`
13733
13798
  * @summary Get player online stats
13734
13799
  * @param {string} [gameServerId]
13735
13800
  * @param {StatsControllerGetPingStatsStartDateParameter} [startDate]