@takaro/apiclient 0.0.0-dev.7ef2191 → 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.
@@ -3232,6 +3232,311 @@ export interface EventEntityKilled {
3232
3232
  */
3233
3233
  msg?: string;
3234
3234
  }
3235
+ /**
3236
+ *
3237
+ * @export
3238
+ * @interface EventExploreCursorDTO
3239
+ */
3240
+ export interface EventExploreCursorDTO {
3241
+ /**
3242
+ *
3243
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3244
+ * @memberof EventExploreCursorDTO
3245
+ */
3246
+ time: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3247
+ /**
3248
+ *
3249
+ * @type {string}
3250
+ * @memberof EventExploreCursorDTO
3251
+ */
3252
+ id: string;
3253
+ }
3254
+ /**
3255
+ *
3256
+ * @export
3257
+ * @interface EventExploreFiltersDTO
3258
+ */
3259
+ export interface EventExploreFiltersDTO {
3260
+ /**
3261
+ *
3262
+ * @type {Array<string>}
3263
+ * @memberof EventExploreFiltersDTO
3264
+ */
3265
+ id?: Array<string>;
3266
+ /**
3267
+ *
3268
+ * @type {Array<string>}
3269
+ * @memberof EventExploreFiltersDTO
3270
+ */
3271
+ eventName?: Array<EventExploreFiltersDTOEventNameEnum>;
3272
+ /**
3273
+ *
3274
+ * @type {Array<string>}
3275
+ * @memberof EventExploreFiltersDTO
3276
+ */
3277
+ playerId?: Array<string>;
3278
+ /**
3279
+ *
3280
+ * @type {Array<string>}
3281
+ * @memberof EventExploreFiltersDTO
3282
+ */
3283
+ gameserverId?: Array<string>;
3284
+ /**
3285
+ *
3286
+ * @type {Array<string>}
3287
+ * @memberof EventExploreFiltersDTO
3288
+ */
3289
+ moduleId?: Array<string>;
3290
+ /**
3291
+ *
3292
+ * @type {Array<string>}
3293
+ * @memberof EventExploreFiltersDTO
3294
+ */
3295
+ userId?: Array<string>;
3296
+ /**
3297
+ *
3298
+ * @type {Array<string>}
3299
+ * @memberof EventExploreFiltersDTO
3300
+ */
3301
+ actingUserId?: Array<string>;
3302
+ /**
3303
+ *
3304
+ * @type {Array<string>}
3305
+ * @memberof EventExploreFiltersDTO
3306
+ */
3307
+ actingModuleId?: Array<string>;
3308
+ }
3309
+ export declare const EventExploreFiltersDTOEventNameEnum: {
3310
+ readonly RoleAssigned: "role-assigned";
3311
+ readonly RoleRemoved: "role-removed";
3312
+ readonly RoleCreated: "role-created";
3313
+ readonly RoleUpdated: "role-updated";
3314
+ readonly RoleDeleted: "role-deleted";
3315
+ readonly CommandExecuted: "command-executed";
3316
+ readonly CommandExecutionDenied: "command-execution-denied";
3317
+ readonly HookExecuted: "hook-executed";
3318
+ readonly CronjobExecuted: "cronjob-executed";
3319
+ readonly CurrencyAdded: "currency-added";
3320
+ readonly CurrencyDeducted: "currency-deducted";
3321
+ readonly CurrencyResetAll: "currency-reset-all";
3322
+ readonly SettingsSet: "settings-set";
3323
+ readonly PlayerNewIpDetected: "player-new-ip-detected";
3324
+ readonly PlayerNewNameDetected: "player-new-name-detected";
3325
+ readonly ServerStatusChanged: "server-status-changed";
3326
+ readonly ModuleCreated: "module-created";
3327
+ readonly ModuleUpdated: "module-updated";
3328
+ readonly ModuleDeleted: "module-deleted";
3329
+ readonly ModuleInstalled: "module-installed";
3330
+ readonly ModuleUninstalled: "module-uninstalled";
3331
+ readonly PlayerCreated: "player-created";
3332
+ readonly ShopListingCreated: "shop-listing-created";
3333
+ readonly ShopListingUpdated: "shop-listing-updated";
3334
+ readonly ShopListingDeleted: "shop-listing-deleted";
3335
+ readonly ShopOrderCreated: "shop-order-created";
3336
+ readonly ShopOrderStatusChanged: "shop-order-status-changed";
3337
+ readonly ShopOrderDeliveryFailed: "shop-order-delivery-failed";
3338
+ readonly PlayerLinked: "player-linked";
3339
+ readonly GameserverCreated: "gameserver-created";
3340
+ readonly GameserverUpdated: "gameserver-updated";
3341
+ readonly GameserverDeleted: "gameserver-deleted";
3342
+ readonly PlayerBanned: "player-banned";
3343
+ readonly PlayerUnbanned: "player-unbanned";
3344
+ readonly PlayerDeleted: "player-deleted";
3345
+ readonly ShopActionExecuted: "shop-action-executed";
3346
+ readonly PlayerInventoryChanged: "player-inventory-changed";
3347
+ readonly EventRateLimited: "event-rate-limited";
3348
+ readonly PlayerSyncSnapshot: "player-sync-snapshot";
3349
+ readonly PlayerConnected: "player-connected";
3350
+ readonly PlayerDisconnected: "player-disconnected";
3351
+ readonly ChatMessage: "chat-message";
3352
+ readonly PlayerDeath: "player-death";
3353
+ readonly EntityKilled: "entity-killed";
3354
+ };
3355
+ export type EventExploreFiltersDTOEventNameEnum = (typeof EventExploreFiltersDTOEventNameEnum)[keyof typeof EventExploreFiltersDTOEventNameEnum];
3356
+ /**
3357
+ *
3358
+ * @export
3359
+ * @interface EventExploreInputDTO
3360
+ */
3361
+ export interface EventExploreInputDTO {
3362
+ /**
3363
+ *
3364
+ * @type {EventExploreFiltersDTO}
3365
+ * @memberof EventExploreInputDTO
3366
+ */
3367
+ filters?: EventExploreFiltersDTO;
3368
+ /**
3369
+ *
3370
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3371
+ * @memberof EventExploreInputDTO
3372
+ */
3373
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3374
+ /**
3375
+ *
3376
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3377
+ * @memberof EventExploreInputDTO
3378
+ */
3379
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3380
+ /**
3381
+ *
3382
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3383
+ * @memberof EventExploreInputDTO
3384
+ */
3385
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3386
+ /**
3387
+ *
3388
+ * @type {EventExploreCursorDTO}
3389
+ * @memberof EventExploreInputDTO
3390
+ */
3391
+ cursor?: EventExploreCursorDTO;
3392
+ /**
3393
+ *
3394
+ * @type {number}
3395
+ * @memberof EventExploreInputDTO
3396
+ */
3397
+ limit?: number;
3398
+ }
3399
+ /**
3400
+ *
3401
+ * @export
3402
+ * @interface EventExploreOutputDTO
3403
+ */
3404
+ export interface EventExploreOutputDTO {
3405
+ /**
3406
+ *
3407
+ * @type {Array<EventExploreRowDTO>}
3408
+ * @memberof EventExploreOutputDTO
3409
+ */
3410
+ rows: Array<EventExploreRowDTO>;
3411
+ /**
3412
+ *
3413
+ * @type {any}
3414
+ * @memberof EventExploreOutputDTO
3415
+ */
3416
+ nextCursor?: any;
3417
+ }
3418
+ /**
3419
+ *
3420
+ * @export
3421
+ * @interface EventExploreOutputDTOAPI
3422
+ */
3423
+ export interface EventExploreOutputDTOAPI {
3424
+ /**
3425
+ *
3426
+ * @type {EventExploreOutputDTO}
3427
+ * @memberof EventExploreOutputDTOAPI
3428
+ */
3429
+ data: EventExploreOutputDTO;
3430
+ /**
3431
+ *
3432
+ * @type {MetadataOutput}
3433
+ * @memberof EventExploreOutputDTOAPI
3434
+ */
3435
+ meta: MetadataOutput;
3436
+ }
3437
+ /**
3438
+ *
3439
+ * @export
3440
+ * @interface EventExploreRowDTO
3441
+ */
3442
+ export interface EventExploreRowDTO {
3443
+ /**
3444
+ *
3445
+ * @type {string}
3446
+ * @memberof EventExploreRowDTO
3447
+ */
3448
+ id: string;
3449
+ /**
3450
+ *
3451
+ * @type {string}
3452
+ * @memberof EventExploreRowDTO
3453
+ */
3454
+ eventName: string;
3455
+ /**
3456
+ *
3457
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
3458
+ * @memberof EventExploreRowDTO
3459
+ */
3460
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
3461
+ /**
3462
+ *
3463
+ * @type {string}
3464
+ * @memberof EventExploreRowDTO
3465
+ */
3466
+ playerId?: string;
3467
+ /**
3468
+ *
3469
+ * @type {string}
3470
+ * @memberof EventExploreRowDTO
3471
+ */
3472
+ playerName?: string;
3473
+ /**
3474
+ *
3475
+ * @type {string}
3476
+ * @memberof EventExploreRowDTO
3477
+ */
3478
+ gameserverId?: string;
3479
+ /**
3480
+ *
3481
+ * @type {string}
3482
+ * @memberof EventExploreRowDTO
3483
+ */
3484
+ gameServerName?: string;
3485
+ /**
3486
+ *
3487
+ * @type {string}
3488
+ * @memberof EventExploreRowDTO
3489
+ */
3490
+ moduleId?: string;
3491
+ /**
3492
+ *
3493
+ * @type {string}
3494
+ * @memberof EventExploreRowDTO
3495
+ */
3496
+ moduleName?: string;
3497
+ /**
3498
+ *
3499
+ * @type {string}
3500
+ * @memberof EventExploreRowDTO
3501
+ */
3502
+ userId?: string;
3503
+ /**
3504
+ *
3505
+ * @type {string}
3506
+ * @memberof EventExploreRowDTO
3507
+ */
3508
+ userName?: string;
3509
+ /**
3510
+ *
3511
+ * @type {string}
3512
+ * @memberof EventExploreRowDTO
3513
+ */
3514
+ actingUserId?: string;
3515
+ /**
3516
+ *
3517
+ * @type {string}
3518
+ * @memberof EventExploreRowDTO
3519
+ */
3520
+ actingUserName?: string;
3521
+ /**
3522
+ *
3523
+ * @type {string}
3524
+ * @memberof EventExploreRowDTO
3525
+ */
3526
+ actingModuleId?: string;
3527
+ /**
3528
+ *
3529
+ * @type {string}
3530
+ * @memberof EventExploreRowDTO
3531
+ */
3532
+ actingModuleName?: string;
3533
+ /**
3534
+ *
3535
+ * @type {object}
3536
+ * @memberof EventExploreRowDTO
3537
+ */
3538
+ meta: object;
3539
+ }
3235
3540
  /**
3236
3541
  *
3237
3542
  * @export
@@ -3653,28 +3958,183 @@ export interface EventSearchInputDTO {
3653
3958
  /**
3654
3959
  *
3655
3960
  * @type {string}
3656
- * @memberof EventSearchInputDTO
3961
+ * @memberof EventSearchInputDTO
3962
+ */
3963
+ sortBy?: string;
3964
+ /**
3965
+ *
3966
+ * @type {string}
3967
+ * @memberof EventSearchInputDTO
3968
+ */
3969
+ sortDirection?: EventSearchInputDTOSortDirectionEnum;
3970
+ }
3971
+ export declare const EventSearchInputDTOExtendEnum: {
3972
+ readonly Module: "module";
3973
+ readonly GameServer: "gameServer";
3974
+ readonly Player: "player";
3975
+ readonly User: "user";
3976
+ };
3977
+ export type EventSearchInputDTOExtendEnum = (typeof EventSearchInputDTOExtendEnum)[keyof typeof EventSearchInputDTOExtendEnum];
3978
+ export declare const EventSearchInputDTOSortDirectionEnum: {
3979
+ readonly Asc: "asc";
3980
+ readonly Desc: "desc";
3981
+ };
3982
+ export type EventSearchInputDTOSortDirectionEnum = (typeof EventSearchInputDTOSortDirectionEnum)[keyof typeof EventSearchInputDTOSortDirectionEnum];
3983
+ /**
3984
+ *
3985
+ * @export
3986
+ * @interface EventVolumeDimensionTotalDTO
3987
+ */
3988
+ export interface EventVolumeDimensionTotalDTO {
3989
+ /**
3990
+ *
3991
+ * @type {string}
3992
+ * @memberof EventVolumeDimensionTotalDTO
3993
+ */
3994
+ key: string;
3995
+ /**
3996
+ *
3997
+ * @type {string}
3998
+ * @memberof EventVolumeDimensionTotalDTO
3999
+ */
4000
+ name?: string;
4001
+ /**
4002
+ *
4003
+ * @type {number}
4004
+ * @memberof EventVolumeDimensionTotalDTO
4005
+ */
4006
+ count: number;
4007
+ }
4008
+ /**
4009
+ *
4010
+ * @export
4011
+ * @interface EventVolumeInputDTO
4012
+ */
4013
+ export interface EventVolumeInputDTO {
4014
+ /**
4015
+ *
4016
+ * @type {EventExploreFiltersDTO}
4017
+ * @memberof EventVolumeInputDTO
4018
+ */
4019
+ filters?: EventExploreFiltersDTO;
4020
+ /**
4021
+ *
4022
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4023
+ * @memberof EventVolumeInputDTO
4024
+ */
4025
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4026
+ /**
4027
+ *
4028
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4029
+ * @memberof EventVolumeInputDTO
4030
+ */
4031
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4032
+ /**
4033
+ *
4034
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4035
+ * @memberof EventVolumeInputDTO
4036
+ */
4037
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4038
+ /**
4039
+ *
4040
+ * @type {string}
4041
+ * @memberof EventVolumeInputDTO
4042
+ */
4043
+ groupBy?: EventVolumeInputDTOGroupByEnum;
4044
+ /**
4045
+ *
4046
+ * @type {string}
4047
+ * @memberof EventVolumeInputDTO
4048
+ */
4049
+ period?: string;
4050
+ }
4051
+ export declare const EventVolumeInputDTOGroupByEnum: {
4052
+ readonly EventName: "eventName";
4053
+ readonly GameServerId: "gameServerId";
4054
+ };
4055
+ export type EventVolumeInputDTOGroupByEnum = (typeof EventVolumeInputDTOGroupByEnum)[keyof typeof EventVolumeInputDTOGroupByEnum];
4056
+ /**
4057
+ *
4058
+ * @export
4059
+ * @interface EventVolumeOutputDTO
4060
+ */
4061
+ export interface EventVolumeOutputDTO {
4062
+ /**
4063
+ *
4064
+ * @type {Array<EventVolumeSeriesDTO>}
4065
+ * @memberof EventVolumeOutputDTO
4066
+ */
4067
+ series: Array<EventVolumeSeriesDTO>;
4068
+ /**
4069
+ *
4070
+ * @type {Array<EventVolumeDimensionTotalDTO>}
4071
+ * @memberof EventVolumeOutputDTO
4072
+ */
4073
+ totalsByDimension: Array<EventVolumeDimensionTotalDTO>;
4074
+ }
4075
+ /**
4076
+ *
4077
+ * @export
4078
+ * @interface EventVolumeOutputDTOAPI
4079
+ */
4080
+ export interface EventVolumeOutputDTOAPI {
4081
+ /**
4082
+ *
4083
+ * @type {EventVolumeOutputDTO}
4084
+ * @memberof EventVolumeOutputDTOAPI
4085
+ */
4086
+ data: EventVolumeOutputDTO;
4087
+ /**
4088
+ *
4089
+ * @type {MetadataOutput}
4090
+ * @memberof EventVolumeOutputDTOAPI
4091
+ */
4092
+ meta: MetadataOutput;
4093
+ }
4094
+ /**
4095
+ *
4096
+ * @export
4097
+ * @interface EventVolumePointDTO
4098
+ */
4099
+ export interface EventVolumePointDTO {
4100
+ /**
4101
+ *
4102
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
4103
+ * @memberof EventVolumePointDTO
4104
+ */
4105
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
4106
+ /**
4107
+ *
4108
+ * @type {number}
4109
+ * @memberof EventVolumePointDTO
4110
+ */
4111
+ value: number;
4112
+ }
4113
+ /**
4114
+ *
4115
+ * @export
4116
+ * @interface EventVolumeSeriesDTO
4117
+ */
4118
+ export interface EventVolumeSeriesDTO {
4119
+ /**
4120
+ *
4121
+ * @type {string}
4122
+ * @memberof EventVolumeSeriesDTO
4123
+ */
4124
+ key: string;
4125
+ /**
4126
+ *
4127
+ * @type {string}
4128
+ * @memberof EventVolumeSeriesDTO
3657
4129
  */
3658
- sortBy?: string;
4130
+ name?: string;
3659
4131
  /**
3660
4132
  *
3661
- * @type {string}
3662
- * @memberof EventSearchInputDTO
4133
+ * @type {Array<EventVolumePointDTO>}
4134
+ * @memberof EventVolumeSeriesDTO
3663
4135
  */
3664
- sortDirection?: EventSearchInputDTOSortDirectionEnum;
4136
+ points: Array<EventVolumePointDTO>;
3665
4137
  }
3666
- export declare const EventSearchInputDTOExtendEnum: {
3667
- readonly Module: "module";
3668
- readonly GameServer: "gameServer";
3669
- readonly Player: "player";
3670
- readonly User: "user";
3671
- };
3672
- export type EventSearchInputDTOExtendEnum = (typeof EventSearchInputDTOExtendEnum)[keyof typeof EventSearchInputDTOExtendEnum];
3673
- export declare const EventSearchInputDTOSortDirectionEnum: {
3674
- readonly Asc: "asc";
3675
- readonly Desc: "desc";
3676
- };
3677
- export type EventSearchInputDTOSortDirectionEnum = (typeof EventSearchInputDTOSortDirectionEnum)[keyof typeof EventSearchInputDTOSortDirectionEnum];
3678
4138
  /**
3679
4139
  *
3680
4140
  * @export
@@ -6960,6 +7420,56 @@ export interface MessageSendInputDTO {
6960
7420
  */
6961
7421
  opts?: IMessageOptsDTO;
6962
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];
6963
7473
  /**
6964
7474
  *
6965
7475
  * @export
@@ -8590,6 +9100,19 @@ export declare const ParamKeyKeyEnum: {
8590
9100
  readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
8591
9101
  };
8592
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
+ }
8593
9116
  /**
8594
9117
  *
8595
9118
  * @export
@@ -8914,6 +9437,94 @@ export interface PlayerActivityMixEntryDTOAPI {
8914
9437
  */
8915
9438
  meta: MetadataOutput;
8916
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
+ }
8917
9528
  /**
8918
9529
  *
8919
9530
  * @export
@@ -10659,6 +11270,88 @@ export interface PlayersByItemInputDTO {
10659
11270
  */
10660
11271
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10661
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
+ }
10662
11355
  /**
10663
11356
  *
10664
11357
  * @export
@@ -19266,6 +19959,22 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
19266
19959
  * @throws {RequiredError}
19267
19960
  */
19268
19961
  eventControllerCreate: (eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19962
+ /**
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
19965
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19966
+ * @param {*} [options] Override http request option.
19967
+ * @throws {RequiredError}
19968
+ */
19969
+ eventControllerExplore: (eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19970
+ /**
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`
19972
+ * @summary Get event volume time-series with optional grouping
19973
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19974
+ * @param {*} [options] Override http request option.
19975
+ * @throws {RequiredError}
19976
+ */
19977
+ eventControllerExploreVolume: (eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19269
19978
  /**
19270
19979
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
19271
19980
  * @summary Export events to CSV
@@ -19312,6 +20021,22 @@ export declare const EventApiFp: (configuration?: Configuration) => {
19312
20021
  * @throws {RequiredError}
19313
20022
  */
19314
20023
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
20024
+ /**
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
20027
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20028
+ * @param {*} [options] Override http request option.
20029
+ * @throws {RequiredError}
20030
+ */
20031
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>>;
20032
+ /**
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`
20034
+ * @summary Get event volume time-series with optional grouping
20035
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20036
+ * @param {*} [options] Override http request option.
20037
+ * @throws {RequiredError}
20038
+ */
20039
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventVolumeOutputDTOAPI>>;
19315
20040
  /**
19316
20041
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
19317
20042
  * @summary Export events to CSV
@@ -19358,6 +20083,22 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
19358
20083
  * @throws {RequiredError}
19359
20084
  */
19360
20085
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
20086
+ /**
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
20089
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20090
+ * @param {*} [options] Override http request option.
20091
+ * @throws {RequiredError}
20092
+ */
20093
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventExploreOutputDTOAPI>;
20094
+ /**
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`
20096
+ * @summary Get event volume time-series with optional grouping
20097
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20098
+ * @param {*} [options] Override http request option.
20099
+ * @throws {RequiredError}
20100
+ */
20101
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventVolumeOutputDTOAPI>;
19361
20102
  /**
19362
20103
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
19363
20104
  * @summary Export events to CSV
@@ -19407,6 +20148,24 @@ export declare class EventApi extends BaseAPI {
19407
20148
  * @memberof EventApi
19408
20149
  */
19409
20150
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
20151
+ /**
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
20154
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20155
+ * @param {*} [options] Override http request option.
20156
+ * @throws {RequiredError}
20157
+ * @memberof EventApi
20158
+ */
20159
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventExploreOutputDTOAPI, any>>;
20160
+ /**
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`
20162
+ * @summary Get event volume time-series with optional grouping
20163
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20164
+ * @param {*} [options] Override http request option.
20165
+ * @throws {RequiredError}
20166
+ * @memberof EventApi
20167
+ */
20168
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventVolumeOutputDTOAPI, any>>;
19410
20169
  /**
19411
20170
  * Export events matching the search criteria to CSV format. Accepts the same parameters as the search endpoint. Maximum time range is 90 days. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExport`
19412
20171
  * @summary Export events to CSV
@@ -21808,6 +22567,15 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
21808
22567
  * @throws {RequiredError}
21809
22568
  */
21810
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>;
21811
22579
  /**
21812
22580
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
21813
22581
  * @summary Bulk delete
@@ -21914,6 +22682,15 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
21914
22682
  * @throws {RequiredError}
21915
22683
  */
21916
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>>;
21917
22694
  /**
21918
22695
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
21919
22696
  * @summary Bulk delete
@@ -22020,6 +22797,15 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
22020
22797
  * @throws {RequiredError}
22021
22798
  */
22022
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>;
22023
22809
  /**
22024
22810
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22025
22811
  * @summary Bulk delete
@@ -22134,6 +22920,16 @@ export declare class PlayerApi extends BaseAPI {
22134
22920
  * @memberof PlayerApi
22135
22921
  */
22136
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>>;
22137
22933
  /**
22138
22934
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22139
22935
  * @summary Bulk delete
@@ -22205,6 +23001,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
22205
23001
  * @throws {RequiredError}
22206
23002
  */
22207
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>;
22208
23013
  /**
22209
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`
22210
23015
  * @summary Bulk delete
@@ -22287,6 +23092,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
22287
23092
  * @throws {RequiredError}
22288
23093
  */
22289
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>>;
22290
23104
  /**
22291
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`
22292
23106
  * @summary Bulk delete
@@ -22369,6 +23183,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
22369
23183
  * @throws {RequiredError}
22370
23184
  */
22371
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>;
22372
23195
  /**
22373
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`
22374
23197
  * @summary Bulk delete
@@ -22454,6 +23277,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22454
23277
  * @memberof PlayerOnGameServerApi
22455
23278
  */
22456
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>>;
22457
23290
  /**
22458
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`
22459
23292
  * @summary Bulk delete