@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.
- package/dist/generated/api.d.ts +297 -51
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +190 -39
- package/dist/generated/api.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +437 -51
package/dist/generated/api.d.ts
CHANGED
|
@@ -1988,6 +1988,7 @@ export declare const DomainCreateInputDTOStateEnum: {
|
|
|
1988
1988
|
readonly Active: "ACTIVE";
|
|
1989
1989
|
readonly Disabled: "DISABLED";
|
|
1990
1990
|
readonly Maintenance: "MAINTENANCE";
|
|
1991
|
+
readonly Deleted: "DELETED";
|
|
1991
1992
|
};
|
|
1992
1993
|
export type DomainCreateInputDTOStateEnum = (typeof DomainCreateInputDTOStateEnum)[keyof typeof DomainCreateInputDTOStateEnum];
|
|
1993
1994
|
/**
|
|
@@ -2160,6 +2161,7 @@ export declare const DomainOutputDTOStateEnum: {
|
|
|
2160
2161
|
readonly Active: "ACTIVE";
|
|
2161
2162
|
readonly Disabled: "DISABLED";
|
|
2162
2163
|
readonly Maintenance: "MAINTENANCE";
|
|
2164
|
+
readonly Deleted: "DELETED";
|
|
2163
2165
|
};
|
|
2164
2166
|
export type DomainOutputDTOStateEnum = (typeof DomainOutputDTOStateEnum)[keyof typeof DomainOutputDTOStateEnum];
|
|
2165
2167
|
/**
|
|
@@ -2216,6 +2218,7 @@ export declare const DomainSearchInputAllowedFiltersStateEnum: {
|
|
|
2216
2218
|
readonly Active: "ACTIVE";
|
|
2217
2219
|
readonly Disabled: "DISABLED";
|
|
2218
2220
|
readonly Maintenance: "MAINTENANCE";
|
|
2221
|
+
readonly Deleted: "DELETED";
|
|
2219
2222
|
};
|
|
2220
2223
|
export type DomainSearchInputAllowedFiltersStateEnum = (typeof DomainSearchInputAllowedFiltersStateEnum)[keyof typeof DomainSearchInputAllowedFiltersStateEnum];
|
|
2221
2224
|
/**
|
|
@@ -2362,6 +2365,7 @@ export declare const DomainUpdateInputDTOStateEnum: {
|
|
|
2362
2365
|
readonly Active: "ACTIVE";
|
|
2363
2366
|
readonly Disabled: "DISABLED";
|
|
2364
2367
|
readonly Maintenance: "MAINTENANCE";
|
|
2368
|
+
readonly Deleted: "DELETED";
|
|
2365
2369
|
};
|
|
2366
2370
|
export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
|
|
2367
2371
|
/**
|
|
@@ -3728,10 +3732,10 @@ export interface FunctionSearchInputDTO {
|
|
|
3728
3732
|
sortDirection?: FunctionSearchInputDTOSortDirectionEnum;
|
|
3729
3733
|
}
|
|
3730
3734
|
export declare const FunctionSearchInputDTOExtendEnum: {
|
|
3731
|
-
readonly
|
|
3732
|
-
readonly
|
|
3733
|
-
readonly
|
|
3734
|
-
readonly
|
|
3735
|
+
readonly Version: "version";
|
|
3736
|
+
readonly CronJob: "cronJob";
|
|
3737
|
+
readonly Hook: "hook";
|
|
3738
|
+
readonly Command: "command";
|
|
3735
3739
|
};
|
|
3736
3740
|
export type FunctionSearchInputDTOExtendEnum = (typeof FunctionSearchInputDTOExtendEnum)[keyof typeof FunctionSearchInputDTOExtendEnum];
|
|
3737
3741
|
export declare const FunctionSearchInputDTOSortDirectionEnum: {
|
|
@@ -3802,6 +3806,19 @@ export declare const GameServerCreateDTOTypeEnum: {
|
|
|
3802
3806
|
readonly Mock: "MOCK";
|
|
3803
3807
|
};
|
|
3804
3808
|
export type GameServerCreateDTOTypeEnum = (typeof GameServerCreateDTOTypeEnum)[keyof typeof GameServerCreateDTOTypeEnum];
|
|
3809
|
+
/**
|
|
3810
|
+
*
|
|
3811
|
+
* @export
|
|
3812
|
+
* @interface GameServerIdParam
|
|
3813
|
+
*/
|
|
3814
|
+
export interface GameServerIdParam {
|
|
3815
|
+
/**
|
|
3816
|
+
*
|
|
3817
|
+
* @type {string}
|
|
3818
|
+
* @memberof GameServerIdParam
|
|
3819
|
+
*/
|
|
3820
|
+
gameServerId: string;
|
|
3821
|
+
}
|
|
3805
3822
|
/**
|
|
3806
3823
|
*
|
|
3807
3824
|
* @export
|
|
@@ -4264,6 +4281,8 @@ export declare const GetSettingsInputKeysEnum: {
|
|
|
4264
4281
|
readonly DomainName: "domainName";
|
|
4265
4282
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
4266
4283
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
4284
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
4285
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
4267
4286
|
};
|
|
4268
4287
|
export type GetSettingsInputKeysEnum = (typeof GetSettingsInputKeysEnum)[keyof typeof GetSettingsInputKeysEnum];
|
|
4269
4288
|
/**
|
|
@@ -6157,7 +6176,7 @@ export interface ItemSearchInputDTO {
|
|
|
6157
6176
|
sortDirection?: ItemSearchInputDTOSortDirectionEnum;
|
|
6158
6177
|
}
|
|
6159
6178
|
export declare const ItemSearchInputDTOExtendEnum: {
|
|
6160
|
-
readonly
|
|
6179
|
+
readonly Gameserver: "gameserver";
|
|
6161
6180
|
};
|
|
6162
6181
|
export type ItemSearchInputDTOExtendEnum = (typeof ItemSearchInputDTOExtendEnum)[keyof typeof ItemSearchInputDTOExtendEnum];
|
|
6163
6182
|
export declare const ItemSearchInputDTOSortDirectionEnum: {
|
|
@@ -8043,6 +8062,8 @@ export declare const ParamKeyKeyEnum: {
|
|
|
8043
8062
|
readonly DomainName: "domainName";
|
|
8044
8063
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
8045
8064
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
8065
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
8066
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
8046
8067
|
};
|
|
8047
8068
|
export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
|
|
8048
8069
|
/**
|
|
@@ -8287,6 +8308,82 @@ export interface PermissionVersionDTO {
|
|
|
8287
8308
|
*/
|
|
8288
8309
|
tag: string;
|
|
8289
8310
|
}
|
|
8311
|
+
/**
|
|
8312
|
+
*
|
|
8313
|
+
* @export
|
|
8314
|
+
* @interface PlayerBulkDeleteErrorDTO
|
|
8315
|
+
*/
|
|
8316
|
+
export interface PlayerBulkDeleteErrorDTO {
|
|
8317
|
+
/**
|
|
8318
|
+
*
|
|
8319
|
+
* @type {string}
|
|
8320
|
+
* @memberof PlayerBulkDeleteErrorDTO
|
|
8321
|
+
*/
|
|
8322
|
+
playerId: string;
|
|
8323
|
+
/**
|
|
8324
|
+
*
|
|
8325
|
+
* @type {string}
|
|
8326
|
+
* @memberof PlayerBulkDeleteErrorDTO
|
|
8327
|
+
*/
|
|
8328
|
+
reason: string;
|
|
8329
|
+
}
|
|
8330
|
+
/**
|
|
8331
|
+
*
|
|
8332
|
+
* @export
|
|
8333
|
+
* @interface PlayerBulkDeleteInputDTO
|
|
8334
|
+
*/
|
|
8335
|
+
export interface PlayerBulkDeleteInputDTO {
|
|
8336
|
+
/**
|
|
8337
|
+
*
|
|
8338
|
+
* @type {Array<string>}
|
|
8339
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
8340
|
+
*/
|
|
8341
|
+
playerIds: Array<string>;
|
|
8342
|
+
}
|
|
8343
|
+
/**
|
|
8344
|
+
*
|
|
8345
|
+
* @export
|
|
8346
|
+
* @interface PlayerBulkDeleteOutputDTO
|
|
8347
|
+
*/
|
|
8348
|
+
export interface PlayerBulkDeleteOutputDTO {
|
|
8349
|
+
/**
|
|
8350
|
+
*
|
|
8351
|
+
* @type {number}
|
|
8352
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8353
|
+
*/
|
|
8354
|
+
deleted: number;
|
|
8355
|
+
/**
|
|
8356
|
+
*
|
|
8357
|
+
* @type {number}
|
|
8358
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8359
|
+
*/
|
|
8360
|
+
failed: number;
|
|
8361
|
+
/**
|
|
8362
|
+
*
|
|
8363
|
+
* @type {Array<PlayerBulkDeleteErrorDTO>}
|
|
8364
|
+
* @memberof PlayerBulkDeleteOutputDTO
|
|
8365
|
+
*/
|
|
8366
|
+
errors: Array<PlayerBulkDeleteErrorDTO>;
|
|
8367
|
+
}
|
|
8368
|
+
/**
|
|
8369
|
+
*
|
|
8370
|
+
* @export
|
|
8371
|
+
* @interface PlayerBulkDeleteOutputDTOAPI
|
|
8372
|
+
*/
|
|
8373
|
+
export interface PlayerBulkDeleteOutputDTOAPI {
|
|
8374
|
+
/**
|
|
8375
|
+
*
|
|
8376
|
+
* @type {PlayerBulkDeleteOutputDTO}
|
|
8377
|
+
* @memberof PlayerBulkDeleteOutputDTOAPI
|
|
8378
|
+
*/
|
|
8379
|
+
data: PlayerBulkDeleteOutputDTO;
|
|
8380
|
+
/**
|
|
8381
|
+
*
|
|
8382
|
+
* @type {MetadataOutput}
|
|
8383
|
+
* @memberof PlayerBulkDeleteOutputDTOAPI
|
|
8384
|
+
*/
|
|
8385
|
+
meta: MetadataOutput;
|
|
8386
|
+
}
|
|
8290
8387
|
/**
|
|
8291
8388
|
*
|
|
8292
8389
|
* @export
|
|
@@ -9813,6 +9910,82 @@ export interface PlayersOnlineInputDTO {
|
|
|
9813
9910
|
*/
|
|
9814
9911
|
endDate?: string;
|
|
9815
9912
|
}
|
|
9913
|
+
/**
|
|
9914
|
+
*
|
|
9915
|
+
* @export
|
|
9916
|
+
* @interface PogBulkDeleteErrorDTO
|
|
9917
|
+
*/
|
|
9918
|
+
export interface PogBulkDeleteErrorDTO {
|
|
9919
|
+
/**
|
|
9920
|
+
*
|
|
9921
|
+
* @type {string}
|
|
9922
|
+
* @memberof PogBulkDeleteErrorDTO
|
|
9923
|
+
*/
|
|
9924
|
+
playerId: string;
|
|
9925
|
+
/**
|
|
9926
|
+
*
|
|
9927
|
+
* @type {string}
|
|
9928
|
+
* @memberof PogBulkDeleteErrorDTO
|
|
9929
|
+
*/
|
|
9930
|
+
reason: string;
|
|
9931
|
+
}
|
|
9932
|
+
/**
|
|
9933
|
+
*
|
|
9934
|
+
* @export
|
|
9935
|
+
* @interface PogBulkDeleteInputDTO
|
|
9936
|
+
*/
|
|
9937
|
+
export interface PogBulkDeleteInputDTO {
|
|
9938
|
+
/**
|
|
9939
|
+
*
|
|
9940
|
+
* @type {Array<string>}
|
|
9941
|
+
* @memberof PogBulkDeleteInputDTO
|
|
9942
|
+
*/
|
|
9943
|
+
playerIds: Array<string>;
|
|
9944
|
+
}
|
|
9945
|
+
/**
|
|
9946
|
+
*
|
|
9947
|
+
* @export
|
|
9948
|
+
* @interface PogBulkDeleteOutputDTO
|
|
9949
|
+
*/
|
|
9950
|
+
export interface PogBulkDeleteOutputDTO {
|
|
9951
|
+
/**
|
|
9952
|
+
*
|
|
9953
|
+
* @type {number}
|
|
9954
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9955
|
+
*/
|
|
9956
|
+
deleted: number;
|
|
9957
|
+
/**
|
|
9958
|
+
*
|
|
9959
|
+
* @type {number}
|
|
9960
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9961
|
+
*/
|
|
9962
|
+
failed: number;
|
|
9963
|
+
/**
|
|
9964
|
+
*
|
|
9965
|
+
* @type {Array<PogBulkDeleteErrorDTO>}
|
|
9966
|
+
* @memberof PogBulkDeleteOutputDTO
|
|
9967
|
+
*/
|
|
9968
|
+
errors: Array<PogBulkDeleteErrorDTO>;
|
|
9969
|
+
}
|
|
9970
|
+
/**
|
|
9971
|
+
*
|
|
9972
|
+
* @export
|
|
9973
|
+
* @interface PogBulkDeleteOutputDTOAPI
|
|
9974
|
+
*/
|
|
9975
|
+
export interface PogBulkDeleteOutputDTOAPI {
|
|
9976
|
+
/**
|
|
9977
|
+
*
|
|
9978
|
+
* @type {PogBulkDeleteOutputDTO}
|
|
9979
|
+
* @memberof PogBulkDeleteOutputDTOAPI
|
|
9980
|
+
*/
|
|
9981
|
+
data: PogBulkDeleteOutputDTO;
|
|
9982
|
+
/**
|
|
9983
|
+
*
|
|
9984
|
+
* @type {MetadataOutput}
|
|
9985
|
+
* @memberof PogBulkDeleteOutputDTOAPI
|
|
9986
|
+
*/
|
|
9987
|
+
meta: MetadataOutput;
|
|
9988
|
+
}
|
|
9816
9989
|
/**
|
|
9817
9990
|
*
|
|
9818
9991
|
* @export
|
|
@@ -10592,6 +10765,18 @@ export interface Settings {
|
|
|
10592
10765
|
* @memberof Settings
|
|
10593
10766
|
*/
|
|
10594
10767
|
discordRoleSyncPreferDiscord: string;
|
|
10768
|
+
/**
|
|
10769
|
+
*
|
|
10770
|
+
* @type {string}
|
|
10771
|
+
* @memberof Settings
|
|
10772
|
+
*/
|
|
10773
|
+
unknownCommandFeedbackEnabled: string;
|
|
10774
|
+
/**
|
|
10775
|
+
*
|
|
10776
|
+
* @type {string}
|
|
10777
|
+
* @memberof Settings
|
|
10778
|
+
*/
|
|
10779
|
+
unknownCommandFeedbackMessage: string;
|
|
10595
10780
|
/**
|
|
10596
10781
|
*
|
|
10597
10782
|
* @type {string}
|
|
@@ -10677,6 +10862,8 @@ export declare const SettingsOutputDTOKeyEnum: {
|
|
|
10677
10862
|
readonly DomainName: "domainName";
|
|
10678
10863
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
10679
10864
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
10865
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
10866
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
10680
10867
|
};
|
|
10681
10868
|
export type SettingsOutputDTOKeyEnum = (typeof SettingsOutputDTOKeyEnum)[keyof typeof SettingsOutputDTOKeyEnum];
|
|
10682
10869
|
export declare const SettingsOutputDTOTypeEnum: {
|
|
@@ -11524,7 +11711,7 @@ export interface ShopListingSearchInputDTO {
|
|
|
11524
11711
|
}
|
|
11525
11712
|
export declare const ShopListingSearchInputDTOExtendEnum: {
|
|
11526
11713
|
readonly GameServer: "gameServer";
|
|
11527
|
-
readonly
|
|
11714
|
+
readonly Items: "items";
|
|
11528
11715
|
readonly Categories: "categories";
|
|
11529
11716
|
};
|
|
11530
11717
|
export type ShopListingSearchInputDTOExtendEnum = (typeof ShopListingSearchInputDTOExtendEnum)[keyof typeof ShopListingSearchInputDTOExtendEnum];
|
|
@@ -11613,12 +11800,6 @@ export interface ShopOrderCreateInternalDTO {
|
|
|
11613
11800
|
* @memberof ShopOrderCreateInternalDTO
|
|
11614
11801
|
*/
|
|
11615
11802
|
playerId?: string;
|
|
11616
|
-
/**
|
|
11617
|
-
*
|
|
11618
|
-
* @type {string}
|
|
11619
|
-
* @memberof ShopOrderCreateInternalDTO
|
|
11620
|
-
*/
|
|
11621
|
-
gameServerId: string;
|
|
11622
11803
|
/**
|
|
11623
11804
|
*
|
|
11624
11805
|
* @type {string}
|
|
@@ -11675,12 +11856,6 @@ export interface ShopOrderOutputDTO {
|
|
|
11675
11856
|
* @memberof ShopOrderOutputDTO
|
|
11676
11857
|
*/
|
|
11677
11858
|
playerId: string;
|
|
11678
|
-
/**
|
|
11679
|
-
*
|
|
11680
|
-
* @type {string}
|
|
11681
|
-
* @memberof ShopOrderOutputDTO
|
|
11682
|
-
*/
|
|
11683
|
-
gameServerId: string;
|
|
11684
11859
|
/**
|
|
11685
11860
|
*
|
|
11686
11861
|
* @type {number}
|
|
@@ -11876,7 +12051,6 @@ export declare const ShopOrderSearchInputDTOExtendEnum: {
|
|
|
11876
12051
|
readonly Listing: "listing";
|
|
11877
12052
|
readonly ListingItems: "listing.items";
|
|
11878
12053
|
readonly ListingItemsItem: "listing.items.item";
|
|
11879
|
-
readonly Player: "player";
|
|
11880
12054
|
};
|
|
11881
12055
|
export type ShopOrderSearchInputDTOExtendEnum = (typeof ShopOrderSearchInputDTOExtendEnum)[keyof typeof ShopOrderSearchInputDTOExtendEnum];
|
|
11882
12056
|
export declare const ShopOrderSearchInputDTOSortDirectionEnum: {
|
|
@@ -14145,7 +14319,7 @@ export declare const CommandApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14145
14319
|
*/
|
|
14146
14320
|
commandControllerRemoveArgument: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14147
14321
|
/**
|
|
14148
|
-
*
|
|
14322
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14149
14323
|
* @summary Search
|
|
14150
14324
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14151
14325
|
* @param {*} [options] Override http request option.
|
|
@@ -14236,7 +14410,7 @@ export declare const CommandApiFp: (configuration?: Configuration) => {
|
|
|
14236
14410
|
*/
|
|
14237
14411
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
14238
14412
|
/**
|
|
14239
|
-
*
|
|
14413
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14240
14414
|
* @summary Search
|
|
14241
14415
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14242
14416
|
* @param {*} [options] Override http request option.
|
|
@@ -14327,7 +14501,7 @@ export declare const CommandApiFactory: (configuration?: Configuration, basePath
|
|
|
14327
14501
|
*/
|
|
14328
14502
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
14329
14503
|
/**
|
|
14330
|
-
*
|
|
14504
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14331
14505
|
* @summary Search
|
|
14332
14506
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14333
14507
|
* @param {*} [options] Override http request option.
|
|
@@ -14426,7 +14600,7 @@ export declare class CommandApi extends BaseAPI {
|
|
|
14426
14600
|
*/
|
|
14427
14601
|
commandControllerRemoveArgument(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
14428
14602
|
/**
|
|
14429
|
-
*
|
|
14603
|
+
* Search commands Required permissions: `READ_MODULES`<br> OperationId: `CommandControllerSearch`
|
|
14430
14604
|
* @summary Search
|
|
14431
14605
|
* @param {CommandSearchInputDTO} [commandSearchInputDTO] CommandSearchInputDTO
|
|
14432
14606
|
* @param {*} [options] Override http request option.
|
|
@@ -14505,7 +14679,7 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
|
|
|
14505
14679
|
*/
|
|
14506
14680
|
cronJobControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14507
14681
|
/**
|
|
14508
|
-
*
|
|
14682
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14509
14683
|
* @summary Search
|
|
14510
14684
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14511
14685
|
* @param {*} [options] Override http request option.
|
|
@@ -14570,7 +14744,7 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
|
|
|
14570
14744
|
*/
|
|
14571
14745
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
14572
14746
|
/**
|
|
14573
|
-
*
|
|
14747
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14574
14748
|
* @summary Search
|
|
14575
14749
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14576
14750
|
* @param {*} [options] Override http request option.
|
|
@@ -14635,7 +14809,7 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
|
|
|
14635
14809
|
*/
|
|
14636
14810
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
14637
14811
|
/**
|
|
14638
|
-
*
|
|
14812
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14639
14813
|
* @summary Search
|
|
14640
14814
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14641
14815
|
* @param {*} [options] Override http request option.
|
|
@@ -14706,7 +14880,7 @@ export declare class CronJobApi extends BaseAPI {
|
|
|
14706
14880
|
*/
|
|
14707
14881
|
cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
14708
14882
|
/**
|
|
14709
|
-
*
|
|
14883
|
+
* Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
|
|
14710
14884
|
* @summary Search
|
|
14711
14885
|
* @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
|
|
14712
14886
|
* @param {*} [options] Override http request option.
|
|
@@ -15431,7 +15605,7 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15431
15605
|
*/
|
|
15432
15606
|
eventControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15433
15607
|
/**
|
|
15434
|
-
*
|
|
15608
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15435
15609
|
* @summary Search
|
|
15436
15610
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15437
15611
|
* @param {*} [options] Override http request option.
|
|
@@ -15477,7 +15651,7 @@ export declare const EventApiFp: (configuration?: Configuration) => {
|
|
|
15477
15651
|
*/
|
|
15478
15652
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
|
|
15479
15653
|
/**
|
|
15480
|
-
*
|
|
15654
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15481
15655
|
* @summary Search
|
|
15482
15656
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15483
15657
|
* @param {*} [options] Override http request option.
|
|
@@ -15523,7 +15697,7 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
|
|
|
15523
15697
|
*/
|
|
15524
15698
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
|
|
15525
15699
|
/**
|
|
15526
|
-
*
|
|
15700
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15527
15701
|
* @summary Search
|
|
15528
15702
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15529
15703
|
* @param {*} [options] Override http request option.
|
|
@@ -15575,7 +15749,7 @@ export declare class EventApi extends BaseAPI {
|
|
|
15575
15749
|
*/
|
|
15576
15750
|
eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
|
|
15577
15751
|
/**
|
|
15578
|
-
*
|
|
15752
|
+
* Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
|
|
15579
15753
|
* @summary Search
|
|
15580
15754
|
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
15581
15755
|
* @param {*} [options] Override http request option.
|
|
@@ -15702,7 +15876,7 @@ export declare const FunctionApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
15702
15876
|
*/
|
|
15703
15877
|
functionControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15704
15878
|
/**
|
|
15705
|
-
*
|
|
15879
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15706
15880
|
* @summary Search
|
|
15707
15881
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15708
15882
|
* @param {*} [options] Override http request option.
|
|
@@ -15749,7 +15923,7 @@ export declare const FunctionApiFp: (configuration?: Configuration) => {
|
|
|
15749
15923
|
*/
|
|
15750
15924
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
15751
15925
|
/**
|
|
15752
|
-
*
|
|
15926
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15753
15927
|
* @summary Search
|
|
15754
15928
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15755
15929
|
* @param {*} [options] Override http request option.
|
|
@@ -15796,7 +15970,7 @@ export declare const FunctionApiFactory: (configuration?: Configuration, basePat
|
|
|
15796
15970
|
*/
|
|
15797
15971
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
15798
15972
|
/**
|
|
15799
|
-
*
|
|
15973
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15800
15974
|
* @summary Search
|
|
15801
15975
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15802
15976
|
* @param {*} [options] Override http request option.
|
|
@@ -15848,7 +16022,7 @@ export declare class FunctionApi extends BaseAPI {
|
|
|
15848
16022
|
*/
|
|
15849
16023
|
functionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
15850
16024
|
/**
|
|
15851
|
-
*
|
|
16025
|
+
* Search functions Required permissions: `READ_MODULES`<br> OperationId: `FunctionControllerSearch`
|
|
15852
16026
|
* @summary Search
|
|
15853
16027
|
* @param {FunctionSearchInputDTO} [functionSearchInputDTO] FunctionSearchInputDTO
|
|
15854
16028
|
* @param {*} [options] Override http request option.
|
|
@@ -16867,7 +17041,7 @@ export declare const HookApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
16867
17041
|
*/
|
|
16868
17042
|
hookControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16869
17043
|
/**
|
|
16870
|
-
*
|
|
17044
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
16871
17045
|
* @summary Search
|
|
16872
17046
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
16873
17047
|
* @param {*} [options] Override http request option.
|
|
@@ -16932,7 +17106,7 @@ export declare const HookApiFp: (configuration?: Configuration) => {
|
|
|
16932
17106
|
*/
|
|
16933
17107
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
16934
17108
|
/**
|
|
16935
|
-
*
|
|
17109
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
16936
17110
|
* @summary Search
|
|
16937
17111
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
16938
17112
|
* @param {*} [options] Override http request option.
|
|
@@ -16997,7 +17171,7 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
|
|
|
16997
17171
|
*/
|
|
16998
17172
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
16999
17173
|
/**
|
|
17000
|
-
*
|
|
17174
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
17001
17175
|
* @summary Search
|
|
17002
17176
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
17003
17177
|
* @param {*} [options] Override http request option.
|
|
@@ -17068,7 +17242,7 @@ export declare class HookApi extends BaseAPI {
|
|
|
17068
17242
|
*/
|
|
17069
17243
|
hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
17070
17244
|
/**
|
|
17071
|
-
*
|
|
17245
|
+
* Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
|
|
17072
17246
|
* @summary Search
|
|
17073
17247
|
* @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
|
|
17074
17248
|
* @param {*} [options] Override http request option.
|
|
@@ -17110,7 +17284,7 @@ export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
17110
17284
|
*/
|
|
17111
17285
|
itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17112
17286
|
/**
|
|
17113
|
-
*
|
|
17287
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17114
17288
|
* @summary Search
|
|
17115
17289
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17116
17290
|
* @param {*} [options] Override http request option.
|
|
@@ -17132,7 +17306,7 @@ export declare const ItemApiFp: (configuration?: Configuration) => {
|
|
|
17132
17306
|
*/
|
|
17133
17307
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputDTOAPI>>;
|
|
17134
17308
|
/**
|
|
17135
|
-
*
|
|
17309
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17136
17310
|
* @summary Search
|
|
17137
17311
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17138
17312
|
* @param {*} [options] Override http request option.
|
|
@@ -17154,7 +17328,7 @@ export declare const ItemApiFactory: (configuration?: Configuration, basePath?:
|
|
|
17154
17328
|
*/
|
|
17155
17329
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputDTOAPI>;
|
|
17156
17330
|
/**
|
|
17157
|
-
*
|
|
17331
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17158
17332
|
* @summary Search
|
|
17159
17333
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17160
17334
|
* @param {*} [options] Override http request option.
|
|
@@ -17179,7 +17353,7 @@ export declare class ItemApi extends BaseAPI {
|
|
|
17179
17353
|
*/
|
|
17180
17354
|
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputDTOAPI, any>>;
|
|
17181
17355
|
/**
|
|
17182
|
-
*
|
|
17356
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
17183
17357
|
* @summary Search
|
|
17184
17358
|
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
17185
17359
|
* @param {*} [options] Override http request option.
|
|
@@ -17948,6 +18122,14 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
17948
18122
|
* @throws {RequiredError}
|
|
17949
18123
|
*/
|
|
17950
18124
|
playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18125
|
+
/**
|
|
18126
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18127
|
+
* @summary Bulk delete
|
|
18128
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18129
|
+
* @param {*} [options] Override http request option.
|
|
18130
|
+
* @throws {RequiredError}
|
|
18131
|
+
*/
|
|
18132
|
+
playerControllerBulkDelete: (playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17951
18133
|
/**
|
|
17952
18134
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
17953
18135
|
* @summary Delete
|
|
@@ -18046,6 +18228,14 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
18046
18228
|
* @throws {RequiredError}
|
|
18047
18229
|
*/
|
|
18048
18230
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
18231
|
+
/**
|
|
18232
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18233
|
+
* @summary Bulk delete
|
|
18234
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18235
|
+
* @param {*} [options] Override http request option.
|
|
18236
|
+
* @throws {RequiredError}
|
|
18237
|
+
*/
|
|
18238
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkDeleteOutputDTOAPI>>;
|
|
18049
18239
|
/**
|
|
18050
18240
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18051
18241
|
* @summary Delete
|
|
@@ -18144,6 +18334,14 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
18144
18334
|
* @throws {RequiredError}
|
|
18145
18335
|
*/
|
|
18146
18336
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
18337
|
+
/**
|
|
18338
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18339
|
+
* @summary Bulk delete
|
|
18340
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18341
|
+
* @param {*} [options] Override http request option.
|
|
18342
|
+
* @throws {RequiredError}
|
|
18343
|
+
*/
|
|
18344
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkDeleteOutputDTOAPI>;
|
|
18147
18345
|
/**
|
|
18148
18346
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18149
18347
|
* @summary Delete
|
|
@@ -18250,6 +18448,15 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
18250
18448
|
* @memberof PlayerApi
|
|
18251
18449
|
*/
|
|
18252
18450
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
18451
|
+
/**
|
|
18452
|
+
* Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
18453
|
+
* @summary Bulk delete
|
|
18454
|
+
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
18455
|
+
* @param {*} [options] Override http request option.
|
|
18456
|
+
* @throws {RequiredError}
|
|
18457
|
+
* @memberof PlayerApi
|
|
18458
|
+
*/
|
|
18459
|
+
playerControllerBulkDelete(playerBulkDeleteInputDTO?: PlayerBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkDeleteOutputDTOAPI, any>>;
|
|
18253
18460
|
/**
|
|
18254
18461
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerDelete`
|
|
18255
18462
|
* @summary Delete
|
|
@@ -18312,6 +18519,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
18312
18519
|
* @throws {RequiredError}
|
|
18313
18520
|
*/
|
|
18314
18521
|
playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18522
|
+
/**
|
|
18523
|
+
* 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`
|
|
18524
|
+
* @summary Bulk delete
|
|
18525
|
+
* @param {string} gameServerId
|
|
18526
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18527
|
+
* @param {*} [options] Override http request option.
|
|
18528
|
+
* @throws {RequiredError}
|
|
18529
|
+
*/
|
|
18530
|
+
playerOnGameServerControllerBulkDelete: (gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18315
18531
|
/**
|
|
18316
18532
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18317
18533
|
* @summary Deduct currency
|
|
@@ -18385,6 +18601,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
18385
18601
|
* @throws {RequiredError}
|
|
18386
18602
|
*/
|
|
18387
18603
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
|
|
18604
|
+
/**
|
|
18605
|
+
* 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`
|
|
18606
|
+
* @summary Bulk delete
|
|
18607
|
+
* @param {string} gameServerId
|
|
18608
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18609
|
+
* @param {*} [options] Override http request option.
|
|
18610
|
+
* @throws {RequiredError}
|
|
18611
|
+
*/
|
|
18612
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>>;
|
|
18388
18613
|
/**
|
|
18389
18614
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18390
18615
|
* @summary Deduct currency
|
|
@@ -18458,6 +18683,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
18458
18683
|
* @throws {RequiredError}
|
|
18459
18684
|
*/
|
|
18460
18685
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
|
|
18686
|
+
/**
|
|
18687
|
+
* 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`
|
|
18688
|
+
* @summary Bulk delete
|
|
18689
|
+
* @param {string} gameServerId
|
|
18690
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18691
|
+
* @param {*} [options] Override http request option.
|
|
18692
|
+
* @throws {RequiredError}
|
|
18693
|
+
*/
|
|
18694
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkDeleteOutputDTOAPI>;
|
|
18461
18695
|
/**
|
|
18462
18696
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18463
18697
|
* @summary Deduct currency
|
|
@@ -18534,6 +18768,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
18534
18768
|
* @memberof PlayerOnGameServerApi
|
|
18535
18769
|
*/
|
|
18536
18770
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
18771
|
+
/**
|
|
18772
|
+
* 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`
|
|
18773
|
+
* @summary Bulk delete
|
|
18774
|
+
* @param {string} gameServerId
|
|
18775
|
+
* @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
|
|
18776
|
+
* @param {*} [options] Override http request option.
|
|
18777
|
+
* @throws {RequiredError}
|
|
18778
|
+
* @memberof PlayerOnGameServerApi
|
|
18779
|
+
*/
|
|
18780
|
+
playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkDeleteOutputDTOAPI, any>>;
|
|
18537
18781
|
/**
|
|
18538
18782
|
* Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
|
|
18539
18783
|
* @summary Deduct currency
|
|
@@ -19009,6 +19253,8 @@ export declare const SettingsControllerGetKeysEnum: {
|
|
|
19009
19253
|
readonly DomainName: "domainName";
|
|
19010
19254
|
readonly DiscordRoleSyncEnabled: "discordRoleSyncEnabled";
|
|
19011
19255
|
readonly DiscordRoleSyncPreferDiscord: "discordRoleSyncPreferDiscord";
|
|
19256
|
+
readonly UnknownCommandFeedbackEnabled: "unknownCommandFeedbackEnabled";
|
|
19257
|
+
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
19012
19258
|
};
|
|
19013
19259
|
export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
|
|
19014
19260
|
/**
|
|
@@ -19350,7 +19596,7 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
|
|
|
19350
19596
|
*/
|
|
19351
19597
|
shopListingControllerImportListings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19352
19598
|
/**
|
|
19353
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19599
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19354
19600
|
* @summary Search
|
|
19355
19601
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19356
19602
|
* @param {*} [options] Override http request option.
|
|
@@ -19404,7 +19650,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
19404
19650
|
*/
|
|
19405
19651
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
19406
19652
|
/**
|
|
19407
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19653
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19408
19654
|
* @summary Search
|
|
19409
19655
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19410
19656
|
* @param {*} [options] Override http request option.
|
|
@@ -19458,7 +19704,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
19458
19704
|
*/
|
|
19459
19705
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
19460
19706
|
/**
|
|
19461
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19707
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19462
19708
|
* @summary Search
|
|
19463
19709
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19464
19710
|
* @param {*} [options] Override http request option.
|
|
@@ -19518,7 +19764,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
19518
19764
|
*/
|
|
19519
19765
|
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
19520
19766
|
/**
|
|
19521
|
-
* <br> OperationId: `ShopListingControllerSearch`
|
|
19767
|
+
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
19522
19768
|
* @summary Search
|
|
19523
19769
|
* @param {ShopListingSearchInputDTO} [shopListingSearchInputDTO] ShopListingSearchInputDTO
|
|
19524
19770
|
* @param {*} [options] Override http request option.
|
|
@@ -20871,7 +21117,7 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
20871
21117
|
*/
|
|
20872
21118
|
variableControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20873
21119
|
/**
|
|
20874
|
-
*
|
|
21120
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20875
21121
|
* @summary Search
|
|
20876
21122
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20877
21123
|
* @param {*} [options] Override http request option.
|
|
@@ -20918,7 +21164,7 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
|
20918
21164
|
*/
|
|
20919
21165
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<VariableOutputDTOAPI>>;
|
|
20920
21166
|
/**
|
|
20921
|
-
*
|
|
21167
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20922
21168
|
* @summary Search
|
|
20923
21169
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20924
21170
|
* @param {*} [options] Override http request option.
|
|
@@ -20965,7 +21211,7 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
|
|
|
20965
21211
|
*/
|
|
20966
21212
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<VariableOutputDTOAPI>;
|
|
20967
21213
|
/**
|
|
20968
|
-
*
|
|
21214
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
20969
21215
|
* @summary Search
|
|
20970
21216
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
20971
21217
|
* @param {*} [options] Override http request option.
|
|
@@ -21017,7 +21263,7 @@ export declare class VariableApi extends BaseAPI {
|
|
|
21017
21263
|
*/
|
|
21018
21264
|
variableControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
21019
21265
|
/**
|
|
21020
|
-
*
|
|
21266
|
+
* Search variables Required permissions: `READ_VARIABLES`<br> OperationId: `VariableControllerSearch`
|
|
21021
21267
|
* @summary Search
|
|
21022
21268
|
* @param {VariableSearchInputDTO} [variableSearchInputDTO] VariableSearchInputDTO
|
|
21023
21269
|
* @param {*} [options] Override http request option.
|