@takaro/apiclient 0.0.0-dev.a282bfc → 0.0.0-dev.a453433
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 +350 -20
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +159 -16
- package/dist/generated/api.js.map +1 -1
- package/generated.manifest.json +2 -2
- package/openapi.json +939 -628
- package/package.json +1 -1
- package/src/generated/api.ts +487 -20
package/dist/generated/api.d.ts
CHANGED
|
@@ -746,6 +746,88 @@ export interface BoundingBoxSearchInputDTO {
|
|
|
746
746
|
*/
|
|
747
747
|
gameserverId: string;
|
|
748
748
|
}
|
|
749
|
+
/**
|
|
750
|
+
*
|
|
751
|
+
* @export
|
|
752
|
+
* @interface BulkActionFailureDTO
|
|
753
|
+
*/
|
|
754
|
+
export interface BulkActionFailureDTO {
|
|
755
|
+
/**
|
|
756
|
+
*
|
|
757
|
+
* @type {string}
|
|
758
|
+
* @memberof BulkActionFailureDTO
|
|
759
|
+
*/
|
|
760
|
+
id: string;
|
|
761
|
+
/**
|
|
762
|
+
*
|
|
763
|
+
* @type {string}
|
|
764
|
+
* @memberof BulkActionFailureDTO
|
|
765
|
+
*/
|
|
766
|
+
name: string;
|
|
767
|
+
/**
|
|
768
|
+
*
|
|
769
|
+
* @type {string}
|
|
770
|
+
* @memberof BulkActionFailureDTO
|
|
771
|
+
*/
|
|
772
|
+
reason: string;
|
|
773
|
+
}
|
|
774
|
+
/**
|
|
775
|
+
*
|
|
776
|
+
* @export
|
|
777
|
+
* @interface BulkActionResultDTO
|
|
778
|
+
*/
|
|
779
|
+
export interface BulkActionResultDTO {
|
|
780
|
+
/**
|
|
781
|
+
*
|
|
782
|
+
* @type {number}
|
|
783
|
+
* @memberof BulkActionResultDTO
|
|
784
|
+
*/
|
|
785
|
+
succeeded: number;
|
|
786
|
+
/**
|
|
787
|
+
*
|
|
788
|
+
* @type {Array<BulkActionFailureDTO>}
|
|
789
|
+
* @memberof BulkActionResultDTO
|
|
790
|
+
*/
|
|
791
|
+
failed: Array<BulkActionFailureDTO>;
|
|
792
|
+
}
|
|
793
|
+
/**
|
|
794
|
+
*
|
|
795
|
+
* @export
|
|
796
|
+
* @interface BulkActionResultDTOAPI
|
|
797
|
+
*/
|
|
798
|
+
export interface BulkActionResultDTOAPI {
|
|
799
|
+
/**
|
|
800
|
+
*
|
|
801
|
+
* @type {BulkActionResultDTO}
|
|
802
|
+
* @memberof BulkActionResultDTOAPI
|
|
803
|
+
*/
|
|
804
|
+
data: BulkActionResultDTO;
|
|
805
|
+
/**
|
|
806
|
+
*
|
|
807
|
+
* @type {MetadataOutput}
|
|
808
|
+
* @memberof BulkActionResultDTOAPI
|
|
809
|
+
*/
|
|
810
|
+
meta: MetadataOutput;
|
|
811
|
+
}
|
|
812
|
+
/**
|
|
813
|
+
*
|
|
814
|
+
* @export
|
|
815
|
+
* @interface BulkTargetDTO
|
|
816
|
+
*/
|
|
817
|
+
export interface BulkTargetDTO {
|
|
818
|
+
/**
|
|
819
|
+
*
|
|
820
|
+
* @type {Array<string>}
|
|
821
|
+
* @memberof BulkTargetDTO
|
|
822
|
+
*/
|
|
823
|
+
ids?: Array<string>;
|
|
824
|
+
/**
|
|
825
|
+
*
|
|
826
|
+
* @type {Array<string>}
|
|
827
|
+
* @memberof BulkTargetDTO
|
|
828
|
+
*/
|
|
829
|
+
excludedIds?: Array<string>;
|
|
830
|
+
}
|
|
749
831
|
/**
|
|
750
832
|
*
|
|
751
833
|
* @export
|
|
@@ -10147,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
10147
10229
|
* @type {Array<string>}
|
|
10148
10230
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10149
10231
|
*/
|
|
10150
|
-
playerIds
|
|
10232
|
+
playerIds?: Array<string>;
|
|
10233
|
+
/**
|
|
10234
|
+
*
|
|
10235
|
+
* @type {PlayerSearchInputDTO}
|
|
10236
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10237
|
+
*/
|
|
10238
|
+
query?: PlayerSearchInputDTO;
|
|
10151
10239
|
/**
|
|
10152
10240
|
*
|
|
10153
10241
|
* @type {string}
|
|
@@ -10160,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
10160
10248
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10161
10249
|
*/
|
|
10162
10250
|
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
10251
|
+
/**
|
|
10252
|
+
*
|
|
10253
|
+
* @type {Array<string>}
|
|
10254
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10255
|
+
*/
|
|
10256
|
+
ids?: Array<string>;
|
|
10257
|
+
/**
|
|
10258
|
+
*
|
|
10259
|
+
* @type {Array<string>}
|
|
10260
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10261
|
+
*/
|
|
10262
|
+
excludedIds?: Array<string>;
|
|
10163
10263
|
}
|
|
10164
10264
|
/**
|
|
10165
10265
|
*
|
|
@@ -10235,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
|
|
|
10235
10335
|
* @type {Array<string>}
|
|
10236
10336
|
* @memberof PlayerBulkDeleteInputDTO
|
|
10237
10337
|
*/
|
|
10238
|
-
playerIds
|
|
10338
|
+
playerIds?: Array<string>;
|
|
10339
|
+
/**
|
|
10340
|
+
*
|
|
10341
|
+
* @type {PlayerSearchInputDTO}
|
|
10342
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10343
|
+
*/
|
|
10344
|
+
query?: PlayerSearchInputDTO;
|
|
10345
|
+
/**
|
|
10346
|
+
*
|
|
10347
|
+
* @type {Array<string>}
|
|
10348
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10349
|
+
*/
|
|
10350
|
+
ids?: Array<string>;
|
|
10351
|
+
/**
|
|
10352
|
+
*
|
|
10353
|
+
* @type {Array<string>}
|
|
10354
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10355
|
+
*/
|
|
10356
|
+
excludedIds?: Array<string>;
|
|
10239
10357
|
}
|
|
10240
10358
|
/**
|
|
10241
10359
|
*
|
|
@@ -10807,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
|
|
|
10807
10925
|
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10808
10926
|
*/
|
|
10809
10927
|
playtimeSeconds?: number;
|
|
10928
|
+
/**
|
|
10929
|
+
*
|
|
10930
|
+
* @type {number}
|
|
10931
|
+
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10932
|
+
*/
|
|
10933
|
+
currency?: number;
|
|
10810
10934
|
/**
|
|
10811
10935
|
*
|
|
10812
10936
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -11728,6 +11852,24 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
11728
11852
|
* @memberof PlayerSearchInputAllowedFilters
|
|
11729
11853
|
*/
|
|
11730
11854
|
roleId?: Array<string>;
|
|
11855
|
+
/**
|
|
11856
|
+
*
|
|
11857
|
+
* @type {Array<boolean>}
|
|
11858
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11859
|
+
*/
|
|
11860
|
+
online?: Array<boolean>;
|
|
11861
|
+
/**
|
|
11862
|
+
*
|
|
11863
|
+
* @type {Array<string>}
|
|
11864
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11865
|
+
*/
|
|
11866
|
+
roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
|
|
11867
|
+
/**
|
|
11868
|
+
*
|
|
11869
|
+
* @type {Array<string>}
|
|
11870
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11871
|
+
*/
|
|
11872
|
+
roleAssignmentGameServerId?: Array<string>;
|
|
11731
11873
|
/**
|
|
11732
11874
|
*
|
|
11733
11875
|
* @type {Array<string>}
|
|
@@ -11735,6 +11877,11 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
11735
11877
|
*/
|
|
11736
11878
|
id?: Array<string>;
|
|
11737
11879
|
}
|
|
11880
|
+
export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
|
|
11881
|
+
readonly Global: "global";
|
|
11882
|
+
readonly GameServer: "gameServer";
|
|
11883
|
+
};
|
|
11884
|
+
export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
|
|
11738
11885
|
/**
|
|
11739
11886
|
*
|
|
11740
11887
|
* @export
|
|
@@ -11980,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
|
|
|
11980
12127
|
* @type {Array<string>}
|
|
11981
12128
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11982
12129
|
*/
|
|
11983
|
-
playerIds
|
|
12130
|
+
playerIds?: Array<string>;
|
|
12131
|
+
/**
|
|
12132
|
+
*
|
|
12133
|
+
* @type {PlayerOnGameServerSearchInputDTO}
|
|
12134
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12135
|
+
*/
|
|
12136
|
+
query?: PlayerOnGameServerSearchInputDTO;
|
|
11984
12137
|
/**
|
|
11985
12138
|
*
|
|
11986
12139
|
* @type {number}
|
|
11987
12140
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11988
12141
|
*/
|
|
11989
12142
|
amount: number;
|
|
12143
|
+
/**
|
|
12144
|
+
*
|
|
12145
|
+
* @type {Array<string>}
|
|
12146
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12147
|
+
*/
|
|
12148
|
+
ids?: Array<string>;
|
|
12149
|
+
/**
|
|
12150
|
+
*
|
|
12151
|
+
* @type {Array<string>}
|
|
12152
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12153
|
+
*/
|
|
12154
|
+
excludedIds?: Array<string>;
|
|
11990
12155
|
}
|
|
11991
12156
|
/**
|
|
11992
12157
|
*
|
|
@@ -13833,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13833
13998
|
* @type {Array<string>}
|
|
13834
13999
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13835
14000
|
*/
|
|
13836
|
-
listingIds
|
|
14001
|
+
listingIds?: Array<string>;
|
|
14002
|
+
/**
|
|
14003
|
+
*
|
|
14004
|
+
* @type {ShopListingSearchInputDTO}
|
|
14005
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14006
|
+
*/
|
|
14007
|
+
query?: ShopListingSearchInputDTO;
|
|
13837
14008
|
/**
|
|
13838
14009
|
*
|
|
13839
14010
|
* @type {Array<string>}
|
|
@@ -13846,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13846
14017
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13847
14018
|
*/
|
|
13848
14019
|
removeCategoryIds?: Array<string>;
|
|
14020
|
+
/**
|
|
14021
|
+
*
|
|
14022
|
+
* @type {Array<string>}
|
|
14023
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14024
|
+
*/
|
|
14025
|
+
ids?: Array<string>;
|
|
14026
|
+
/**
|
|
14027
|
+
*
|
|
14028
|
+
* @type {Array<string>}
|
|
14029
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14030
|
+
*/
|
|
14031
|
+
excludedIds?: Array<string>;
|
|
13849
14032
|
}
|
|
13850
14033
|
/**
|
|
13851
14034
|
*
|
|
@@ -14456,6 +14639,56 @@ export interface ShopKpisDTOAPI {
|
|
|
14456
14639
|
*/
|
|
14457
14640
|
meta: MetadataOutput;
|
|
14458
14641
|
}
|
|
14642
|
+
/**
|
|
14643
|
+
*
|
|
14644
|
+
* @export
|
|
14645
|
+
* @interface ShopListingBulkInputDTO
|
|
14646
|
+
*/
|
|
14647
|
+
export interface ShopListingBulkInputDTO {
|
|
14648
|
+
/**
|
|
14649
|
+
*
|
|
14650
|
+
* @type {ShopListingBulkTargetDTO}
|
|
14651
|
+
* @memberof ShopListingBulkInputDTO
|
|
14652
|
+
*/
|
|
14653
|
+
target: ShopListingBulkTargetDTO;
|
|
14654
|
+
/**
|
|
14655
|
+
*
|
|
14656
|
+
* @type {string}
|
|
14657
|
+
* @memberof ShopListingBulkInputDTO
|
|
14658
|
+
*/
|
|
14659
|
+
action: ShopListingBulkInputDTOActionEnum;
|
|
14660
|
+
}
|
|
14661
|
+
export declare const ShopListingBulkInputDTOActionEnum: {
|
|
14662
|
+
readonly Delete: "delete";
|
|
14663
|
+
readonly Publish: "publish";
|
|
14664
|
+
readonly Unpublish: "unpublish";
|
|
14665
|
+
};
|
|
14666
|
+
export type ShopListingBulkInputDTOActionEnum = (typeof ShopListingBulkInputDTOActionEnum)[keyof typeof ShopListingBulkInputDTOActionEnum];
|
|
14667
|
+
/**
|
|
14668
|
+
*
|
|
14669
|
+
* @export
|
|
14670
|
+
* @interface ShopListingBulkTargetDTO
|
|
14671
|
+
*/
|
|
14672
|
+
export interface ShopListingBulkTargetDTO {
|
|
14673
|
+
/**
|
|
14674
|
+
*
|
|
14675
|
+
* @type {ShopListingSearchInputDTO}
|
|
14676
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14677
|
+
*/
|
|
14678
|
+
query?: ShopListingSearchInputDTO;
|
|
14679
|
+
/**
|
|
14680
|
+
*
|
|
14681
|
+
* @type {Array<string>}
|
|
14682
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14683
|
+
*/
|
|
14684
|
+
ids?: Array<string>;
|
|
14685
|
+
/**
|
|
14686
|
+
*
|
|
14687
|
+
* @type {Array<string>}
|
|
14688
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14689
|
+
*/
|
|
14690
|
+
excludedIds?: Array<string>;
|
|
14691
|
+
}
|
|
14459
14692
|
/**
|
|
14460
14693
|
*
|
|
14461
14694
|
* @export
|
|
@@ -17887,6 +18120,31 @@ export interface UserUpdateDTO {
|
|
|
17887
18120
|
*/
|
|
17888
18121
|
isDashboardUser?: boolean;
|
|
17889
18122
|
}
|
|
18123
|
+
/**
|
|
18124
|
+
*
|
|
18125
|
+
* @export
|
|
18126
|
+
* @interface VariableBulkDeleteInputDTO
|
|
18127
|
+
*/
|
|
18128
|
+
export interface VariableBulkDeleteInputDTO {
|
|
18129
|
+
/**
|
|
18130
|
+
*
|
|
18131
|
+
* @type {VariableSearchInputDTO}
|
|
18132
|
+
* @memberof VariableBulkDeleteInputDTO
|
|
18133
|
+
*/
|
|
18134
|
+
query?: VariableSearchInputDTO;
|
|
18135
|
+
/**
|
|
18136
|
+
*
|
|
18137
|
+
* @type {Array<string>}
|
|
18138
|
+
* @memberof VariableBulkDeleteInputDTO
|
|
18139
|
+
*/
|
|
18140
|
+
ids?: Array<string>;
|
|
18141
|
+
/**
|
|
18142
|
+
*
|
|
18143
|
+
* @type {Array<string>}
|
|
18144
|
+
* @memberof VariableBulkDeleteInputDTO
|
|
18145
|
+
*/
|
|
18146
|
+
excludedIds?: Array<string>;
|
|
18147
|
+
}
|
|
17890
18148
|
/**
|
|
17891
18149
|
*
|
|
17892
18150
|
* @export
|
|
@@ -18096,6 +18354,12 @@ export interface VariableSearchInputAllowedSearch {
|
|
|
18096
18354
|
* @memberof VariableSearchInputAllowedSearch
|
|
18097
18355
|
*/
|
|
18098
18356
|
key?: Array<string>;
|
|
18357
|
+
/**
|
|
18358
|
+
*
|
|
18359
|
+
* @type {Array<string>}
|
|
18360
|
+
* @memberof VariableSearchInputAllowedSearch
|
|
18361
|
+
*/
|
|
18362
|
+
value?: Array<string>;
|
|
18099
18363
|
}
|
|
18100
18364
|
/**
|
|
18101
18365
|
*
|
|
@@ -24482,7 +24746,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24482
24746
|
*/
|
|
24483
24747
|
playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24484
24748
|
/**
|
|
24485
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24749
|
+
* Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24486
24750
|
* @summary Bulk assign role
|
|
24487
24751
|
* @param {string} roleId
|
|
24488
24752
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24491,7 +24755,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24491
24755
|
*/
|
|
24492
24756
|
playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24493
24757
|
/**
|
|
24494
|
-
* Bulk delete players by
|
|
24758
|
+
* Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
24495
24759
|
* @summary Bulk delete
|
|
24496
24760
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24497
24761
|
* @param {*} [options] Override http request option.
|
|
@@ -24597,7 +24861,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
24597
24861
|
*/
|
|
24598
24862
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
24599
24863
|
/**
|
|
24600
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24864
|
+
* Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24601
24865
|
* @summary Bulk assign role
|
|
24602
24866
|
* @param {string} roleId
|
|
24603
24867
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24606,7 +24870,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
24606
24870
|
*/
|
|
24607
24871
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
|
|
24608
24872
|
/**
|
|
24609
|
-
* Bulk delete players by
|
|
24873
|
+
* Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
24610
24874
|
* @summary Bulk delete
|
|
24611
24875
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24612
24876
|
* @param {*} [options] Override http request option.
|
|
@@ -24712,7 +24976,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
24712
24976
|
*/
|
|
24713
24977
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
24714
24978
|
/**
|
|
24715
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24979
|
+
* Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24716
24980
|
* @summary Bulk assign role
|
|
24717
24981
|
* @param {string} roleId
|
|
24718
24982
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24721,7 +24985,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
24721
24985
|
*/
|
|
24722
24986
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
|
|
24723
24987
|
/**
|
|
24724
|
-
* Bulk delete players by
|
|
24988
|
+
* Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
24725
24989
|
* @summary Bulk delete
|
|
24726
24990
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24727
24991
|
* @param {*} [options] Override http request option.
|
|
@@ -24835,7 +25099,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
24835
25099
|
*/
|
|
24836
25100
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
24837
25101
|
/**
|
|
24838
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
25102
|
+
* Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
24839
25103
|
* @summary Bulk assign role
|
|
24840
25104
|
* @param {string} roleId
|
|
24841
25105
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24845,7 +25109,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
24845
25109
|
*/
|
|
24846
25110
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
|
|
24847
25111
|
/**
|
|
24848
|
-
* Bulk delete players by
|
|
25112
|
+
* Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
|
|
24849
25113
|
* @summary Bulk delete
|
|
24850
25114
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24851
25115
|
* @param {*} [options] Override http request option.
|
|
@@ -24916,7 +25180,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
24916
25180
|
*/
|
|
24917
25181
|
playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24918
25182
|
/**
|
|
24919
|
-
* Bulk add currency to
|
|
25183
|
+
* Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
|
|
24920
25184
|
* @summary Bulk add currency
|
|
24921
25185
|
* @param {string} gameServerId
|
|
24922
25186
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -25007,7 +25271,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
25007
25271
|
*/
|
|
25008
25272
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
|
|
25009
25273
|
/**
|
|
25010
|
-
* Bulk add currency to
|
|
25274
|
+
* Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
|
|
25011
25275
|
* @summary Bulk add currency
|
|
25012
25276
|
* @param {string} gameServerId
|
|
25013
25277
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -25098,7 +25362,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
25098
25362
|
*/
|
|
25099
25363
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
|
|
25100
25364
|
/**
|
|
25101
|
-
* Bulk add currency to
|
|
25365
|
+
* Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
|
|
25102
25366
|
* @summary Bulk add currency
|
|
25103
25367
|
* @param {string} gameServerId
|
|
25104
25368
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -25192,7 +25456,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
25192
25456
|
*/
|
|
25193
25457
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
25194
25458
|
/**
|
|
25195
|
-
* Bulk add currency to
|
|
25459
|
+
* Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
|
|
25196
25460
|
* @summary Bulk add currency
|
|
25197
25461
|
* @param {string} gameServerId
|
|
25198
25462
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -26156,7 +26420,7 @@ export declare class ShopActionApi extends BaseAPI {
|
|
|
26156
26420
|
*/
|
|
26157
26421
|
export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26158
26422
|
/**
|
|
26159
|
-
* Bulk assign categories to
|
|
26423
|
+
* Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
|
|
26160
26424
|
* @summary Bulk assign
|
|
26161
26425
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
26162
26426
|
* @param {*} [options] Override http request option.
|
|
@@ -26229,7 +26493,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
|
|
|
26229
26493
|
*/
|
|
26230
26494
|
export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
26231
26495
|
/**
|
|
26232
|
-
* Bulk assign categories to
|
|
26496
|
+
* Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
|
|
26233
26497
|
* @summary Bulk assign
|
|
26234
26498
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
26235
26499
|
* @param {*} [options] Override http request option.
|
|
@@ -26302,7 +26566,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
|
26302
26566
|
*/
|
|
26303
26567
|
export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26304
26568
|
/**
|
|
26305
|
-
* Bulk assign categories to
|
|
26569
|
+
* Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
|
|
26306
26570
|
* @summary Bulk assign
|
|
26307
26571
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
26308
26572
|
* @param {*} [options] Override http request option.
|
|
@@ -26377,7 +26641,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
|
|
|
26377
26641
|
*/
|
|
26378
26642
|
export declare class ShopCategoryApi extends BaseAPI {
|
|
26379
26643
|
/**
|
|
26380
|
-
* Bulk assign categories to
|
|
26644
|
+
* Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
|
|
26381
26645
|
* @summary Bulk assign
|
|
26382
26646
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
26383
26647
|
* @param {*} [options] Override http request option.
|
|
@@ -26457,6 +26721,14 @@ export declare class ShopCategoryApi extends BaseAPI {
|
|
|
26457
26721
|
* @export
|
|
26458
26722
|
*/
|
|
26459
26723
|
export declare const ShopListingApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
26724
|
+
/**
|
|
26725
|
+
* Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
|
|
26726
|
+
* @summary Bulk
|
|
26727
|
+
* @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
|
|
26728
|
+
* @param {*} [options] Override http request option.
|
|
26729
|
+
* @throws {RequiredError}
|
|
26730
|
+
*/
|
|
26731
|
+
shopListingControllerBulk: (shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26460
26732
|
/**
|
|
26461
26733
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26462
26734
|
* @summary Create
|
|
@@ -26511,6 +26783,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
|
|
|
26511
26783
|
* @export
|
|
26512
26784
|
*/
|
|
26513
26785
|
export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
26786
|
+
/**
|
|
26787
|
+
* Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
|
|
26788
|
+
* @summary Bulk
|
|
26789
|
+
* @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
|
|
26790
|
+
* @param {*} [options] Override http request option.
|
|
26791
|
+
* @throws {RequiredError}
|
|
26792
|
+
*/
|
|
26793
|
+
shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
|
|
26514
26794
|
/**
|
|
26515
26795
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26516
26796
|
* @summary Create
|
|
@@ -26565,6 +26845,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
26565
26845
|
* @export
|
|
26566
26846
|
*/
|
|
26567
26847
|
export declare const ShopListingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
26848
|
+
/**
|
|
26849
|
+
* Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
|
|
26850
|
+
* @summary Bulk
|
|
26851
|
+
* @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
|
|
26852
|
+
* @param {*} [options] Override http request option.
|
|
26853
|
+
* @throws {RequiredError}
|
|
26854
|
+
*/
|
|
26855
|
+
shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
|
|
26568
26856
|
/**
|
|
26569
26857
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26570
26858
|
* @summary Create
|
|
@@ -26621,6 +26909,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
26621
26909
|
* @extends {BaseAPI}
|
|
26622
26910
|
*/
|
|
26623
26911
|
export declare class ShopListingApi extends BaseAPI {
|
|
26912
|
+
/**
|
|
26913
|
+
* Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
|
|
26914
|
+
* @summary Bulk
|
|
26915
|
+
* @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
|
|
26916
|
+
* @param {*} [options] Override http request option.
|
|
26917
|
+
* @throws {RequiredError}
|
|
26918
|
+
* @memberof ShopListingApi
|
|
26919
|
+
*/
|
|
26920
|
+
shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
|
|
26624
26921
|
/**
|
|
26625
26922
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26626
26923
|
* @summary Create
|
|
@@ -27713,6 +28010,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
27713
28010
|
* @export
|
|
27714
28011
|
*/
|
|
27715
28012
|
export declare const VariableApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
28013
|
+
/**
|
|
28014
|
+
* Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
|
|
28015
|
+
* @summary Bulk delete
|
|
28016
|
+
* @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
|
|
28017
|
+
* @param {*} [options] Override http request option.
|
|
28018
|
+
* @throws {RequiredError}
|
|
28019
|
+
*/
|
|
28020
|
+
variableControllerBulkDelete: (variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27716
28021
|
/**
|
|
27717
28022
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27718
28023
|
* @summary Create
|
|
@@ -27760,6 +28065,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
27760
28065
|
* @export
|
|
27761
28066
|
*/
|
|
27762
28067
|
export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
28068
|
+
/**
|
|
28069
|
+
* Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
|
|
28070
|
+
* @summary Bulk delete
|
|
28071
|
+
* @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
|
|
28072
|
+
* @param {*} [options] Override http request option.
|
|
28073
|
+
* @throws {RequiredError}
|
|
28074
|
+
*/
|
|
28075
|
+
variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
|
|
27763
28076
|
/**
|
|
27764
28077
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27765
28078
|
* @summary Create
|
|
@@ -27807,6 +28120,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
|
27807
28120
|
* @export
|
|
27808
28121
|
*/
|
|
27809
28122
|
export declare const VariableApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
28123
|
+
/**
|
|
28124
|
+
* Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
|
|
28125
|
+
* @summary Bulk delete
|
|
28126
|
+
* @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
|
|
28127
|
+
* @param {*} [options] Override http request option.
|
|
28128
|
+
* @throws {RequiredError}
|
|
28129
|
+
*/
|
|
28130
|
+
variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
|
|
27810
28131
|
/**
|
|
27811
28132
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27812
28133
|
* @summary Create
|
|
@@ -27856,6 +28177,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
|
|
|
27856
28177
|
* @extends {BaseAPI}
|
|
27857
28178
|
*/
|
|
27858
28179
|
export declare class VariableApi extends BaseAPI {
|
|
28180
|
+
/**
|
|
28181
|
+
* Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
|
|
28182
|
+
* @summary Bulk delete
|
|
28183
|
+
* @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
|
|
28184
|
+
* @param {*} [options] Override http request option.
|
|
28185
|
+
* @throws {RequiredError}
|
|
28186
|
+
* @memberof VariableApi
|
|
28187
|
+
*/
|
|
28188
|
+
variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
|
|
27859
28189
|
/**
|
|
27860
28190
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27861
28191
|
* @summary Create
|