@takaro/apiclient 0.4.0 → 0.4.4

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.
@@ -3882,10 +3882,10 @@ export interface FunctionSearchInputDTO {
3882
3882
  }
3883
3883
 
3884
3884
  export const FunctionSearchInputDTOExtendEnum = {
3885
- Module: 'module',
3886
- CronJobs: 'cronJobs',
3887
- Hooks: 'hooks',
3888
- Commands: 'commands',
3885
+ Version: 'version',
3886
+ CronJob: 'cronJob',
3887
+ Hook: 'hook',
3888
+ Command: 'command',
3889
3889
  } as const;
3890
3890
 
3891
3891
  export type FunctionSearchInputDTOExtendEnum =
@@ -3965,6 +3965,19 @@ export const GameServerCreateDTOTypeEnum = {
3965
3965
  export type GameServerCreateDTOTypeEnum =
3966
3966
  (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
3967
3967
 
3968
+ /**
3969
+ *
3970
+ * @export
3971
+ * @interface GameServerIdParam
3972
+ */
3973
+ export interface GameServerIdParam {
3974
+ /**
3975
+ *
3976
+ * @type {string}
3977
+ * @memberof GameServerIdParam
3978
+ */
3979
+ gameServerId: string;
3980
+ }
3968
3981
  /**
3969
3982
  *
3970
3983
  * @export
@@ -4457,6 +4470,8 @@ export const GetSettingsInputKeysEnum = {
4457
4470
  DomainName: 'domainName',
4458
4471
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
4459
4472
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
4473
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
4474
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
4460
4475
  } as const;
4461
4476
 
4462
4477
  export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
@@ -6390,7 +6405,7 @@ export interface ItemSearchInputDTO {
6390
6405
  }
6391
6406
 
6392
6407
  export const ItemSearchInputDTOExtendEnum = {
6393
- GameServer: 'gameServer',
6408
+ Gameserver: 'gameserver',
6394
6409
  } as const;
6395
6410
 
6396
6411
  export type ItemSearchInputDTOExtendEnum =
@@ -8306,6 +8321,8 @@ export const ParamKeyKeyEnum = {
8306
8321
  DomainName: 'domainName',
8307
8322
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
8308
8323
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
8324
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
8325
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
8309
8326
  } as const;
8310
8327
 
8311
8328
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
@@ -8552,6 +8569,82 @@ export interface PermissionVersionDTO {
8552
8569
  */
8553
8570
  tag: string;
8554
8571
  }
8572
+ /**
8573
+ *
8574
+ * @export
8575
+ * @interface PlayerBulkDeleteErrorDTO
8576
+ */
8577
+ export interface PlayerBulkDeleteErrorDTO {
8578
+ /**
8579
+ *
8580
+ * @type {string}
8581
+ * @memberof PlayerBulkDeleteErrorDTO
8582
+ */
8583
+ playerId: string;
8584
+ /**
8585
+ *
8586
+ * @type {string}
8587
+ * @memberof PlayerBulkDeleteErrorDTO
8588
+ */
8589
+ reason: string;
8590
+ }
8591
+ /**
8592
+ *
8593
+ * @export
8594
+ * @interface PlayerBulkDeleteInputDTO
8595
+ */
8596
+ export interface PlayerBulkDeleteInputDTO {
8597
+ /**
8598
+ *
8599
+ * @type {Array<string>}
8600
+ * @memberof PlayerBulkDeleteInputDTO
8601
+ */
8602
+ playerIds: Array<string>;
8603
+ }
8604
+ /**
8605
+ *
8606
+ * @export
8607
+ * @interface PlayerBulkDeleteOutputDTO
8608
+ */
8609
+ export interface PlayerBulkDeleteOutputDTO {
8610
+ /**
8611
+ *
8612
+ * @type {number}
8613
+ * @memberof PlayerBulkDeleteOutputDTO
8614
+ */
8615
+ deleted: number;
8616
+ /**
8617
+ *
8618
+ * @type {number}
8619
+ * @memberof PlayerBulkDeleteOutputDTO
8620
+ */
8621
+ failed: number;
8622
+ /**
8623
+ *
8624
+ * @type {Array<PlayerBulkDeleteErrorDTO>}
8625
+ * @memberof PlayerBulkDeleteOutputDTO
8626
+ */
8627
+ errors: Array<PlayerBulkDeleteErrorDTO>;
8628
+ }
8629
+ /**
8630
+ *
8631
+ * @export
8632
+ * @interface PlayerBulkDeleteOutputDTOAPI
8633
+ */
8634
+ export interface PlayerBulkDeleteOutputDTOAPI {
8635
+ /**
8636
+ *
8637
+ * @type {PlayerBulkDeleteOutputDTO}
8638
+ * @memberof PlayerBulkDeleteOutputDTOAPI
8639
+ */
8640
+ data: PlayerBulkDeleteOutputDTO;
8641
+ /**
8642
+ *
8643
+ * @type {MetadataOutput}
8644
+ * @memberof PlayerBulkDeleteOutputDTOAPI
8645
+ */
8646
+ meta: MetadataOutput;
8647
+ }
8555
8648
  /**
8556
8649
  *
8557
8650
  * @export
@@ -10090,6 +10183,82 @@ export interface PlayersOnlineInputDTO {
10090
10183
  */
10091
10184
  endDate?: string;
10092
10185
  }
10186
+ /**
10187
+ *
10188
+ * @export
10189
+ * @interface PogBulkDeleteErrorDTO
10190
+ */
10191
+ export interface PogBulkDeleteErrorDTO {
10192
+ /**
10193
+ *
10194
+ * @type {string}
10195
+ * @memberof PogBulkDeleteErrorDTO
10196
+ */
10197
+ playerId: string;
10198
+ /**
10199
+ *
10200
+ * @type {string}
10201
+ * @memberof PogBulkDeleteErrorDTO
10202
+ */
10203
+ reason: string;
10204
+ }
10205
+ /**
10206
+ *
10207
+ * @export
10208
+ * @interface PogBulkDeleteInputDTO
10209
+ */
10210
+ export interface PogBulkDeleteInputDTO {
10211
+ /**
10212
+ *
10213
+ * @type {Array<string>}
10214
+ * @memberof PogBulkDeleteInputDTO
10215
+ */
10216
+ playerIds: Array<string>;
10217
+ }
10218
+ /**
10219
+ *
10220
+ * @export
10221
+ * @interface PogBulkDeleteOutputDTO
10222
+ */
10223
+ export interface PogBulkDeleteOutputDTO {
10224
+ /**
10225
+ *
10226
+ * @type {number}
10227
+ * @memberof PogBulkDeleteOutputDTO
10228
+ */
10229
+ deleted: number;
10230
+ /**
10231
+ *
10232
+ * @type {number}
10233
+ * @memberof PogBulkDeleteOutputDTO
10234
+ */
10235
+ failed: number;
10236
+ /**
10237
+ *
10238
+ * @type {Array<PogBulkDeleteErrorDTO>}
10239
+ * @memberof PogBulkDeleteOutputDTO
10240
+ */
10241
+ errors: Array<PogBulkDeleteErrorDTO>;
10242
+ }
10243
+ /**
10244
+ *
10245
+ * @export
10246
+ * @interface PogBulkDeleteOutputDTOAPI
10247
+ */
10248
+ export interface PogBulkDeleteOutputDTOAPI {
10249
+ /**
10250
+ *
10251
+ * @type {PogBulkDeleteOutputDTO}
10252
+ * @memberof PogBulkDeleteOutputDTOAPI
10253
+ */
10254
+ data: PogBulkDeleteOutputDTO;
10255
+ /**
10256
+ *
10257
+ * @type {MetadataOutput}
10258
+ * @memberof PogBulkDeleteOutputDTOAPI
10259
+ */
10260
+ meta: MetadataOutput;
10261
+ }
10093
10262
  /**
10094
10263
  *
10095
10264
  * @export
@@ -10878,6 +11047,18 @@ export interface Settings {
10878
11047
  * @memberof Settings
10879
11048
  */
10880
11049
  discordRoleSyncPreferDiscord: string;
11050
+ /**
11051
+ *
11052
+ * @type {string}
11053
+ * @memberof Settings
11054
+ */
11055
+ unknownCommandFeedbackEnabled: string;
11056
+ /**
11057
+ *
11058
+ * @type {string}
11059
+ * @memberof Settings
11060
+ */
11061
+ unknownCommandFeedbackMessage: string;
10881
11062
  /**
10882
11063
  *
10883
11064
  * @type {string}
@@ -10964,6 +11145,8 @@ export const SettingsOutputDTOKeyEnum = {
10964
11145
  DomainName: 'domainName',
10965
11146
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
10966
11147
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
11148
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
11149
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
10967
11150
  } as const;
10968
11151
 
10969
11152
  export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
@@ -11823,7 +12006,7 @@ export interface ShopListingSearchInputDTO {
11823
12006
 
11824
12007
  export const ShopListingSearchInputDTOExtendEnum = {
11825
12008
  GameServer: 'gameServer',
11826
- Item: 'item',
12009
+ Items: 'items',
11827
12010
  Categories: 'categories',
11828
12011
  } as const;
11829
12012
 
@@ -11917,12 +12100,6 @@ export interface ShopOrderCreateInternalDTO {
11917
12100
  * @memberof ShopOrderCreateInternalDTO
11918
12101
  */
11919
12102
  playerId?: string;
11920
- /**
11921
- *
11922
- * @type {string}
11923
- * @memberof ShopOrderCreateInternalDTO
11924
- */
11925
- gameServerId: string;
11926
12103
  /**
11927
12104
  *
11928
12105
  * @type {string}
@@ -11979,12 +12156,6 @@ export interface ShopOrderOutputDTO {
11979
12156
  * @memberof ShopOrderOutputDTO
11980
12157
  */
11981
12158
  playerId: string;
11982
- /**
11983
- *
11984
- * @type {string}
11985
- * @memberof ShopOrderOutputDTO
11986
- */
11987
- gameServerId: string;
11988
12159
  /**
11989
12160
  *
11990
12161
  * @type {number}
@@ -12185,7 +12356,6 @@ export const ShopOrderSearchInputDTOExtendEnum = {
12185
12356
  Listing: 'listing',
12186
12357
  ListingItems: 'listing.items',
12187
12358
  ListingItemsItem: 'listing.items.item',
12188
- Player: 'player',
12189
12359
  } as const;
12190
12360
 
12191
12361
  export type ShopOrderSearchInputDTOExtendEnum =
@@ -14738,7 +14908,7 @@ export const CommandApiAxiosParamCreator = function (configuration?: Configurati
14738
14908
  };
14739
14909
  },
14740
14910
  /**
14741
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
14911
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
14742
14912
  * @summary Search
14743
14913
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
14744
14914
  * @param {*} [options] Override http request option.
@@ -15062,7 +15232,7 @@ export const CommandApiFp = function (configuration?: Configuration) {
15062
15232
  )(axios, localVarOperationServerBasePath || basePath);
15063
15233
  },
15064
15234
  /**
15065
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15235
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15066
15236
  * @summary Search
15067
15237
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15068
15238
  * @param {*} [options] Override http request option.
@@ -15255,7 +15425,7 @@ export const CommandApiFactory = function (configuration?: Configuration, basePa
15255
15425
  return localVarFp.commandControllerRemoveArgument(id, options).then((request) => request(axios, basePath));
15256
15426
  },
15257
15427
  /**
15258
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15428
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15259
15429
  * @summary Search
15260
15430
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15261
15431
  * @param {*} [options] Override http request option.
@@ -15425,7 +15595,7 @@ export class CommandApi extends BaseAPI {
15425
15595
  }
15426
15596
 
15427
15597
  /**
15428
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15598
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15429
15599
  * @summary Search
15430
15600
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15431
15601
  * @param {*} [options] Override http request option.
@@ -15647,7 +15817,7 @@ export const CronJobApiAxiosParamCreator = function (configuration?: Configurati
15647
15817
  };
15648
15818
  },
15649
15819
  /**
15650
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15820
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15651
15821
  * @summary Search
15652
15822
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
15653
15823
  * @param {*} [options] Override http request option.
@@ -15873,7 +16043,7 @@ export const CronJobApiFp = function (configuration?: Configuration) {
15873
16043
  )(axios, localVarOperationServerBasePath || basePath);
15874
16044
  },
15875
16045
  /**
15876
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16046
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15877
16047
  * @summary Search
15878
16048
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
15879
16049
  * @param {*} [options] Override http request option.
@@ -16006,7 +16176,7 @@ export const CronJobApiFactory = function (configuration?: Configuration, basePa
16006
16176
  return localVarFp.cronJobControllerRemove(id, options).then((request) => request(axios, basePath));
16007
16177
  },
16008
16178
  /**
16009
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16179
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16010
16180
  * @summary Search
16011
16181
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
16012
16182
  * @param {*} [options] Override http request option.
@@ -16126,7 +16296,7 @@ export class CronJobApi extends BaseAPI {
16126
16296
  }
16127
16297
 
16128
16298
  /**
16129
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16299
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16130
16300
  * @summary Search
16131
16301
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
16132
16302
  * @param {*} [options] Override http request option.
@@ -17980,7 +18150,7 @@ export const EventApiAxiosParamCreator = function (configuration?: Configuration
17980
18150
  };
17981
18151
  },
17982
18152
  /**
17983
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18153
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
17984
18154
  * @summary Search
17985
18155
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
17986
18156
  * @param {*} [options] Override http request option.
@@ -18122,7 +18292,7 @@ export const EventApiFp = function (configuration?: Configuration) {
18122
18292
  )(axios, localVarOperationServerBasePath || basePath);
18123
18293
  },
18124
18294
  /**
18125
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18295
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18126
18296
  * @summary Search
18127
18297
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18128
18298
  * @param {*} [options] Override http request option.
@@ -18206,7 +18376,7 @@ export const EventApiFactory = function (configuration?: Configuration, basePath
18206
18376
  return localVarFp.eventControllerGetOne(id, options).then((request) => request(axios, basePath));
18207
18377
  },
18208
18378
  /**
18209
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18379
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18210
18380
  * @summary Search
18211
18381
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18212
18382
  * @param {*} [options] Override http request option.
@@ -18285,7 +18455,7 @@ export class EventApi extends BaseAPI {
18285
18455
  }
18286
18456
 
18287
18457
  /**
18288
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18458
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18289
18459
  * @summary Search
18290
18460
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18291
18461
  * @param {*} [options] Override http request option.
@@ -18609,7 +18779,7 @@ export const FunctionApiAxiosParamCreator = function (configuration?: Configurat
18609
18779
  };
18610
18780
  },
18611
18781
  /**
18612
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18782
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18613
18783
  * @summary Search
18614
18784
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18615
18785
  * @param {*} [options] Override http request option.
@@ -18770,7 +18940,7 @@ export const FunctionApiFp = function (configuration?: Configuration) {
18770
18940
  )(axios, localVarOperationServerBasePath || basePath);
18771
18941
  },
18772
18942
  /**
18773
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18943
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18774
18944
  * @summary Search
18775
18945
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18776
18946
  * @param {*} [options] Override http request option.
@@ -18870,7 +19040,7 @@ export const FunctionApiFactory = function (configuration?: Configuration, baseP
18870
19040
  return localVarFp.functionControllerRemove(id, options).then((request) => request(axios, basePath));
18871
19041
  },
18872
19042
  /**
18873
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
19043
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18874
19044
  * @summary Search
18875
19045
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18876
19046
  * @param {*} [options] Override http request option.
@@ -18954,7 +19124,7 @@ export class FunctionApi extends BaseAPI {
18954
19124
  }
18955
19125
 
18956
19126
  /**
18957
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
19127
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18958
19128
  * @summary Search
18959
19129
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18960
19130
  * @param {*} [options] Override http request option.
@@ -21668,7 +21838,7 @@ export const HookApiAxiosParamCreator = function (configuration?: Configuration)
21668
21838
  };
21669
21839
  },
21670
21840
  /**
21671
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21841
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21672
21842
  * @summary Search
21673
21843
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
21674
21844
  * @param {*} [options] Override http request option.
@@ -21894,7 +22064,7 @@ export const HookApiFp = function (configuration?: Configuration) {
21894
22064
  )(axios, localVarOperationServerBasePath || basePath);
21895
22065
  },
21896
22066
  /**
21897
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22067
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21898
22068
  * @summary Search
21899
22069
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
21900
22070
  * @param {*} [options] Override http request option.
@@ -22027,7 +22197,7 @@ export const HookApiFactory = function (configuration?: Configuration, basePath?
22027
22197
  return localVarFp.hookControllerRemove(id, options).then((request) => request(axios, basePath));
22028
22198
  },
22029
22199
  /**
22030
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22200
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22031
22201
  * @summary Search
22032
22202
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
22033
22203
  * @param {*} [options] Override http request option.
@@ -22138,7 +22308,7 @@ export class HookApi extends BaseAPI {
22138
22308
  }
22139
22309
 
22140
22310
  /**
22141
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22311
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22142
22312
  * @summary Search
22143
22313
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
22144
22314
  * @param {*} [options] Override http request option.
@@ -22221,7 +22391,7 @@ export const ItemApiAxiosParamCreator = function (configuration?: Configuration)
22221
22391
  };
22222
22392
  },
22223
22393
  /**
22224
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22394
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22225
22395
  * @summary Search
22226
22396
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22227
22397
  * @param {*} [options] Override http request option.
@@ -22291,7 +22461,7 @@ export const ItemApiFp = function (configuration?: Configuration) {
22291
22461
  )(axios, localVarOperationServerBasePath || basePath);
22292
22462
  },
22293
22463
  /**
22294
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22464
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22295
22465
  * @summary Search
22296
22466
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22297
22467
  * @param {*} [options] Override http request option.
@@ -22334,7 +22504,7 @@ export const ItemApiFactory = function (configuration?: Configuration, basePath?
22334
22504
  return localVarFp.itemControllerFindOne(id, options).then((request) => request(axios, basePath));
22335
22505
  },
22336
22506
  /**
22337
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22507
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22338
22508
  * @summary Search
22339
22509
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22340
22510
  * @param {*} [options] Override http request option.
@@ -22371,7 +22541,7 @@ export class ItemApi extends BaseAPI {
22371
22541
  }
22372
22542
 
22373
22543
  /**
22374
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22544
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22375
22545
  * @summary Search
22376
22546
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22377
22547
  * @param {*} [options] Override http request option.
@@ -24446,6 +24616,47 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
24446
24616
  options: localVarRequestOptions,
24447
24617
  };
24448
24618
  },
24619
+ /**
24620
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24621
+ * @summary Bulk delete
24622
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24623
+ * @param {*} [options] Override http request option.
24624
+ * @throws {RequiredError}
24625
+ */
24626
+ playerControllerBulkDelete: async (
24627
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
24628
+ options: RawAxiosRequestConfig = {},
24629
+ ): Promise<RequestArgs> => {
24630
+ const localVarPath = `/player`;
24631
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
24632
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
24633
+ let baseOptions;
24634
+ if (configuration) {
24635
+ baseOptions = configuration.baseOptions;
24636
+ }
24637
+
24638
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
24639
+ const localVarHeaderParameter = {} as any;
24640
+ const localVarQueryParameter = {} as any;
24641
+
24642
+ // authentication domainAuth required
24643
+
24644
+ localVarHeaderParameter['Content-Type'] = 'application/json';
24645
+
24646
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
24647
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
24648
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
24649
+ localVarRequestOptions.data = serializeDataIfNeeded(
24650
+ playerBulkDeleteInputDTO,
24651
+ localVarRequestOptions,
24652
+ configuration,
24653
+ );
24654
+
24655
+ return {
24656
+ url: toPathString(localVarUrlObj),
24657
+ options: localVarRequestOptions,
24658
+ };
24659
+ },
24449
24660
  /**
24450
24661
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
24451
24662
  * @summary Delete
@@ -24789,6 +25000,32 @@ export const PlayerApiFp = function (configuration?: Configuration) {
24789
25000
  configuration,
24790
25001
  )(axios, localVarOperationServerBasePath || basePath);
24791
25002
  },
25003
+ /**
25004
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25005
+ * @summary Bulk delete
25006
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25007
+ * @param {*} [options] Override http request option.
25008
+ * @throws {RequiredError}
25009
+ */
25010
+ async playerControllerBulkDelete(
25011
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25012
+ options?: RawAxiosRequestConfig,
25013
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkDeleteOutputDTOAPI>> {
25014
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerControllerBulkDelete(
25015
+ playerBulkDeleteInputDTO,
25016
+ options,
25017
+ );
25018
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
25019
+ const localVarOperationServerBasePath =
25020
+ operationServerMap['PlayerApi.playerControllerBulkDelete']?.[localVarOperationServerIndex]?.url;
25021
+ return (axios, basePath) =>
25022
+ createRequestFunction(
25023
+ localVarAxiosArgs,
25024
+ globalAxios,
25025
+ BASE_PATH,
25026
+ configuration,
25027
+ )(axios, localVarOperationServerBasePath || basePath);
25028
+ },
24792
25029
  /**
24793
25030
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
24794
25031
  * @summary Delete
@@ -24998,6 +25235,21 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
24998
25235
  .playerControllerAssignRole(id, roleId, playerRoleAssignChangeDTO, options)
24999
25236
  .then((request) => request(axios, basePath));
25000
25237
  },
25238
+ /**
25239
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25240
+ * @summary Bulk delete
25241
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25242
+ * @param {*} [options] Override http request option.
25243
+ * @throws {RequiredError}
25244
+ */
25245
+ playerControllerBulkDelete(
25246
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25247
+ options?: RawAxiosRequestConfig,
25248
+ ): AxiosPromise<PlayerBulkDeleteOutputDTOAPI> {
25249
+ return localVarFp
25250
+ .playerControllerBulkDelete(playerBulkDeleteInputDTO, options)
25251
+ .then((request) => request(axios, basePath));
25252
+ },
25001
25253
  /**
25002
25254
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
25003
25255
  * @summary Delete
@@ -25163,6 +25415,23 @@ export class PlayerApi extends BaseAPI {
25163
25415
  .then((request) => request(this.axios, this.basePath));
25164
25416
  }
25165
25417
 
25418
+ /**
25419
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25420
+ * @summary Bulk delete
25421
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25422
+ * @param {*} [options] Override http request option.
25423
+ * @throws {RequiredError}
25424
+ * @memberof PlayerApi
25425
+ */
25426
+ public playerControllerBulkDelete(
25427
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25428
+ options?: RawAxiosRequestConfig,
25429
+ ) {
25430
+ return PlayerApiFp(this.configuration)
25431
+ .playerControllerBulkDelete(playerBulkDeleteInputDTO, options)
25432
+ .then((request) => request(this.axios, this.basePath));
25433
+ }
25434
+
25166
25435
  /**
25167
25436
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
25168
25437
  * @summary Delete
@@ -25297,6 +25566,50 @@ export const PlayerOnGameServerApiAxiosParamCreator = function (configuration?:
25297
25566
  options: localVarRequestOptions,
25298
25567
  };
25299
25568
  },
25569
+ /**
25570
+ * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
25571
+ * @summary Bulk delete
25572
+ * @param {string} gameServerId
25573
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
25574
+ * @param {*} [options] Override http request option.
25575
+ * @throws {RequiredError}
25576
+ */
25577
+ playerOnGameServerControllerBulkDelete: async (
25578
+ gameServerId: string,
25579
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
25580
+ options: RawAxiosRequestConfig = {},
25581
+ ): Promise<RequestArgs> => {
25582
+ // verify required parameter 'gameServerId' is not null or undefined
25583
+ assertParamExists('playerOnGameServerControllerBulkDelete', 'gameServerId', gameServerId);
25584
+ const localVarPath = `/gameserver/{gameServerId}/player`.replace(
25585
+ `{${'gameServerId'}}`,
25586
+ encodeURIComponent(String(gameServerId)),
25587
+ );
25588
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
25589
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25590
+ let baseOptions;
25591
+ if (configuration) {
25592
+ baseOptions = configuration.baseOptions;
25593
+ }
25594
+
25595
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
25596
+ const localVarHeaderParameter = {} as any;
25597
+ const localVarQueryParameter = {} as any;
25598
+
25599
+ // authentication domainAuth required
25600
+
25601
+ localVarHeaderParameter['Content-Type'] = 'application/json';
25602
+
25603
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
25604
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25605
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
25606
+ localVarRequestOptions.data = serializeDataIfNeeded(pogBulkDeleteInputDTO, localVarRequestOptions, configuration);
25607
+
25608
+ return {
25609
+ url: toPathString(localVarUrlObj),
25610
+ options: localVarRequestOptions,
25611
+ };
25612
+ },
25300
25613
  /**
25301
25614
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25302
25615
  * @summary Deduct currency
@@ -25624,6 +25937,37 @@ export const PlayerOnGameServerApiFp = function (configuration?: Configuration)
25624
25937
  configuration,
25625
25938
  )(axios, localVarOperationServerBasePath || basePath);
25626
25939
  },
25940
+ /**
25941
+ * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
25942
+ * @summary Bulk delete
25943
+ * @param {string} gameServerId
25944
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
25945
+ * @param {*} [options] Override http request option.
25946
+ * @throws {RequiredError}
25947
+ */
25948
+ async playerOnGameServerControllerBulkDelete(
25949
+ gameServerId: string,
25950
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
25951
+ options?: RawAxiosRequestConfig,
25952
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>> {
25953
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerOnGameServerControllerBulkDelete(
25954
+ gameServerId,
25955
+ pogBulkDeleteInputDTO,
25956
+ options,
25957
+ );
25958
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
25959
+ const localVarOperationServerBasePath =
25960
+ operationServerMap['PlayerOnGameServerApi.playerOnGameServerControllerBulkDelete']?.[
25961
+ localVarOperationServerIndex
25962
+ ]?.url;
25963
+ return (axios, basePath) =>
25964
+ createRequestFunction(
25965
+ localVarAxiosArgs,
25966
+ globalAxios,
25967
+ BASE_PATH,
25968
+ configuration,
25969
+ )(axios, localVarOperationServerBasePath || basePath);
25970
+ },
25627
25971
  /**
25628
25972
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25629
25973
  * @summary Deduct currency
@@ -25849,6 +26193,23 @@ export const PlayerOnGameServerApiFactory = function (
25849
26193
  .playerOnGameServerControllerAddCurrency(gameServerId, playerId, playerOnGameServerSetCurrencyInputDTO, options)
25850
26194
  .then((request) => request(axios, basePath));
25851
26195
  },
26196
+ /**
26197
+ * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
26198
+ * @summary Bulk delete
26199
+ * @param {string} gameServerId
26200
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
26201
+ * @param {*} [options] Override http request option.
26202
+ * @throws {RequiredError}
26203
+ */
26204
+ playerOnGameServerControllerBulkDelete(
26205
+ gameServerId: string,
26206
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
26207
+ options?: RawAxiosRequestConfig,
26208
+ ): AxiosPromise<PogBulkDeleteOutputDTOAPI> {
26209
+ return localVarFp
26210
+ .playerOnGameServerControllerBulkDelete(gameServerId, pogBulkDeleteInputDTO, options)
26211
+ .then((request) => request(axios, basePath));
26212
+ },
25852
26213
  /**
25853
26214
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25854
26215
  * @summary Deduct currency
@@ -25999,6 +26360,25 @@ export class PlayerOnGameServerApi extends BaseAPI {
25999
26360
  .then((request) => request(this.axios, this.basePath));
26000
26361
  }
26001
26362
 
26363
+ /**
26364
+ * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
26365
+ * @summary Bulk delete
26366
+ * @param {string} gameServerId
26367
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
26368
+ * @param {*} [options] Override http request option.
26369
+ * @throws {RequiredError}
26370
+ * @memberof PlayerOnGameServerApi
26371
+ */
26372
+ public playerOnGameServerControllerBulkDelete(
26373
+ gameServerId: string,
26374
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
26375
+ options?: RawAxiosRequestConfig,
26376
+ ) {
26377
+ return PlayerOnGameServerApiFp(this.configuration)
26378
+ .playerOnGameServerControllerBulkDelete(gameServerId, pogBulkDeleteInputDTO, options)
26379
+ .then((request) => request(this.axios, this.basePath));
26380
+ }
26381
+
26002
26382
  /**
26003
26383
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
26004
26384
  * @summary Deduct currency
@@ -27112,6 +27492,8 @@ export const SettingsControllerGetKeysEnum = {
27112
27492
  DomainName: 'domainName',
27113
27493
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
27114
27494
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
27495
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
27496
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
27115
27497
  } as const;
27116
27498
  export type SettingsControllerGetKeysEnum =
27117
27499
  (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
@@ -28066,7 +28448,7 @@ export const ShopListingApiAxiosParamCreator = function (configuration?: Configu
28066
28448
  };
28067
28449
  },
28068
28450
  /**
28069
- * <br> OperationId: `ShopListingControllerSearch`
28451
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28070
28452
  * @summary Search
28071
28453
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28072
28454
  * @param {*} [options] Override http request option.
@@ -28251,7 +28633,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
28251
28633
  )(axios, localVarOperationServerBasePath || basePath);
28252
28634
  },
28253
28635
  /**
28254
- * <br> OperationId: `ShopListingControllerSearch`
28636
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28255
28637
  * @summary Search
28256
28638
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28257
28639
  * @param {*} [options] Override http request option.
@@ -28364,7 +28746,7 @@ export const ShopListingApiFactory = function (
28364
28746
  return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
28365
28747
  },
28366
28748
  /**
28367
- * <br> OperationId: `ShopListingControllerSearch`
28749
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28368
28750
  * @summary Search
28369
28751
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28370
28752
  * @param {*} [options] Override http request option.
@@ -28461,7 +28843,7 @@ export class ShopListingApi extends BaseAPI {
28461
28843
  }
28462
28844
 
28463
28845
  /**
28464
- * <br> OperationId: `ShopListingControllerSearch`
28846
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28465
28847
  * @summary Search
28466
28848
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28467
28849
  * @param {*} [options] Override http request option.
@@ -31968,7 +32350,7 @@ export const VariableApiAxiosParamCreator = function (configuration?: Configurat
31968
32350
  };
31969
32351
  },
31970
32352
  /**
31971
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32353
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
31972
32354
  * @summary Search
31973
32355
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
31974
32356
  * @param {*} [options] Override http request option.
@@ -32129,7 +32511,7 @@ export const VariableApiFp = function (configuration?: Configuration) {
32129
32511
  )(axios, localVarOperationServerBasePath || basePath);
32130
32512
  },
32131
32513
  /**
32132
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32514
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32133
32515
  * @summary Search
32134
32516
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32135
32517
  * @param {*} [options] Override http request option.
@@ -32229,7 +32611,7 @@ export const VariableApiFactory = function (configuration?: Configuration, baseP
32229
32611
  return localVarFp.variableControllerFindOne(id, options).then((request) => request(axios, basePath));
32230
32612
  },
32231
32613
  /**
32232
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32614
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32233
32615
  * @summary Search
32234
32616
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32235
32617
  * @param {*} [options] Override http request option.
@@ -32313,7 +32695,7 @@ export class VariableApi extends BaseAPI {
32313
32695
  }
32314
32696
 
32315
32697
  /**
32316
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32698
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32317
32699
  * @summary Search
32318
32700
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32319
32701
  * @param {*} [options] Override http request option.