@takaro/apiclient 0.0.0-dev.814dfa1 → 0.0.0-dev.8168003

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.
@@ -3367,10 +3367,10 @@ export interface EventExploreInputDTO {
3367
3367
  filters?: EventExploreFiltersDTO;
3368
3368
  /**
3369
3369
  *
3370
- * @type {Array<any>}
3370
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3371
3371
  * @memberof EventExploreInputDTO
3372
3372
  */
3373
- metaFilters?: Array<any>;
3373
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3374
3374
  /**
3375
3375
  *
3376
3376
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -3993,12 +3993,11 @@ export interface EventVolumeDimensionTotalDTO {
3993
3993
  */
3994
3994
  key: string;
3995
3995
  /**
3996
- * Resolved display name (populated when groupBy=gameServerId). Null for the
3997
- * "other" bucket or when the entity no longer exists.
3996
+ *
3998
3997
  * @type {string}
3999
3998
  * @memberof EventVolumeDimensionTotalDTO
4000
3999
  */
4001
- name?: string | null;
4000
+ name?: string;
4002
4001
  /**
4003
4002
  *
4004
4003
  * @type {number}
@@ -4020,10 +4019,10 @@ export interface EventVolumeInputDTO {
4020
4019
  filters?: EventExploreFiltersDTO;
4021
4020
  /**
4022
4021
  *
4023
- * @type {Array<any>}
4022
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4024
4023
  * @memberof EventVolumeInputDTO
4025
4024
  */
4026
- metaFilters?: Array<any>;
4025
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4027
4026
  /**
4028
4027
  *
4029
4028
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -4043,8 +4042,7 @@ export interface EventVolumeInputDTO {
4043
4042
  */
4044
4043
  groupBy?: EventVolumeInputDTOGroupByEnum;
4045
4044
  /**
4046
- * Optional preset period name (e.g. "24h", "7d") enabling result caching
4047
- * for standard preset windows with empty filters.
4045
+ *
4048
4046
  * @type {string}
4049
4047
  * @memberof EventVolumeInputDTO
4050
4048
  */
@@ -4125,12 +4123,11 @@ export interface EventVolumeSeriesDTO {
4125
4123
  */
4126
4124
  key: string;
4127
4125
  /**
4128
- * Resolved display name (populated when groupBy=gameServerId). Null for the
4129
- * "other" bucket or when the entity no longer exists.
4126
+ *
4130
4127
  * @type {string}
4131
4128
  * @memberof EventVolumeSeriesDTO
4132
4129
  */
4133
- name?: string | null;
4130
+ name?: string;
4134
4131
  /**
4135
4132
  *
4136
4133
  * @type {Array<EventVolumePointDTO>}
@@ -7423,6 +7420,56 @@ export interface MessageSendInputDTO {
7423
7420
  */
7424
7421
  opts?: IMessageOptsDTO;
7425
7422
  }
7423
+ /**
7424
+ *
7425
+ * @export
7426
+ * @interface MetaFilterGroupOrLeafDTO
7427
+ */
7428
+ export interface MetaFilterGroupOrLeafDTO {
7429
+ /**
7430
+ *
7431
+ * @type {string}
7432
+ * @memberof MetaFilterGroupOrLeafDTO
7433
+ */
7434
+ logicalOperator?: MetaFilterGroupOrLeafDTOLogicalOperatorEnum;
7435
+ /**
7436
+ *
7437
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
7438
+ * @memberof MetaFilterGroupOrLeafDTO
7439
+ */
7440
+ filters?: Array<MetaFilterGroupOrLeafDTO>;
7441
+ /**
7442
+ *
7443
+ * @type {string}
7444
+ * @memberof MetaFilterGroupOrLeafDTO
7445
+ */
7446
+ field?: string;
7447
+ /**
7448
+ *
7449
+ * @type {string}
7450
+ * @memberof MetaFilterGroupOrLeafDTO
7451
+ */
7452
+ operator?: MetaFilterGroupOrLeafDTOOperatorEnum;
7453
+ /**
7454
+ *
7455
+ * @type {string}
7456
+ * @memberof MetaFilterGroupOrLeafDTO
7457
+ */
7458
+ value?: string;
7459
+ }
7460
+ export declare const MetaFilterGroupOrLeafDTOLogicalOperatorEnum: {
7461
+ readonly And: "AND";
7462
+ readonly Or: "OR";
7463
+ };
7464
+ export type MetaFilterGroupOrLeafDTOLogicalOperatorEnum = (typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum];
7465
+ export declare const MetaFilterGroupOrLeafDTOOperatorEnum: {
7466
+ readonly Equal: "=";
7467
+ readonly NotEqual: "!=";
7468
+ readonly GreaterThan: ">";
7469
+ readonly LessThan: "<";
7470
+ readonly ArrayContains: "array_contains";
7471
+ };
7472
+ export type MetaFilterGroupOrLeafDTOOperatorEnum = (typeof MetaFilterGroupOrLeafDTOOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOOperatorEnum];
7426
7473
  /**
7427
7474
  *
7428
7475
  * @export
@@ -9053,6 +9100,19 @@ export declare const ParamKeyKeyEnum: {
9053
9100
  readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
9054
9101
  };
9055
9102
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
9103
+ /**
9104
+ *
9105
+ * @export
9106
+ * @interface ParamRoleId
9107
+ */
9108
+ export interface ParamRoleId {
9109
+ /**
9110
+ *
9111
+ * @type {string}
9112
+ * @memberof ParamRoleId
9113
+ */
9114
+ roleId: string;
9115
+ }
9056
9116
  /**
9057
9117
  *
9058
9118
  * @export
@@ -9377,6 +9437,94 @@ export interface PlayerActivityMixEntryDTOAPI {
9377
9437
  */
9378
9438
  meta: MetadataOutput;
9379
9439
  }
9440
+ /**
9441
+ *
9442
+ * @export
9443
+ * @interface PlayerBulkAssignRoleErrorDTO
9444
+ */
9445
+ export interface PlayerBulkAssignRoleErrorDTO {
9446
+ /**
9447
+ *
9448
+ * @type {string}
9449
+ * @memberof PlayerBulkAssignRoleErrorDTO
9450
+ */
9451
+ playerId: string;
9452
+ /**
9453
+ *
9454
+ * @type {string}
9455
+ * @memberof PlayerBulkAssignRoleErrorDTO
9456
+ */
9457
+ reason: string;
9458
+ }
9459
+ /**
9460
+ *
9461
+ * @export
9462
+ * @interface PlayerBulkAssignRoleInputDTO
9463
+ */
9464
+ export interface PlayerBulkAssignRoleInputDTO {
9465
+ /**
9466
+ *
9467
+ * @type {Array<string>}
9468
+ * @memberof PlayerBulkAssignRoleInputDTO
9469
+ */
9470
+ playerIds: Array<string>;
9471
+ /**
9472
+ *
9473
+ * @type {string}
9474
+ * @memberof PlayerBulkAssignRoleInputDTO
9475
+ */
9476
+ gameServerId?: string;
9477
+ /**
9478
+ *
9479
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
9480
+ * @memberof PlayerBulkAssignRoleInputDTO
9481
+ */
9482
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
9483
+ }
9484
+ /**
9485
+ *
9486
+ * @export
9487
+ * @interface PlayerBulkAssignRoleOutputDTO
9488
+ */
9489
+ export interface PlayerBulkAssignRoleOutputDTO {
9490
+ /**
9491
+ *
9492
+ * @type {number}
9493
+ * @memberof PlayerBulkAssignRoleOutputDTO
9494
+ */
9495
+ success: number;
9496
+ /**
9497
+ *
9498
+ * @type {number}
9499
+ * @memberof PlayerBulkAssignRoleOutputDTO
9500
+ */
9501
+ failed: number;
9502
+ /**
9503
+ *
9504
+ * @type {Array<PlayerBulkAssignRoleErrorDTO>}
9505
+ * @memberof PlayerBulkAssignRoleOutputDTO
9506
+ */
9507
+ errors: Array<PlayerBulkAssignRoleErrorDTO>;
9508
+ }
9509
+ /**
9510
+ *
9511
+ * @export
9512
+ * @interface PlayerBulkAssignRoleOutputDTOAPI
9513
+ */
9514
+ export interface PlayerBulkAssignRoleOutputDTOAPI {
9515
+ /**
9516
+ *
9517
+ * @type {PlayerBulkAssignRoleOutputDTO}
9518
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9519
+ */
9520
+ data: PlayerBulkAssignRoleOutputDTO;
9521
+ /**
9522
+ *
9523
+ * @type {MetadataOutput}
9524
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9525
+ */
9526
+ meta: MetadataOutput;
9527
+ }
9380
9528
  /**
9381
9529
  *
9382
9530
  * @export
@@ -11122,6 +11270,88 @@ export interface PlayersByItemInputDTO {
11122
11270
  */
11123
11271
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11124
11272
  }
11273
+ /**
11274
+ *
11275
+ * @export
11276
+ * @interface PogBulkAddCurrencyErrorDTO
11277
+ */
11278
+ export interface PogBulkAddCurrencyErrorDTO {
11279
+ /**
11280
+ *
11281
+ * @type {string}
11282
+ * @memberof PogBulkAddCurrencyErrorDTO
11283
+ */
11284
+ playerId: string;
11285
+ /**
11286
+ *
11287
+ * @type {string}
11288
+ * @memberof PogBulkAddCurrencyErrorDTO
11289
+ */
11290
+ reason: string;
11291
+ }
11292
+ /**
11293
+ *
11294
+ * @export
11295
+ * @interface PogBulkAddCurrencyInputDTO
11296
+ */
11297
+ export interface PogBulkAddCurrencyInputDTO {
11298
+ /**
11299
+ *
11300
+ * @type {Array<string>}
11301
+ * @memberof PogBulkAddCurrencyInputDTO
11302
+ */
11303
+ playerIds: Array<string>;
11304
+ /**
11305
+ *
11306
+ * @type {number}
11307
+ * @memberof PogBulkAddCurrencyInputDTO
11308
+ */
11309
+ amount: number;
11310
+ }
11311
+ /**
11312
+ *
11313
+ * @export
11314
+ * @interface PogBulkAddCurrencyOutputDTO
11315
+ */
11316
+ export interface PogBulkAddCurrencyOutputDTO {
11317
+ /**
11318
+ *
11319
+ * @type {number}
11320
+ * @memberof PogBulkAddCurrencyOutputDTO
11321
+ */
11322
+ success: number;
11323
+ /**
11324
+ *
11325
+ * @type {number}
11326
+ * @memberof PogBulkAddCurrencyOutputDTO
11327
+ */
11328
+ failed: number;
11329
+ /**
11330
+ *
11331
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
11332
+ * @memberof PogBulkAddCurrencyOutputDTO
11333
+ */
11334
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
11335
+ }
11336
+ /**
11337
+ *
11338
+ * @export
11339
+ * @interface PogBulkAddCurrencyOutputDTOAPI
11340
+ */
11341
+ export interface PogBulkAddCurrencyOutputDTOAPI {
11342
+ /**
11343
+ *
11344
+ * @type {PogBulkAddCurrencyOutputDTO}
11345
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11346
+ */
11347
+ data: PogBulkAddCurrencyOutputDTO;
11348
+ /**
11349
+ *
11350
+ * @type {MetadataOutput}
11351
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11352
+ */
11353
+ meta: MetadataOutput;
11354
+ }
11125
11355
  /**
11126
11356
  *
11127
11357
  * @export
@@ -19730,15 +19960,15 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
19730
19960
  */
19731
19961
  eventControllerCreate: (eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19732
19962
  /**
19733
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19734
- * @summary Explore events (ClickHouse-backed)
19963
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19964
+ * @summary Explore events
19735
19965
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19736
19966
  * @param {*} [options] Override http request option.
19737
19967
  * @throws {RequiredError}
19738
19968
  */
19739
19969
  eventControllerExplore: (eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19740
19970
  /**
19741
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
19971
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
19742
19972
  * @summary Get event volume time-series with optional grouping
19743
19973
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19744
19974
  * @param {*} [options] Override http request option.
@@ -19792,15 +20022,15 @@ export declare const EventApiFp: (configuration?: Configuration) => {
19792
20022
  */
19793
20023
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
19794
20024
  /**
19795
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19796
- * @summary Explore events (ClickHouse-backed)
20025
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
20026
+ * @summary Explore events
19797
20027
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19798
20028
  * @param {*} [options] Override http request option.
19799
20029
  * @throws {RequiredError}
19800
20030
  */
19801
20031
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>>;
19802
20032
  /**
19803
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
20033
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
19804
20034
  * @summary Get event volume time-series with optional grouping
19805
20035
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19806
20036
  * @param {*} [options] Override http request option.
@@ -19854,15 +20084,15 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
19854
20084
  */
19855
20085
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
19856
20086
  /**
19857
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19858
- * @summary Explore events (ClickHouse-backed)
20087
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
20088
+ * @summary Explore events
19859
20089
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19860
20090
  * @param {*} [options] Override http request option.
19861
20091
  * @throws {RequiredError}
19862
20092
  */
19863
20093
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventExploreOutputDTOAPI>;
19864
20094
  /**
19865
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
20095
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
19866
20096
  * @summary Get event volume time-series with optional grouping
19867
20097
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19868
20098
  * @param {*} [options] Override http request option.
@@ -19919,8 +20149,8 @@ export declare class EventApi extends BaseAPI {
19919
20149
  */
19920
20150
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
19921
20151
  /**
19922
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19923
- * @summary Explore events (ClickHouse-backed)
20152
+ * Cursor-paginated event search. Rows are hydrated with the current display names of their related entities (player, gameserver, module, user). Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
20153
+ * @summary Explore events
19924
20154
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19925
20155
  * @param {*} [options] Override http request option.
19926
20156
  * @throws {RequiredError}
@@ -19928,7 +20158,7 @@ export declare class EventApi extends BaseAPI {
19928
20158
  */
19929
20159
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventExploreOutputDTOAPI, any>>;
19930
20160
  /**
19931
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
20161
+ * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
19932
20162
  * @summary Get event volume time-series with optional grouping
19933
20163
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19934
20164
  * @param {*} [options] Override http request option.
@@ -22337,6 +22567,15 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
22337
22567
  * @throws {RequiredError}
22338
22568
  */
22339
22569
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22570
+ /**
22571
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
22572
+ * @summary Bulk assign role
22573
+ * @param {string} roleId
22574
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
22575
+ * @param {*} [options] Override http request option.
22576
+ * @throws {RequiredError}
22577
+ */
22578
+ playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22340
22579
  /**
22341
22580
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22342
22581
  * @summary Bulk delete
@@ -22443,6 +22682,15 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
22443
22682
  * @throws {RequiredError}
22444
22683
  */
22445
22684
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
22685
+ /**
22686
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
22687
+ * @summary Bulk assign role
22688
+ * @param {string} roleId
22689
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
22690
+ * @param {*} [options] Override http request option.
22691
+ * @throws {RequiredError}
22692
+ */
22693
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
22446
22694
  /**
22447
22695
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22448
22696
  * @summary Bulk delete
@@ -22549,6 +22797,15 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
22549
22797
  * @throws {RequiredError}
22550
22798
  */
22551
22799
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
22800
+ /**
22801
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
22802
+ * @summary Bulk assign role
22803
+ * @param {string} roleId
22804
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
22805
+ * @param {*} [options] Override http request option.
22806
+ * @throws {RequiredError}
22807
+ */
22808
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
22552
22809
  /**
22553
22810
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22554
22811
  * @summary Bulk delete
@@ -22663,6 +22920,16 @@ export declare class PlayerApi extends BaseAPI {
22663
22920
  * @memberof PlayerApi
22664
22921
  */
22665
22922
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
22923
+ /**
22924
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
22925
+ * @summary Bulk assign role
22926
+ * @param {string} roleId
22927
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
22928
+ * @param {*} [options] Override http request option.
22929
+ * @throws {RequiredError}
22930
+ * @memberof PlayerApi
22931
+ */
22932
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
22666
22933
  /**
22667
22934
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22668
22935
  * @summary Bulk delete
@@ -22734,6 +23001,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
22734
23001
  * @throws {RequiredError}
22735
23002
  */
22736
23003
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23004
+ /**
23005
+ * 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`
23006
+ * @summary Bulk add currency
23007
+ * @param {string} gameServerId
23008
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23009
+ * @param {*} [options] Override http request option.
23010
+ * @throws {RequiredError}
23011
+ */
23012
+ playerOnGameServerControllerBulkAddCurrency: (gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22737
23013
  /**
22738
23014
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
22739
23015
  * @summary Bulk delete
@@ -22816,6 +23092,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
22816
23092
  * @throws {RequiredError}
22817
23093
  */
22818
23094
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23095
+ /**
23096
+ * 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`
23097
+ * @summary Bulk add currency
23098
+ * @param {string} gameServerId
23099
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23100
+ * @param {*} [options] Override http request option.
23101
+ * @throws {RequiredError}
23102
+ */
23103
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>>;
22819
23104
  /**
22820
23105
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
22821
23106
  * @summary Bulk delete
@@ -22898,6 +23183,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
22898
23183
  * @throws {RequiredError}
22899
23184
  */
22900
23185
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23186
+ /**
23187
+ * 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`
23188
+ * @summary Bulk add currency
23189
+ * @param {string} gameServerId
23190
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23191
+ * @param {*} [options] Override http request option.
23192
+ * @throws {RequiredError}
23193
+ */
23194
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>;
22901
23195
  /**
22902
23196
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
22903
23197
  * @summary Bulk delete
@@ -22983,6 +23277,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22983
23277
  * @memberof PlayerOnGameServerApi
22984
23278
  */
22985
23279
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23280
+ /**
23281
+ * 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`
23282
+ * @summary Bulk add currency
23283
+ * @param {string} gameServerId
23284
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23285
+ * @param {*} [options] Override http request option.
23286
+ * @throws {RequiredError}
23287
+ * @memberof PlayerOnGameServerApi
23288
+ */
23289
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkAddCurrencyOutputDTOAPI, any>>;
22986
23290
  /**
22987
23291
  * Bulk delete POG records by player IDs for a specific gameserver. Deletes POG records only, Player records remain intact. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkDelete`
22988
23292
  * @summary Bulk delete