@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.
- package/dist/generated/api.d.ts +293 -51
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +186 -39
- package/dist/generated/api.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +433 -51
package/dist/generated/api.d.ts
CHANGED
|
@@ -3728,10 +3728,10 @@ export interface FunctionSearchInputDTO {
|
|
|
3728
3728
|
sortDirection?: FunctionSearchInputDTOSortDirectionEnum;
|
|
3729
3729
|
}
|
|
3730
3730
|
export declare const FunctionSearchInputDTOExtendEnum: {
|
|
3731
|
-
readonly
|
|
3732
|
-
readonly
|
|
3733
|
-
readonly
|
|
3734
|
-
readonly
|
|
3731
|
+
readonly Version: "version";
|
|
3732
|
+
readonly CronJob: "cronJob";
|
|
3733
|
+
readonly Hook: "hook";
|
|
3734
|
+
readonly Command: "command";
|
|
3735
3735
|
};
|
|
3736
3736
|
export type FunctionSearchInputDTOExtendEnum = (typeof FunctionSearchInputDTOExtendEnum)[keyof typeof FunctionSearchInputDTOExtendEnum];
|
|
3737
3737
|
export declare const FunctionSearchInputDTOSortDirectionEnum: {
|
|
@@ -3802,6 +3802,19 @@ export declare const GameServerCreateDTOTypeEnum: {
|
|
|
3802
3802
|
readonly Mock: "MOCK";
|
|
3803
3803
|
};
|
|
3804
3804
|
export type GameServerCreateDTOTypeEnum = (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
|
|
3805
|
+
/**
|
|
3806
|
+
*
|
|
3807
|
+
* @export
|
|
3808
|
+
* @interface GameServerIdParam
|
|
3809
|
+
*/
|
|
3810
|
+
export interface GameServerIdParam {
|
|
3811
|
+
/**
|
|
3812
|
+
*
|
|
3813
|
+
* @type {string}
|
|
3814
|
+
* @memberof GameServerIdParam
|
|
3815
|
+
*/
|
|
3816
|
+
gameServerId: string;
|
|
3817
|
+
}
|
|
3805
3818
|
/**
|
|
3806
3819
|
*
|
|
3807
3820
|
* @export
|
|
@@ -4264,6 +4277,8 @@ export declare const GetSettingsInputKeysEnum: {
|
|
|
4264
4277
|
readonly DomainName: "domainName";
|
|
4265
4278
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
4266
4279
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
4280
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
4281
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
4267
4282
|
};
|
|
4268
4283
|
export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
|
|
4269
4284
|
/**
|
|
@@ -6157,7 +6172,7 @@ export interface ItemSearchInputDTO {
|
|
|
6157
6172
|
sortDirection?: ItemSearchInputDTOSortDirectionEnum;
|
|
6158
6173
|
}
|
|
6159
6174
|
export declare const ItemSearchInputDTOExtendEnum: {
|
|
6160
|
-
readonly
|
|
6175
|
+
readonly Gameserver: "gameserver";
|
|
6161
6176
|
};
|
|
6162
6177
|
export type ItemSearchInputDTOExtendEnum = (typeof ItemSearchInputDTOExtendEnum)[keyof typeof ItemSearchInputDTOExtendEnum];
|
|
6163
6178
|
export declare const ItemSearchInputDTOSortDirectionEnum: {
|
|
@@ -8043,6 +8058,8 @@ export declare const ParamKeyKeyEnum: {
|
|
|
8043
8058
|
readonly DomainName: "domainName";
|
|
8044
8059
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
8045
8060
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
8061
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
8062
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
8046
8063
|
};
|
|
8047
8064
|
export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
|
|
8048
8065
|
/**
|
|
@@ -8287,6 +8304,82 @@ export interface PermissionVersionDTO {
|
|
|
8287
8304
|
*/
|
|
8288
8305
|
tag: string;
|
|
8289
8306
|
}
|
|
8307
|
+
/**
|
|
8308
|
+
*
|
|
8309
|
+
* @export
|
|
8310
|
+
* @interface PlayerBulkDeleteErrorDTO
|
|
8311
|
+
*/
|
|
8312
|
+
export interface PlayerBulkDeleteErrorDTO {
|
|
8313
|
+
/**
|
|
8314
|
+
*
|
|
8315
|
+
* @type {string}
|
|
8316
|
+
* @memberof PlayerBulkDeleteErrorDTO
|
|
8317
|
+
*/
|
|
8318
|
+
playerId: string;
|
|
8319
|
+
/**
|
|
8320
|
+
*
|
|
8321
|
+
* @type {string}
|
|
8322
|
+
* @memberof PlayerBulkDeleteErrorDTO
|
|
8323
|
+
*/
|
|
8324
|
+
reason: string;
|
|
8325
|
+
}
|
|
8326
|
+
/**
|
|
8327
|
+
*
|
|
8328
|
+
* @export
|
|
8329
|
+
* @interface PlayerBulkDeleteInputDTO
|
|
8330
|
+
*/
|
|
8331
|
+
export interface PlayerBulkDeleteInputDTO {
|
|
8332
|
+
/**
|
|
8333
|
+
*
|
|
8334
|
+
* @type {Array<string>}
|
|
8335
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
8336
|
+
*/
|
|
8337
|
+
playerIds: Array<string>;
|
|
8338
|
+
}
|
|
8339
|
+
/**
|
|
8340
|
+
*
|
|
8341
|
+
* @export
|
|
8342
|
+
* @interface PlayerBulkDeleteOutputDTO
|
|
8343
|
+
*/
|
|
8344
|
+
export interface PlayerBulkDeleteOutputDTO {
|
|
8345
|
+
/**
|
|
8346
|
+
*
|
|
8347
|
+
* @type {number}
|
|
8348
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8349
|
+
*/
|
|
8350
|
+
deleted: number;
|
|
8351
|
+
/**
|
|
8352
|
+
*
|
|
8353
|
+
* @type {number}
|
|
8354
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8355
|
+
*/
|
|
8356
|
+
failed: number;
|
|
8357
|
+
/**
|
|
8358
|
+
*
|
|
8359
|
+
* @type {Array<PlayerBulkDeleteErrorDTO>}
|
|
8360
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8361
|
+
*/
|
|
8362
|
+
errors: Array<PlayerBulkDeleteErrorDTO>;
|
|
8363
|
+
}
|
|
8364
|
+
/**
|
|
8365
|
+
*
|
|
8366
|
+
* @export
|
|
8367
|
+
* @interface PlayerBulkDeleteOutputDTOAPI
|
|
8368
|
+
*/
|
|
8369
|
+
export interface PlayerBulkDeleteOutputDTOAPI {
|
|
8370
|
+
/**
|
|
8371
|
+
*
|
|
8372
|
+
* @type {PlayerBulkDeleteOutputDTO}
|
|
8373
|
+
* @memberof PlayerBulkDeleteOutputDTOAPI
|
|
8374
|
+
*/
|
|
8375
|
+
data: PlayerBulkDeleteOutputDTO;
|
|
8376
|
+
/**
|
|
8377
|
+
*
|
|
8378
|
+
* @type {MetadataOutput}
|
|
8379
|
+
* @memberof PlayerBulkDeleteOutputDTOAPI
|
|
8380
|
+
*/
|
|
8381
|
+
meta: MetadataOutput;
|
|
8382
|
+
}
|
|
8290
8383
|
/**
|
|
8291
8384
|
*
|
|
8292
8385
|
* @export
|
|
@@ -9813,6 +9906,82 @@ export interface PlayersOnlineInputDTO {
|
|
|
9813
9906
|
*/
|
|
9814
9907
|
endDate?: string;
|
|
9815
9908
|
}
|
|
9909
|
+
/**
|
|
9910
|
+
*
|
|
9911
|
+
* @export
|
|
9912
|
+
* @interface PogBulkDeleteErrorDTO
|
|
9913
|
+
*/
|
|
9914
|
+
export interface PogBulkDeleteErrorDTO {
|
|
9915
|
+
/**
|
|
9916
|
+
*
|
|
9917
|
+
* @type {string}
|
|
9918
|
+
* @memberof PogBulkDeleteErrorDTO
|
|
9919
|
+
*/
|
|
9920
|
+
playerId: string;
|
|
9921
|
+
/**
|
|
9922
|
+
*
|
|
9923
|
+
* @type {string}
|
|
9924
|
+
* @memberof PogBulkDeleteErrorDTO
|
|
9925
|
+
*/
|
|
9926
|
+
reason: string;
|
|
9927
|
+
}
|
|
9928
|
+
/**
|
|
9929
|
+
*
|
|
9930
|
+
* @export
|
|
9931
|
+
* @interface PogBulkDeleteInputDTO
|
|
9932
|
+
*/
|
|
9933
|
+
export interface PogBulkDeleteInputDTO {
|
|
9934
|
+
/**
|
|
9935
|
+
*
|
|
9936
|
+
* @type {Array<string>}
|
|
9937
|
+
* @memberof PogBulkDeleteInputDTO
|
|
9938
|
+
*/
|
|
9939
|
+
playerIds: Array<string>;
|
|
9940
|
+
}
|
|
9941
|
+
/**
|
|
9942
|
+
*
|
|
9943
|
+
* @export
|
|
9944
|
+
* @interface PogBulkDeleteOutputDTO
|
|
9945
|
+
*/
|
|
9946
|
+
export interface PogBulkDeleteOutputDTO {
|
|
9947
|
+
/**
|
|
9948
|
+
*
|
|
9949
|
+
* @type {number}
|
|
9950
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9951
|
+
*/
|
|
9952
|
+
deleted: number;
|
|
9953
|
+
/**
|
|
9954
|
+
*
|
|
9955
|
+
* @type {number}
|
|
9956
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9957
|
+
*/
|
|
9958
|
+
failed: number;
|
|
9959
|
+
/**
|
|
9960
|
+
*
|
|
9961
|
+
* @type {Array<PogBulkDeleteErrorDTO>}
|
|
9962
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9963
|
+
*/
|
|
9964
|
+
errors: Array<PogBulkDeleteErrorDTO>;
|
|
9965
|
+
}
|
|
9966
|
+
/**
|
|
9967
|
+
*
|
|
9968
|
+
* @export
|
|
9969
|
+
* @interface PogBulkDeleteOutputDTOAPI
|
|
9970
|
+
*/
|
|
9971
|
+
export interface PogBulkDeleteOutputDTOAPI {
|
|
9972
|
+
/**
|
|
9973
|
+
*
|
|
9974
|
+
* @type {PogBulkDeleteOutputDTO}
|
|
9975
|
+
* @memberof PogBulkDeleteOutputDTOAPI
|
|
9976
|
+
*/
|
|
9977
|
+
data: PogBulkDeleteOutputDTO;
|
|
9978
|
+
/**
|
|
9979
|
+
*
|
|
9980
|
+
* @type {MetadataOutput}
|
|
9981
|
+
* @memberof PogBulkDeleteOutputDTOAPI
|
|
9982
|
+
*/
|
|
9983
|
+
meta: MetadataOutput;
|
|
9984
|
+
}
|
|
9816
9985
|
/**
|
|
9817
9986
|
*
|
|
9818
9987
|
* @export
|
|
@@ -10592,6 +10761,18 @@ export interface Settings {
|
|
|
10592
10761
|
* @memberof Settings
|
|
10593
10762
|
*/
|
|
10594
10763
|
discordRoleSyncPreferDiscord: string;
|
|
10764
|
+
/**
|
|
10765
|
+
*
|
|
10766
|
+
* @type {string}
|
|
10767
|
+
* @memberof Settings
|
|
10768
|
+
*/
|
|
10769
|
+
unknownCommandFeedbackEnabled: string;
|
|
10770
|
+
/**
|
|
10771
|
+
*
|
|
10772
|
+
* @type {string}
|
|
10773
|
+
* @memberof Settings
|
|
10774
|
+
*/
|
|
10775
|
+
unknownCommandFeedbackMessage: string;
|
|
10595
10776
|
/**
|
|
10596
10777
|
*
|
|
10597
10778
|
* @type {string}
|
|
@@ -10677,6 +10858,8 @@ export declare const SettingsOutputDTOKeyEnum: {
|
|
|
10677
10858
|
readonly DomainName: "domainName";
|
|
10678
10859
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
10679
10860
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
10861
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
10862
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
10680
10863
|
};
|
|
10681
10864
|
export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
|
|
10682
10865
|
export declare const SettingsOutputDTOTypeEnum: {
|
|
@@ -11524,7 +11707,7 @@ export interface ShopListingSearchInputDTO {
|
|
|
11524
11707
|
}
|
|
11525
11708
|
export declare const ShopListingSearchInputDTOExtendEnum: {
|
|
11526
11709
|
readonly GameServer: "gameServer";
|
|
11527
|
-
readonly
|
|
11710
|
+
readonly Items: "items";
|
|
11528
11711
|
readonly Categories: "categories";
|
|
11529
11712
|
};
|
|
11530
11713
|
export type ShopListingSearchInputDTOExtendEnum = (typeof ShopListingSearchInputDTOExtendEnum)[keyof typeof ShopListingSearchInputDTOExtendEnum];
|
|
@@ -11613,12 +11796,6 @@ export interface ShopOrderCreateInternalDTO {
|
|
|
11613
11796
|
* @memberof ShopOrderCreateInternalDTO
|
|
11614
11797
|
*/
|
|
11615
11798
|
playerId?: string;
|
|
11616
|
-
/**
|
|
11617
|
-
*
|
|
11618
|
-
* @type {string}
|
|
11619
|
-
* @memberof ShopOrderCreateInternalDTO
|
|
11620
|
-
*/
|
|
11621
|
-
gameServerId: string;
|
|
11622
11799
|
/**
|
|
11623
11800
|
*
|
|
11624
11801
|
* @type {string}
|
|
@@ -11675,12 +11852,6 @@ export interface ShopOrderOutputDTO {
|
|
|
11675
11852
|
* @memberof ShopOrderOutputDTO
|
|
11676
11853
|
*/
|
|
11677
11854
|
playerId: string;
|
|
11678
|
-
/**
|
|
11679
|
-
*
|
|
11680
|
-
* @type {string}
|
|
11681
|
-
* @memberof ShopOrderOutputDTO
|
|
11682
|
-
*/
|
|
11683
|
-
gameServerId: string;
|
|
11684
11855
|
/**
|
|
11685
11856
|
*
|
|
11686
11857
|
* @type {number}
|
|
@@ -11876,7 +12047,6 @@ export declare const ShopOrderSearchInputDTOExtendEnum: {
|
|
|
11876
12047
|
readonly Listing: "listing";
|
|
11877
12048
|
readonly ListingItems: "listing.items";
|
|
11878
12049
|
readonly ListingItemsItem: "listing.items.item";
|
|
11879
|
-
readonly Player: "player";
|
|
11880
12050
|
};
|
|
11881
12051
|
export type ShopOrderSearchInputDTOExtendEnum = (typeof ShopOrderSearchInputDTOExtendEnum)[keyof typeof ShopOrderSearchInputDTOExtendEnum];
|
|
11882
12052
|
export declare const ShopOrderSearchInputDTOSortDirectionEnum: {
|
|
@@ -14145,7 +14315,7 @@ export declare const CommandApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14145
14315
|
*/
|
|
14146
14316
|
commandControllerRemoveArgument: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14147
14317
|
/**
|
|
14148
|
-
*
|
|
14318
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14149
14319
|
* @summary Search
|
|
14150
14320
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14151
14321
|
* @param {*} [options] Override http request option.
|
|
@@ -14236,7 +14406,7 @@ export declare const CommandApiFp: (configuration?: Configuration) => {
|
|
|
14236
14406
|
*/
|
|
14237
14407
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
14238
14408
|
/**
|
|
14239
|
-
*
|
|
14409
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14240
14410
|
* @summary Search
|
|
14241
14411
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14242
14412
|
* @param {*} [options] Override http request option.
|
|
@@ -14327,7 +14497,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
|
|
|
14327
14497
|
*/
|
|
14328
14498
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
14329
14499
|
/**
|
|
14330
|
-
*
|
|
14500
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14331
14501
|
* @summary Search
|
|
14332
14502
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14333
14503
|
* @param {*} [options] Override http request option.
|
|
@@ -14426,7 +14596,7 @@ export declare class CommandApi extends BaseAPI {
|
|
|
14426
14596
|
*/
|
|
14427
14597
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
14428
14598
|
/**
|
|
14429
|
-
*
|
|
14599
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14430
14600
|
* @summary Search
|
|
14431
14601
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14432
14602
|
* @param {*} [options] Override http request option.
|
|
@@ -14505,7 +14675,7 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14505
14675
|
*/
|
|
14506
14676
|
cronJobControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14507
14677
|
/**
|
|
14508
|
-
*
|
|
14678
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14509
14679
|
* @summary Search
|
|
14510
14680
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14511
14681
|
* @param {*} [options] Override http request option.
|
|
@@ -14570,7 +14740,7 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
|
|
|
14570
14740
|
*/
|
|
14571
14741
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
14572
14742
|
/**
|
|
14573
|
-
*
|
|
14743
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14574
14744
|
* @summary Search
|
|
14575
14745
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14576
14746
|
* @param {*} [options] Override http request option.
|
|
@@ -14635,7 +14805,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
|
|
|
14635
14805
|
*/
|
|
14636
14806
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
14637
14807
|
/**
|
|
14638
|
-
*
|
|
14808
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14639
14809
|
* @summary Search
|
|
14640
14810
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14641
14811
|
* @param {*} [options] Override http request option.
|
|
@@ -14706,7 +14876,7 @@ export declare class CronJobApi extends BaseAPI {
|
|
|
14706
14876
|
*/
|
|
14707
14877
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
14708
14878
|
/**
|
|
14709
|
-
*
|
|
14879
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14710
14880
|
* @summary Search
|
|
14711
14881
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14712
14882
|
* @param {*} [options] Override http request option.
|
|
@@ -15431,7 +15601,7 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15431
15601
|
*/
|
|
15432
15602
|
eventControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15433
15603
|
/**
|
|
15434
|
-
*
|
|
15604
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15435
15605
|
* @summary Search
|
|
15436
15606
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15437
15607
|
* @param {*} [options] Override http request option.
|
|
@@ -15477,7 +15647,7 @@ export declare const EventApiFp: (configuration?: Configuration) => {
|
|
|
15477
15647
|
*/
|
|
15478
15648
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
|
|
15479
15649
|
/**
|
|
15480
|
-
*
|
|
15650
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15481
15651
|
* @summary Search
|
|
15482
15652
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15483
15653
|
* @param {*} [options] Override http request option.
|
|
@@ -15523,7 +15693,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
|
|
|
15523
15693
|
*/
|
|
15524
15694
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
|
|
15525
15695
|
/**
|
|
15526
|
-
*
|
|
15696
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15527
15697
|
* @summary Search
|
|
15528
15698
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15529
15699
|
* @param {*} [options] Override http request option.
|
|
@@ -15575,7 +15745,7 @@ export declare class EventApi extends BaseAPI {
|
|
|
15575
15745
|
*/
|
|
15576
15746
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
|
|
15577
15747
|
/**
|
|
15578
|
-
*
|
|
15748
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15579
15749
|
* @summary Search
|
|
15580
15750
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15581
15751
|
* @param {*} [options] Override http request option.
|
|
@@ -15702,7 +15872,7 @@ export declare const FunctionApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15702
15872
|
*/
|
|
15703
15873
|
functionControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15704
15874
|
/**
|
|
15705
|
-
*
|
|
15875
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15706
15876
|
* @summary Search
|
|
15707
15877
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15708
15878
|
* @param {*} [options] Override http request option.
|
|
@@ -15749,7 +15919,7 @@ export declare const FunctionApiFp: (configuration?: Configuration) => {
|
|
|
15749
15919
|
*/
|
|
15750
15920
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
15751
15921
|
/**
|
|
15752
|
-
*
|
|
15922
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15753
15923
|
* @summary Search
|
|
15754
15924
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15755
15925
|
* @param {*} [options] Override http request option.
|
|
@@ -15796,7 +15966,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
|
|
|
15796
15966
|
*/
|
|
15797
15967
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
15798
15968
|
/**
|
|
15799
|
-
*
|
|
15969
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15800
15970
|
* @summary Search
|
|
15801
15971
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15802
15972
|
* @param {*} [options] Override http request option.
|
|
@@ -15848,7 +16018,7 @@ export declare class FunctionApi extends BaseAPI {
|
|
|
15848
16018
|
*/
|
|
15849
16019
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
15850
16020
|
/**
|
|
15851
|
-
*
|
|
16021
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15852
16022
|
* @summary Search
|
|
15853
16023
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15854
16024
|
* @param {*} [options] Override http request option.
|
|
@@ -16867,7 +17037,7 @@ export declare const HookApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16867
17037
|
*/
|
|
16868
17038
|
hookControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16869
17039
|
/**
|
|
16870
|
-
*
|
|
17040
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
16871
17041
|
* @summary Search
|
|
16872
17042
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
16873
17043
|
* @param {*} [options] Override http request option.
|
|
@@ -16932,7 +17102,7 @@ export declare const HookApiFp: (configuration?: Configuration) => {
|
|
|
16932
17102
|
*/
|
|
16933
17103
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
16934
17104
|
/**
|
|
16935
|
-
*
|
|
17105
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
16936
17106
|
* @summary Search
|
|
16937
17107
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
16938
17108
|
* @param {*} [options] Override http request option.
|
|
@@ -16997,7 +17167,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16997
17167
|
*/
|
|
16998
17168
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
16999
17169
|
/**
|
|
17000
|
-
*
|
|
17170
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
17001
17171
|
* @summary Search
|
|
17002
17172
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
17003
17173
|
* @param {*} [options] Override http request option.
|
|
@@ -17068,7 +17238,7 @@ export declare class HookApi extends BaseAPI {
|
|
|
17068
17238
|
*/
|
|
17069
17239
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
17070
17240
|
/**
|
|
17071
|
-
*
|
|
17241
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
17072
17242
|
* @summary Search
|
|
17073
17243
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
17074
17244
|
* @param {*} [options] Override http request option.
|
|
@@ -17110,7 +17280,7 @@ export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
17110
17280
|
*/
|
|
17111
17281
|
itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17112
17282
|
/**
|
|
17113
|
-
*
|
|
17283
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17114
17284
|
* @summary Search
|
|
17115
17285
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17116
17286
|
* @param {*} [options] Override http request option.
|
|
@@ -17132,7 +17302,7 @@ export declare const ItemApiFp: (configuration?: Configuration) => {
|
|
|
17132
17302
|
*/
|
|
17133
17303
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputDTOAPI>>;
|
|
17134
17304
|
/**
|
|
17135
|
-
*
|
|
17305
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17136
17306
|
* @summary Search
|
|
17137
17307
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17138
17308
|
* @param {*} [options] Override http request option.
|
|
@@ -17154,7 +17324,7 @@ export declare const ItemApiFactory: (configuration?: Configuration, basePath?:
|
|
|
17154
17324
|
*/
|
|
17155
17325
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputDTOAPI>;
|
|
17156
17326
|
/**
|
|
17157
|
-
*
|
|
17327
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17158
17328
|
* @summary Search
|
|
17159
17329
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17160
17330
|
* @param {*} [options] Override http request option.
|
|
@@ -17179,7 +17349,7 @@ export declare class ItemApi extends BaseAPI {
|
|
|
17179
17349
|
*/
|
|
17180
17350
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputDTOAPI, any>>;
|
|
17181
17351
|
/**
|
|
17182
|
-
*
|
|
17352
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17183
17353
|
* @summary Search
|
|
17184
17354
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17185
17355
|
* @param {*} [options] Override http request option.
|
|
@@ -17948,6 +18118,14 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
17948
18118
|
* @throws {RequiredError}
|
|
17949
18119
|
*/
|
|
17950
18120
|
playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18121
|
+
/**
|
|
18122
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18123
|
+
* @summary Bulk delete
|
|
18124
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18125
|
+
* @param {*} [options] Override http request option.
|
|
18126
|
+
* @throws {RequiredError}
|
|
18127
|
+
*/
|
|
18128
|
+
playerControllerBulkDelete: (playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17951
18129
|
/**
|
|
17952
18130
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
17953
18131
|
* @summary Delete
|
|
@@ -18046,6 +18224,14 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
18046
18224
|
* @throws {RequiredError}
|
|
18047
18225
|
*/
|
|
18048
18226
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
18227
|
+
/**
|
|
18228
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18229
|
+
* @summary Bulk delete
|
|
18230
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18231
|
+
* @param {*} [options] Override http request option.
|
|
18232
|
+
* @throws {RequiredError}
|
|
18233
|
+
*/
|
|
18234
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkDeleteOutputDTOAPI>>;
|
|
18049
18235
|
/**
|
|
18050
18236
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18051
18237
|
* @summary Delete
|
|
@@ -18144,6 +18330,14 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
18144
18330
|
* @throws {RequiredError}
|
|
18145
18331
|
*/
|
|
18146
18332
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
18333
|
+
/**
|
|
18334
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18335
|
+
* @summary Bulk delete
|
|
18336
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18337
|
+
* @param {*} [options] Override http request option.
|
|
18338
|
+
* @throws {RequiredError}
|
|
18339
|
+
*/
|
|
18340
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkDeleteOutputDTOAPI>;
|
|
18147
18341
|
/**
|
|
18148
18342
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18149
18343
|
* @summary Delete
|
|
@@ -18250,6 +18444,15 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
18250
18444
|
* @memberof PlayerApi
|
|
18251
18445
|
*/
|
|
18252
18446
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
18447
|
+
/**
|
|
18448
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18449
|
+
* @summary Bulk delete
|
|
18450
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18451
|
+
* @param {*} [options] Override http request option.
|
|
18452
|
+
* @throws {RequiredError}
|
|
18453
|
+
* @memberof PlayerApi
|
|
18454
|
+
*/
|
|
18455
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkDeleteOutputDTOAPI, any>>;
|
|
18253
18456
|
/**
|
|
18254
18457
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18255
18458
|
* @summary Delete
|
|
@@ -18312,6 +18515,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
18312
18515
|
* @throws {RequiredError}
|
|
18313
18516
|
*/
|
|
18314
18517
|
playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18518
|
+
/**
|
|
18519
|
+
* 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`
|
|
18520
|
+
* @summary Bulk delete
|
|
18521
|
+
* @param {string} gameServerId
|
|
18522
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18523
|
+
* @param {*} [options] Override http request option.
|
|
18524
|
+
* @throws {RequiredError}
|
|
18525
|
+
*/
|
|
18526
|
+
playerOnGameServerControllerBulkDelete: (gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18315
18527
|
/**
|
|
18316
18528
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18317
18529
|
* @summary Deduct currency
|
|
@@ -18385,6 +18597,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
18385
18597
|
* @throws {RequiredError}
|
|
18386
18598
|
*/
|
|
18387
18599
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
|
|
18600
|
+
/**
|
|
18601
|
+
* 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`
|
|
18602
|
+
* @summary Bulk delete
|
|
18603
|
+
* @param {string} gameServerId
|
|
18604
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18605
|
+
* @param {*} [options] Override http request option.
|
|
18606
|
+
* @throws {RequiredError}
|
|
18607
|
+
*/
|
|
18608
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>>;
|
|
18388
18609
|
/**
|
|
18389
18610
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18390
18611
|
* @summary Deduct currency
|
|
@@ -18458,6 +18679,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
18458
18679
|
* @throws {RequiredError}
|
|
18459
18680
|
*/
|
|
18460
18681
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
|
|
18682
|
+
/**
|
|
18683
|
+
* 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`
|
|
18684
|
+
* @summary Bulk delete
|
|
18685
|
+
* @param {string} gameServerId
|
|
18686
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18687
|
+
* @param {*} [options] Override http request option.
|
|
18688
|
+
* @throws {RequiredError}
|
|
18689
|
+
*/
|
|
18690
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkDeleteOutputDTOAPI>;
|
|
18461
18691
|
/**
|
|
18462
18692
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18463
18693
|
* @summary Deduct currency
|
|
@@ -18534,6 +18764,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
18534
18764
|
* @memberof PlayerOnGameServerApi
|
|
18535
18765
|
*/
|
|
18536
18766
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
18767
|
+
/**
|
|
18768
|
+
* 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`
|
|
18769
|
+
* @summary Bulk delete
|
|
18770
|
+
* @param {string} gameServerId
|
|
18771
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18772
|
+
* @param {*} [options] Override http request option.
|
|
18773
|
+
* @throws {RequiredError}
|
|
18774
|
+
* @memberof PlayerOnGameServerApi
|
|
18775
|
+
*/
|
|
18776
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkDeleteOutputDTOAPI, any>>;
|
|
18537
18777
|
/**
|
|
18538
18778
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18539
18779
|
* @summary Deduct currency
|
|
@@ -19009,6 +19249,8 @@ export declare const SettingsControllerGetKeysEnum: {
|
|
|
19009
19249
|
readonly DomainName: "domainName";
|
|
19010
19250
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
19011
19251
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
19252
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
19253
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
19012
19254
|
};
|
|
19013
19255
|
export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
|
|
19014
19256
|
/**
|
|
@@ -19350,7 +19592,7 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
|
|
|
19350
19592
|
*/
|
|
19351
19593
|
shopListingControllerImportListings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19352
19594
|
/**
|
|
19353
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19595
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19354
19596
|
* @summary Search
|
|
19355
19597
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19356
19598
|
* @param {*} [options] Override http request option.
|
|
@@ -19404,7 +19646,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
19404
19646
|
*/
|
|
19405
19647
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
19406
19648
|
/**
|
|
19407
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19649
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19408
19650
|
* @summary Search
|
|
19409
19651
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19410
19652
|
* @param {*} [options] Override http request option.
|
|
@@ -19458,7 +19700,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
19458
19700
|
*/
|
|
19459
19701
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
19460
19702
|
/**
|
|
19461
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19703
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19462
19704
|
* @summary Search
|
|
19463
19705
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19464
19706
|
* @param {*} [options] Override http request option.
|
|
@@ -19518,7 +19760,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
19518
19760
|
*/
|
|
19519
19761
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
19520
19762
|
/**
|
|
19521
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19763
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19522
19764
|
* @summary Search
|
|
19523
19765
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19524
19766
|
* @param {*} [options] Override http request option.
|
|
@@ -20871,7 +21113,7 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
20871
21113
|
*/
|
|
20872
21114
|
variableControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20873
21115
|
/**
|
|
20874
|
-
*
|
|
21116
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20875
21117
|
* @summary Search
|
|
20876
21118
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20877
21119
|
* @param {*} [options] Override http request option.
|
|
@@ -20918,7 +21160,7 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
|
20918
21160
|
*/
|
|
20919
21161
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VariableOutputDTOAPI>>;
|
|
20920
21162
|
/**
|
|
20921
|
-
*
|
|
21163
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20922
21164
|
* @summary Search
|
|
20923
21165
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20924
21166
|
* @param {*} [options] Override http request option.
|
|
@@ -20965,7 +21207,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
|
|
|
20965
21207
|
*/
|
|
20966
21208
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputDTOAPI>;
|
|
20967
21209
|
/**
|
|
20968
|
-
*
|
|
21210
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20969
21211
|
* @summary Search
|
|
20970
21212
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20971
21213
|
* @param {*} [options] Override http request option.
|
|
@@ -21017,7 +21259,7 @@ export declare class VariableApi extends BaseAPI {
|
|
|
21017
21259
|
*/
|
|
21018
21260
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
21019
21261
|
/**
|
|
21020
|
-
*
|
|
21262
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
21021
21263
|
* @summary Search
|
|
21022
21264
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
21023
21265
|
* @param {*} [options] Override http request option.
|