@takaro/apiclient 0.0.0-next.4cee293 → 0.0.0-next.4f62301
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 +656 -11
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +552 -12
- 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.d.ts.map +1 -1
- package/dist/generated/configuration.js +3 -2
- package/dist/generated/configuration.js.map +1 -1
- package/dist/generated/index.d.ts +1 -1
- package/dist/generated/index.js +1 -1
- package/dist/lib/baseClient.d.ts +1 -0
- package/dist/lib/baseClient.d.ts.map +1 -1
- package/dist/lib/baseClient.js +3 -0
- package/dist/lib/baseClient.js.map +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 +6 -2
- package/src/generated/api.ts +1114 -16
- package/src/generated/base.ts +1 -1
- package/src/generated/common.ts +1 -1
- package/src/generated/configuration.ts +3 -2
- package/src/generated/index.ts +1 -1
- package/src/lib/baseClient.ts +4 -0
- package/src/lib/client.ts +11 -0
- package/tsconfig.build.json +1 -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
|
|
@@ -1988,7 +1988,6 @@ export declare const DomainCreateInputDTOStateEnum: {
|
|
|
1988
1988
|
readonly Active: "ACTIVE";
|
|
1989
1989
|
readonly Disabled: "DISABLED";
|
|
1990
1990
|
readonly Maintenance: "MAINTENANCE";
|
|
1991
|
-
readonly Deleted: "DELETED";
|
|
1992
1991
|
};
|
|
1993
1992
|
export type DomainCreateInputDTOStateEnum = (typeof DomainCreateInputDTOStateEnum)[keyof typeof DomainCreateInputDTOStateEnum];
|
|
1994
1993
|
/**
|
|
@@ -2161,7 +2160,6 @@ export declare const DomainOutputDTOStateEnum: {
|
|
|
2161
2160
|
readonly Active: "ACTIVE";
|
|
2162
2161
|
readonly Disabled: "DISABLED";
|
|
2163
2162
|
readonly Maintenance: "MAINTENANCE";
|
|
2164
|
-
readonly Deleted: "DELETED";
|
|
2165
2163
|
};
|
|
2166
2164
|
export type DomainOutputDTOStateEnum = (typeof DomainOutputDTOStateEnum)[keyof typeof DomainOutputDTOStateEnum];
|
|
2167
2165
|
/**
|
|
@@ -2218,7 +2216,6 @@ export declare const DomainSearchInputAllowedFiltersStateEnum: {
|
|
|
2218
2216
|
readonly Active: "ACTIVE";
|
|
2219
2217
|
readonly Disabled: "DISABLED";
|
|
2220
2218
|
readonly Maintenance: "MAINTENANCE";
|
|
2221
|
-
readonly Deleted: "DELETED";
|
|
2222
2219
|
};
|
|
2223
2220
|
export type DomainSearchInputAllowedFiltersStateEnum = (typeof DomainSearchInputAllowedFiltersStateEnum)[keyof typeof DomainSearchInputAllowedFiltersStateEnum];
|
|
2224
2221
|
/**
|
|
@@ -2365,7 +2362,6 @@ export declare const DomainUpdateInputDTOStateEnum: {
|
|
|
2365
2362
|
readonly Active: "ACTIVE";
|
|
2366
2363
|
readonly Disabled: "DISABLED";
|
|
2367
2364
|
readonly Maintenance: "MAINTENANCE";
|
|
2368
|
-
readonly Deleted: "DELETED";
|
|
2369
2365
|
};
|
|
2370
2366
|
export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
|
|
2371
2367
|
/**
|
|
@@ -2853,6 +2849,7 @@ export declare const EventCreateDTOEventNameEnum: {
|
|
|
2853
2849
|
readonly PlayerBanned: "player-banned";
|
|
2854
2850
|
readonly PlayerUnbanned: "player-unbanned";
|
|
2855
2851
|
readonly PlayerDeleted: "player-deleted";
|
|
2852
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
2856
2853
|
readonly PlayerConnected: "player-connected";
|
|
2857
2854
|
readonly PlayerDisconnected: "player-disconnected";
|
|
2858
2855
|
readonly ChatMessage: "chat-message";
|
|
@@ -3124,6 +3121,7 @@ export declare const EventOutputDTOEventNameEnum: {
|
|
|
3124
3121
|
readonly PlayerBanned: "player-banned";
|
|
3125
3122
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3126
3123
|
readonly PlayerDeleted: "player-deleted";
|
|
3124
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3127
3125
|
readonly PlayerConnected: "player-connected";
|
|
3128
3126
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3129
3127
|
readonly ChatMessage: "chat-message";
|
|
@@ -3135,7 +3133,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
|
|
|
3135
3133
|
* @type EventOutputDTOMeta
|
|
3136
3134
|
* @export
|
|
3137
3135
|
*/
|
|
3138
|
-
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;
|
|
3139
3137
|
/**
|
|
3140
3138
|
*
|
|
3141
3139
|
* @export
|
|
@@ -3308,6 +3306,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
|
|
|
3308
3306
|
readonly PlayerBanned: "player-banned";
|
|
3309
3307
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3310
3308
|
readonly PlayerDeleted: "player-deleted";
|
|
3309
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3311
3310
|
readonly PlayerConnected: "player-connected";
|
|
3312
3311
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3313
3312
|
readonly ChatMessage: "chat-message";
|
|
@@ -3485,6 +3484,7 @@ export declare const EventsCountInputDTOEventNameEnum: {
|
|
|
3485
3484
|
readonly PlayerBanned: "player-banned";
|
|
3486
3485
|
readonly PlayerUnbanned: "player-unbanned";
|
|
3487
3486
|
readonly PlayerDeleted: "player-deleted";
|
|
3487
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
3488
3488
|
readonly PlayerConnected: "player-connected";
|
|
3489
3489
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3490
3490
|
readonly ChatMessage: "chat-message";
|
|
@@ -4702,6 +4702,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
4702
4702
|
readonly PlayerBanned: "player-banned";
|
|
4703
4703
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4704
4704
|
readonly PlayerDeleted: "player-deleted";
|
|
4705
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4705
4706
|
};
|
|
4706
4707
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
4707
4708
|
/**
|
|
@@ -4858,6 +4859,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
4858
4859
|
readonly PlayerBanned: "player-banned";
|
|
4859
4860
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4860
4861
|
readonly PlayerDeleted: "player-deleted";
|
|
4862
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4861
4863
|
};
|
|
4862
4864
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
4863
4865
|
/**
|
|
@@ -4959,6 +4961,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
4959
4961
|
readonly PlayerBanned: "player-banned";
|
|
4960
4962
|
readonly PlayerUnbanned: "player-unbanned";
|
|
4961
4963
|
readonly PlayerDeleted: "player-deleted";
|
|
4964
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
4962
4965
|
};
|
|
4963
4966
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
4964
4967
|
/**
|
|
@@ -5125,6 +5128,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
5125
5128
|
readonly PlayerBanned: "player-banned";
|
|
5126
5129
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5127
5130
|
readonly PlayerDeleted: "player-deleted";
|
|
5131
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5128
5132
|
};
|
|
5129
5133
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
5130
5134
|
/**
|
|
@@ -5207,6 +5211,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
5207
5211
|
readonly PlayerBanned: "player-banned";
|
|
5208
5212
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5209
5213
|
readonly PlayerDeleted: "player-deleted";
|
|
5214
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5210
5215
|
};
|
|
5211
5216
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
5212
5217
|
/**
|
|
@@ -5529,6 +5534,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
5529
5534
|
readonly PlayerBanned: "player-banned";
|
|
5530
5535
|
readonly PlayerUnbanned: "player-unbanned";
|
|
5531
5536
|
readonly PlayerDeleted: "player-deleted";
|
|
5537
|
+
readonly ShopActionExecuted: "shop-action-executed";
|
|
5532
5538
|
};
|
|
5533
5539
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
5534
5540
|
/**
|
|
@@ -5717,6 +5723,31 @@ export interface IPosition {
|
|
|
5717
5723
|
*/
|
|
5718
5724
|
dimension?: string;
|
|
5719
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
|
+
}
|
|
5720
5751
|
/**
|
|
5721
5752
|
*
|
|
5722
5753
|
* @export
|
|
@@ -7450,6 +7481,12 @@ export interface ModuleTransferVersionDTO {
|
|
|
7450
7481
|
* @memberof ModuleTransferVersionDTO
|
|
7451
7482
|
*/
|
|
7452
7483
|
permissions?: Array<IPermission>;
|
|
7484
|
+
/**
|
|
7485
|
+
*
|
|
7486
|
+
* @type {Array<IShopAction>}
|
|
7487
|
+
* @memberof ModuleTransferVersionDTO
|
|
7488
|
+
*/
|
|
7489
|
+
shopActions?: Array<IShopAction>;
|
|
7453
7490
|
}
|
|
7454
7491
|
/**
|
|
7455
7492
|
*
|
|
@@ -7598,6 +7635,12 @@ export interface ModuleVersionOutputDTO {
|
|
|
7598
7635
|
* @memberof ModuleVersionOutputDTO
|
|
7599
7636
|
*/
|
|
7600
7637
|
permissions: Array<PermissionOutputDTO>;
|
|
7638
|
+
/**
|
|
7639
|
+
*
|
|
7640
|
+
* @type {Array<ShopActionOutputDTO>}
|
|
7641
|
+
* @memberof ModuleVersionOutputDTO
|
|
7642
|
+
*/
|
|
7643
|
+
shopActions: Array<ShopActionOutputDTO>;
|
|
7601
7644
|
/**
|
|
7602
7645
|
*
|
|
7603
7646
|
* @type {string}
|
|
@@ -8007,6 +8050,19 @@ export interface PaginationParamsWithGameServer {
|
|
|
8007
8050
|
*/
|
|
8008
8051
|
limit?: number;
|
|
8009
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
|
+
}
|
|
8010
8066
|
/**
|
|
8011
8067
|
*
|
|
8012
8068
|
* @export
|
|
@@ -10911,6 +10967,259 @@ export interface SettingsSetDTO {
|
|
|
10911
10967
|
*/
|
|
10912
10968
|
value: any;
|
|
10913
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
|
+
}
|
|
10914
11223
|
/**
|
|
10915
11224
|
*
|
|
10916
11225
|
* @export
|
|
@@ -11381,7 +11690,7 @@ export interface ShopListingCreateDTO {
|
|
|
11381
11690
|
* @type {Array<ShopListingItemMetaInputDTO>}
|
|
11382
11691
|
* @memberof ShopListingCreateDTO
|
|
11383
11692
|
*/
|
|
11384
|
-
items
|
|
11693
|
+
items?: Array<ShopListingItemMetaInputDTO>;
|
|
11385
11694
|
/**
|
|
11386
11695
|
*
|
|
11387
11696
|
* @type {number}
|
|
@@ -11400,6 +11709,12 @@ export interface ShopListingCreateDTO {
|
|
|
11400
11709
|
* @memberof ShopListingCreateDTO
|
|
11401
11710
|
*/
|
|
11402
11711
|
draft?: boolean;
|
|
11712
|
+
/**
|
|
11713
|
+
*
|
|
11714
|
+
* @type {string}
|
|
11715
|
+
* @memberof ShopListingCreateDTO
|
|
11716
|
+
*/
|
|
11717
|
+
shopActionId?: string;
|
|
11403
11718
|
/**
|
|
11404
11719
|
*
|
|
11405
11720
|
* @type {Array<string>}
|
|
@@ -11548,6 +11863,12 @@ export interface ShopListingOutputDTO {
|
|
|
11548
11863
|
* @memberof ShopListingOutputDTO
|
|
11549
11864
|
*/
|
|
11550
11865
|
draft: boolean;
|
|
11866
|
+
/**
|
|
11867
|
+
*
|
|
11868
|
+
* @type {string}
|
|
11869
|
+
* @memberof ShopListingOutputDTO
|
|
11870
|
+
*/
|
|
11871
|
+
shopActionId?: string;
|
|
11551
11872
|
/**
|
|
11552
11873
|
*
|
|
11553
11874
|
* @type {Array<ShopCategoryOutputDTO>}
|
|
@@ -11756,6 +12077,12 @@ export interface ShopListingUpdateDTO {
|
|
|
11756
12077
|
* @memberof ShopListingUpdateDTO
|
|
11757
12078
|
*/
|
|
11758
12079
|
draft?: boolean;
|
|
12080
|
+
/**
|
|
12081
|
+
*
|
|
12082
|
+
* @type {string}
|
|
12083
|
+
* @memberof ShopListingUpdateDTO
|
|
12084
|
+
*/
|
|
12085
|
+
shopActionId?: string;
|
|
11759
12086
|
/**
|
|
11760
12087
|
*
|
|
11761
12088
|
* @type {Array<string>}
|
|
@@ -12951,6 +13278,50 @@ export interface TakaroEventSettingsSet {
|
|
|
12951
13278
|
*/
|
|
12952
13279
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
12953
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
|
+
}
|
|
12954
13325
|
/**
|
|
12955
13326
|
*
|
|
12956
13327
|
* @export
|
|
@@ -15247,10 +15618,11 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15247
15618
|
* <br> OperationId: `DomainControllerRemove`
|
|
15248
15619
|
* @summary Remove
|
|
15249
15620
|
* @param {string} id
|
|
15621
|
+
* @param {any} [hardDelete]
|
|
15250
15622
|
* @param {*} [options] Override http request option.
|
|
15251
15623
|
* @throws {RequiredError}
|
|
15252
15624
|
*/
|
|
15253
|
-
domainControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15625
|
+
domainControllerRemove: (id: string, hardDelete?: any, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15254
15626
|
/**
|
|
15255
15627
|
* <br> OperationId: `DomainControllerResolveRegistrationToken`
|
|
15256
15628
|
* @summary Resolve registration token
|
|
@@ -15310,10 +15682,11 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
15310
15682
|
* <br> OperationId: `DomainControllerRemove`
|
|
15311
15683
|
* @summary Remove
|
|
15312
15684
|
* @param {string} id
|
|
15685
|
+
* @param {any} [hardDelete]
|
|
15313
15686
|
* @param {*} [options] Override http request option.
|
|
15314
15687
|
* @throws {RequiredError}
|
|
15315
15688
|
*/
|
|
15316
|
-
domainControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
15689
|
+
domainControllerRemove(id: string, hardDelete?: any, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
15317
15690
|
/**
|
|
15318
15691
|
* <br> OperationId: `DomainControllerResolveRegistrationToken`
|
|
15319
15692
|
* @summary Resolve registration token
|
|
@@ -15373,10 +15746,11 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
15373
15746
|
* <br> OperationId: `DomainControllerRemove`
|
|
15374
15747
|
* @summary Remove
|
|
15375
15748
|
* @param {string} id
|
|
15749
|
+
* @param {any} [hardDelete]
|
|
15376
15750
|
* @param {*} [options] Override http request option.
|
|
15377
15751
|
* @throws {RequiredError}
|
|
15378
15752
|
*/
|
|
15379
|
-
domainControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
15753
|
+
domainControllerRemove(id: string, hardDelete?: any, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
15380
15754
|
/**
|
|
15381
15755
|
* <br> OperationId: `DomainControllerResolveRegistrationToken`
|
|
15382
15756
|
* @summary Resolve registration token
|
|
@@ -15441,11 +15815,12 @@ export declare class DomainApi extends BaseAPI {
|
|
|
15441
15815
|
* <br> OperationId: `DomainControllerRemove`
|
|
15442
15816
|
* @summary Remove
|
|
15443
15817
|
* @param {string} id
|
|
15818
|
+
* @param {any} [hardDelete]
|
|
15444
15819
|
* @param {*} [options] Override http request option.
|
|
15445
15820
|
* @throws {RequiredError}
|
|
15446
15821
|
* @memberof DomainApi
|
|
15447
15822
|
*/
|
|
15448
|
-
domainControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
15823
|
+
domainControllerRemove(id: string, hardDelete?: any, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
15449
15824
|
/**
|
|
15450
15825
|
* <br> OperationId: `DomainControllerResolveRegistrationToken`
|
|
15451
15826
|
* @summary Resolve registration token
|
|
@@ -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";
|