@takaro/apiclient 0.0.0-dev.d495c77 → 0.0.0-dev.d4ad6b4

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.
@@ -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
@@ -2232,16 +2314,16 @@ export interface DomainCreateInputDTO {
2232
2314
  maxDiscordLinkedRoles?: number;
2233
2315
  /**
2234
2316
  *
2235
- * @type {string}
2317
+ * @type {boolean}
2236
2318
  * @memberof DomainCreateInputDTO
2237
2319
  */
2238
- serverRegistrationToken?: string;
2320
+ skipBuiltinSeeding?: boolean;
2239
2321
  /**
2240
2322
  *
2241
- * @type {boolean}
2323
+ * @type {string}
2242
2324
  * @memberof DomainCreateInputDTO
2243
2325
  */
2244
- skipBuiltinSeeding?: boolean;
2326
+ serverRegistrationToken?: string;
2245
2327
  }
2246
2328
  export declare const DomainCreateInputDTOStateEnum: {
2247
2329
  readonly Active: "ACTIVE";
@@ -3071,19 +3153,19 @@ export interface ErrorOutput {
3071
3153
  * @type {string}
3072
3154
  * @memberof ErrorOutput
3073
3155
  */
3074
- code: string;
3156
+ code?: string;
3075
3157
  /**
3076
3158
  *
3077
3159
  * @type {string}
3078
3160
  * @memberof ErrorOutput
3079
3161
  */
3080
- message: string;
3162
+ message?: string;
3081
3163
  /**
3082
3164
  *
3083
3165
  * @type {string}
3084
3166
  * @memberof ErrorOutput
3085
3167
  */
3086
- details: string;
3168
+ details?: string;
3087
3169
  }
3088
3170
  /**
3089
3171
  *
@@ -3096,7 +3178,7 @@ export interface EventChatMessage {
3096
3178
  * @type {IGamePlayer}
3097
3179
  * @memberof EventChatMessage
3098
3180
  */
3099
- player: IGamePlayer;
3181
+ player?: IGamePlayer;
3100
3182
  /**
3101
3183
  *
3102
3184
  * @type {string}
@@ -8055,7 +8137,7 @@ export interface MetadataOutput {
8055
8137
  * @type {ErrorOutput}
8056
8138
  * @memberof MetadataOutput
8057
8139
  */
8058
- error: ErrorOutput;
8140
+ error?: ErrorOutput;
8059
8141
  /**
8060
8142
  *
8061
8143
  * @type {number}
@@ -10147,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
10147
10229
  * @type {Array<string>}
10148
10230
  * @memberof PlayerBulkAssignRoleInputDTO
10149
10231
  */
10150
- playerIds: Array<string>;
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: Array<string>;
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: Array<string>;
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
  *
@@ -12305,7 +12470,7 @@ export interface RedirectQs {
12305
12470
  * @type {string}
12306
12471
  * @memberof RedirectQs
12307
12472
  */
12308
- redirect: string;
12473
+ redirect?: string;
12309
12474
  }
12310
12475
  /**
12311
12476
  *
@@ -13833,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
13833
13998
  * @type {Array<string>}
13834
13999
  * @memberof ShopCategoryBulkAssignDTO
13835
14000
  */
13836
- listingIds: Array<string>;
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
@@ -15994,6 +16227,36 @@ export interface TakaroEventHookExecuted {
15994
16227
  * @interface TakaroEventInviteLinkCreated
15995
16228
  */
15996
16229
  export interface TakaroEventInviteLinkCreated {
16230
+ /**
16231
+ *
16232
+ * @type {string}
16233
+ * @memberof TakaroEventInviteLinkCreated
16234
+ */
16235
+ inviteLinkId: string;
16236
+ /**
16237
+ *
16238
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16239
+ * @memberof TakaroEventInviteLinkCreated
16240
+ */
16241
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16242
+ /**
16243
+ *
16244
+ * @type {number}
16245
+ * @memberof TakaroEventInviteLinkCreated
16246
+ */
16247
+ maxUses: number;
16248
+ /**
16249
+ *
16250
+ * @type {Array<string>}
16251
+ * @memberof TakaroEventInviteLinkCreated
16252
+ */
16253
+ roleIds: Array<string>;
16254
+ /**
16255
+ *
16256
+ * @type {boolean}
16257
+ * @memberof TakaroEventInviteLinkCreated
16258
+ */
16259
+ staffOrigin: boolean;
15997
16260
  /**
15998
16261
  *
15999
16262
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -17348,6 +17611,37 @@ export interface UserCreateInputDTO {
17348
17611
  */
17349
17612
  isDashboardUser?: boolean;
17350
17613
  }
17614
+ /**
17615
+ *
17616
+ * @export
17617
+ * @interface UserCreateInviteDTO
17618
+ */
17619
+ export interface UserCreateInviteDTO {
17620
+ /**
17621
+ *
17622
+ * @type {string}
17623
+ * @memberof UserCreateInviteDTO
17624
+ */
17625
+ name: string;
17626
+ /**
17627
+ *
17628
+ * @type {string}
17629
+ * @memberof UserCreateInviteDTO
17630
+ */
17631
+ email: string;
17632
+ /**
17633
+ *
17634
+ * @type {string}
17635
+ * @memberof UserCreateInviteDTO
17636
+ */
17637
+ idpId?: string;
17638
+ /**
17639
+ *
17640
+ * @type {boolean}
17641
+ * @memberof UserCreateInviteDTO
17642
+ */
17643
+ isDashboardUser?: boolean;
17644
+ }
17351
17645
  /**
17352
17646
  *
17353
17647
  * @export
@@ -17451,7 +17745,7 @@ export interface UserOutputDTO {
17451
17745
  * @type {PlayerOutputWithRolesDTO}
17452
17746
  * @memberof UserOutputDTO
17453
17747
  */
17454
- player: PlayerOutputWithRolesDTO;
17748
+ player?: PlayerOutputWithRolesDTO;
17455
17749
  /**
17456
17750
  *
17457
17751
  * @type {boolean}
@@ -17579,7 +17873,7 @@ export interface UserOutputWithRolesDTO {
17579
17873
  * @type {PlayerOutputWithRolesDTO}
17580
17874
  * @memberof UserOutputWithRolesDTO
17581
17875
  */
17582
- player: PlayerOutputWithRolesDTO;
17876
+ player?: PlayerOutputWithRolesDTO;
17583
17877
  /**
17584
17878
  *
17585
17879
  * @type {boolean}
@@ -17826,6 +18120,31 @@ export interface UserUpdateDTO {
17826
18120
  */
17827
18121
  isDashboardUser?: boolean;
17828
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
+ }
17829
18148
  /**
17830
18149
  *
17831
18150
  * @export
@@ -18035,6 +18354,12 @@ export interface VariableSearchInputAllowedSearch {
18035
18354
  * @memberof VariableSearchInputAllowedSearch
18036
18355
  */
18037
18356
  key?: Array<string>;
18357
+ /**
18358
+ *
18359
+ * @type {Array<string>}
18360
+ * @memberof VariableSearchInputAllowedSearch
18361
+ */
18362
+ value?: Array<string>;
18038
18363
  }
18039
18364
  /**
18040
18365
  *
@@ -21200,7 +21525,7 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
21200
21525
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21201
21526
  /**
21202
21527
  * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21203
- * @summary Create admin invite link for a domain
21528
+ * @summary Create staff-recovery invite link for a domain
21204
21529
  * @param {string} id
21205
21530
  * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21206
21531
  * @param {*} [options] Override http request option.
@@ -21273,7 +21598,7 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
21273
21598
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21274
21599
  /**
21275
21600
  * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21276
- * @summary Create admin invite link for a domain
21601
+ * @summary Create staff-recovery invite link for a domain
21277
21602
  * @param {string} id
21278
21603
  * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21279
21604
  * @param {*} [options] Override http request option.
@@ -21346,7 +21671,7 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
21346
21671
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21347
21672
  /**
21348
21673
  * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21349
- * @summary Create admin invite link for a domain
21674
+ * @summary Create staff-recovery invite link for a domain
21350
21675
  * @param {string} id
21351
21676
  * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21352
21677
  * @param {*} [options] Override http request option.
@@ -21422,7 +21747,7 @@ export declare class DomainApi extends BaseAPI {
21422
21747
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21423
21748
  /**
21424
21749
  * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21425
- * @summary Create admin invite link for a domain
21750
+ * @summary Create staff-recovery invite link for a domain
21426
21751
  * @param {string} id
21427
21752
  * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21428
21753
  * @param {*} [options] Override http request option.
@@ -21844,11 +22169,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
21844
22169
  /**
21845
22170
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21846
22171
  * @summary Auth discord
21847
- * @param {string} redirect
22172
+ * @param {string} [redirect]
21848
22173
  * @param {*} [options] Override http request option.
21849
22174
  * @throws {RequiredError}
21850
22175
  */
21851
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22176
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21852
22177
  /**
21853
22178
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21854
22179
  * @summary Auth discord return
@@ -21865,11 +22190,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
21865
22190
  /**
21866
22191
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21867
22192
  * @summary Auth discord
21868
- * @param {string} redirect
22193
+ * @param {string} [redirect]
21869
22194
  * @param {*} [options] Override http request option.
21870
22195
  * @throws {RequiredError}
21871
22196
  */
21872
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22197
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21873
22198
  /**
21874
22199
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21875
22200
  * @summary Auth discord return
@@ -21886,11 +22211,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
21886
22211
  /**
21887
22212
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21888
22213
  * @summary Auth discord
21889
- * @param {string} redirect
22214
+ * @param {string} [redirect]
21890
22215
  * @param {*} [options] Override http request option.
21891
22216
  * @throws {RequiredError}
21892
22217
  */
21893
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22218
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21894
22219
  /**
21895
22220
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21896
22221
  * @summary Auth discord return
@@ -21909,12 +22234,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21909
22234
  /**
21910
22235
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21911
22236
  * @summary Auth discord
21912
- * @param {string} redirect
22237
+ * @param {string} [redirect]
21913
22238
  * @param {*} [options] Override http request option.
21914
22239
  * @throws {RequiredError}
21915
22240
  * @memberof ExternalAuthApi
21916
22241
  */
21917
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22242
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21918
22243
  /**
21919
22244
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21920
22245
  * @summary Auth discord return
@@ -23643,6 +23968,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
23643
23968
  * @throws {RequiredError}
23644
23969
  */
23645
23970
  metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23971
+ /**
23972
+ * <br> OperationId: `MetaGetLiveness`
23973
+ * @summary Get liveness
23974
+ * @param {*} [options] Override http request option.
23975
+ * @throws {RequiredError}
23976
+ */
23977
+ metaGetLiveness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23646
23978
  /**
23647
23979
  * <br> OperationId: `MetaGetMetrics`
23648
23980
  * @summary Get metrics
@@ -23691,6 +24023,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
23691
24023
  * @throws {RequiredError}
23692
24024
  */
23693
24025
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
24026
+ /**
24027
+ * <br> OperationId: `MetaGetLiveness`
24028
+ * @summary Get liveness
24029
+ * @param {*} [options] Override http request option.
24030
+ * @throws {RequiredError}
24031
+ */
24032
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
23694
24033
  /**
23695
24034
  * <br> OperationId: `MetaGetMetrics`
23696
24035
  * @summary Get metrics
@@ -23739,6 +24078,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
23739
24078
  * @throws {RequiredError}
23740
24079
  */
23741
24080
  metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
24081
+ /**
24082
+ * <br> OperationId: `MetaGetLiveness`
24083
+ * @summary Get liveness
24084
+ * @param {*} [options] Override http request option.
24085
+ * @throws {RequiredError}
24086
+ */
24087
+ metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
23742
24088
  /**
23743
24089
  * <br> OperationId: `MetaGetMetrics`
23744
24090
  * @summary Get metrics
@@ -23790,6 +24136,14 @@ export declare class MetaApi extends BaseAPI {
23790
24136
  * @memberof MetaApi
23791
24137
  */
23792
24138
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
24139
+ /**
24140
+ * <br> OperationId: `MetaGetLiveness`
24141
+ * @summary Get liveness
24142
+ * @param {*} [options] Override http request option.
24143
+ * @throws {RequiredError}
24144
+ * @memberof MetaApi
24145
+ */
24146
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
23793
24147
  /**
23794
24148
  * <br> OperationId: `MetaGetMetrics`
23795
24149
  * @summary Get metrics
@@ -24392,7 +24746,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24392
24746
  */
24393
24747
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24394
24748
  /**
24395
- * 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`
24396
24750
  * @summary Bulk assign role
24397
24751
  * @param {string} roleId
24398
24752
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -24401,7 +24755,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24401
24755
  */
24402
24756
  playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24403
24757
  /**
24404
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
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`
24405
24759
  * @summary Bulk delete
24406
24760
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24407
24761
  * @param {*} [options] Override http request option.
@@ -24507,7 +24861,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24507
24861
  */
24508
24862
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24509
24863
  /**
24510
- * 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`
24511
24865
  * @summary Bulk assign role
24512
24866
  * @param {string} roleId
24513
24867
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -24516,7 +24870,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24516
24870
  */
24517
24871
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
24518
24872
  /**
24519
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
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`
24520
24874
  * @summary Bulk delete
24521
24875
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24522
24876
  * @param {*} [options] Override http request option.
@@ -24622,7 +24976,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24622
24976
  */
24623
24977
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24624
24978
  /**
24625
- * 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`
24626
24980
  * @summary Bulk assign role
24627
24981
  * @param {string} roleId
24628
24982
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -24631,7 +24985,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24631
24985
  */
24632
24986
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
24633
24987
  /**
24634
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
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`
24635
24989
  * @summary Bulk delete
24636
24990
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24637
24991
  * @param {*} [options] Override http request option.
@@ -24745,7 +25099,7 @@ export declare class PlayerApi extends BaseAPI {
24745
25099
  */
24746
25100
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24747
25101
  /**
24748
- * 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`
24749
25103
  * @summary Bulk assign role
24750
25104
  * @param {string} roleId
24751
25105
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -24755,7 +25109,7 @@ export declare class PlayerApi extends BaseAPI {
24755
25109
  */
24756
25110
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
24757
25111
  /**
24758
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
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`
24759
25113
  * @summary Bulk delete
24760
25114
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24761
25115
  * @param {*} [options] Override http request option.
@@ -24826,7 +25180,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24826
25180
  */
24827
25181
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24828
25182
  /**
24829
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
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`
24830
25184
  * @summary Bulk add currency
24831
25185
  * @param {string} gameServerId
24832
25186
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -24917,7 +25271,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24917
25271
  */
24918
25272
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24919
25273
  /**
24920
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
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`
24921
25275
  * @summary Bulk add currency
24922
25276
  * @param {string} gameServerId
24923
25277
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -25008,7 +25362,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
25008
25362
  */
25009
25363
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
25010
25364
  /**
25011
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
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`
25012
25366
  * @summary Bulk add currency
25013
25367
  * @param {string} gameServerId
25014
25368
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -25102,7 +25456,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
25102
25456
  */
25103
25457
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
25104
25458
  /**
25105
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
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`
25106
25460
  * @summary Bulk add currency
25107
25461
  * @param {string} gameServerId
25108
25462
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -26066,7 +26420,7 @@ export declare class ShopActionApi extends BaseAPI {
26066
26420
  */
26067
26421
  export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
26068
26422
  /**
26069
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
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`
26070
26424
  * @summary Bulk assign
26071
26425
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
26072
26426
  * @param {*} [options] Override http request option.
@@ -26139,7 +26493,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
26139
26493
  */
26140
26494
  export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
26141
26495
  /**
26142
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
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`
26143
26497
  * @summary Bulk assign
26144
26498
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
26145
26499
  * @param {*} [options] Override http request option.
@@ -26212,7 +26566,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
26212
26566
  */
26213
26567
  export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26214
26568
  /**
26215
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
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`
26216
26570
  * @summary Bulk assign
26217
26571
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
26218
26572
  * @param {*} [options] Override http request option.
@@ -26287,7 +26641,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
26287
26641
  */
26288
26642
  export declare class ShopCategoryApi extends BaseAPI {
26289
26643
  /**
26290
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
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`
26291
26645
  * @summary Bulk assign
26292
26646
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
26293
26647
  * @param {*} [options] Override http request option.
@@ -26367,6 +26721,14 @@ export declare class ShopCategoryApi extends BaseAPI {
26367
26721
  * @export
26368
26722
  */
26369
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>;
26370
26732
  /**
26371
26733
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26372
26734
  * @summary Create
@@ -26421,6 +26783,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
26421
26783
  * @export
26422
26784
  */
26423
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>>;
26424
26794
  /**
26425
26795
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26426
26796
  * @summary Create
@@ -26475,6 +26845,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
26475
26845
  * @export
26476
26846
  */
26477
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>;
26478
26856
  /**
26479
26857
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26480
26858
  * @summary Create
@@ -26531,6 +26909,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
26531
26909
  * @extends {BaseAPI}
26532
26910
  */
26533
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>>;
26534
26921
  /**
26535
26922
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26536
26923
  * @summary Create
@@ -27623,6 +28010,14 @@ export declare class UserApi extends BaseAPI {
27623
28010
  * @export
27624
28011
  */
27625
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>;
27626
28021
  /**
27627
28022
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27628
28023
  * @summary Create
@@ -27670,6 +28065,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
27670
28065
  * @export
27671
28066
  */
27672
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>>;
27673
28076
  /**
27674
28077
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27675
28078
  * @summary Create
@@ -27717,6 +28120,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
27717
28120
  * @export
27718
28121
  */
27719
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>;
27720
28131
  /**
27721
28132
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27722
28133
  * @summary Create
@@ -27766,6 +28177,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
27766
28177
  * @extends {BaseAPI}
27767
28178
  */
27768
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>>;
27769
28189
  /**
27770
28190
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27771
28191
  * @summary Create