@takaro/apiclient 0.0.0-dev.c52118a → 0.0.0-dev.d453926
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 +648 -3
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +536 -1
- package/dist/generated/api.js.map +1 -1
- package/dist/generated/base.d.ts +1 -1
- package/dist/generated/base.js +1 -1
- package/dist/generated/common.d.ts +1 -1
- package/dist/generated/common.js +1 -1
- package/dist/generated/configuration.d.ts +1 -1
- package/dist/generated/configuration.js +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/index.js +1 -1
- package/dist/lib/client.d.ts +2 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +6 -1
- package/dist/lib/client.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +1093 -6
- package/src/generated/base.ts +1 -1
- package/src/generated/common.ts +1 -1
- package/src/generated/configuration.ts +1 -1
- package/src/generated/index.ts +1 -1
- package/src/lib/client.ts +11 -0
package/dist/generated/api.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Takaro
|
|
2
|
+
* Takaro API
|
|
3
3
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0.0.0
|
|
@@ -2849,6 +2849,7 @@ export declare const EventCreateDTOEventNameEnum: {
|
|
|
2849
2849
|
readonly PlayerBanned: "player-banned";
|
|
2850
2850
|
readonly PlayerUnbanned: "player-unbanned";
|
|
2851
2851
|
readonly PlayerDeleted: "player-deleted";
|
|
2852
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
2852
2853
|
readonly PlayerConnected: "player-connected";
|
|
2853
2854
|
readonly PlayerDisconnected: "player-disconnected";
|
|
2854
2855
|
readonly ChatMessage: "chat-message";
|
|
@@ -3120,6 +3121,7 @@ export declare const EventOutputDTOEventNameEnum: {
|
|
|
3120
3121
|
readonly PlayerBanned: "player-banned";
|
|
3121
3122
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3122
3123
|
readonly PlayerDeleted: "player-deleted";
|
|
3124
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3123
3125
|
readonly PlayerConnected: "player-connected";
|
|
3124
3126
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3125
3127
|
readonly ChatMessage: "chat-message";
|
|
@@ -3131,7 +3133,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
|
|
|
3131
3133
|
* @type EventOutputDTOMeta
|
|
3132
3134
|
* @export
|
|
3133
3135
|
*/
|
|
3134
|
-
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerUnbanned | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3136
|
+
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerUnbanned | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3135
3137
|
/**
|
|
3136
3138
|
*
|
|
3137
3139
|
* @export
|
|
@@ -3304,6 +3306,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
|
|
|
3304
3306
|
readonly PlayerBanned: "player-banned";
|
|
3305
3307
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3306
3308
|
readonly PlayerDeleted: "player-deleted";
|
|
3309
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3307
3310
|
readonly PlayerConnected: "player-connected";
|
|
3308
3311
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3309
3312
|
readonly ChatMessage: "chat-message";
|
|
@@ -3481,6 +3484,7 @@ export declare const EventsCountInputDTOEventNameEnum: {
|
|
|
3481
3484
|
readonly PlayerBanned: "player-banned";
|
|
3482
3485
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3483
3486
|
readonly PlayerDeleted: "player-deleted";
|
|
3487
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3484
3488
|
readonly PlayerConnected: "player-connected";
|
|
3485
3489
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3486
3490
|
readonly ChatMessage: "chat-message";
|
|
@@ -4698,6 +4702,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
4698
4702
|
readonly PlayerBanned: "player-banned";
|
|
4699
4703
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4700
4704
|
readonly PlayerDeleted: "player-deleted";
|
|
4705
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4701
4706
|
};
|
|
4702
4707
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
4703
4708
|
/**
|
|
@@ -4854,6 +4859,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
4854
4859
|
readonly PlayerBanned: "player-banned";
|
|
4855
4860
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4856
4861
|
readonly PlayerDeleted: "player-deleted";
|
|
4862
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4857
4863
|
};
|
|
4858
4864
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
4859
4865
|
/**
|
|
@@ -4955,6 +4961,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
4955
4961
|
readonly PlayerBanned: "player-banned";
|
|
4956
4962
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4957
4963
|
readonly PlayerDeleted: "player-deleted";
|
|
4964
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4958
4965
|
};
|
|
4959
4966
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
4960
4967
|
/**
|
|
@@ -5121,6 +5128,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
5121
5128
|
readonly PlayerBanned: "player-banned";
|
|
5122
5129
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5123
5130
|
readonly PlayerDeleted: "player-deleted";
|
|
5131
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5124
5132
|
};
|
|
5125
5133
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
5126
5134
|
/**
|
|
@@ -5203,6 +5211,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
5203
5211
|
readonly PlayerBanned: "player-banned";
|
|
5204
5212
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5205
5213
|
readonly PlayerDeleted: "player-deleted";
|
|
5214
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5206
5215
|
};
|
|
5207
5216
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
5208
5217
|
/**
|
|
@@ -5525,6 +5534,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
5525
5534
|
readonly PlayerBanned: "player-banned";
|
|
5526
5535
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5527
5536
|
readonly PlayerDeleted: "player-deleted";
|
|
5537
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5528
5538
|
};
|
|
5529
5539
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
5530
5540
|
/**
|
|
@@ -5713,6 +5723,31 @@ export interface IPosition {
|
|
|
5713
5723
|
*/
|
|
5714
5724
|
dimension?: string;
|
|
5715
5725
|
}
|
|
5726
|
+
/**
|
|
5727
|
+
*
|
|
5728
|
+
* @export
|
|
5729
|
+
* @interface IShopAction
|
|
5730
|
+
*/
|
|
5731
|
+
export interface IShopAction {
|
|
5732
|
+
/**
|
|
5733
|
+
*
|
|
5734
|
+
* @type {string}
|
|
5735
|
+
* @memberof IShopAction
|
|
5736
|
+
*/
|
|
5737
|
+
name: string;
|
|
5738
|
+
/**
|
|
5739
|
+
*
|
|
5740
|
+
* @type {string}
|
|
5741
|
+
* @memberof IShopAction
|
|
5742
|
+
*/
|
|
5743
|
+
description?: string;
|
|
5744
|
+
/**
|
|
5745
|
+
*
|
|
5746
|
+
* @type {string}
|
|
5747
|
+
* @memberof IShopAction
|
|
5748
|
+
*/
|
|
5749
|
+
function: string;
|
|
5750
|
+
}
|
|
5716
5751
|
/**
|
|
5717
5752
|
*
|
|
5718
5753
|
* @export
|
|
@@ -7446,6 +7481,12 @@ export interface ModuleTransferVersionDTO {
|
|
|
7446
7481
|
* @memberof ModuleTransferVersionDTO
|
|
7447
7482
|
*/
|
|
7448
7483
|
permissions?: Array<IPermission>;
|
|
7484
|
+
/**
|
|
7485
|
+
*
|
|
7486
|
+
* @type {Array<IShopAction>}
|
|
7487
|
+
* @memberof ModuleTransferVersionDTO
|
|
7488
|
+
*/
|
|
7489
|
+
shopActions?: Array<IShopAction>;
|
|
7449
7490
|
}
|
|
7450
7491
|
/**
|
|
7451
7492
|
*
|
|
@@ -7594,6 +7635,12 @@ export interface ModuleVersionOutputDTO {
|
|
|
7594
7635
|
* @memberof ModuleVersionOutputDTO
|
|
7595
7636
|
*/
|
|
7596
7637
|
permissions: Array<PermissionOutputDTO>;
|
|
7638
|
+
/**
|
|
7639
|
+
*
|
|
7640
|
+
* @type {Array<ShopActionOutputDTO>}
|
|
7641
|
+
* @memberof ModuleVersionOutputDTO
|
|
7642
|
+
*/
|
|
7643
|
+
shopActions: Array<ShopActionOutputDTO>;
|
|
7597
7644
|
/**
|
|
7598
7645
|
*
|
|
7599
7646
|
* @type {string}
|
|
@@ -8003,6 +8050,19 @@ export interface PaginationParamsWithGameServer {
|
|
|
8003
8050
|
*/
|
|
8004
8051
|
limit?: number;
|
|
8005
8052
|
}
|
|
8053
|
+
/**
|
|
8054
|
+
*
|
|
8055
|
+
* @export
|
|
8056
|
+
* @interface ParamGameServerId
|
|
8057
|
+
*/
|
|
8058
|
+
export interface ParamGameServerId {
|
|
8059
|
+
/**
|
|
8060
|
+
*
|
|
8061
|
+
* @type {string}
|
|
8062
|
+
* @memberof ParamGameServerId
|
|
8063
|
+
*/
|
|
8064
|
+
gameServerId: string;
|
|
8065
|
+
}
|
|
8006
8066
|
/**
|
|
8007
8067
|
*
|
|
8008
8068
|
* @export
|
|
@@ -10907,6 +10967,259 @@ export interface SettingsSetDTO {
|
|
|
10907
10967
|
*/
|
|
10908
10968
|
value: any;
|
|
10909
10969
|
}
|
|
10970
|
+
/**
|
|
10971
|
+
*
|
|
10972
|
+
* @export
|
|
10973
|
+
* @interface ShopActionCreateDTO
|
|
10974
|
+
*/
|
|
10975
|
+
export interface ShopActionCreateDTO {
|
|
10976
|
+
/**
|
|
10977
|
+
*
|
|
10978
|
+
* @type {string}
|
|
10979
|
+
* @memberof ShopActionCreateDTO
|
|
10980
|
+
*/
|
|
10981
|
+
name: string;
|
|
10982
|
+
/**
|
|
10983
|
+
*
|
|
10984
|
+
* @type {string}
|
|
10985
|
+
* @memberof ShopActionCreateDTO
|
|
10986
|
+
*/
|
|
10987
|
+
description?: string;
|
|
10988
|
+
/**
|
|
10989
|
+
*
|
|
10990
|
+
* @type {string}
|
|
10991
|
+
* @memberof ShopActionCreateDTO
|
|
10992
|
+
*/
|
|
10993
|
+
versionId: string;
|
|
10994
|
+
/**
|
|
10995
|
+
*
|
|
10996
|
+
* @type {string}
|
|
10997
|
+
* @memberof ShopActionCreateDTO
|
|
10998
|
+
*/
|
|
10999
|
+
function?: string;
|
|
11000
|
+
}
|
|
11001
|
+
/**
|
|
11002
|
+
*
|
|
11003
|
+
* @export
|
|
11004
|
+
* @interface ShopActionOutputArrayDTOAPI
|
|
11005
|
+
*/
|
|
11006
|
+
export interface ShopActionOutputArrayDTOAPI {
|
|
11007
|
+
/**
|
|
11008
|
+
*
|
|
11009
|
+
* @type {Array<ShopActionOutputDTO>}
|
|
11010
|
+
* @memberof ShopActionOutputArrayDTOAPI
|
|
11011
|
+
*/
|
|
11012
|
+
data: Array<ShopActionOutputDTO>;
|
|
11013
|
+
/**
|
|
11014
|
+
*
|
|
11015
|
+
* @type {MetadataOutput}
|
|
11016
|
+
* @memberof ShopActionOutputArrayDTOAPI
|
|
11017
|
+
*/
|
|
11018
|
+
meta: MetadataOutput;
|
|
11019
|
+
}
|
|
11020
|
+
/**
|
|
11021
|
+
*
|
|
11022
|
+
* @export
|
|
11023
|
+
* @interface ShopActionOutputDTO
|
|
11024
|
+
*/
|
|
11025
|
+
export interface ShopActionOutputDTO {
|
|
11026
|
+
/**
|
|
11027
|
+
*
|
|
11028
|
+
* @type {string}
|
|
11029
|
+
* @memberof ShopActionOutputDTO
|
|
11030
|
+
*/
|
|
11031
|
+
name: string;
|
|
11032
|
+
/**
|
|
11033
|
+
*
|
|
11034
|
+
* @type {string}
|
|
11035
|
+
* @memberof ShopActionOutputDTO
|
|
11036
|
+
*/
|
|
11037
|
+
description?: string;
|
|
11038
|
+
/**
|
|
11039
|
+
*
|
|
11040
|
+
* @type {FunctionOutputDTO}
|
|
11041
|
+
* @memberof ShopActionOutputDTO
|
|
11042
|
+
*/
|
|
11043
|
+
function: FunctionOutputDTO;
|
|
11044
|
+
/**
|
|
11045
|
+
*
|
|
11046
|
+
* @type {string}
|
|
11047
|
+
* @memberof ShopActionOutputDTO
|
|
11048
|
+
*/
|
|
11049
|
+
versionId: string;
|
|
11050
|
+
/**
|
|
11051
|
+
*
|
|
11052
|
+
* @type {string}
|
|
11053
|
+
* @memberof ShopActionOutputDTO
|
|
11054
|
+
*/
|
|
11055
|
+
id: string;
|
|
11056
|
+
/**
|
|
11057
|
+
*
|
|
11058
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
11059
|
+
* @memberof ShopActionOutputDTO
|
|
11060
|
+
*/
|
|
11061
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11062
|
+
/**
|
|
11063
|
+
*
|
|
11064
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
11065
|
+
* @memberof ShopActionOutputDTO
|
|
11066
|
+
*/
|
|
11067
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11068
|
+
}
|
|
11069
|
+
/**
|
|
11070
|
+
*
|
|
11071
|
+
* @export
|
|
11072
|
+
* @interface ShopActionOutputDTOAPI
|
|
11073
|
+
*/
|
|
11074
|
+
export interface ShopActionOutputDTOAPI {
|
|
11075
|
+
/**
|
|
11076
|
+
*
|
|
11077
|
+
* @type {ShopActionOutputDTO}
|
|
11078
|
+
* @memberof ShopActionOutputDTOAPI
|
|
11079
|
+
*/
|
|
11080
|
+
data: ShopActionOutputDTO;
|
|
11081
|
+
/**
|
|
11082
|
+
*
|
|
11083
|
+
* @type {MetadataOutput}
|
|
11084
|
+
* @memberof ShopActionOutputDTOAPI
|
|
11085
|
+
*/
|
|
11086
|
+
meta: MetadataOutput;
|
|
11087
|
+
}
|
|
11088
|
+
/**
|
|
11089
|
+
*
|
|
11090
|
+
* @export
|
|
11091
|
+
* @interface ShopActionSearchInputAllowedFilters
|
|
11092
|
+
*/
|
|
11093
|
+
export interface ShopActionSearchInputAllowedFilters {
|
|
11094
|
+
/**
|
|
11095
|
+
*
|
|
11096
|
+
* @type {Array<string>}
|
|
11097
|
+
* @memberof ShopActionSearchInputAllowedFilters
|
|
11098
|
+
*/
|
|
11099
|
+
moduleId?: Array<string>;
|
|
11100
|
+
/**
|
|
11101
|
+
*
|
|
11102
|
+
* @type {Array<string>}
|
|
11103
|
+
* @memberof ShopActionSearchInputAllowedFilters
|
|
11104
|
+
*/
|
|
11105
|
+
versionId?: Array<string>;
|
|
11106
|
+
/**
|
|
11107
|
+
*
|
|
11108
|
+
* @type {Array<string>}
|
|
11109
|
+
* @memberof ShopActionSearchInputAllowedFilters
|
|
11110
|
+
*/
|
|
11111
|
+
name?: Array<string>;
|
|
11112
|
+
/**
|
|
11113
|
+
*
|
|
11114
|
+
* @type {Array<string>}
|
|
11115
|
+
* @memberof ShopActionSearchInputAllowedFilters
|
|
11116
|
+
*/
|
|
11117
|
+
id?: Array<string>;
|
|
11118
|
+
}
|
|
11119
|
+
/**
|
|
11120
|
+
*
|
|
11121
|
+
* @export
|
|
11122
|
+
* @interface ShopActionSearchInputAllowedSearch
|
|
11123
|
+
*/
|
|
11124
|
+
export interface ShopActionSearchInputAllowedSearch {
|
|
11125
|
+
/**
|
|
11126
|
+
*
|
|
11127
|
+
* @type {Array<string>}
|
|
11128
|
+
* @memberof ShopActionSearchInputAllowedSearch
|
|
11129
|
+
*/
|
|
11130
|
+
name?: Array<string>;
|
|
11131
|
+
}
|
|
11132
|
+
/**
|
|
11133
|
+
*
|
|
11134
|
+
* @export
|
|
11135
|
+
* @interface ShopActionSearchInputDTO
|
|
11136
|
+
*/
|
|
11137
|
+
export interface ShopActionSearchInputDTO {
|
|
11138
|
+
/**
|
|
11139
|
+
*
|
|
11140
|
+
* @type {ShopActionSearchInputAllowedFilters}
|
|
11141
|
+
* @memberof ShopActionSearchInputDTO
|
|
11142
|
+
*/
|
|
11143
|
+
filters?: ShopActionSearchInputAllowedFilters;
|
|
11144
|
+
/**
|
|
11145
|
+
*
|
|
11146
|
+
* @type {ShopActionSearchInputAllowedSearch}
|
|
11147
|
+
* @memberof ShopActionSearchInputDTO
|
|
11148
|
+
*/
|
|
11149
|
+
search?: ShopActionSearchInputAllowedSearch;
|
|
11150
|
+
/**
|
|
11151
|
+
*
|
|
11152
|
+
* @type {any}
|
|
11153
|
+
* @memberof ShopActionSearchInputDTO
|
|
11154
|
+
*/
|
|
11155
|
+
greaterThan?: any;
|
|
11156
|
+
/**
|
|
11157
|
+
*
|
|
11158
|
+
* @type {any}
|
|
11159
|
+
* @memberof ShopActionSearchInputDTO
|
|
11160
|
+
*/
|
|
11161
|
+
lessThan?: any;
|
|
11162
|
+
/**
|
|
11163
|
+
*
|
|
11164
|
+
* @type {number}
|
|
11165
|
+
* @memberof ShopActionSearchInputDTO
|
|
11166
|
+
*/
|
|
11167
|
+
page?: number;
|
|
11168
|
+
/**
|
|
11169
|
+
*
|
|
11170
|
+
* @type {number}
|
|
11171
|
+
* @memberof ShopActionSearchInputDTO
|
|
11172
|
+
*/
|
|
11173
|
+
limit?: number;
|
|
11174
|
+
/**
|
|
11175
|
+
*
|
|
11176
|
+
* @type {string}
|
|
11177
|
+
* @memberof ShopActionSearchInputDTO
|
|
11178
|
+
*/
|
|
11179
|
+
sortBy?: string;
|
|
11180
|
+
/**
|
|
11181
|
+
*
|
|
11182
|
+
* @type {string}
|
|
11183
|
+
* @memberof ShopActionSearchInputDTO
|
|
11184
|
+
*/
|
|
11185
|
+
sortDirection?: ShopActionSearchInputDTOSortDirectionEnum;
|
|
11186
|
+
/**
|
|
11187
|
+
*
|
|
11188
|
+
* @type {Array<string>}
|
|
11189
|
+
* @memberof ShopActionSearchInputDTO
|
|
11190
|
+
*/
|
|
11191
|
+
extend?: Array<string>;
|
|
11192
|
+
}
|
|
11193
|
+
export declare const ShopActionSearchInputDTOSortDirectionEnum: {
|
|
11194
|
+
readonly Asc: "asc";
|
|
11195
|
+
readonly Desc: "desc";
|
|
11196
|
+
};
|
|
11197
|
+
export type ShopActionSearchInputDTOSortDirectionEnum = (typeof ShopActionSearchInputDTOSortDirectionEnum)[keyof typeof ShopActionSearchInputDTOSortDirectionEnum];
|
|
11198
|
+
/**
|
|
11199
|
+
*
|
|
11200
|
+
* @export
|
|
11201
|
+
* @interface ShopActionUpdateDTO
|
|
11202
|
+
*/
|
|
11203
|
+
export interface ShopActionUpdateDTO {
|
|
11204
|
+
/**
|
|
11205
|
+
*
|
|
11206
|
+
* @type {string}
|
|
11207
|
+
* @memberof ShopActionUpdateDTO
|
|
11208
|
+
*/
|
|
11209
|
+
name?: string;
|
|
11210
|
+
/**
|
|
11211
|
+
*
|
|
11212
|
+
* @type {string}
|
|
11213
|
+
* @memberof ShopActionUpdateDTO
|
|
11214
|
+
*/
|
|
11215
|
+
description?: string;
|
|
11216
|
+
/**
|
|
11217
|
+
*
|
|
11218
|
+
* @type {string}
|
|
11219
|
+
* @memberof ShopActionUpdateDTO
|
|
11220
|
+
*/
|
|
11221
|
+
function?: string;
|
|
11222
|
+
}
|
|
10910
11223
|
/**
|
|
10911
11224
|
*
|
|
10912
11225
|
* @export
|
|
@@ -11377,7 +11690,7 @@ export interface ShopListingCreateDTO {
|
|
|
11377
11690
|
* @type {Array<ShopListingItemMetaInputDTO>}
|
|
11378
11691
|
* @memberof ShopListingCreateDTO
|
|
11379
11692
|
*/
|
|
11380
|
-
items
|
|
11693
|
+
items?: Array<ShopListingItemMetaInputDTO>;
|
|
11381
11694
|
/**
|
|
11382
11695
|
*
|
|
11383
11696
|
* @type {number}
|
|
@@ -11396,6 +11709,12 @@ export interface ShopListingCreateDTO {
|
|
|
11396
11709
|
* @memberof ShopListingCreateDTO
|
|
11397
11710
|
*/
|
|
11398
11711
|
draft?: boolean;
|
|
11712
|
+
/**
|
|
11713
|
+
*
|
|
11714
|
+
* @type {string}
|
|
11715
|
+
* @memberof ShopListingCreateDTO
|
|
11716
|
+
*/
|
|
11717
|
+
shopActionId?: string;
|
|
11399
11718
|
/**
|
|
11400
11719
|
*
|
|
11401
11720
|
* @type {Array<string>}
|
|
@@ -11544,6 +11863,12 @@ export interface ShopListingOutputDTO {
|
|
|
11544
11863
|
* @memberof ShopListingOutputDTO
|
|
11545
11864
|
*/
|
|
11546
11865
|
draft: boolean;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof ShopListingOutputDTO
|
|
11870
|
+
*/
|
|
11871
|
+
shopActionId?: string;
|
|
11547
11872
|
/**
|
|
11548
11873
|
*
|
|
11549
11874
|
* @type {Array<ShopCategoryOutputDTO>}
|
|
@@ -11752,6 +12077,12 @@ export interface ShopListingUpdateDTO {
|
|
|
11752
12077
|
* @memberof ShopListingUpdateDTO
|
|
11753
12078
|
*/
|
|
11754
12079
|
draft?: boolean;
|
|
12080
|
+
/**
|
|
12081
|
+
*
|
|
12082
|
+
* @type {string}
|
|
12083
|
+
* @memberof ShopListingUpdateDTO
|
|
12084
|
+
*/
|
|
12085
|
+
shopActionId?: string;
|
|
11755
12086
|
/**
|
|
11756
12087
|
*
|
|
11757
12088
|
* @type {Array<string>}
|
|
@@ -12947,6 +13278,50 @@ export interface TakaroEventSettingsSet {
|
|
|
12947
13278
|
*/
|
|
12948
13279
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12949
13280
|
}
|
|
13281
|
+
/**
|
|
13282
|
+
*
|
|
13283
|
+
* @export
|
|
13284
|
+
* @interface TakaroEventShopActionDetails
|
|
13285
|
+
*/
|
|
13286
|
+
export interface TakaroEventShopActionDetails {
|
|
13287
|
+
/**
|
|
13288
|
+
*
|
|
13289
|
+
* @type {string}
|
|
13290
|
+
* @memberof TakaroEventShopActionDetails
|
|
13291
|
+
*/
|
|
13292
|
+
id: string;
|
|
13293
|
+
/**
|
|
13294
|
+
*
|
|
13295
|
+
* @type {string}
|
|
13296
|
+
* @memberof TakaroEventShopActionDetails
|
|
13297
|
+
*/
|
|
13298
|
+
name: string;
|
|
13299
|
+
}
|
|
13300
|
+
/**
|
|
13301
|
+
*
|
|
13302
|
+
* @export
|
|
13303
|
+
* @interface TakaroEventShopActionExecuted
|
|
13304
|
+
*/
|
|
13305
|
+
export interface TakaroEventShopActionExecuted {
|
|
13306
|
+
/**
|
|
13307
|
+
*
|
|
13308
|
+
* @type {TakaroEventFunctionResult}
|
|
13309
|
+
* @memberof TakaroEventShopActionExecuted
|
|
13310
|
+
*/
|
|
13311
|
+
result: TakaroEventFunctionResult;
|
|
13312
|
+
/**
|
|
13313
|
+
*
|
|
13314
|
+
* @type {TakaroEventShopActionDetails}
|
|
13315
|
+
* @memberof TakaroEventShopActionExecuted
|
|
13316
|
+
*/
|
|
13317
|
+
shopAction?: TakaroEventShopActionDetails;
|
|
13318
|
+
/**
|
|
13319
|
+
*
|
|
13320
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
13321
|
+
* @memberof TakaroEventShopActionExecuted
|
|
13322
|
+
*/
|
|
13323
|
+
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
13324
|
+
}
|
|
12950
13325
|
/**
|
|
12951
13326
|
*
|
|
12952
13327
|
* @export
|
|
@@ -19257,6 +19632,275 @@ export declare const SettingsControllerGetKeysEnum: {
|
|
|
19257
19632
|
readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
|
|
19258
19633
|
};
|
|
19259
19634
|
export type SettingsControllerGetKeysEnum = (typeof SettingsControllerGetKeysEnum)[keyof typeof SettingsControllerGetKeysEnum];
|
|
19635
|
+
/**
|
|
19636
|
+
* ShopActionApi - axios parameter creator
|
|
19637
|
+
* @export
|
|
19638
|
+
*/
|
|
19639
|
+
export declare const ShopActionApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
19640
|
+
/**
|
|
19641
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerCreate`
|
|
19642
|
+
* @summary Create
|
|
19643
|
+
* @param {ShopActionCreateDTO} [shopActionCreateDTO] ShopActionCreateDTO
|
|
19644
|
+
* @param {*} [options] Override http request option.
|
|
19645
|
+
* @throws {RequiredError}
|
|
19646
|
+
*/
|
|
19647
|
+
shopActionControllerCreate: (shopActionCreateDTO?: ShopActionCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19648
|
+
/**
|
|
19649
|
+
* Get available shop actions for a game server (from installed modules) Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetAvailable`
|
|
19650
|
+
* @summary Get available
|
|
19651
|
+
* @param {string} gameServerId
|
|
19652
|
+
* @param {*} [options] Override http request option.
|
|
19653
|
+
* @throws {RequiredError}
|
|
19654
|
+
*/
|
|
19655
|
+
shopActionControllerGetAvailable: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19656
|
+
/**
|
|
19657
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetExecutions`
|
|
19658
|
+
* @summary Get executions
|
|
19659
|
+
* @param {string} id
|
|
19660
|
+
* @param {any} [success]
|
|
19661
|
+
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
19662
|
+
* @param {*} [options] Override http request option.
|
|
19663
|
+
* @throws {RequiredError}
|
|
19664
|
+
*/
|
|
19665
|
+
shopActionControllerGetExecutions: (id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19666
|
+
/**
|
|
19667
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetOne`
|
|
19668
|
+
* @summary Get one
|
|
19669
|
+
* @param {string} id
|
|
19670
|
+
* @param {*} [options] Override http request option.
|
|
19671
|
+
* @throws {RequiredError}
|
|
19672
|
+
*/
|
|
19673
|
+
shopActionControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19674
|
+
/**
|
|
19675
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerRemove`
|
|
19676
|
+
* @summary Remove
|
|
19677
|
+
* @param {string} id
|
|
19678
|
+
* @param {*} [options] Override http request option.
|
|
19679
|
+
* @throws {RequiredError}
|
|
19680
|
+
*/
|
|
19681
|
+
shopActionControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19682
|
+
/**
|
|
19683
|
+
* Search shop actions Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerSearch`
|
|
19684
|
+
* @summary Search
|
|
19685
|
+
* @param {ShopActionSearchInputDTO} [shopActionSearchInputDTO] ShopActionSearchInputDTO
|
|
19686
|
+
* @param {*} [options] Override http request option.
|
|
19687
|
+
* @throws {RequiredError}
|
|
19688
|
+
*/
|
|
19689
|
+
shopActionControllerSearch: (shopActionSearchInputDTO?: ShopActionSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19690
|
+
/**
|
|
19691
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerUpdate`
|
|
19692
|
+
* @summary Update
|
|
19693
|
+
* @param {string} id
|
|
19694
|
+
* @param {ShopActionUpdateDTO} [shopActionUpdateDTO] ShopActionUpdateDTO
|
|
19695
|
+
* @param {*} [options] Override http request option.
|
|
19696
|
+
* @throws {RequiredError}
|
|
19697
|
+
*/
|
|
19698
|
+
shopActionControllerUpdate: (id: string, shopActionUpdateDTO?: ShopActionUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
19699
|
+
};
|
|
19700
|
+
/**
|
|
19701
|
+
* ShopActionApi - functional programming interface
|
|
19702
|
+
* @export
|
|
19703
|
+
*/
|
|
19704
|
+
export declare const ShopActionApiFp: (configuration?: Configuration) => {
|
|
19705
|
+
/**
|
|
19706
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerCreate`
|
|
19707
|
+
* @summary Create
|
|
19708
|
+
* @param {ShopActionCreateDTO} [shopActionCreateDTO] ShopActionCreateDTO
|
|
19709
|
+
* @param {*} [options] Override http request option.
|
|
19710
|
+
* @throws {RequiredError}
|
|
19711
|
+
*/
|
|
19712
|
+
shopActionControllerCreate(shopActionCreateDTO?: ShopActionCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopActionOutputDTOAPI>>;
|
|
19713
|
+
/**
|
|
19714
|
+
* Get available shop actions for a game server (from installed modules) Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetAvailable`
|
|
19715
|
+
* @summary Get available
|
|
19716
|
+
* @param {string} gameServerId
|
|
19717
|
+
* @param {*} [options] Override http request option.
|
|
19718
|
+
* @throws {RequiredError}
|
|
19719
|
+
*/
|
|
19720
|
+
shopActionControllerGetAvailable(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopActionOutputArrayDTOAPI>>;
|
|
19721
|
+
/**
|
|
19722
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetExecutions`
|
|
19723
|
+
* @summary Get executions
|
|
19724
|
+
* @param {string} id
|
|
19725
|
+
* @param {any} [success]
|
|
19726
|
+
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
19727
|
+
* @param {*} [options] Override http request option.
|
|
19728
|
+
* @throws {RequiredError}
|
|
19729
|
+
*/
|
|
19730
|
+
shopActionControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputArrayDTOAPI>>;
|
|
19731
|
+
/**
|
|
19732
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetOne`
|
|
19733
|
+
* @summary Get one
|
|
19734
|
+
* @param {string} id
|
|
19735
|
+
* @param {*} [options] Override http request option.
|
|
19736
|
+
* @throws {RequiredError}
|
|
19737
|
+
*/
|
|
19738
|
+
shopActionControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopActionOutputDTOAPI>>;
|
|
19739
|
+
/**
|
|
19740
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerRemove`
|
|
19741
|
+
* @summary Remove
|
|
19742
|
+
* @param {string} id
|
|
19743
|
+
* @param {*} [options] Override http request option.
|
|
19744
|
+
* @throws {RequiredError}
|
|
19745
|
+
*/
|
|
19746
|
+
shopActionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
19747
|
+
/**
|
|
19748
|
+
* Search shop actions Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerSearch`
|
|
19749
|
+
* @summary Search
|
|
19750
|
+
* @param {ShopActionSearchInputDTO} [shopActionSearchInputDTO] ShopActionSearchInputDTO
|
|
19751
|
+
* @param {*} [options] Override http request option.
|
|
19752
|
+
* @throws {RequiredError}
|
|
19753
|
+
*/
|
|
19754
|
+
shopActionControllerSearch(shopActionSearchInputDTO?: ShopActionSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopActionOutputArrayDTOAPI>>;
|
|
19755
|
+
/**
|
|
19756
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerUpdate`
|
|
19757
|
+
* @summary Update
|
|
19758
|
+
* @param {string} id
|
|
19759
|
+
* @param {ShopActionUpdateDTO} [shopActionUpdateDTO] ShopActionUpdateDTO
|
|
19760
|
+
* @param {*} [options] Override http request option.
|
|
19761
|
+
* @throws {RequiredError}
|
|
19762
|
+
*/
|
|
19763
|
+
shopActionControllerUpdate(id: string, shopActionUpdateDTO?: ShopActionUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopActionOutputDTOAPI>>;
|
|
19764
|
+
};
|
|
19765
|
+
/**
|
|
19766
|
+
* ShopActionApi - factory interface
|
|
19767
|
+
* @export
|
|
19768
|
+
*/
|
|
19769
|
+
export declare const ShopActionApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
19770
|
+
/**
|
|
19771
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerCreate`
|
|
19772
|
+
* @summary Create
|
|
19773
|
+
* @param {ShopActionCreateDTO} [shopActionCreateDTO] ShopActionCreateDTO
|
|
19774
|
+
* @param {*} [options] Override http request option.
|
|
19775
|
+
* @throws {RequiredError}
|
|
19776
|
+
*/
|
|
19777
|
+
shopActionControllerCreate(shopActionCreateDTO?: ShopActionCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopActionOutputDTOAPI>;
|
|
19778
|
+
/**
|
|
19779
|
+
* Get available shop actions for a game server (from installed modules) Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetAvailable`
|
|
19780
|
+
* @summary Get available
|
|
19781
|
+
* @param {string} gameServerId
|
|
19782
|
+
* @param {*} [options] Override http request option.
|
|
19783
|
+
* @throws {RequiredError}
|
|
19784
|
+
*/
|
|
19785
|
+
shopActionControllerGetAvailable(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopActionOutputArrayDTOAPI>;
|
|
19786
|
+
/**
|
|
19787
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetExecutions`
|
|
19788
|
+
* @summary Get executions
|
|
19789
|
+
* @param {string} id
|
|
19790
|
+
* @param {any} [success]
|
|
19791
|
+
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
19792
|
+
* @param {*} [options] Override http request option.
|
|
19793
|
+
* @throws {RequiredError}
|
|
19794
|
+
*/
|
|
19795
|
+
shopActionControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
|
|
19796
|
+
/**
|
|
19797
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetOne`
|
|
19798
|
+
* @summary Get one
|
|
19799
|
+
* @param {string} id
|
|
19800
|
+
* @param {*} [options] Override http request option.
|
|
19801
|
+
* @throws {RequiredError}
|
|
19802
|
+
*/
|
|
19803
|
+
shopActionControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ShopActionOutputDTOAPI>;
|
|
19804
|
+
/**
|
|
19805
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerRemove`
|
|
19806
|
+
* @summary Remove
|
|
19807
|
+
* @param {string} id
|
|
19808
|
+
* @param {*} [options] Override http request option.
|
|
19809
|
+
* @throws {RequiredError}
|
|
19810
|
+
*/
|
|
19811
|
+
shopActionControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
19812
|
+
/**
|
|
19813
|
+
* Search shop actions Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerSearch`
|
|
19814
|
+
* @summary Search
|
|
19815
|
+
* @param {ShopActionSearchInputDTO} [shopActionSearchInputDTO] ShopActionSearchInputDTO
|
|
19816
|
+
* @param {*} [options] Override http request option.
|
|
19817
|
+
* @throws {RequiredError}
|
|
19818
|
+
*/
|
|
19819
|
+
shopActionControllerSearch(shopActionSearchInputDTO?: ShopActionSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopActionOutputArrayDTOAPI>;
|
|
19820
|
+
/**
|
|
19821
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerUpdate`
|
|
19822
|
+
* @summary Update
|
|
19823
|
+
* @param {string} id
|
|
19824
|
+
* @param {ShopActionUpdateDTO} [shopActionUpdateDTO] ShopActionUpdateDTO
|
|
19825
|
+
* @param {*} [options] Override http request option.
|
|
19826
|
+
* @throws {RequiredError}
|
|
19827
|
+
*/
|
|
19828
|
+
shopActionControllerUpdate(id: string, shopActionUpdateDTO?: ShopActionUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShopActionOutputDTOAPI>;
|
|
19829
|
+
};
|
|
19830
|
+
/**
|
|
19831
|
+
* ShopActionApi - object-oriented interface
|
|
19832
|
+
* @export
|
|
19833
|
+
* @class ShopActionApi
|
|
19834
|
+
* @extends {BaseAPI}
|
|
19835
|
+
*/
|
|
19836
|
+
export declare class ShopActionApi extends BaseAPI {
|
|
19837
|
+
/**
|
|
19838
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerCreate`
|
|
19839
|
+
* @summary Create
|
|
19840
|
+
* @param {ShopActionCreateDTO} [shopActionCreateDTO] ShopActionCreateDTO
|
|
19841
|
+
* @param {*} [options] Override http request option.
|
|
19842
|
+
* @throws {RequiredError}
|
|
19843
|
+
* @memberof ShopActionApi
|
|
19844
|
+
*/
|
|
19845
|
+
shopActionControllerCreate(shopActionCreateDTO?: ShopActionCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopActionOutputDTOAPI, any>>;
|
|
19846
|
+
/**
|
|
19847
|
+
* Get available shop actions for a game server (from installed modules) Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetAvailable`
|
|
19848
|
+
* @summary Get available
|
|
19849
|
+
* @param {string} gameServerId
|
|
19850
|
+
* @param {*} [options] Override http request option.
|
|
19851
|
+
* @throws {RequiredError}
|
|
19852
|
+
* @memberof ShopActionApi
|
|
19853
|
+
*/
|
|
19854
|
+
shopActionControllerGetAvailable(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopActionOutputArrayDTOAPI, any>>;
|
|
19855
|
+
/**
|
|
19856
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetExecutions`
|
|
19857
|
+
* @summary Get executions
|
|
19858
|
+
* @param {string} id
|
|
19859
|
+
* @param {any} [success]
|
|
19860
|
+
* @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
|
|
19861
|
+
* @param {*} [options] Override http request option.
|
|
19862
|
+
* @throws {RequiredError}
|
|
19863
|
+
* @memberof ShopActionApi
|
|
19864
|
+
*/
|
|
19865
|
+
shopActionControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputArrayDTOAPI, any>>;
|
|
19866
|
+
/**
|
|
19867
|
+
* Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerGetOne`
|
|
19868
|
+
* @summary Get one
|
|
19869
|
+
* @param {string} id
|
|
19870
|
+
* @param {*} [options] Override http request option.
|
|
19871
|
+
* @throws {RequiredError}
|
|
19872
|
+
* @memberof ShopActionApi
|
|
19873
|
+
*/
|
|
19874
|
+
shopActionControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopActionOutputDTOAPI, any>>;
|
|
19875
|
+
/**
|
|
19876
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerRemove`
|
|
19877
|
+
* @summary Remove
|
|
19878
|
+
* @param {string} id
|
|
19879
|
+
* @param {*} [options] Override http request option.
|
|
19880
|
+
* @throws {RequiredError}
|
|
19881
|
+
* @memberof ShopActionApi
|
|
19882
|
+
*/
|
|
19883
|
+
shopActionControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
19884
|
+
/**
|
|
19885
|
+
* Search shop actions Required permissions: `READ_MODULES`<br> OperationId: `ShopActionControllerSearch`
|
|
19886
|
+
* @summary Search
|
|
19887
|
+
* @param {ShopActionSearchInputDTO} [shopActionSearchInputDTO] ShopActionSearchInputDTO
|
|
19888
|
+
* @param {*} [options] Override http request option.
|
|
19889
|
+
* @throws {RequiredError}
|
|
19890
|
+
* @memberof ShopActionApi
|
|
19891
|
+
*/
|
|
19892
|
+
shopActionControllerSearch(shopActionSearchInputDTO?: ShopActionSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopActionOutputArrayDTOAPI, any>>;
|
|
19893
|
+
/**
|
|
19894
|
+
* Required permissions: `MANAGE_MODULES`<br> OperationId: `ShopActionControllerUpdate`
|
|
19895
|
+
* @summary Update
|
|
19896
|
+
* @param {string} id
|
|
19897
|
+
* @param {ShopActionUpdateDTO} [shopActionUpdateDTO] ShopActionUpdateDTO
|
|
19898
|
+
* @param {*} [options] Override http request option.
|
|
19899
|
+
* @throws {RequiredError}
|
|
19900
|
+
* @memberof ShopActionApi
|
|
19901
|
+
*/
|
|
19902
|
+
shopActionControllerUpdate(id: string, shopActionUpdateDTO?: ShopActionUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopActionOutputDTOAPI, any>>;
|
|
19903
|
+
}
|
|
19260
19904
|
/**
|
|
19261
19905
|
* ShopCategoryApi - axios parameter creator
|
|
19262
19906
|
* @export
|
|
@@ -20375,6 +21019,7 @@ export declare const StatsControllerGetEventsCountEventNameEnum: {
|
|
|
20375
21019
|
readonly PlayerBanned: "player-banned";
|
|
20376
21020
|
readonly PlayerUnbanned: "player-unbanned";
|
|
20377
21021
|
readonly PlayerDeleted: "player-deleted";
|
|
21022
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
20378
21023
|
readonly PlayerConnected: "player-connected";
|
|
20379
21024
|
readonly PlayerDisconnected: "player-disconnected";
|
|
20380
21025
|
readonly ChatMessage: "chat-message";
|