@takaro/apiclient 0.4.3 → 0.4.6

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.
@@ -2033,6 +2033,7 @@ export const DomainCreateInputDTOStateEnum = {
2033
2033
  Active: 'ACTIVE',
2034
2034
  Disabled: 'DISABLED',
2035
2035
  Maintenance: 'MAINTENANCE',
2036
+ Deleted: 'DELETED',
2036
2037
  } as const;
2037
2038
 
2038
2039
  export type DomainCreateInputDTOStateEnum =
@@ -2209,6 +2210,7 @@ export const DomainOutputDTOStateEnum = {
2209
2210
  Active: 'ACTIVE',
2210
2211
  Disabled: 'DISABLED',
2211
2212
  Maintenance: 'MAINTENANCE',
2213
+ Deleted: 'DELETED',
2212
2214
  } as const;
2213
2215
 
2214
2216
  export type DomainOutputDTOStateEnum = (typeof DomainOutputDTOStateEnum)[keyof typeof DomainOutputDTOStateEnum];
@@ -2268,6 +2270,7 @@ export const DomainSearchInputAllowedFiltersStateEnum = {
2268
2270
  Active: 'ACTIVE',
2269
2271
  Disabled: 'DISABLED',
2270
2272
  Maintenance: 'MAINTENANCE',
2273
+ Deleted: 'DELETED',
2271
2274
  } as const;
2272
2275
 
2273
2276
  export type DomainSearchInputAllowedFiltersStateEnum =
@@ -2422,6 +2425,7 @@ export const DomainUpdateInputDTOStateEnum = {
2422
2425
  Active: 'ACTIVE',
2423
2426
  Disabled: 'DISABLED',
2424
2427
  Maintenance: 'MAINTENANCE',
2428
+ Deleted: 'DELETED',
2425
2429
  } as const;
2426
2430
 
2427
2431
  export type DomainUpdateInputDTOStateEnum =
@@ -3882,10 +3886,10 @@ export interface FunctionSearchInputDTO {
3882
3886
  }
3883
3887
 
3884
3888
  export const FunctionSearchInputDTOExtendEnum = {
3885
- Module: 'module',
3886
- CronJobs: 'cronJobs',
3887
- Hooks: 'hooks',
3888
- Commands: 'commands',
3889
+ Version: 'version',
3890
+ CronJob: 'cronJob',
3891
+ Hook: 'hook',
3892
+ Command: 'command',
3889
3893
  } as const;
3890
3894
 
3891
3895
  export type FunctionSearchInputDTOExtendEnum =
@@ -3965,6 +3969,19 @@ export const GameServerCreateDTOTypeEnum = {
3965
3969
  export type GameServerCreateDTOTypeEnum =
3966
3970
  (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
3967
3971
 
3972
+ /**
3973
+ *
3974
+ * @export
3975
+ * @interface GameServerIdParam
3976
+ */
3977
+ export interface GameServerIdParam {
3978
+ /**
3979
+ *
3980
+ * @type {string}
3981
+ * @memberof GameServerIdParam
3982
+ */
3983
+ gameServerId: string;
3984
+ }
3968
3985
  /**
3969
3986
  *
3970
3987
  * @export
@@ -4457,6 +4474,8 @@ export const GetSettingsInputKeysEnum = {
4457
4474
  DomainName: 'domainName',
4458
4475
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
4459
4476
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
4477
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
4478
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
4460
4479
  } as const;
4461
4480
 
4462
4481
  export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
@@ -6390,7 +6409,7 @@ export interface ItemSearchInputDTO {
6390
6409
  }
6391
6410
 
6392
6411
  export const ItemSearchInputDTOExtendEnum = {
6393
- GameServer: 'gameServer',
6412
+ Gameserver: 'gameserver',
6394
6413
  } as const;
6395
6414
 
6396
6415
  export type ItemSearchInputDTOExtendEnum =
@@ -8306,6 +8325,8 @@ export const ParamKeyKeyEnum = {
8306
8325
  DomainName: 'domainName',
8307
8326
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
8308
8327
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
8328
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
8329
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
8309
8330
  } as const;
8310
8331
 
8311
8332
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
@@ -8552,6 +8573,82 @@ export interface PermissionVersionDTO {
8552
8573
  */
8553
8574
  tag: string;
8554
8575
  }
8576
+ /**
8577
+ *
8578
+ * @export
8579
+ * @interface PlayerBulkDeleteErrorDTO
8580
+ */
8581
+ export interface PlayerBulkDeleteErrorDTO {
8582
+ /**
8583
+ *
8584
+ * @type {string}
8585
+ * @memberof PlayerBulkDeleteErrorDTO
8586
+ */
8587
+ playerId: string;
8588
+ /**
8589
+ *
8590
+ * @type {string}
8591
+ * @memberof PlayerBulkDeleteErrorDTO
8592
+ */
8593
+ reason: string;
8594
+ }
8595
+ /**
8596
+ *
8597
+ * @export
8598
+ * @interface PlayerBulkDeleteInputDTO
8599
+ */
8600
+ export interface PlayerBulkDeleteInputDTO {
8601
+ /**
8602
+ *
8603
+ * @type {Array<string>}
8604
+ * @memberof PlayerBulkDeleteInputDTO
8605
+ */
8606
+ playerIds: Array<string>;
8607
+ }
8608
+ /**
8609
+ *
8610
+ * @export
8611
+ * @interface PlayerBulkDeleteOutputDTO
8612
+ */
8613
+ export interface PlayerBulkDeleteOutputDTO {
8614
+ /**
8615
+ *
8616
+ * @type {number}
8617
+ * @memberof PlayerBulkDeleteOutputDTO
8618
+ */
8619
+ deleted: number;
8620
+ /**
8621
+ *
8622
+ * @type {number}
8623
+ * @memberof PlayerBulkDeleteOutputDTO
8624
+ */
8625
+ failed: number;
8626
+ /**
8627
+ *
8628
+ * @type {Array<PlayerBulkDeleteErrorDTO>}
8629
+ * @memberof PlayerBulkDeleteOutputDTO
8630
+ */
8631
+ errors: Array<PlayerBulkDeleteErrorDTO>;
8632
+ }
8633
+ /**
8634
+ *
8635
+ * @export
8636
+ * @interface PlayerBulkDeleteOutputDTOAPI
8637
+ */
8638
+ export interface PlayerBulkDeleteOutputDTOAPI {
8639
+ /**
8640
+ *
8641
+ * @type {PlayerBulkDeleteOutputDTO}
8642
+ * @memberof PlayerBulkDeleteOutputDTOAPI
8643
+ */
8644
+ data: PlayerBulkDeleteOutputDTO;
8645
+ /**
8646
+ *
8647
+ * @type {MetadataOutput}
8648
+ * @memberof PlayerBulkDeleteOutputDTOAPI
8649
+ */
8650
+ meta: MetadataOutput;
8651
+ }
8555
8652
  /**
8556
8653
  *
8557
8654
  * @export
@@ -10090,6 +10187,82 @@ export interface PlayersOnlineInputDTO {
10090
10187
  */
10091
10188
  endDate?: string;
10092
10189
  }
10190
+ /**
10191
+ *
10192
+ * @export
10193
+ * @interface PogBulkDeleteErrorDTO
10194
+ */
10195
+ export interface PogBulkDeleteErrorDTO {
10196
+ /**
10197
+ *
10198
+ * @type {string}
10199
+ * @memberof PogBulkDeleteErrorDTO
10200
+ */
10201
+ playerId: string;
10202
+ /**
10203
+ *
10204
+ * @type {string}
10205
+ * @memberof PogBulkDeleteErrorDTO
10206
+ */
10207
+ reason: string;
10208
+ }
10209
+ /**
10210
+ *
10211
+ * @export
10212
+ * @interface PogBulkDeleteInputDTO
10213
+ */
10214
+ export interface PogBulkDeleteInputDTO {
10215
+ /**
10216
+ *
10217
+ * @type {Array<string>}
10218
+ * @memberof PogBulkDeleteInputDTO
10219
+ */
10220
+ playerIds: Array<string>;
10221
+ }
10222
+ /**
10223
+ *
10224
+ * @export
10225
+ * @interface PogBulkDeleteOutputDTO
10226
+ */
10227
+ export interface PogBulkDeleteOutputDTO {
10228
+ /**
10229
+ *
10230
+ * @type {number}
10231
+ * @memberof PogBulkDeleteOutputDTO
10232
+ */
10233
+ deleted: number;
10234
+ /**
10235
+ *
10236
+ * @type {number}
10237
+ * @memberof PogBulkDeleteOutputDTO
10238
+ */
10239
+ failed: number;
10240
+ /**
10241
+ *
10242
+ * @type {Array<PogBulkDeleteErrorDTO>}
10243
+ * @memberof PogBulkDeleteOutputDTO
10244
+ */
10245
+ errors: Array<PogBulkDeleteErrorDTO>;
10246
+ }
10247
+ /**
10248
+ *
10249
+ * @export
10250
+ * @interface PogBulkDeleteOutputDTOAPI
10251
+ */
10252
+ export interface PogBulkDeleteOutputDTOAPI {
10253
+ /**
10254
+ *
10255
+ * @type {PogBulkDeleteOutputDTO}
10256
+ * @memberof PogBulkDeleteOutputDTOAPI
10257
+ */
10258
+ data: PogBulkDeleteOutputDTO;
10259
+ /**
10260
+ *
10261
+ * @type {MetadataOutput}
10262
+ * @memberof PogBulkDeleteOutputDTOAPI
10263
+ */
10264
+ meta: MetadataOutput;
10265
+ }
10093
10266
  /**
10094
10267
  *
10095
10268
  * @export
@@ -10878,6 +11051,18 @@ export interface Settings {
10878
11051
  * @memberof Settings
10879
11052
  */
10880
11053
  discordRoleSyncPreferDiscord: string;
11054
+ /**
11055
+ *
11056
+ * @type {string}
11057
+ * @memberof Settings
11058
+ */
11059
+ unknownCommandFeedbackEnabled: string;
11060
+ /**
11061
+ *
11062
+ * @type {string}
11063
+ * @memberof Settings
11064
+ */
11065
+ unknownCommandFeedbackMessage: string;
10881
11066
  /**
10882
11067
  *
10883
11068
  * @type {string}
@@ -10964,6 +11149,8 @@ export const SettingsOutputDTOKeyEnum = {
10964
11149
  DomainName: 'domainName',
10965
11150
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
10966
11151
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
11152
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
11153
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
10967
11154
  } as const;
10968
11155
 
10969
11156
  export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
@@ -11823,7 +12010,7 @@ export interface ShopListingSearchInputDTO {
11823
12010
 
11824
12011
  export const ShopListingSearchInputDTOExtendEnum = {
11825
12012
  GameServer: 'gameServer',
11826
- Item: 'item',
12013
+ Items: 'items',
11827
12014
  Categories: 'categories',
11828
12015
  } as const;
11829
12016
 
@@ -11917,12 +12104,6 @@ export interface ShopOrderCreateInternalDTO {
11917
12104
  * @memberof ShopOrderCreateInternalDTO
11918
12105
  */
11919
12106
  playerId?: string;
11920
- /**
11921
- *
11922
- * @type {string}
11923
- * @memberof ShopOrderCreateInternalDTO
11924
- */
11925
- gameServerId: string;
11926
12107
  /**
11927
12108
  *
11928
12109
  * @type {string}
@@ -11979,12 +12160,6 @@ export interface ShopOrderOutputDTO {
11979
12160
  * @memberof ShopOrderOutputDTO
11980
12161
  */
11981
12162
  playerId: string;
11982
- /**
11983
- *
11984
- * @type {string}
11985
- * @memberof ShopOrderOutputDTO
11986
- */
11987
- gameServerId: string;
11988
12163
  /**
11989
12164
  *
11990
12165
  * @type {number}
@@ -12185,7 +12360,6 @@ export const ShopOrderSearchInputDTOExtendEnum = {
12185
12360
  Listing: 'listing',
12186
12361
  ListingItems: 'listing.items',
12187
12362
  ListingItemsItem: 'listing.items.item',
12188
- Player: 'player',
12189
12363
  } as const;
12190
12364
 
12191
12365
  export type ShopOrderSearchInputDTOExtendEnum =
@@ -14738,7 +14912,7 @@ export const CommandApiAxiosParamCreator = function (configuration?: Configurati
14738
14912
  };
14739
14913
  },
14740
14914
  /**
14741
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
14915
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
14742
14916
  * @summary Search
14743
14917
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
14744
14918
  * @param {*} [options] Override http request option.
@@ -15062,7 +15236,7 @@ export const CommandApiFp = function (configuration?: Configuration) {
15062
15236
  )(axios, localVarOperationServerBasePath || basePath);
15063
15237
  },
15064
15238
  /**
15065
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15239
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15066
15240
  * @summary Search
15067
15241
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15068
15242
  * @param {*} [options] Override http request option.
@@ -15255,7 +15429,7 @@ export const CommandApiFactory = function (configuration?: Configuration, basePa
15255
15429
  return localVarFp.commandControllerRemoveArgument(id, options).then((request) => request(axios, basePath));
15256
15430
  },
15257
15431
  /**
15258
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15432
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15259
15433
  * @summary Search
15260
15434
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15261
15435
  * @param {*} [options] Override http request option.
@@ -15425,7 +15599,7 @@ export class CommandApi extends BaseAPI {
15425
15599
  }
15426
15600
 
15427
15601
  /**
15428
- * Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15602
+ * Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
15429
15603
  * @summary Search
15430
15604
  * @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
15431
15605
  * @param {*} [options] Override http request option.
@@ -15647,7 +15821,7 @@ export const CronJobApiAxiosParamCreator = function (configuration?: Configurati
15647
15821
  };
15648
15822
  },
15649
15823
  /**
15650
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15824
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15651
15825
  * @summary Search
15652
15826
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
15653
15827
  * @param {*} [options] Override http request option.
@@ -15873,7 +16047,7 @@ export const CronJobApiFp = function (configuration?: Configuration) {
15873
16047
  )(axios, localVarOperationServerBasePath || basePath);
15874
16048
  },
15875
16049
  /**
15876
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16050
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
15877
16051
  * @summary Search
15878
16052
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
15879
16053
  * @param {*} [options] Override http request option.
@@ -16006,7 +16180,7 @@ export const CronJobApiFactory = function (configuration?: Configuration, basePa
16006
16180
  return localVarFp.cronJobControllerRemove(id, options).then((request) => request(axios, basePath));
16007
16181
  },
16008
16182
  /**
16009
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16183
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16010
16184
  * @summary Search
16011
16185
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
16012
16186
  * @param {*} [options] Override http request option.
@@ -16126,7 +16300,7 @@ export class CronJobApi extends BaseAPI {
16126
16300
  }
16127
16301
 
16128
16302
  /**
16129
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16303
+ * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
16130
16304
  * @summary Search
16131
16305
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
16132
16306
  * @param {*} [options] Override http request option.
@@ -17980,7 +18154,7 @@ export const EventApiAxiosParamCreator = function (configuration?: Configuration
17980
18154
  };
17981
18155
  },
17982
18156
  /**
17983
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18157
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
17984
18158
  * @summary Search
17985
18159
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
17986
18160
  * @param {*} [options] Override http request option.
@@ -18122,7 +18296,7 @@ export const EventApiFp = function (configuration?: Configuration) {
18122
18296
  )(axios, localVarOperationServerBasePath || basePath);
18123
18297
  },
18124
18298
  /**
18125
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18299
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18126
18300
  * @summary Search
18127
18301
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18128
18302
  * @param {*} [options] Override http request option.
@@ -18206,7 +18380,7 @@ export const EventApiFactory = function (configuration?: Configuration, basePath
18206
18380
  return localVarFp.eventControllerGetOne(id, options).then((request) => request(axios, basePath));
18207
18381
  },
18208
18382
  /**
18209
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18383
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18210
18384
  * @summary Search
18211
18385
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18212
18386
  * @param {*} [options] Override http request option.
@@ -18285,7 +18459,7 @@ export class EventApi extends BaseAPI {
18285
18459
  }
18286
18460
 
18287
18461
  /**
18288
- * Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18462
+ * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
18289
18463
  * @summary Search
18290
18464
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
18291
18465
  * @param {*} [options] Override http request option.
@@ -18609,7 +18783,7 @@ export const FunctionApiAxiosParamCreator = function (configuration?: Configurat
18609
18783
  };
18610
18784
  },
18611
18785
  /**
18612
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18786
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18613
18787
  * @summary Search
18614
18788
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18615
18789
  * @param {*} [options] Override http request option.
@@ -18770,7 +18944,7 @@ export const FunctionApiFp = function (configuration?: Configuration) {
18770
18944
  )(axios, localVarOperationServerBasePath || basePath);
18771
18945
  },
18772
18946
  /**
18773
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18947
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18774
18948
  * @summary Search
18775
18949
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18776
18950
  * @param {*} [options] Override http request option.
@@ -18870,7 +19044,7 @@ export const FunctionApiFactory = function (configuration?: Configuration, baseP
18870
19044
  return localVarFp.functionControllerRemove(id, options).then((request) => request(axios, basePath));
18871
19045
  },
18872
19046
  /**
18873
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
19047
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18874
19048
  * @summary Search
18875
19049
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18876
19050
  * @param {*} [options] Override http request option.
@@ -18954,7 +19128,7 @@ export class FunctionApi extends BaseAPI {
18954
19128
  }
18955
19129
 
18956
19130
  /**
18957
- * Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
19131
+ * Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
18958
19132
  * @summary Search
18959
19133
  * @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
18960
19134
  * @param {*} [options] Override http request option.
@@ -21668,7 +21842,7 @@ export const HookApiAxiosParamCreator = function (configuration?: Configuration)
21668
21842
  };
21669
21843
  },
21670
21844
  /**
21671
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21845
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21672
21846
  * @summary Search
21673
21847
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
21674
21848
  * @param {*} [options] Override http request option.
@@ -21894,7 +22068,7 @@ export const HookApiFp = function (configuration?: Configuration) {
21894
22068
  )(axios, localVarOperationServerBasePath || basePath);
21895
22069
  },
21896
22070
  /**
21897
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22071
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
21898
22072
  * @summary Search
21899
22073
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
21900
22074
  * @param {*} [options] Override http request option.
@@ -22027,7 +22201,7 @@ export const HookApiFactory = function (configuration?: Configuration, basePath?
22027
22201
  return localVarFp.hookControllerRemove(id, options).then((request) => request(axios, basePath));
22028
22202
  },
22029
22203
  /**
22030
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22204
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22031
22205
  * @summary Search
22032
22206
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
22033
22207
  * @param {*} [options] Override http request option.
@@ -22138,7 +22312,7 @@ export class HookApi extends BaseAPI {
22138
22312
  }
22139
22313
 
22140
22314
  /**
22141
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22315
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
22142
22316
  * @summary Search
22143
22317
  * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
22144
22318
  * @param {*} [options] Override http request option.
@@ -22221,7 +22395,7 @@ export const ItemApiAxiosParamCreator = function (configuration?: Configuration)
22221
22395
  };
22222
22396
  },
22223
22397
  /**
22224
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22398
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22225
22399
  * @summary Search
22226
22400
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22227
22401
  * @param {*} [options] Override http request option.
@@ -22291,7 +22465,7 @@ export const ItemApiFp = function (configuration?: Configuration) {
22291
22465
  )(axios, localVarOperationServerBasePath || basePath);
22292
22466
  },
22293
22467
  /**
22294
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22468
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22295
22469
  * @summary Search
22296
22470
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22297
22471
  * @param {*} [options] Override http request option.
@@ -22334,7 +22508,7 @@ export const ItemApiFactory = function (configuration?: Configuration, basePath?
22334
22508
  return localVarFp.itemControllerFindOne(id, options).then((request) => request(axios, basePath));
22335
22509
  },
22336
22510
  /**
22337
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22511
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22338
22512
  * @summary Search
22339
22513
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22340
22514
  * @param {*} [options] Override http request option.
@@ -22371,7 +22545,7 @@ export class ItemApi extends BaseAPI {
22371
22545
  }
22372
22546
 
22373
22547
  /**
22374
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22548
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
22375
22549
  * @summary Search
22376
22550
  * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
22377
22551
  * @param {*} [options] Override http request option.
@@ -24446,6 +24620,47 @@ export const PlayerApiAxiosParamCreator = function (configuration?: Configuratio
24446
24620
  options: localVarRequestOptions,
24447
24621
  };
24448
24622
  },
24623
+ /**
24624
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24625
+ * @summary Bulk delete
24626
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24627
+ * @param {*} [options] Override http request option.
24628
+ * @throws {RequiredError}
24629
+ */
24630
+ playerControllerBulkDelete: async (
24631
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
24632
+ options: RawAxiosRequestConfig = {},
24633
+ ): Promise<RequestArgs> => {
24634
+ const localVarPath = `/player`;
24635
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
24636
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
24637
+ let baseOptions;
24638
+ if (configuration) {
24639
+ baseOptions = configuration.baseOptions;
24640
+ }
24641
+
24642
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
24643
+ const localVarHeaderParameter = {} as any;
24644
+ const localVarQueryParameter = {} as any;
24645
+
24646
+ // authentication domainAuth required
24647
+
24648
+ localVarHeaderParameter['Content-Type'] = 'application/json';
24649
+
24650
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
24651
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
24652
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
24653
+ localVarRequestOptions.data = serializeDataIfNeeded(
24654
+ playerBulkDeleteInputDTO,
24655
+ localVarRequestOptions,
24656
+ configuration,
24657
+ );
24658
+
24659
+ return {
24660
+ url: toPathString(localVarUrlObj),
24661
+ options: localVarRequestOptions,
24662
+ };
24663
+ },
24449
24664
  /**
24450
24665
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
24451
24666
  * @summary Delete
@@ -24789,6 +25004,32 @@ export const PlayerApiFp = function (configuration?: Configuration) {
24789
25004
  configuration,
24790
25005
  )(axios, localVarOperationServerBasePath || basePath);
24791
25006
  },
25007
+ /**
25008
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25009
+ * @summary Bulk delete
25010
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25011
+ * @param {*} [options] Override http request option.
25012
+ * @throws {RequiredError}
25013
+ */
25014
+ async playerControllerBulkDelete(
25015
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25016
+ options?: RawAxiosRequestConfig,
25017
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkDeleteOutputDTOAPI>> {
25018
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerControllerBulkDelete(
25019
+ playerBulkDeleteInputDTO,
25020
+ options,
25021
+ );
25022
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
25023
+ const localVarOperationServerBasePath =
25024
+ operationServerMap['PlayerApi.playerControllerBulkDelete']?.[localVarOperationServerIndex]?.url;
25025
+ return (axios, basePath) =>
25026
+ createRequestFunction(
25027
+ localVarAxiosArgs,
25028
+ globalAxios,
25029
+ BASE_PATH,
25030
+ configuration,
25031
+ )(axios, localVarOperationServerBasePath || basePath);
25032
+ },
24792
25033
  /**
24793
25034
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
24794
25035
  * @summary Delete
@@ -24998,6 +25239,21 @@ export const PlayerApiFactory = function (configuration?: Configuration, basePat
24998
25239
  .playerControllerAssignRole(id, roleId, playerRoleAssignChangeDTO, options)
24999
25240
  .then((request) => request(axios, basePath));
25000
25241
  },
25242
+ /**
25243
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25244
+ * @summary Bulk delete
25245
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25246
+ * @param {*} [options] Override http request option.
25247
+ * @throws {RequiredError}
25248
+ */
25249
+ playerControllerBulkDelete(
25250
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25251
+ options?: RawAxiosRequestConfig,
25252
+ ): AxiosPromise<PlayerBulkDeleteOutputDTOAPI> {
25253
+ return localVarFp
25254
+ .playerControllerBulkDelete(playerBulkDeleteInputDTO, options)
25255
+ .then((request) => request(axios, basePath));
25256
+ },
25001
25257
  /**
25002
25258
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
25003
25259
  * @summary Delete
@@ -25163,6 +25419,23 @@ export class PlayerApi extends BaseAPI {
25163
25419
  .then((request) => request(this.axios, this.basePath));
25164
25420
  }
25165
25421
 
25422
+ /**
25423
+ * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25424
+ * @summary Bulk delete
25425
+ * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
25426
+ * @param {*} [options] Override http request option.
25427
+ * @throws {RequiredError}
25428
+ * @memberof PlayerApi
25429
+ */
25430
+ public playerControllerBulkDelete(
25431
+ playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO,
25432
+ options?: RawAxiosRequestConfig,
25433
+ ) {
25434
+ return PlayerApiFp(this.configuration)
25435
+ .playerControllerBulkDelete(playerBulkDeleteInputDTO, options)
25436
+ .then((request) => request(this.axios, this.basePath));
25437
+ }
25438
+
25166
25439
  /**
25167
25440
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
25168
25441
  * @summary Delete
@@ -25297,6 +25570,50 @@ export const PlayerOnGameServerApiAxiosParamCreator = function (configuration?:
25297
25570
  options: localVarRequestOptions,
25298
25571
  };
25299
25572
  },
25573
+ /**
25574
+ * 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`
25575
+ * @summary Bulk delete
25576
+ * @param {string} gameServerId
25577
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
25578
+ * @param {*} [options] Override http request option.
25579
+ * @throws {RequiredError}
25580
+ */
25581
+ playerOnGameServerControllerBulkDelete: async (
25582
+ gameServerId: string,
25583
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
25584
+ options: RawAxiosRequestConfig = {},
25585
+ ): Promise<RequestArgs> => {
25586
+ // verify required parameter 'gameServerId' is not null or undefined
25587
+ assertParamExists('playerOnGameServerControllerBulkDelete', 'gameServerId', gameServerId);
25588
+ const localVarPath = `/gameserver/{gameServerId}/player`.replace(
25589
+ `{${'gameServerId'}}`,
25590
+ encodeURIComponent(String(gameServerId)),
25591
+ );
25592
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
25593
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
25594
+ let baseOptions;
25595
+ if (configuration) {
25596
+ baseOptions = configuration.baseOptions;
25597
+ }
25598
+
25599
+ const localVarRequestOptions = { method: 'DELETE', ...baseOptions, ...options };
25600
+ const localVarHeaderParameter = {} as any;
25601
+ const localVarQueryParameter = {} as any;
25602
+
25603
+ // authentication domainAuth required
25604
+
25605
+ localVarHeaderParameter['Content-Type'] = 'application/json';
25606
+
25607
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
25608
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
25609
+ localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
25610
+ localVarRequestOptions.data = serializeDataIfNeeded(pogBulkDeleteInputDTO, localVarRequestOptions, configuration);
25611
+
25612
+ return {
25613
+ url: toPathString(localVarUrlObj),
25614
+ options: localVarRequestOptions,
25615
+ };
25616
+ },
25300
25617
  /**
25301
25618
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25302
25619
  * @summary Deduct currency
@@ -25624,6 +25941,37 @@ export const PlayerOnGameServerApiFp = function (configuration?: Configuration)
25624
25941
  configuration,
25625
25942
  )(axios, localVarOperationServerBasePath || basePath);
25626
25943
  },
25944
+ /**
25945
+ * 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`
25946
+ * @summary Bulk delete
25947
+ * @param {string} gameServerId
25948
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
25949
+ * @param {*} [options] Override http request option.
25950
+ * @throws {RequiredError}
25951
+ */
25952
+ async playerOnGameServerControllerBulkDelete(
25953
+ gameServerId: string,
25954
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
25955
+ options?: RawAxiosRequestConfig,
25956
+ ): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>> {
25957
+ const localVarAxiosArgs = await localVarAxiosParamCreator.playerOnGameServerControllerBulkDelete(
25958
+ gameServerId,
25959
+ pogBulkDeleteInputDTO,
25960
+ options,
25961
+ );
25962
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
25963
+ const localVarOperationServerBasePath =
25964
+ operationServerMap['PlayerOnGameServerApi.playerOnGameServerControllerBulkDelete']?.[
25965
+ localVarOperationServerIndex
25966
+ ]?.url;
25967
+ return (axios, basePath) =>
25968
+ createRequestFunction(
25969
+ localVarAxiosArgs,
25970
+ globalAxios,
25971
+ BASE_PATH,
25972
+ configuration,
25973
+ )(axios, localVarOperationServerBasePath || basePath);
25974
+ },
25627
25975
  /**
25628
25976
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25629
25977
  * @summary Deduct currency
@@ -25849,6 +26197,23 @@ export const PlayerOnGameServerApiFactory = function (
25849
26197
  .playerOnGameServerControllerAddCurrency(gameServerId, playerId, playerOnGameServerSetCurrencyInputDTO, options)
25850
26198
  .then((request) => request(axios, basePath));
25851
26199
  },
26200
+ /**
26201
+ * 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`
26202
+ * @summary Bulk delete
26203
+ * @param {string} gameServerId
26204
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
26205
+ * @param {*} [options] Override http request option.
26206
+ * @throws {RequiredError}
26207
+ */
26208
+ playerOnGameServerControllerBulkDelete(
26209
+ gameServerId: string,
26210
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
26211
+ options?: RawAxiosRequestConfig,
26212
+ ): AxiosPromise<PogBulkDeleteOutputDTOAPI> {
26213
+ return localVarFp
26214
+ .playerOnGameServerControllerBulkDelete(gameServerId, pogBulkDeleteInputDTO, options)
26215
+ .then((request) => request(axios, basePath));
26216
+ },
25852
26217
  /**
25853
26218
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25854
26219
  * @summary Deduct currency
@@ -25999,6 +26364,25 @@ export class PlayerOnGameServerApi extends BaseAPI {
25999
26364
  .then((request) => request(this.axios, this.basePath));
26000
26365
  }
26001
26366
 
26367
+ /**
26368
+ * 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`
26369
+ * @summary Bulk delete
26370
+ * @param {string} gameServerId
26371
+ * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
26372
+ * @param {*} [options] Override http request option.
26373
+ * @throws {RequiredError}
26374
+ * @memberof PlayerOnGameServerApi
26375
+ */
26376
+ public playerOnGameServerControllerBulkDelete(
26377
+ gameServerId: string,
26378
+ pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO,
26379
+ options?: RawAxiosRequestConfig,
26380
+ ) {
26381
+ return PlayerOnGameServerApiFp(this.configuration)
26382
+ .playerOnGameServerControllerBulkDelete(gameServerId, pogBulkDeleteInputDTO, options)
26383
+ .then((request) => request(this.axios, this.basePath));
26384
+ }
26385
+
26002
26386
  /**
26003
26387
  * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
26004
26388
  * @summary Deduct currency
@@ -27112,6 +27496,8 @@ export const SettingsControllerGetKeysEnum = {
27112
27496
  DomainName: 'domainName',
27113
27497
  DiscordRoleSyncEnabled: 'discordRoleSyncEnabled',
27114
27498
  DiscordRoleSyncPreferDiscord: 'discordRoleSyncPreferDiscord',
27499
+ UnknownCommandFeedbackEnabled: 'unknownCommandFeedbackEnabled',
27500
+ UnknownCommandFeedbackMessage: 'unknownCommandFeedbackMessage',
27115
27501
  } as const;
27116
27502
  export type SettingsControllerGetKeysEnum =
27117
27503
  (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
@@ -28066,7 +28452,7 @@ export const ShopListingApiAxiosParamCreator = function (configuration?: Configu
28066
28452
  };
28067
28453
  },
28068
28454
  /**
28069
- * <br> OperationId: `ShopListingControllerSearch`
28455
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28070
28456
  * @summary Search
28071
28457
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28072
28458
  * @param {*} [options] Override http request option.
@@ -28251,7 +28637,7 @@ export const ShopListingApiFp = function (configuration?: Configuration) {
28251
28637
  )(axios, localVarOperationServerBasePath || basePath);
28252
28638
  },
28253
28639
  /**
28254
- * <br> OperationId: `ShopListingControllerSearch`
28640
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28255
28641
  * @summary Search
28256
28642
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28257
28643
  * @param {*} [options] Override http request option.
@@ -28364,7 +28750,7 @@ export const ShopListingApiFactory = function (
28364
28750
  return localVarFp.shopListingControllerImportListings(options).then((request) => request(axios, basePath));
28365
28751
  },
28366
28752
  /**
28367
- * <br> OperationId: `ShopListingControllerSearch`
28753
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28368
28754
  * @summary Search
28369
28755
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28370
28756
  * @param {*} [options] Override http request option.
@@ -28461,7 +28847,7 @@ export class ShopListingApi extends BaseAPI {
28461
28847
  }
28462
28848
 
28463
28849
  /**
28464
- * <br> OperationId: `ShopListingControllerSearch`
28850
+ * Search shop listings<br> OperationId: `ShopListingControllerSearch`
28465
28851
  * @summary Search
28466
28852
  * @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
28467
28853
  * @param {*} [options] Override http request option.
@@ -31968,7 +32354,7 @@ export const VariableApiAxiosParamCreator = function (configuration?: Configurat
31968
32354
  };
31969
32355
  },
31970
32356
  /**
31971
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32357
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
31972
32358
  * @summary Search
31973
32359
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
31974
32360
  * @param {*} [options] Override http request option.
@@ -32129,7 +32515,7 @@ export const VariableApiFp = function (configuration?: Configuration) {
32129
32515
  )(axios, localVarOperationServerBasePath || basePath);
32130
32516
  },
32131
32517
  /**
32132
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32518
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32133
32519
  * @summary Search
32134
32520
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32135
32521
  * @param {*} [options] Override http request option.
@@ -32229,7 +32615,7 @@ export const VariableApiFactory = function (configuration?: Configuration, baseP
32229
32615
  return localVarFp.variableControllerFindOne(id, options).then((request) => request(axios, basePath));
32230
32616
  },
32231
32617
  /**
32232
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32618
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32233
32619
  * @summary Search
32234
32620
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32235
32621
  * @param {*} [options] Override http request option.
@@ -32313,7 +32699,7 @@ export class VariableApi extends BaseAPI {
32313
32699
  }
32314
32700
 
32315
32701
  /**
32316
- * Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32702
+ * Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
32317
32703
  * @summary Search
32318
32704
  * @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
32319
32705
  * @param {*} [options] Override http request option.