@takaro/apiclient 0.0.30 → 0.1.1

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.
@@ -2,7 +2,7 @@
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: development - 0359b1b1efa1e593fafeb89e00ca9859a260a84f
5
+ * The version of the OpenAPI document: development - b9a7e596c5018d8421b6d57da05a269e45dda56e
6
6
  * Contact: support@takaro.io
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1651,6 +1651,12 @@ export interface DomainOutputDTO {
1651
1651
  * @memberof DomainOutputDTO
1652
1652
  */
1653
1653
  state: DomainOutputDTOStateEnum;
1654
+ /**
1655
+ *
1656
+ * @type {string}
1657
+ * @memberof DomainOutputDTO
1658
+ */
1659
+ serverRegistrationToken?: string;
1654
1660
  /**
1655
1661
  *
1656
1662
  * @type {number}
@@ -1932,6 +1938,337 @@ export declare const DomainUpdateInputDTOStateEnum: {
1932
1938
  readonly Maintenance: "MAINTENANCE";
1933
1939
  };
1934
1940
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
1941
+ /**
1942
+ *
1943
+ * @export
1944
+ * @interface EntityCreateDTO
1945
+ */
1946
+ export interface EntityCreateDTO {
1947
+ /**
1948
+ *
1949
+ * @type {string}
1950
+ * @memberof EntityCreateDTO
1951
+ */
1952
+ name: string;
1953
+ /**
1954
+ *
1955
+ * @type {string}
1956
+ * @memberof EntityCreateDTO
1957
+ */
1958
+ code: string;
1959
+ /**
1960
+ *
1961
+ * @type {string}
1962
+ * @memberof EntityCreateDTO
1963
+ */
1964
+ description?: string;
1965
+ /**
1966
+ *
1967
+ * @type {string}
1968
+ * @memberof EntityCreateDTO
1969
+ */
1970
+ type?: EntityCreateDTOTypeEnum;
1971
+ /**
1972
+ *
1973
+ * @type {object}
1974
+ * @memberof EntityCreateDTO
1975
+ */
1976
+ metadata?: object;
1977
+ /**
1978
+ *
1979
+ * @type {string}
1980
+ * @memberof EntityCreateDTO
1981
+ */
1982
+ gameserverId: string;
1983
+ }
1984
+ export declare const EntityCreateDTOTypeEnum: {
1985
+ readonly Hostile: "hostile";
1986
+ readonly Friendly: "friendly";
1987
+ readonly Neutral: "neutral";
1988
+ };
1989
+ export type EntityCreateDTOTypeEnum = (typeof EntityCreateDTOTypeEnum)[keyof typeof EntityCreateDTOTypeEnum];
1990
+ /**
1991
+ *
1992
+ * @export
1993
+ * @interface EntityOutputArrayDTOAPI
1994
+ */
1995
+ export interface EntityOutputArrayDTOAPI {
1996
+ /**
1997
+ *
1998
+ * @type {Array<EntityOutputDTO>}
1999
+ * @memberof EntityOutputArrayDTOAPI
2000
+ */
2001
+ data: Array<EntityOutputDTO>;
2002
+ /**
2003
+ *
2004
+ * @type {MetadataOutput}
2005
+ * @memberof EntityOutputArrayDTOAPI
2006
+ */
2007
+ meta: MetadataOutput;
2008
+ }
2009
+ /**
2010
+ *
2011
+ * @export
2012
+ * @interface EntityOutputDTO
2013
+ */
2014
+ export interface EntityOutputDTO {
2015
+ /**
2016
+ *
2017
+ * @type {string}
2018
+ * @memberof EntityOutputDTO
2019
+ */
2020
+ name: string;
2021
+ /**
2022
+ *
2023
+ * @type {string}
2024
+ * @memberof EntityOutputDTO
2025
+ */
2026
+ code: string;
2027
+ /**
2028
+ *
2029
+ * @type {string}
2030
+ * @memberof EntityOutputDTO
2031
+ */
2032
+ description?: string;
2033
+ /**
2034
+ *
2035
+ * @type {string}
2036
+ * @memberof EntityOutputDTO
2037
+ */
2038
+ type?: EntityOutputDTOTypeEnum;
2039
+ /**
2040
+ *
2041
+ * @type {object}
2042
+ * @memberof EntityOutputDTO
2043
+ */
2044
+ metadata?: object;
2045
+ /**
2046
+ *
2047
+ * @type {string}
2048
+ * @memberof EntityOutputDTO
2049
+ */
2050
+ gameserverId: string;
2051
+ /**
2052
+ *
2053
+ * @type {string}
2054
+ * @memberof EntityOutputDTO
2055
+ */
2056
+ id: string;
2057
+ /**
2058
+ *
2059
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
2060
+ * @memberof EntityOutputDTO
2061
+ */
2062
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
2063
+ /**
2064
+ *
2065
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
2066
+ * @memberof EntityOutputDTO
2067
+ */
2068
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
2069
+ }
2070
+ export declare const EntityOutputDTOTypeEnum: {
2071
+ readonly Hostile: "hostile";
2072
+ readonly Friendly: "friendly";
2073
+ readonly Neutral: "neutral";
2074
+ };
2075
+ export type EntityOutputDTOTypeEnum = (typeof EntityOutputDTOTypeEnum)[keyof typeof EntityOutputDTOTypeEnum];
2076
+ /**
2077
+ *
2078
+ * @export
2079
+ * @interface EntityOutputDTOAPI
2080
+ */
2081
+ export interface EntityOutputDTOAPI {
2082
+ /**
2083
+ *
2084
+ * @type {EntityOutputDTO}
2085
+ * @memberof EntityOutputDTOAPI
2086
+ */
2087
+ data: EntityOutputDTO;
2088
+ /**
2089
+ *
2090
+ * @type {MetadataOutput}
2091
+ * @memberof EntityOutputDTOAPI
2092
+ */
2093
+ meta: MetadataOutput;
2094
+ }
2095
+ /**
2096
+ *
2097
+ * @export
2098
+ * @interface EntitySearchInputAllowedFilters
2099
+ */
2100
+ export interface EntitySearchInputAllowedFilters {
2101
+ /**
2102
+ *
2103
+ * @type {Array<string>}
2104
+ * @memberof EntitySearchInputAllowedFilters
2105
+ */
2106
+ name?: Array<string>;
2107
+ /**
2108
+ *
2109
+ * @type {Array<string>}
2110
+ * @memberof EntitySearchInputAllowedFilters
2111
+ */
2112
+ code?: Array<string>;
2113
+ /**
2114
+ *
2115
+ * @type {Array<string>}
2116
+ * @memberof EntitySearchInputAllowedFilters
2117
+ */
2118
+ type?: Array<EntitySearchInputAllowedFiltersTypeEnum>;
2119
+ /**
2120
+ *
2121
+ * @type {Array<string>}
2122
+ * @memberof EntitySearchInputAllowedFilters
2123
+ */
2124
+ gameserverId?: Array<string>;
2125
+ /**
2126
+ *
2127
+ * @type {Array<string>}
2128
+ * @memberof EntitySearchInputAllowedFilters
2129
+ */
2130
+ id?: Array<string>;
2131
+ }
2132
+ export declare const EntitySearchInputAllowedFiltersTypeEnum: {
2133
+ readonly Hostile: "hostile";
2134
+ readonly Friendly: "friendly";
2135
+ readonly Neutral: "neutral";
2136
+ };
2137
+ export type EntitySearchInputAllowedFiltersTypeEnum = (typeof EntitySearchInputAllowedFiltersTypeEnum)[keyof typeof EntitySearchInputAllowedFiltersTypeEnum];
2138
+ /**
2139
+ *
2140
+ * @export
2141
+ * @interface EntitySearchInputAllowedSearch
2142
+ */
2143
+ export interface EntitySearchInputAllowedSearch {
2144
+ /**
2145
+ *
2146
+ * @type {Array<string>}
2147
+ * @memberof EntitySearchInputAllowedSearch
2148
+ */
2149
+ name?: Array<string>;
2150
+ /**
2151
+ *
2152
+ * @type {Array<string>}
2153
+ * @memberof EntitySearchInputAllowedSearch
2154
+ */
2155
+ code?: Array<string>;
2156
+ /**
2157
+ *
2158
+ * @type {Array<string>}
2159
+ * @memberof EntitySearchInputAllowedSearch
2160
+ */
2161
+ description?: Array<string>;
2162
+ }
2163
+ /**
2164
+ *
2165
+ * @export
2166
+ * @interface EntitySearchInputDTO
2167
+ */
2168
+ export interface EntitySearchInputDTO {
2169
+ /**
2170
+ *
2171
+ * @type {EntitySearchInputAllowedFilters}
2172
+ * @memberof EntitySearchInputDTO
2173
+ */
2174
+ filters?: EntitySearchInputAllowedFilters;
2175
+ /**
2176
+ *
2177
+ * @type {EntitySearchInputAllowedSearch}
2178
+ * @memberof EntitySearchInputDTO
2179
+ */
2180
+ search?: EntitySearchInputAllowedSearch;
2181
+ /**
2182
+ *
2183
+ * @type {any}
2184
+ * @memberof EntitySearchInputDTO
2185
+ */
2186
+ greaterThan?: any;
2187
+ /**
2188
+ *
2189
+ * @type {any}
2190
+ * @memberof EntitySearchInputDTO
2191
+ */
2192
+ lessThan?: any;
2193
+ /**
2194
+ *
2195
+ * @type {number}
2196
+ * @memberof EntitySearchInputDTO
2197
+ */
2198
+ page?: number;
2199
+ /**
2200
+ *
2201
+ * @type {number}
2202
+ * @memberof EntitySearchInputDTO
2203
+ */
2204
+ limit?: number;
2205
+ /**
2206
+ *
2207
+ * @type {string}
2208
+ * @memberof EntitySearchInputDTO
2209
+ */
2210
+ sortBy?: string;
2211
+ /**
2212
+ *
2213
+ * @type {string}
2214
+ * @memberof EntitySearchInputDTO
2215
+ */
2216
+ sortDirection?: EntitySearchInputDTOSortDirectionEnum;
2217
+ /**
2218
+ *
2219
+ * @type {Array<string>}
2220
+ * @memberof EntitySearchInputDTO
2221
+ */
2222
+ extend?: Array<string>;
2223
+ }
2224
+ export declare const EntitySearchInputDTOSortDirectionEnum: {
2225
+ readonly Asc: "asc";
2226
+ readonly Desc: "desc";
2227
+ };
2228
+ export type EntitySearchInputDTOSortDirectionEnum = (typeof EntitySearchInputDTOSortDirectionEnum)[keyof typeof EntitySearchInputDTOSortDirectionEnum];
2229
+ /**
2230
+ *
2231
+ * @export
2232
+ * @interface EntityUpdateDTO
2233
+ */
2234
+ export interface EntityUpdateDTO {
2235
+ /**
2236
+ *
2237
+ * @type {string}
2238
+ * @memberof EntityUpdateDTO
2239
+ */
2240
+ name?: string;
2241
+ /**
2242
+ *
2243
+ * @type {string}
2244
+ * @memberof EntityUpdateDTO
2245
+ */
2246
+ code?: string;
2247
+ /**
2248
+ *
2249
+ * @type {string}
2250
+ * @memberof EntityUpdateDTO
2251
+ */
2252
+ description?: string;
2253
+ /**
2254
+ *
2255
+ * @type {string}
2256
+ * @memberof EntityUpdateDTO
2257
+ */
2258
+ type?: EntityUpdateDTOTypeEnum;
2259
+ /**
2260
+ *
2261
+ * @type {object}
2262
+ * @memberof EntityUpdateDTO
2263
+ */
2264
+ metadata?: object;
2265
+ }
2266
+ export declare const EntityUpdateDTOTypeEnum: {
2267
+ readonly Hostile: "hostile";
2268
+ readonly Friendly: "friendly";
2269
+ readonly Neutral: "neutral";
2270
+ };
2271
+ export type EntityUpdateDTOTypeEnum = (typeof EntityUpdateDTOTypeEnum)[keyof typeof EntityUpdateDTOTypeEnum];
1935
2272
  /**
1936
2273
  *
1937
2274
  * @export
@@ -2983,11 +3320,18 @@ export interface GameServerCreateDTO {
2983
3320
  * @memberof GameServerCreateDTO
2984
3321
  */
2985
3322
  type: GameServerCreateDTOTypeEnum;
3323
+ /**
3324
+ *
3325
+ * @type {string}
3326
+ * @memberof GameServerCreateDTO
3327
+ */
3328
+ identityToken?: string;
2986
3329
  }
2987
3330
  export declare const GameServerCreateDTOTypeEnum: {
2988
- readonly Mock: "MOCK";
2989
3331
  readonly Sevendaystodie: "SEVENDAYSTODIE";
2990
3332
  readonly Rust: "RUST";
3333
+ readonly Generic: "GENERIC";
3334
+ readonly Mock: "MOCK";
2991
3335
  };
2992
3336
  export type GameServerCreateDTOTypeEnum = (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
2993
3337
  /**
@@ -3045,6 +3389,12 @@ export interface GameServerOutputDTO {
3045
3389
  * @memberof GameServerOutputDTO
3046
3390
  */
3047
3391
  enabled: boolean;
3392
+ /**
3393
+ *
3394
+ * @type {string}
3395
+ * @memberof GameServerOutputDTO
3396
+ */
3397
+ identityToken?: string;
3048
3398
  /**
3049
3399
  *
3050
3400
  * @type {string}
@@ -3065,9 +3415,10 @@ export interface GameServerOutputDTO {
3065
3415
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3066
3416
  }
3067
3417
  export declare const GameServerOutputDTOTypeEnum: {
3068
- readonly Mock: "MOCK";
3069
3418
  readonly Sevendaystodie: "SEVENDAYSTODIE";
3070
3419
  readonly Rust: "RUST";
3420
+ readonly Generic: "GENERIC";
3421
+ readonly Mock: "MOCK";
3071
3422
  };
3072
3423
  export type GameServerOutputDTOTypeEnum = (typeof GameServerOutputDTOTypeEnum)[keyof typeof GameServerOutputDTOTypeEnum];
3073
3424
  /**
@@ -3119,6 +3470,12 @@ export interface GameServerSearchInputAllowedFilters {
3119
3470
  * @memberof GameServerSearchInputAllowedFilters
3120
3471
  */
3121
3472
  enabled?: Array<boolean>;
3473
+ /**
3474
+ *
3475
+ * @type {Array<string>}
3476
+ * @memberof GameServerSearchInputAllowedFilters
3477
+ */
3478
+ identityToken?: Array<string>;
3122
3479
  /**
3123
3480
  *
3124
3481
  * @type {Array<string>}
@@ -3127,9 +3484,10 @@ export interface GameServerSearchInputAllowedFilters {
3127
3484
  id?: Array<string>;
3128
3485
  }
3129
3486
  export declare const GameServerSearchInputAllowedFiltersTypeEnum: {
3130
- readonly Mock: "MOCK";
3131
3487
  readonly Sevendaystodie: "SEVENDAYSTODIE";
3132
3488
  readonly Rust: "RUST";
3489
+ readonly Generic: "GENERIC";
3490
+ readonly Mock: "MOCK";
3133
3491
  };
3134
3492
  export type GameServerSearchInputAllowedFiltersTypeEnum = (typeof GameServerSearchInputAllowedFiltersTypeEnum)[keyof typeof GameServerSearchInputAllowedFiltersTypeEnum];
3135
3493
  /**
@@ -3250,9 +3608,10 @@ export interface GameServerTestReachabilityInputDTO {
3250
3608
  type: GameServerTestReachabilityInputDTOTypeEnum;
3251
3609
  }
3252
3610
  export declare const GameServerTestReachabilityInputDTOTypeEnum: {
3253
- readonly Mock: "MOCK";
3254
3611
  readonly Sevendaystodie: "SEVENDAYSTODIE";
3255
3612
  readonly Rust: "RUST";
3613
+ readonly Generic: "GENERIC";
3614
+ readonly Mock: "MOCK";
3256
3615
  };
3257
3616
  export type GameServerTestReachabilityInputDTOTypeEnum = (typeof GameServerTestReachabilityInputDTOTypeEnum)[keyof typeof GameServerTestReachabilityInputDTOTypeEnum];
3258
3617
  /**
@@ -3275,9 +3634,10 @@ export interface GameServerTypesOutputDTO {
3275
3634
  connectionInfoSchema: string;
3276
3635
  }
3277
3636
  export declare const GameServerTypesOutputDTOTypeEnum: {
3278
- readonly Mock: "MOCK";
3279
3637
  readonly Sevendaystodie: "SEVENDAYSTODIE";
3280
3638
  readonly Rust: "RUST";
3639
+ readonly Generic: "GENERIC";
3640
+ readonly Mock: "MOCK";
3281
3641
  };
3282
3642
  export type GameServerTypesOutputDTOTypeEnum = (typeof GameServerTypesOutputDTOTypeEnum)[keyof typeof GameServerTypesOutputDTOTypeEnum];
3283
3643
  /**
@@ -3337,11 +3697,25 @@ export interface GameServerUpdateDTO {
3337
3697
  enabled?: boolean;
3338
3698
  }
3339
3699
  export declare const GameServerUpdateDTOTypeEnum: {
3340
- readonly Mock: "MOCK";
3341
3700
  readonly Sevendaystodie: "SEVENDAYSTODIE";
3342
3701
  readonly Rust: "RUST";
3702
+ readonly Generic: "GENERIC";
3703
+ readonly Mock: "MOCK";
3343
3704
  };
3344
3705
  export type GameServerUpdateDTOTypeEnum = (typeof GameServerUpdateDTOTypeEnum)[keyof typeof GameServerUpdateDTOTypeEnum];
3706
+ /**
3707
+ *
3708
+ * @export
3709
+ * @interface GenericConnectionInfo
3710
+ */
3711
+ export interface GenericConnectionInfo {
3712
+ /**
3713
+ *
3714
+ * @type {string}
3715
+ * @memberof GenericConnectionInfo
3716
+ */
3717
+ identityToken: string;
3718
+ }
3345
3719
  /**
3346
3720
  *
3347
3721
  * @export
@@ -3369,6 +3743,7 @@ export declare const GetJobInputDTOTypeEnum: {
3369
3743
  readonly EnsureCronjobsScheduled: "ensureCronjobsScheduled";
3370
3744
  readonly DeleteGameServers: "deleteGameServers";
3371
3745
  readonly SyncItems: "syncItems";
3746
+ readonly SyncEntities: "syncEntities";
3372
3747
  readonly SyncBans: "syncBans";
3373
3748
  readonly SyncSteam: "syncSteam";
3374
3749
  };
@@ -4376,6 +4751,49 @@ export interface ICronJob {
4376
4751
  */
4377
4752
  temporalValue: string;
4378
4753
  }
4754
+ /**
4755
+ *
4756
+ * @export
4757
+ * @interface IEntityDTO
4758
+ */
4759
+ export interface IEntityDTO {
4760
+ /**
4761
+ *
4762
+ * @type {string}
4763
+ * @memberof IEntityDTO
4764
+ */
4765
+ code: string;
4766
+ /**
4767
+ *
4768
+ * @type {string}
4769
+ * @memberof IEntityDTO
4770
+ */
4771
+ name: string;
4772
+ /**
4773
+ *
4774
+ * @type {string}
4775
+ * @memberof IEntityDTO
4776
+ */
4777
+ description?: string;
4778
+ /**
4779
+ *
4780
+ * @type {string}
4781
+ * @memberof IEntityDTO
4782
+ */
4783
+ type?: IEntityDTOTypeEnum;
4784
+ /**
4785
+ *
4786
+ * @type {object}
4787
+ * @memberof IEntityDTO
4788
+ */
4789
+ metadata?: object;
4790
+ }
4791
+ export declare const IEntityDTOTypeEnum: {
4792
+ readonly Hostile: "hostile";
4793
+ readonly Friendly: "friendly";
4794
+ readonly Neutral: "neutral";
4795
+ };
4796
+ export type IEntityDTOTypeEnum = (typeof IEntityDTOTypeEnum)[keyof typeof IEntityDTOTypeEnum];
4379
4797
  /**
4380
4798
  *
4381
4799
  * @export
@@ -4568,6 +4986,61 @@ export interface IItemDTO {
4568
4986
  */
4569
4987
  quality?: string;
4570
4988
  }
4989
+ /**
4990
+ *
4991
+ * @export
4992
+ * @interface ILocationDTO
4993
+ */
4994
+ export interface ILocationDTO {
4995
+ /**
4996
+ *
4997
+ * @type {IPosition}
4998
+ * @memberof ILocationDTO
4999
+ */
5000
+ position: IPosition;
5001
+ /**
5002
+ *
5003
+ * @type {number}
5004
+ * @memberof ILocationDTO
5005
+ */
5006
+ radius?: number;
5007
+ /**
5008
+ *
5009
+ * @type {number}
5010
+ * @memberof ILocationDTO
5011
+ */
5012
+ sizeX?: number;
5013
+ /**
5014
+ *
5015
+ * @type {number}
5016
+ * @memberof ILocationDTO
5017
+ */
5018
+ sizeY?: number;
5019
+ /**
5020
+ *
5021
+ * @type {number}
5022
+ * @memberof ILocationDTO
5023
+ */
5024
+ sizeZ?: number;
5025
+ /**
5026
+ *
5027
+ * @type {string}
5028
+ * @memberof ILocationDTO
5029
+ */
5030
+ name: string;
5031
+ /**
5032
+ *
5033
+ * @type {string}
5034
+ * @memberof ILocationDTO
5035
+ */
5036
+ code?: string;
5037
+ /**
5038
+ *
5039
+ * @type {object}
5040
+ * @memberof ILocationDTO
5041
+ */
5042
+ metadata?: object;
5043
+ }
4571
5044
  /**
4572
5045
  *
4573
5046
  * @export
@@ -4649,6 +5122,12 @@ export interface IPosition {
4649
5122
  * @memberof IPosition
4650
5123
  */
4651
5124
  z: number;
5125
+ /**
5126
+ *
5127
+ * @type {string}
5128
+ * @memberof IPosition
5129
+ */
5130
+ dimension?: string;
4652
5131
  }
4653
5132
  /**
4654
5133
  *
@@ -5530,25 +6009,6 @@ export interface MetadataOutput {
5530
6009
  */
5531
6010
  total?: number;
5532
6011
  }
5533
- /**
5534
- *
5535
- * @export
5536
- * @interface MockConnectionInfo
5537
- */
5538
- export interface MockConnectionInfo {
5539
- /**
5540
- *
5541
- * @type {string}
5542
- * @memberof MockConnectionInfo
5543
- */
5544
- host: string;
5545
- /**
5546
- *
5547
- * @type {string}
5548
- * @memberof MockConnectionInfo
5549
- */
5550
- name: string;
5551
- }
5552
6012
  /**
5553
6013
  *
5554
6014
  * @export
@@ -6578,6 +7038,8 @@ export declare const PERMISSIONS: {
6578
7038
  readonly ManageEvents: "MANAGE_EVENTS";
6579
7039
  readonly ReadItems: "READ_ITEMS";
6580
7040
  readonly ManageItems: "MANAGE_ITEMS";
7041
+ readonly ReadEntities: "READ_ENTITIES";
7042
+ readonly ManageEntities: "MANAGE_ENTITIES";
6581
7043
  readonly ManageShopListings: "MANAGE_SHOP_LISTINGS";
6582
7044
  readonly ManageShopOrders: "MANAGE_SHOP_ORDERS";
6583
7045
  };
@@ -6869,88 +7331,249 @@ export interface PermissionOutputDTO {
6869
7331
  * @type {string}
6870
7332
  * @memberof PermissionOutputDTO
6871
7333
  */
6872
- id: string;
7334
+ id: string;
7335
+ /**
7336
+ *
7337
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7338
+ * @memberof PermissionOutputDTO
7339
+ */
7340
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7341
+ /**
7342
+ *
7343
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7344
+ * @memberof PermissionOutputDTO
7345
+ */
7346
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7347
+ }
7348
+ /**
7349
+ *
7350
+ * @export
7351
+ * @interface PermissionOutputDTOAPI
7352
+ */
7353
+ export interface PermissionOutputDTOAPI {
7354
+ /**
7355
+ *
7356
+ * @type {Array<PermissionOutputDTO>}
7357
+ * @memberof PermissionOutputDTOAPI
7358
+ */
7359
+ data: Array<PermissionOutputDTO>;
7360
+ /**
7361
+ *
7362
+ * @type {MetadataOutput}
7363
+ * @memberof PermissionOutputDTOAPI
7364
+ */
7365
+ meta: MetadataOutput;
7366
+ }
7367
+ /**
7368
+ *
7369
+ * @export
7370
+ * @interface PermissionVersionDTO
7371
+ */
7372
+ export interface PermissionVersionDTO {
7373
+ /**
7374
+ *
7375
+ * @type {string}
7376
+ * @memberof PermissionVersionDTO
7377
+ */
7378
+ id: string;
7379
+ /**
7380
+ *
7381
+ * @type {string}
7382
+ * @memberof PermissionVersionDTO
7383
+ */
7384
+ tag: string;
7385
+ }
7386
+ /**
7387
+ *
7388
+ * @export
7389
+ * @interface PlayerCreateDTO
7390
+ */
7391
+ export interface PlayerCreateDTO {
7392
+ /**
7393
+ *
7394
+ * @type {string}
7395
+ * @memberof PlayerCreateDTO
7396
+ */
7397
+ name: string;
7398
+ /**
7399
+ *
7400
+ * @type {string}
7401
+ * @memberof PlayerCreateDTO
7402
+ */
7403
+ steamId?: string;
7404
+ /**
7405
+ *
7406
+ * @type {string}
7407
+ * @memberof PlayerCreateDTO
7408
+ */
7409
+ xboxLiveId?: string;
7410
+ /**
7411
+ *
7412
+ * @type {string}
7413
+ * @memberof PlayerCreateDTO
7414
+ */
7415
+ epicOnlineServicesId?: string;
7416
+ /**
7417
+ *
7418
+ * @type {string}
7419
+ * @memberof PlayerCreateDTO
7420
+ */
7421
+ platformId?: string;
7422
+ }
7423
+ /**
7424
+ *
7425
+ * @export
7426
+ * @interface PlayerInventoryArrayOutputDTOAPI
7427
+ */
7428
+ export interface PlayerInventoryArrayOutputDTOAPI {
7429
+ /**
7430
+ *
7431
+ * @type {Array<PlayerInventoryOutputDTO>}
7432
+ * @memberof PlayerInventoryArrayOutputDTOAPI
7433
+ */
7434
+ data: Array<PlayerInventoryOutputDTO>;
7435
+ /**
7436
+ *
7437
+ * @type {MetadataOutput}
7438
+ * @memberof PlayerInventoryArrayOutputDTOAPI
7439
+ */
7440
+ meta: MetadataOutput;
7441
+ }
7442
+ /**
7443
+ *
7444
+ * @export
7445
+ * @interface PlayerInventoryHistoryInputDTO
7446
+ */
7447
+ export interface PlayerInventoryHistoryInputDTO {
7448
+ /**
7449
+ *
7450
+ * @type {string}
7451
+ * @memberof PlayerInventoryHistoryInputDTO
7452
+ */
7453
+ playerId: string;
7454
+ /**
7455
+ *
7456
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7457
+ * @memberof PlayerInventoryHistoryInputDTO
7458
+ */
7459
+ startDate: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7460
+ /**
7461
+ *
7462
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7463
+ * @memberof PlayerInventoryHistoryInputDTO
7464
+ */
7465
+ endDate: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7466
+ }
7467
+ /**
7468
+ *
7469
+ * @export
7470
+ * @interface PlayerInventoryOutputDTO
7471
+ */
7472
+ export interface PlayerInventoryOutputDTO {
7473
+ /**
7474
+ *
7475
+ * @type {string}
7476
+ * @memberof PlayerInventoryOutputDTO
7477
+ */
7478
+ playerId: string;
7479
+ /**
7480
+ *
7481
+ * @type {string}
7482
+ * @memberof PlayerInventoryOutputDTO
7483
+ */
7484
+ itemId: string;
7485
+ /**
7486
+ *
7487
+ * @type {string}
7488
+ * @memberof PlayerInventoryOutputDTO
7489
+ */
7490
+ itemName: string;
7491
+ /**
7492
+ *
7493
+ * @type {string}
7494
+ * @memberof PlayerInventoryOutputDTO
7495
+ */
7496
+ itemCode: string;
7497
+ /**
7498
+ *
7499
+ * @type {number}
7500
+ * @memberof PlayerInventoryOutputDTO
7501
+ */
7502
+ quantity: number;
6873
7503
  /**
6874
7504
  *
6875
7505
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6876
- * @memberof PermissionOutputDTO
7506
+ * @memberof PlayerInventoryOutputDTO
6877
7507
  */
6878
7508
  createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7509
+ /**
7510
+ *
7511
+ * @type {string}
7512
+ * @memberof PlayerInventoryOutputDTO
7513
+ */
7514
+ id: string;
6879
7515
  /**
6880
7516
  *
6881
7517
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6882
- * @memberof PermissionOutputDTO
7518
+ * @memberof PlayerInventoryOutputDTO
6883
7519
  */
6884
7520
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6885
7521
  }
6886
7522
  /**
6887
7523
  *
6888
7524
  * @export
6889
- * @interface PermissionOutputDTOAPI
7525
+ * @interface PlayerItemHistoryArrayOutputDTOAPI
6890
7526
  */
6891
- export interface PermissionOutputDTOAPI {
7527
+ export interface PlayerItemHistoryArrayOutputDTOAPI {
6892
7528
  /**
6893
7529
  *
6894
- * @type {Array<PermissionOutputDTO>}
6895
- * @memberof PermissionOutputDTOAPI
7530
+ * @type {Array<PlayerItemHistoryOutputDTO>}
7531
+ * @memberof PlayerItemHistoryArrayOutputDTOAPI
6896
7532
  */
6897
- data: Array<PermissionOutputDTO>;
7533
+ data: Array<PlayerItemHistoryOutputDTO>;
6898
7534
  /**
6899
7535
  *
6900
7536
  * @type {MetadataOutput}
6901
- * @memberof PermissionOutputDTOAPI
7537
+ * @memberof PlayerItemHistoryArrayOutputDTOAPI
6902
7538
  */
6903
7539
  meta: MetadataOutput;
6904
7540
  }
6905
7541
  /**
6906
7542
  *
6907
7543
  * @export
6908
- * @interface PermissionVersionDTO
7544
+ * @interface PlayerItemHistoryOutputDTO
6909
7545
  */
6910
- export interface PermissionVersionDTO {
6911
- /**
6912
- *
6913
- * @type {string}
6914
- * @memberof PermissionVersionDTO
6915
- */
6916
- id: string;
7546
+ export interface PlayerItemHistoryOutputDTO {
6917
7547
  /**
6918
7548
  *
6919
7549
  * @type {string}
6920
- * @memberof PermissionVersionDTO
7550
+ * @memberof PlayerItemHistoryOutputDTO
6921
7551
  */
6922
- tag: string;
6923
- }
6924
- /**
6925
- *
6926
- * @export
6927
- * @interface PlayerCreateDTO
6928
- */
6929
- export interface PlayerCreateDTO {
7552
+ playerId: string;
6930
7553
  /**
6931
7554
  *
6932
- * @type {string}
6933
- * @memberof PlayerCreateDTO
7555
+ * @type {number}
7556
+ * @memberof PlayerItemHistoryOutputDTO
6934
7557
  */
6935
- name: string;
7558
+ quantity: number;
6936
7559
  /**
6937
7560
  *
6938
- * @type {string}
6939
- * @memberof PlayerCreateDTO
7561
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7562
+ * @memberof PlayerItemHistoryOutputDTO
6940
7563
  */
6941
- steamId?: string;
7564
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6942
7565
  /**
6943
7566
  *
6944
7567
  * @type {string}
6945
- * @memberof PlayerCreateDTO
7568
+ * @memberof PlayerItemHistoryOutputDTO
6946
7569
  */
6947
- xboxLiveId?: string;
7570
+ id: string;
6948
7571
  /**
6949
7572
  *
6950
- * @type {string}
6951
- * @memberof PlayerCreateDTO
7573
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7574
+ * @memberof PlayerItemHistoryOutputDTO
6952
7575
  */
6953
- epicOnlineServicesId?: string;
7576
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6954
7577
  }
6955
7578
  /**
6956
7579
  *
@@ -7266,6 +7889,12 @@ export interface PlayerOnGameServerUpdateDTO {
7266
7889
  * @memberof PlayerOnGameServerUpdateDTO
7267
7890
  */
7268
7891
  positionZ?: number;
7892
+ /**
7893
+ *
7894
+ * @type {string}
7895
+ * @memberof PlayerOnGameServerUpdateDTO
7896
+ */
7897
+ dimension?: string;
7269
7898
  /**
7270
7899
  *
7271
7900
  * @type {string}
@@ -7358,6 +7987,12 @@ export interface PlayerOnGameserverOutputDTO {
7358
7987
  * @memberof PlayerOnGameserverOutputDTO
7359
7988
  */
7360
7989
  positionZ?: number;
7990
+ /**
7991
+ *
7992
+ * @type {string}
7993
+ * @memberof PlayerOnGameserverOutputDTO
7994
+ */
7995
+ dimension?: string;
7361
7996
  /**
7362
7997
  *
7363
7998
  * @type {string}
@@ -7504,6 +8139,12 @@ export interface PlayerOnGameserverOutputWithRolesDTO {
7504
8139
  * @memberof PlayerOnGameserverOutputWithRolesDTO
7505
8140
  */
7506
8141
  positionZ?: number;
8142
+ /**
8143
+ *
8144
+ * @type {string}
8145
+ * @memberof PlayerOnGameserverOutputWithRolesDTO
8146
+ */
8147
+ dimension?: string;
7507
8148
  /**
7508
8149
  *
7509
8150
  * @type {string}
@@ -7596,6 +8237,12 @@ export interface PlayerOutputDTO {
7596
8237
  * @memberof PlayerOutputDTO
7597
8238
  */
7598
8239
  epicOnlineServicesId?: string;
8240
+ /**
8241
+ *
8242
+ * @type {string}
8243
+ * @memberof PlayerOutputDTO
8244
+ */
8245
+ platformId?: string;
7599
8246
  /**
7600
8247
  *
7601
8248
  * @type {string}
@@ -7754,6 +8401,12 @@ export interface PlayerOutputWithRolesDTO {
7754
8401
  * @memberof PlayerOutputWithRolesDTO
7755
8402
  */
7756
8403
  epicOnlineServicesId?: string;
8404
+ /**
8405
+ *
8406
+ * @type {string}
8407
+ * @memberof PlayerOutputWithRolesDTO
8408
+ */
8409
+ platformId?: string;
7757
8410
  /**
7758
8411
  *
7759
8412
  * @type {string}
@@ -7944,6 +8597,12 @@ export interface PlayerSearchInputAllowedFilters {
7944
8597
  * @memberof PlayerSearchInputAllowedFilters
7945
8598
  */
7946
8599
  xboxLiveId?: Array<string>;
8600
+ /**
8601
+ *
8602
+ * @type {Array<string>}
8603
+ * @memberof PlayerSearchInputAllowedFilters
8604
+ */
8605
+ platformId?: Array<string>;
7947
8606
  /**
7948
8607
  *
7949
8608
  * @type {Array<boolean>}
@@ -8036,6 +8695,12 @@ export interface PlayerSearchInputAllowedSearch {
8036
8695
  * @memberof PlayerSearchInputAllowedSearch
8037
8696
  */
8038
8697
  steamId?: Array<string>;
8698
+ /**
8699
+ *
8700
+ * @type {Array<string>}
8701
+ * @memberof PlayerSearchInputAllowedSearch
8702
+ */
8703
+ platformId?: Array<string>;
8039
8704
  }
8040
8705
  /**
8041
8706
  *
@@ -8133,6 +8798,12 @@ export interface PlayerUpdateDTO {
8133
8798
  * @memberof PlayerUpdateDTO
8134
8799
  */
8135
8800
  epicOnlineServicesId?: string;
8801
+ /**
8802
+ *
8803
+ * @type {string}
8804
+ * @memberof PlayerUpdateDTO
8805
+ */
8806
+ platformId?: string;
8136
8807
  /**
8137
8808
  *
8138
8809
  * @type {number}
@@ -8140,6 +8811,31 @@ export interface PlayerUpdateDTO {
8140
8811
  */
8141
8812
  playtimeSeconds?: number;
8142
8813
  }
8814
+ /**
8815
+ *
8816
+ * @export
8817
+ * @interface PlayersByItemInputDTO
8818
+ */
8819
+ export interface PlayersByItemInputDTO {
8820
+ /**
8821
+ *
8822
+ * @type {string}
8823
+ * @memberof PlayersByItemInputDTO
8824
+ */
8825
+ itemId: string;
8826
+ /**
8827
+ *
8828
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
8829
+ * @memberof PlayersByItemInputDTO
8830
+ */
8831
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
8832
+ /**
8833
+ *
8834
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
8835
+ * @memberof PlayersByItemInputDTO
8836
+ */
8837
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
8838
+ }
8143
8839
  /**
8144
8840
  *
8145
8841
  * @export
@@ -8284,6 +8980,19 @@ export interface RedirectQs {
8284
8980
  */
8285
8981
  redirect: string;
8286
8982
  }
8983
+ /**
8984
+ *
8985
+ * @export
8986
+ * @interface ResolveRegistrationTokenInputDTO
8987
+ */
8988
+ export interface ResolveRegistrationTokenInputDTO {
8989
+ /**
8990
+ *
8991
+ * @type {string}
8992
+ * @memberof ResolveRegistrationTokenInputDTO
8993
+ */
8994
+ registrationToken: string;
8995
+ }
8287
8996
  /**
8288
8997
  *
8289
8998
  * @export
@@ -10400,6 +11109,12 @@ export interface TeleportPlayerInputDTO {
10400
11109
  * @memberof TeleportPlayerInputDTO
10401
11110
  */
10402
11111
  z: number;
11112
+ /**
11113
+ *
11114
+ * @type {string}
11115
+ * @memberof TeleportPlayerInputDTO
11116
+ */
11117
+ dimension?: string;
10403
11118
  }
10404
11119
  /**
10405
11120
  *
@@ -12126,6 +12841,14 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
12126
12841
  * @throws {RequiredError}
12127
12842
  */
12128
12843
  domainControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12844
+ /**
12845
+ * <br> OperationId: `DomainControllerResolveRegistrationToken`
12846
+ * @summary Resolve registration token
12847
+ * @param {ResolveRegistrationTokenInputDTO} [resolveRegistrationTokenInputDTO] ResolveRegistrationTokenInputDTO
12848
+ * @param {*} [options] Override http request option.
12849
+ * @throws {RequiredError}
12850
+ */
12851
+ domainControllerResolveRegistrationToken: (resolveRegistrationTokenInputDTO?: ResolveRegistrationTokenInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12129
12852
  /**
12130
12853
  * <br> OperationId: `DomainControllerSearch`
12131
12854
  * @summary Search
@@ -12181,6 +12904,14 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
12181
12904
  * @throws {RequiredError}
12182
12905
  */
12183
12906
  domainControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
12907
+ /**
12908
+ * <br> OperationId: `DomainControllerResolveRegistrationToken`
12909
+ * @summary Resolve registration token
12910
+ * @param {ResolveRegistrationTokenInputDTO} [resolveRegistrationTokenInputDTO] ResolveRegistrationTokenInputDTO
12911
+ * @param {*} [options] Override http request option.
12912
+ * @throws {RequiredError}
12913
+ */
12914
+ domainControllerResolveRegistrationToken(resolveRegistrationTokenInputDTO?: ResolveRegistrationTokenInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainOutputDTOAPI>>;
12184
12915
  /**
12185
12916
  * <br> OperationId: `DomainControllerSearch`
12186
12917
  * @summary Search
@@ -12236,6 +12967,14 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
12236
12967
  * @throws {RequiredError}
12237
12968
  */
12238
12969
  domainControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
12970
+ /**
12971
+ * <br> OperationId: `DomainControllerResolveRegistrationToken`
12972
+ * @summary Resolve registration token
12973
+ * @param {ResolveRegistrationTokenInputDTO} [resolveRegistrationTokenInputDTO] ResolveRegistrationTokenInputDTO
12974
+ * @param {*} [options] Override http request option.
12975
+ * @throws {RequiredError}
12976
+ */
12977
+ domainControllerResolveRegistrationToken(resolveRegistrationTokenInputDTO?: ResolveRegistrationTokenInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainOutputDTOAPI>;
12239
12978
  /**
12240
12979
  * <br> OperationId: `DomainControllerSearch`
12241
12980
  * @summary Search
@@ -12297,6 +13036,15 @@ export declare class DomainApi extends BaseAPI {
12297
13036
  * @memberof DomainApi
12298
13037
  */
12299
13038
  domainControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
13039
+ /**
13040
+ * <br> OperationId: `DomainControllerResolveRegistrationToken`
13041
+ * @summary Resolve registration token
13042
+ * @param {ResolveRegistrationTokenInputDTO} [resolveRegistrationTokenInputDTO] ResolveRegistrationTokenInputDTO
13043
+ * @param {*} [options] Override http request option.
13044
+ * @throws {RequiredError}
13045
+ * @memberof DomainApi
13046
+ */
13047
+ domainControllerResolveRegistrationToken(resolveRegistrationTokenInputDTO?: ResolveRegistrationTokenInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainOutputDTOAPI, any>>;
12300
13048
  /**
12301
13049
  * <br> OperationId: `DomainControllerSearch`
12302
13050
  * @summary Search
@@ -12317,6 +13065,98 @@ export declare class DomainApi extends BaseAPI {
12317
13065
  */
12318
13066
  domainControllerUpdate(id: string, domainUpdateInputDTO?: DomainUpdateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainOutputDTOAPI, any>>;
12319
13067
  }
13068
+ /**
13069
+ * EntityApi - axios parameter creator
13070
+ * @export
13071
+ */
13072
+ export declare const EntityApiAxiosParamCreator: (configuration?: Configuration) => {
13073
+ /**
13074
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerFindOne`
13075
+ * @summary Find one
13076
+ * @param {string} id
13077
+ * @param {*} [options] Override http request option.
13078
+ * @throws {RequiredError}
13079
+ */
13080
+ entityControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13081
+ /**
13082
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerSearch`
13083
+ * @summary Search
13084
+ * @param {EntitySearchInputDTO} [entitySearchInputDTO] EntitySearchInputDTO
13085
+ * @param {*} [options] Override http request option.
13086
+ * @throws {RequiredError}
13087
+ */
13088
+ entityControllerSearch: (entitySearchInputDTO?: EntitySearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13089
+ };
13090
+ /**
13091
+ * EntityApi - functional programming interface
13092
+ * @export
13093
+ */
13094
+ export declare const EntityApiFp: (configuration?: Configuration) => {
13095
+ /**
13096
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerFindOne`
13097
+ * @summary Find one
13098
+ * @param {string} id
13099
+ * @param {*} [options] Override http request option.
13100
+ * @throws {RequiredError}
13101
+ */
13102
+ entityControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntityOutputDTOAPI>>;
13103
+ /**
13104
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerSearch`
13105
+ * @summary Search
13106
+ * @param {EntitySearchInputDTO} [entitySearchInputDTO] EntitySearchInputDTO
13107
+ * @param {*} [options] Override http request option.
13108
+ * @throws {RequiredError}
13109
+ */
13110
+ entityControllerSearch(entitySearchInputDTO?: EntitySearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EntityOutputArrayDTOAPI>>;
13111
+ };
13112
+ /**
13113
+ * EntityApi - factory interface
13114
+ * @export
13115
+ */
13116
+ export declare const EntityApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
13117
+ /**
13118
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerFindOne`
13119
+ * @summary Find one
13120
+ * @param {string} id
13121
+ * @param {*} [options] Override http request option.
13122
+ * @throws {RequiredError}
13123
+ */
13124
+ entityControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EntityOutputDTOAPI>;
13125
+ /**
13126
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerSearch`
13127
+ * @summary Search
13128
+ * @param {EntitySearchInputDTO} [entitySearchInputDTO] EntitySearchInputDTO
13129
+ * @param {*} [options] Override http request option.
13130
+ * @throws {RequiredError}
13131
+ */
13132
+ entityControllerSearch(entitySearchInputDTO?: EntitySearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EntityOutputArrayDTOAPI>;
13133
+ };
13134
+ /**
13135
+ * EntityApi - object-oriented interface
13136
+ * @export
13137
+ * @class EntityApi
13138
+ * @extends {BaseAPI}
13139
+ */
13140
+ export declare class EntityApi extends BaseAPI {
13141
+ /**
13142
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerFindOne`
13143
+ * @summary Find one
13144
+ * @param {string} id
13145
+ * @param {*} [options] Override http request option.
13146
+ * @throws {RequiredError}
13147
+ * @memberof EntityApi
13148
+ */
13149
+ entityControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntityOutputDTOAPI, any>>;
13150
+ /**
13151
+ * Required permissions: `READ_ENTITIES`<br> OperationId: `EntityControllerSearch`
13152
+ * @summary Search
13153
+ * @param {EntitySearchInputDTO} [entitySearchInputDTO] EntitySearchInputDTO
13154
+ * @param {*} [options] Override http request option.
13155
+ * @throws {RequiredError}
13156
+ * @memberof EntityApi
13157
+ */
13158
+ entityControllerSearch(entitySearchInputDTO?: EntitySearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EntityOutputArrayDTOAPI, any>>;
13159
+ }
12320
13160
  /**
12321
13161
  * EventApi - axios parameter creator
12322
13162
  * @export
@@ -12887,6 +13727,13 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
12887
13727
  * @throws {RequiredError}
12888
13728
  */
12889
13729
  gameServerControllerListBans: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
13730
+ /**
13731
+ * Regenerate the registration token for a gameserver. Careful, this will invalidate all existing connections. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRegenerateRegistrationToken`
13732
+ * @summary Regenerate registration token
13733
+ * @param {*} [options] Override http request option.
13734
+ * @throws {RequiredError}
13735
+ */
13736
+ gameServerControllerRegenerateRegistrationToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
12890
13737
  /**
12891
13738
  * Delete a gameserver Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRemove`
12892
13739
  * @summary Remove
@@ -13104,6 +13951,13 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
13104
13951
  * @throws {RequiredError}
13105
13952
  */
13106
13953
  gameServerControllerListBans(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanPlayerOutputDTO>>;
13954
+ /**
13955
+ * Regenerate the registration token for a gameserver. Careful, this will invalidate all existing connections. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRegenerateRegistrationToken`
13956
+ * @summary Regenerate registration token
13957
+ * @param {*} [options] Override http request option.
13958
+ * @throws {RequiredError}
13959
+ */
13960
+ gameServerControllerRegenerateRegistrationToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
13107
13961
  /**
13108
13962
  * Delete a gameserver Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRemove`
13109
13963
  * @summary Remove
@@ -13321,6 +14175,13 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
13321
14175
  * @throws {RequiredError}
13322
14176
  */
13323
14177
  gameServerControllerListBans(id: string, options?: RawAxiosRequestConfig): AxiosPromise<BanPlayerOutputDTO>;
14178
+ /**
14179
+ * Regenerate the registration token for a gameserver. Careful, this will invalidate all existing connections. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRegenerateRegistrationToken`
14180
+ * @summary Regenerate registration token
14181
+ * @param {*} [options] Override http request option.
14182
+ * @throws {RequiredError}
14183
+ */
14184
+ gameServerControllerRegenerateRegistrationToken(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
13324
14185
  /**
13325
14186
  * Delete a gameserver Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRemove`
13326
14187
  * @summary Remove
@@ -13554,6 +14415,14 @@ export declare class GameServerApi extends BaseAPI {
13554
14415
  * @memberof GameServerApi
13555
14416
  */
13556
14417
  gameServerControllerListBans(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanPlayerOutputDTO, any>>;
14418
+ /**
14419
+ * Regenerate the registration token for a gameserver. Careful, this will invalidate all existing connections. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRegenerateRegistrationToken`
14420
+ * @summary Regenerate registration token
14421
+ * @param {*} [options] Override http request option.
14422
+ * @throws {RequiredError}
14423
+ * @memberof GameServerApi
14424
+ */
14425
+ gameServerControllerRegenerateRegistrationToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
13557
14426
  /**
13558
14427
  * Delete a gameserver Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `GameServerControllerRemove`
13559
14428
  * @summary Remove
@@ -16654,6 +17523,14 @@ export declare const TrackingApiAxiosParamCreator: (configuration?: Configuratio
16654
17523
  * @throws {RequiredError}
16655
17524
  */
16656
17525
  trackingControllerGetBoundingBoxPlayers: (boundingBoxSearchInputDTO?: BoundingBoxSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17526
+ /**
17527
+ * Get inventory changes for a player between two timestamps Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerInventoryHistory`
17528
+ * @summary Get player inventory history
17529
+ * @param {PlayerInventoryHistoryInputDTO} [playerInventoryHistoryInputDTO] PlayerInventoryHistoryInputDTO
17530
+ * @param {*} [options] Override http request option.
17531
+ * @throws {RequiredError}
17532
+ */
17533
+ trackingControllerGetPlayerInventoryHistory: (playerInventoryHistoryInputDTO?: PlayerInventoryHistoryInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16657
17534
  /**
16658
17535
  * Get movement history for players within date bounds Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerMovementHistory`
16659
17536
  * @summary Get player movement history
@@ -16662,6 +17539,14 @@ export declare const TrackingApiAxiosParamCreator: (configuration?: Configuratio
16662
17539
  * @throws {RequiredError}
16663
17540
  */
16664
17541
  trackingControllerGetPlayerMovementHistory: (playerMovementHistoryInputDTO?: PlayerMovementHistoryInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17542
+ /**
17543
+ * Find all players who have had a specific item in their inventory Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayersByItem`
17544
+ * @summary Get players by item
17545
+ * @param {PlayersByItemInputDTO} [playersByItemInputDTO] PlayersByItemInputDTO
17546
+ * @param {*} [options] Override http request option.
17547
+ * @throws {RequiredError}
17548
+ */
17549
+ trackingControllerGetPlayersByItem: (playersByItemInputDTO?: PlayersByItemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16665
17550
  /**
16666
17551
  * Find all players within a spherical area from a center point Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetRadiusPlayers`
16667
17552
  * @summary Get radius players
@@ -16684,6 +17569,14 @@ export declare const TrackingApiFp: (configuration?: Configuration) => {
16684
17569
  * @throws {RequiredError}
16685
17570
  */
16686
17571
  trackingControllerGetBoundingBoxPlayers(boundingBoxSearchInputDTO?: BoundingBoxSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerLocationArrayOutputDTOAPI>>;
17572
+ /**
17573
+ * Get inventory changes for a player between two timestamps Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerInventoryHistory`
17574
+ * @summary Get player inventory history
17575
+ * @param {PlayerInventoryHistoryInputDTO} [playerInventoryHistoryInputDTO] PlayerInventoryHistoryInputDTO
17576
+ * @param {*} [options] Override http request option.
17577
+ * @throws {RequiredError}
17578
+ */
17579
+ trackingControllerGetPlayerInventoryHistory(playerInventoryHistoryInputDTO?: PlayerInventoryHistoryInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerInventoryArrayOutputDTOAPI>>;
16687
17580
  /**
16688
17581
  * Get movement history for players within date bounds Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerMovementHistory`
16689
17582
  * @summary Get player movement history
@@ -16692,6 +17585,14 @@ export declare const TrackingApiFp: (configuration?: Configuration) => {
16692
17585
  * @throws {RequiredError}
16693
17586
  */
16694
17587
  trackingControllerGetPlayerMovementHistory(playerMovementHistoryInputDTO?: PlayerMovementHistoryInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerLocationArrayOutputDTOAPI>>;
17588
+ /**
17589
+ * Find all players who have had a specific item in their inventory Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayersByItem`
17590
+ * @summary Get players by item
17591
+ * @param {PlayersByItemInputDTO} [playersByItemInputDTO] PlayersByItemInputDTO
17592
+ * @param {*} [options] Override http request option.
17593
+ * @throws {RequiredError}
17594
+ */
17595
+ trackingControllerGetPlayersByItem(playersByItemInputDTO?: PlayersByItemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerItemHistoryArrayOutputDTOAPI>>;
16695
17596
  /**
16696
17597
  * Find all players within a spherical area from a center point Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetRadiusPlayers`
16697
17598
  * @summary Get radius players
@@ -16714,6 +17615,14 @@ export declare const TrackingApiFactory: (configuration?: Configuration, basePat
16714
17615
  * @throws {RequiredError}
16715
17616
  */
16716
17617
  trackingControllerGetBoundingBoxPlayers(boundingBoxSearchInputDTO?: BoundingBoxSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerLocationArrayOutputDTOAPI>;
17618
+ /**
17619
+ * Get inventory changes for a player between two timestamps Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerInventoryHistory`
17620
+ * @summary Get player inventory history
17621
+ * @param {PlayerInventoryHistoryInputDTO} [playerInventoryHistoryInputDTO] PlayerInventoryHistoryInputDTO
17622
+ * @param {*} [options] Override http request option.
17623
+ * @throws {RequiredError}
17624
+ */
17625
+ trackingControllerGetPlayerInventoryHistory(playerInventoryHistoryInputDTO?: PlayerInventoryHistoryInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerInventoryArrayOutputDTOAPI>;
16717
17626
  /**
16718
17627
  * Get movement history for players within date bounds Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerMovementHistory`
16719
17628
  * @summary Get player movement history
@@ -16722,6 +17631,14 @@ export declare const TrackingApiFactory: (configuration?: Configuration, basePat
16722
17631
  * @throws {RequiredError}
16723
17632
  */
16724
17633
  trackingControllerGetPlayerMovementHistory(playerMovementHistoryInputDTO?: PlayerMovementHistoryInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerLocationArrayOutputDTOAPI>;
17634
+ /**
17635
+ * Find all players who have had a specific item in their inventory Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayersByItem`
17636
+ * @summary Get players by item
17637
+ * @param {PlayersByItemInputDTO} [playersByItemInputDTO] PlayersByItemInputDTO
17638
+ * @param {*} [options] Override http request option.
17639
+ * @throws {RequiredError}
17640
+ */
17641
+ trackingControllerGetPlayersByItem(playersByItemInputDTO?: PlayersByItemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerItemHistoryArrayOutputDTOAPI>;
16725
17642
  /**
16726
17643
  * Find all players within a spherical area from a center point Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetRadiusPlayers`
16727
17644
  * @summary Get radius players
@@ -16747,6 +17664,15 @@ export declare class TrackingApi extends BaseAPI {
16747
17664
  * @memberof TrackingApi
16748
17665
  */
16749
17666
  trackingControllerGetBoundingBoxPlayers(boundingBoxSearchInputDTO?: BoundingBoxSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerLocationArrayOutputDTOAPI, any>>;
17667
+ /**
17668
+ * Get inventory changes for a player between two timestamps Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerInventoryHistory`
17669
+ * @summary Get player inventory history
17670
+ * @param {PlayerInventoryHistoryInputDTO} [playerInventoryHistoryInputDTO] PlayerInventoryHistoryInputDTO
17671
+ * @param {*} [options] Override http request option.
17672
+ * @throws {RequiredError}
17673
+ * @memberof TrackingApi
17674
+ */
17675
+ trackingControllerGetPlayerInventoryHistory(playerInventoryHistoryInputDTO?: PlayerInventoryHistoryInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerInventoryArrayOutputDTOAPI, any>>;
16750
17676
  /**
16751
17677
  * Get movement history for players within date bounds Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayerMovementHistory`
16752
17678
  * @summary Get player movement history
@@ -16756,6 +17682,15 @@ export declare class TrackingApi extends BaseAPI {
16756
17682
  * @memberof TrackingApi
16757
17683
  */
16758
17684
  trackingControllerGetPlayerMovementHistory(playerMovementHistoryInputDTO?: PlayerMovementHistoryInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerLocationArrayOutputDTOAPI, any>>;
17685
+ /**
17686
+ * Find all players who have had a specific item in their inventory Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetPlayersByItem`
17687
+ * @summary Get players by item
17688
+ * @param {PlayersByItemInputDTO} [playersByItemInputDTO] PlayersByItemInputDTO
17689
+ * @param {*} [options] Override http request option.
17690
+ * @throws {RequiredError}
17691
+ * @memberof TrackingApi
17692
+ */
17693
+ trackingControllerGetPlayersByItem(playersByItemInputDTO?: PlayersByItemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerItemHistoryArrayOutputDTOAPI, any>>;
16759
17694
  /**
16760
17695
  * Find all players within a spherical area from a center point Required permissions: `READ_PLAYERS`<br> OperationId: `TrackingControllerGetRadiusPlayers`
16761
17696
  * @summary Get radius players