@takaro/apiclient 0.0.0-dev.7ef2191 → 0.0.0-dev.814735d

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
@@ -3678,44 +3983,199 @@ export type EventSearchInputDTOSortDirectionEnum = (typeof EventSearchInputDTOSo
3678
3983
  /**
3679
3984
  *
3680
3985
  * @export
3681
- * @interface FunctionCreateDTO
3986
+ * @interface EventVolumeDimensionTotalDTO
3682
3987
  */
3683
- export interface FunctionCreateDTO {
3988
+ export interface EventVolumeDimensionTotalDTO {
3684
3989
  /**
3685
3990
  *
3686
3991
  * @type {string}
3687
- * @memberof FunctionCreateDTO
3992
+ * @memberof EventVolumeDimensionTotalDTO
3688
3993
  */
3689
- code?: string;
3994
+ key: string;
3690
3995
  /**
3691
3996
  *
3692
3997
  * @type {string}
3693
- * @memberof FunctionCreateDTO
3998
+ * @memberof EventVolumeDimensionTotalDTO
3694
3999
  */
3695
4000
  name?: string;
3696
4001
  /**
3697
4002
  *
3698
- * @type {string}
3699
- * @memberof FunctionCreateDTO
3700
- */
3701
- description?: string;
3702
- /**
3703
- *
3704
- * @type {string}
3705
- * @memberof FunctionCreateDTO
4003
+ * @type {number}
4004
+ * @memberof EventVolumeDimensionTotalDTO
3706
4005
  */
3707
- versionId?: string;
4006
+ count: number;
3708
4007
  }
3709
4008
  /**
3710
4009
  *
3711
4010
  * @export
3712
- * @interface FunctionOutputArrayDTOAPI
4011
+ * @interface EventVolumeInputDTO
3713
4012
  */
3714
- export interface FunctionOutputArrayDTOAPI {
4013
+ export interface EventVolumeInputDTO {
3715
4014
  /**
3716
4015
  *
3717
- * @type {Array<FunctionOutputDTO>}
3718
- * @memberof FunctionOutputArrayDTOAPI
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
4129
+ */
4130
+ name?: string;
4131
+ /**
4132
+ *
4133
+ * @type {Array<EventVolumePointDTO>}
4134
+ * @memberof EventVolumeSeriesDTO
4135
+ */
4136
+ points: Array<EventVolumePointDTO>;
4137
+ }
4138
+ /**
4139
+ *
4140
+ * @export
4141
+ * @interface FunctionCreateDTO
4142
+ */
4143
+ export interface FunctionCreateDTO {
4144
+ /**
4145
+ *
4146
+ * @type {string}
4147
+ * @memberof FunctionCreateDTO
4148
+ */
4149
+ code?: string;
4150
+ /**
4151
+ *
4152
+ * @type {string}
4153
+ * @memberof FunctionCreateDTO
4154
+ */
4155
+ name?: string;
4156
+ /**
4157
+ *
4158
+ * @type {string}
4159
+ * @memberof FunctionCreateDTO
4160
+ */
4161
+ description?: string;
4162
+ /**
4163
+ *
4164
+ * @type {string}
4165
+ * @memberof FunctionCreateDTO
4166
+ */
4167
+ versionId?: string;
4168
+ }
4169
+ /**
4170
+ *
4171
+ * @export
4172
+ * @interface FunctionOutputArrayDTOAPI
4173
+ */
4174
+ export interface FunctionOutputArrayDTOAPI {
4175
+ /**
4176
+ *
4177
+ * @type {Array<FunctionOutputDTO>}
4178
+ * @memberof FunctionOutputArrayDTOAPI
3719
4179
  */
3720
4180
  data: Array<FunctionOutputDTO>;
3721
4181
  /**
@@ -6736,6 +7196,32 @@ export interface LoginOutputDTOAPI {
6736
7196
  */
6737
7197
  meta: MetadataOutput;
6738
7198
  }
7199
+ /**
7200
+ *
7201
+ * @export
7202
+ * @interface LoginQueryParams
7203
+ */
7204
+ export interface LoginQueryParams {
7205
+ /**
7206
+ *
7207
+ * @type {string}
7208
+ * @memberof LoginQueryParams
7209
+ */
7210
+ redirect?: string;
7211
+ }
7212
+ /**
7213
+ *
7214
+ * @export
7215
+ * @interface LogoutQueryParams
7216
+ */
7217
+ export interface LogoutQueryParams {
7218
+ /**
7219
+ *
7220
+ * @type {string}
7221
+ * @memberof LogoutQueryParams
7222
+ */
7223
+ redirect?: string;
7224
+ }
6739
7225
  /**
6740
7226
  *
6741
7227
  * @export
@@ -6859,7 +7345,7 @@ export interface MeOutputDTO {
6859
7345
  * @type {UserOutputWithRolesDTO}
6860
7346
  * @memberof MeOutputDTO
6861
7347
  */
6862
- user: UserOutputWithRolesDTO;
7348
+ user?: UserOutputWithRolesDTO;
6863
7349
  /**
6864
7350
  *
6865
7351
  * @type {Array<DomainOutputDTO>}
@@ -6871,7 +7357,7 @@ export interface MeOutputDTO {
6871
7357
  * @type {string}
6872
7358
  * @memberof MeOutputDTO
6873
7359
  */
6874
- domain: string;
7360
+ domain?: string;
6875
7361
  /**
6876
7362
  *
6877
7363
  * @type {PlayerOutputWithRolesDTO}
@@ -6960,6 +7446,56 @@ export interface MessageSendInputDTO {
6960
7446
  */
6961
7447
  opts?: IMessageOptsDTO;
6962
7448
  }
7449
+ /**
7450
+ *
7451
+ * @export
7452
+ * @interface MetaFilterGroupOrLeafDTO
7453
+ */
7454
+ export interface MetaFilterGroupOrLeafDTO {
7455
+ /**
7456
+ *
7457
+ * @type {string}
7458
+ * @memberof MetaFilterGroupOrLeafDTO
7459
+ */
7460
+ logicalOperator?: MetaFilterGroupOrLeafDTOLogicalOperatorEnum;
7461
+ /**
7462
+ *
7463
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
7464
+ * @memberof MetaFilterGroupOrLeafDTO
7465
+ */
7466
+ filters?: Array<MetaFilterGroupOrLeafDTO>;
7467
+ /**
7468
+ *
7469
+ * @type {string}
7470
+ * @memberof MetaFilterGroupOrLeafDTO
7471
+ */
7472
+ field?: string;
7473
+ /**
7474
+ *
7475
+ * @type {string}
7476
+ * @memberof MetaFilterGroupOrLeafDTO
7477
+ */
7478
+ operator?: MetaFilterGroupOrLeafDTOOperatorEnum;
7479
+ /**
7480
+ *
7481
+ * @type {string}
7482
+ * @memberof MetaFilterGroupOrLeafDTO
7483
+ */
7484
+ value?: string;
7485
+ }
7486
+ export declare const MetaFilterGroupOrLeafDTOLogicalOperatorEnum: {
7487
+ readonly And: "AND";
7488
+ readonly Or: "OR";
7489
+ };
7490
+ export type MetaFilterGroupOrLeafDTOLogicalOperatorEnum = (typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum];
7491
+ export declare const MetaFilterGroupOrLeafDTOOperatorEnum: {
7492
+ readonly Equal: "=";
7493
+ readonly NotEqual: "!=";
7494
+ readonly GreaterThan: ">";
7495
+ readonly LessThan: "<";
7496
+ readonly ArrayContains: "array_contains";
7497
+ };
7498
+ export type MetaFilterGroupOrLeafDTOOperatorEnum = (typeof MetaFilterGroupOrLeafDTOOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOOperatorEnum];
6963
7499
  /**
6964
7500
  *
6965
7501
  * @export
@@ -7309,6 +7845,94 @@ export interface ModuleInstallParamId {
7309
7845
  */
7310
7846
  gameServerId: string;
7311
7847
  }
7848
+ /**
7849
+ *
7850
+ * @export
7851
+ * @interface ModuleInstallationKpisDTO
7852
+ */
7853
+ export interface ModuleInstallationKpisDTO {
7854
+ /**
7855
+ *
7856
+ * @type {number}
7857
+ * @memberof ModuleInstallationKpisDTO
7858
+ */
7859
+ runs: number;
7860
+ /**
7861
+ *
7862
+ * @type {number}
7863
+ * @memberof ModuleInstallationKpisDTO
7864
+ */
7865
+ failures: number;
7866
+ /**
7867
+ *
7868
+ * @type {number}
7869
+ * @memberof ModuleInstallationKpisDTO
7870
+ */
7871
+ successRate: number;
7872
+ }
7873
+ /**
7874
+ *
7875
+ * @export
7876
+ * @interface ModuleInstallationKpisDTOAPI
7877
+ */
7878
+ export interface ModuleInstallationKpisDTOAPI {
7879
+ /**
7880
+ *
7881
+ * @type {ModuleInstallationKpisDTO}
7882
+ * @memberof ModuleInstallationKpisDTOAPI
7883
+ */
7884
+ data: ModuleInstallationKpisDTO;
7885
+ /**
7886
+ *
7887
+ * @type {MetadataOutput}
7888
+ * @memberof ModuleInstallationKpisDTOAPI
7889
+ */
7890
+ meta: MetadataOutput;
7891
+ }
7892
+ /**
7893
+ *
7894
+ * @export
7895
+ * @interface ModuleInstallationKpisQueryDTO
7896
+ */
7897
+ export interface ModuleInstallationKpisQueryDTO {
7898
+ /**
7899
+ *
7900
+ * @type {string}
7901
+ * @memberof ModuleInstallationKpisQueryDTO
7902
+ */
7903
+ startDate?: string;
7904
+ /**
7905
+ *
7906
+ * @type {string}
7907
+ * @memberof ModuleInstallationKpisQueryDTO
7908
+ */
7909
+ endDate?: string;
7910
+ /**
7911
+ *
7912
+ * @type {string}
7913
+ * @memberof ModuleInstallationKpisQueryDTO
7914
+ */
7915
+ gameServerId: string;
7916
+ /**
7917
+ *
7918
+ * @type {string}
7919
+ * @memberof ModuleInstallationKpisQueryDTO
7920
+ */
7921
+ moduleId: string;
7922
+ /**
7923
+ *
7924
+ * @type {string}
7925
+ * @memberof ModuleInstallationKpisQueryDTO
7926
+ */
7927
+ period?: ModuleInstallationKpisQueryDTOPeriodEnum;
7928
+ }
7929
+ export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
7930
+ readonly _24h: "24h";
7931
+ readonly _7d: "7d";
7932
+ readonly _30d: "30d";
7933
+ readonly _90d: "90d";
7934
+ };
7935
+ export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
7312
7936
  /**
7313
7937
  *
7314
7938
  * @export
@@ -7912,6 +8536,12 @@ export interface ModuleTransferVersionDTO {
7912
8536
  * @memberof ModuleTransferVersionDTO
7913
8537
  */
7914
8538
  uiSchema: string;
8539
+ /**
8540
+ *
8541
+ * @type {string}
8542
+ * @memberof ModuleTransferVersionDTO
8543
+ */
8544
+ defaultSystemConfig?: string;
7915
8545
  /**
7916
8546
  *
7917
8547
  * @type {Array<ICommand>}
@@ -8066,6 +8696,24 @@ export interface ModuleVersionOutputDTO {
8066
8696
  * @memberof ModuleVersionOutputDTO
8067
8697
  */
8068
8698
  moduleId: string;
8699
+ /**
8700
+ *
8701
+ * @type {string}
8702
+ * @memberof ModuleVersionOutputDTO
8703
+ */
8704
+ registryId?: string;
8705
+ /**
8706
+ *
8707
+ * @type {string}
8708
+ * @memberof ModuleVersionOutputDTO
8709
+ */
8710
+ sourceModuleName?: string;
8711
+ /**
8712
+ *
8713
+ * @type {string}
8714
+ * @memberof ModuleVersionOutputDTO
8715
+ */
8716
+ sourceVersion?: string;
8069
8717
  /**
8070
8718
  *
8071
8719
  * @type {Array<CronJobOutputDTO>}
@@ -8593,9 +9241,22 @@ export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyE
8593
9241
  /**
8594
9242
  *
8595
9243
  * @export
8596
- * @interface ParamSenderReceiver
9244
+ * @interface ParamRoleId
8597
9245
  */
8598
- export interface ParamSenderReceiver {
9246
+ export interface ParamRoleId {
9247
+ /**
9248
+ *
9249
+ * @type {string}
9250
+ * @memberof ParamRoleId
9251
+ */
9252
+ roleId: string;
9253
+ }
9254
+ /**
9255
+ *
9256
+ * @export
9257
+ * @interface ParamSenderReceiver
9258
+ */
9259
+ export interface ParamSenderReceiver {
8599
9260
  /**
8600
9261
  *
8601
9262
  * @type {string}
@@ -8914,6 +9575,94 @@ export interface PlayerActivityMixEntryDTOAPI {
8914
9575
  */
8915
9576
  meta: MetadataOutput;
8916
9577
  }
9578
+ /**
9579
+ *
9580
+ * @export
9581
+ * @interface PlayerBulkAssignRoleErrorDTO
9582
+ */
9583
+ export interface PlayerBulkAssignRoleErrorDTO {
9584
+ /**
9585
+ *
9586
+ * @type {string}
9587
+ * @memberof PlayerBulkAssignRoleErrorDTO
9588
+ */
9589
+ playerId: string;
9590
+ /**
9591
+ *
9592
+ * @type {string}
9593
+ * @memberof PlayerBulkAssignRoleErrorDTO
9594
+ */
9595
+ reason: string;
9596
+ }
9597
+ /**
9598
+ *
9599
+ * @export
9600
+ * @interface PlayerBulkAssignRoleInputDTO
9601
+ */
9602
+ export interface PlayerBulkAssignRoleInputDTO {
9603
+ /**
9604
+ *
9605
+ * @type {Array<string>}
9606
+ * @memberof PlayerBulkAssignRoleInputDTO
9607
+ */
9608
+ playerIds: Array<string>;
9609
+ /**
9610
+ *
9611
+ * @type {string}
9612
+ * @memberof PlayerBulkAssignRoleInputDTO
9613
+ */
9614
+ gameServerId?: string;
9615
+ /**
9616
+ *
9617
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
9618
+ * @memberof PlayerBulkAssignRoleInputDTO
9619
+ */
9620
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
9621
+ }
9622
+ /**
9623
+ *
9624
+ * @export
9625
+ * @interface PlayerBulkAssignRoleOutputDTO
9626
+ */
9627
+ export interface PlayerBulkAssignRoleOutputDTO {
9628
+ /**
9629
+ *
9630
+ * @type {number}
9631
+ * @memberof PlayerBulkAssignRoleOutputDTO
9632
+ */
9633
+ success: number;
9634
+ /**
9635
+ *
9636
+ * @type {number}
9637
+ * @memberof PlayerBulkAssignRoleOutputDTO
9638
+ */
9639
+ failed: number;
9640
+ /**
9641
+ *
9642
+ * @type {Array<PlayerBulkAssignRoleErrorDTO>}
9643
+ * @memberof PlayerBulkAssignRoleOutputDTO
9644
+ */
9645
+ errors: Array<PlayerBulkAssignRoleErrorDTO>;
9646
+ }
9647
+ /**
9648
+ *
9649
+ * @export
9650
+ * @interface PlayerBulkAssignRoleOutputDTOAPI
9651
+ */
9652
+ export interface PlayerBulkAssignRoleOutputDTOAPI {
9653
+ /**
9654
+ *
9655
+ * @type {PlayerBulkAssignRoleOutputDTO}
9656
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9657
+ */
9658
+ data: PlayerBulkAssignRoleOutputDTO;
9659
+ /**
9660
+ *
9661
+ * @type {MetadataOutput}
9662
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9663
+ */
9664
+ meta: MetadataOutput;
9665
+ }
8917
9666
  /**
8918
9667
  *
8919
9668
  * @export
@@ -10659,6 +11408,88 @@ export interface PlayersByItemInputDTO {
10659
11408
  */
10660
11409
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10661
11410
  }
11411
+ /**
11412
+ *
11413
+ * @export
11414
+ * @interface PogBulkAddCurrencyErrorDTO
11415
+ */
11416
+ export interface PogBulkAddCurrencyErrorDTO {
11417
+ /**
11418
+ *
11419
+ * @type {string}
11420
+ * @memberof PogBulkAddCurrencyErrorDTO
11421
+ */
11422
+ playerId: string;
11423
+ /**
11424
+ *
11425
+ * @type {string}
11426
+ * @memberof PogBulkAddCurrencyErrorDTO
11427
+ */
11428
+ reason: string;
11429
+ }
11430
+ /**
11431
+ *
11432
+ * @export
11433
+ * @interface PogBulkAddCurrencyInputDTO
11434
+ */
11435
+ export interface PogBulkAddCurrencyInputDTO {
11436
+ /**
11437
+ *
11438
+ * @type {Array<string>}
11439
+ * @memberof PogBulkAddCurrencyInputDTO
11440
+ */
11441
+ playerIds: Array<string>;
11442
+ /**
11443
+ *
11444
+ * @type {number}
11445
+ * @memberof PogBulkAddCurrencyInputDTO
11446
+ */
11447
+ amount: number;
11448
+ }
11449
+ /**
11450
+ *
11451
+ * @export
11452
+ * @interface PogBulkAddCurrencyOutputDTO
11453
+ */
11454
+ export interface PogBulkAddCurrencyOutputDTO {
11455
+ /**
11456
+ *
11457
+ * @type {number}
11458
+ * @memberof PogBulkAddCurrencyOutputDTO
11459
+ */
11460
+ success: number;
11461
+ /**
11462
+ *
11463
+ * @type {number}
11464
+ * @memberof PogBulkAddCurrencyOutputDTO
11465
+ */
11466
+ failed: number;
11467
+ /**
11468
+ *
11469
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
11470
+ * @memberof PogBulkAddCurrencyOutputDTO
11471
+ */
11472
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
11473
+ }
11474
+ /**
11475
+ *
11476
+ * @export
11477
+ * @interface PogBulkAddCurrencyOutputDTOAPI
11478
+ */
11479
+ export interface PogBulkAddCurrencyOutputDTOAPI {
11480
+ /**
11481
+ *
11482
+ * @type {PogBulkAddCurrencyOutputDTO}
11483
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11484
+ */
11485
+ data: PogBulkAddCurrencyOutputDTO;
11486
+ /**
11487
+ *
11488
+ * @type {MetadataOutput}
11489
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11490
+ */
11491
+ meta: MetadataOutput;
11492
+ }
10662
11493
  /**
10663
11494
  *
10664
11495
  * @export
@@ -10705,221 +11536,601 @@ export interface PogBulkDeleteOutputDTO {
10705
11536
  deleted: number;
10706
11537
  /**
10707
11538
  *
10708
- * @type {number}
10709
- * @memberof PogBulkDeleteOutputDTO
11539
+ * @type {number}
11540
+ * @memberof PogBulkDeleteOutputDTO
11541
+ */
11542
+ failed: number;
11543
+ /**
11544
+ *
11545
+ * @type {Array<PogBulkDeleteErrorDTO>}
11546
+ * @memberof PogBulkDeleteOutputDTO
11547
+ */
11548
+ errors: Array<PogBulkDeleteErrorDTO>;
11549
+ }
11550
+ /**
11551
+ *
11552
+ * @export
11553
+ * @interface PogBulkDeleteOutputDTOAPI
11554
+ */
11555
+ export interface PogBulkDeleteOutputDTOAPI {
11556
+ /**
11557
+ *
11558
+ * @type {PogBulkDeleteOutputDTO}
11559
+ * @memberof PogBulkDeleteOutputDTOAPI
11560
+ */
11561
+ data: PogBulkDeleteOutputDTO;
11562
+ /**
11563
+ *
11564
+ * @type {MetadataOutput}
11565
+ * @memberof PogBulkDeleteOutputDTOAPI
11566
+ */
11567
+ meta: MetadataOutput;
11568
+ }
11569
+ /**
11570
+ *
11571
+ * @export
11572
+ * @interface PogParam
11573
+ */
11574
+ export interface PogParam {
11575
+ /**
11576
+ *
11577
+ * @type {string}
11578
+ * @memberof PogParam
11579
+ */
11580
+ gameServerId: string;
11581
+ /**
11582
+ *
11583
+ * @type {string}
11584
+ * @memberof PogParam
11585
+ */
11586
+ playerId: string;
11587
+ }
11588
+ /**
11589
+ *
11590
+ * @export
11591
+ * @interface ProductMetricsDTO
11592
+ */
11593
+ export interface ProductMetricsDTO {
11594
+ /**
11595
+ *
11596
+ * @type {Array<TopItemDTO>}
11597
+ * @memberof ProductMetricsDTO
11598
+ */
11599
+ topItems: Array<TopItemDTO>;
11600
+ /**
11601
+ *
11602
+ * @type {Array<CategoryPerformanceDTO>}
11603
+ * @memberof ProductMetricsDTO
11604
+ */
11605
+ categories: Array<CategoryPerformanceDTO>;
11606
+ /**
11607
+ *
11608
+ * @type {number}
11609
+ * @memberof ProductMetricsDTO
11610
+ */
11611
+ deadStock: number;
11612
+ /**
11613
+ *
11614
+ * @type {Array<DeadStockItemDTO>}
11615
+ * @memberof ProductMetricsDTO
11616
+ */
11617
+ deadStockItems?: Array<DeadStockItemDTO>;
11618
+ /**
11619
+ *
11620
+ * @type {number}
11621
+ * @memberof ProductMetricsDTO
11622
+ */
11623
+ totalProducts: number;
11624
+ }
11625
+ /**
11626
+ *
11627
+ * @export
11628
+ * @interface RadiusSearchInputDTO
11629
+ */
11630
+ export interface RadiusSearchInputDTO {
11631
+ /**
11632
+ *
11633
+ * @type {number}
11634
+ * @memberof RadiusSearchInputDTO
11635
+ */
11636
+ x: number;
11637
+ /**
11638
+ *
11639
+ * @type {number}
11640
+ * @memberof RadiusSearchInputDTO
11641
+ */
11642
+ y: number;
11643
+ /**
11644
+ *
11645
+ * @type {number}
11646
+ * @memberof RadiusSearchInputDTO
11647
+ */
11648
+ z: number;
11649
+ /**
11650
+ *
11651
+ * @type {number}
11652
+ * @memberof RadiusSearchInputDTO
11653
+ */
11654
+ radius: number;
11655
+ /**
11656
+ *
11657
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11658
+ * @memberof RadiusSearchInputDTO
11659
+ */
11660
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11661
+ /**
11662
+ *
11663
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11664
+ * @memberof RadiusSearchInputDTO
11665
+ */
11666
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11667
+ /**
11668
+ *
11669
+ * @type {string}
11670
+ * @memberof RadiusSearchInputDTO
11671
+ */
11672
+ gameserverId: string;
11673
+ }
11674
+ /**
11675
+ *
11676
+ * @export
11677
+ * @interface RangeFilterCreatedAndUpdatedAt
11678
+ */
11679
+ export interface RangeFilterCreatedAndUpdatedAt {
11680
+ /**
11681
+ *
11682
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11683
+ * @memberof RangeFilterCreatedAndUpdatedAt
11684
+ */
11685
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11686
+ /**
11687
+ *
11688
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11689
+ * @memberof RangeFilterCreatedAndUpdatedAt
11690
+ */
11691
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11692
+ }
11693
+ /**
11694
+ *
11695
+ * @export
11696
+ * @interface RecentOrderDTO
11697
+ */
11698
+ export interface RecentOrderDTO {
11699
+ /**
11700
+ *
11701
+ * @type {string}
11702
+ * @memberof RecentOrderDTO
11703
+ */
11704
+ id: string;
11705
+ /**
11706
+ *
11707
+ * @type {string}
11708
+ * @memberof RecentOrderDTO
11709
+ */
11710
+ playerName: string;
11711
+ /**
11712
+ *
11713
+ * @type {string}
11714
+ * @memberof RecentOrderDTO
11715
+ */
11716
+ itemName: string;
11717
+ /**
11718
+ *
11719
+ * @type {number}
11720
+ * @memberof RecentOrderDTO
11721
+ */
11722
+ value: number;
11723
+ /**
11724
+ *
11725
+ * @type {string}
11726
+ * @memberof RecentOrderDTO
11727
+ */
11728
+ time: string;
11729
+ /**
11730
+ *
11731
+ * @type {string}
11732
+ * @memberof RecentOrderDTO
11733
+ */
11734
+ status: RecentOrderDTOStatusEnum;
11735
+ }
11736
+ export declare const RecentOrderDTOStatusEnum: {
11737
+ readonly Completed: "COMPLETED";
11738
+ readonly Paid: "PAID";
11739
+ readonly Canceled: "CANCELED";
11740
+ };
11741
+ export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
11742
+ /**
11743
+ *
11744
+ * @export
11745
+ * @interface RedirectQs
11746
+ */
11747
+ export interface RedirectQs {
11748
+ /**
11749
+ *
11750
+ * @type {string}
11751
+ * @memberof RedirectQs
11752
+ */
11753
+ redirect: string;
11754
+ }
11755
+ /**
11756
+ *
11757
+ * @export
11758
+ * @interface RegistryCreateDTO
11759
+ */
11760
+ export interface RegistryCreateDTO {
11761
+ /**
11762
+ *
11763
+ * @type {string}
11764
+ * @memberof RegistryCreateDTO
11765
+ */
11766
+ url: string;
11767
+ /**
11768
+ *
11769
+ * @type {string}
11770
+ * @memberof RegistryCreateDTO
11771
+ */
11772
+ name?: string;
11773
+ /**
11774
+ *
11775
+ * @type {string}
11776
+ * @memberof RegistryCreateDTO
11777
+ */
11778
+ description?: string;
11779
+ }
11780
+ /**
11781
+ *
11782
+ * @export
11783
+ * @interface RegistryInstallBody
11784
+ */
11785
+ export interface RegistryInstallBody {
11786
+ /**
11787
+ *
11788
+ * @type {string}
11789
+ * @memberof RegistryInstallBody
11790
+ */
11791
+ moduleName: string;
11792
+ /**
11793
+ *
11794
+ * @type {string}
11795
+ * @memberof RegistryInstallBody
11796
+ */
11797
+ version: string;
11798
+ }
11799
+ /**
11800
+ *
11801
+ * @export
11802
+ * @interface RegistryInstallInputDTO
11803
+ */
11804
+ export interface RegistryInstallInputDTO {
11805
+ /**
11806
+ *
11807
+ * @type {string}
11808
+ * @memberof RegistryInstallInputDTO
11809
+ */
11810
+ moduleName: string;
11811
+ /**
11812
+ *
11813
+ * @type {string}
11814
+ * @memberof RegistryInstallInputDTO
11815
+ */
11816
+ version: string;
11817
+ }
11818
+ /**
11819
+ *
11820
+ * @export
11821
+ * @interface RegistryListOutputDTO
11822
+ */
11823
+ export interface RegistryListOutputDTO {
11824
+ /**
11825
+ *
11826
+ * @type {string}
11827
+ * @memberof RegistryListOutputDTO
11828
+ */
11829
+ url: string;
11830
+ /**
11831
+ *
11832
+ * @type {string}
11833
+ * @memberof RegistryListOutputDTO
11834
+ */
11835
+ name: string;
11836
+ /**
11837
+ *
11838
+ * @type {string}
11839
+ * @memberof RegistryListOutputDTO
11840
+ */
11841
+ description?: string;
11842
+ /**
11843
+ *
11844
+ * @type {Array<RegistryModuleVersionOutputDTO>}
11845
+ * @memberof RegistryListOutputDTO
11846
+ */
11847
+ modules?: Array<RegistryModuleVersionOutputDTO>;
11848
+ /**
11849
+ *
11850
+ * @type {string}
11851
+ * @memberof RegistryListOutputDTO
11852
+ */
11853
+ lastFetchError?: string;
11854
+ /**
11855
+ *
11856
+ * @type {string}
11857
+ * @memberof RegistryListOutputDTO
11858
+ */
11859
+ id: string;
11860
+ /**
11861
+ *
11862
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11863
+ * @memberof RegistryListOutputDTO
10710
11864
  */
10711
- failed: number;
11865
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10712
11866
  /**
10713
11867
  *
10714
- * @type {Array<PogBulkDeleteErrorDTO>}
10715
- * @memberof PogBulkDeleteOutputDTO
11868
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11869
+ * @memberof RegistryListOutputDTO
10716
11870
  */
10717
- errors: Array<PogBulkDeleteErrorDTO>;
11871
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10718
11872
  }
10719
11873
  /**
10720
11874
  *
10721
11875
  * @export
10722
- * @interface PogBulkDeleteOutputDTOAPI
11876
+ * @interface RegistryListOutputDTOAPI
10723
11877
  */
10724
- export interface PogBulkDeleteOutputDTOAPI {
11878
+ export interface RegistryListOutputDTOAPI {
10725
11879
  /**
10726
11880
  *
10727
- * @type {PogBulkDeleteOutputDTO}
10728
- * @memberof PogBulkDeleteOutputDTOAPI
11881
+ * @type {Array<RegistryListOutputDTO>}
11882
+ * @memberof RegistryListOutputDTOAPI
10729
11883
  */
10730
- data: PogBulkDeleteOutputDTO;
11884
+ data: Array<RegistryListOutputDTO>;
10731
11885
  /**
10732
11886
  *
10733
11887
  * @type {MetadataOutput}
10734
- * @memberof PogBulkDeleteOutputDTOAPI
11888
+ * @memberof RegistryListOutputDTOAPI
10735
11889
  */
10736
11890
  meta: MetadataOutput;
10737
11891
  }
10738
11892
  /**
10739
11893
  *
10740
11894
  * @export
10741
- * @interface PogParam
11895
+ * @interface RegistryManifestDTO
10742
11896
  */
10743
- export interface PogParam {
11897
+ export interface RegistryManifestDTO {
10744
11898
  /**
10745
11899
  *
10746
11900
  * @type {string}
10747
- * @memberof PogParam
11901
+ * @memberof RegistryManifestDTO
10748
11902
  */
10749
- gameServerId: string;
11903
+ name: string;
10750
11904
  /**
10751
11905
  *
10752
11906
  * @type {string}
10753
- * @memberof PogParam
11907
+ * @memberof RegistryManifestDTO
10754
11908
  */
10755
- playerId: string;
11909
+ description?: string;
11910
+ /**
11911
+ *
11912
+ * @type {Array<RegistryManifestModuleDTO>}
11913
+ * @memberof RegistryManifestDTO
11914
+ */
11915
+ modules: Array<RegistryManifestModuleDTO>;
10756
11916
  }
10757
11917
  /**
10758
11918
  *
10759
11919
  * @export
10760
- * @interface ProductMetricsDTO
11920
+ * @interface RegistryManifestModuleDTO
10761
11921
  */
10762
- export interface ProductMetricsDTO {
11922
+ export interface RegistryManifestModuleDTO {
10763
11923
  /**
10764
11924
  *
10765
- * @type {Array<TopItemDTO>}
10766
- * @memberof ProductMetricsDTO
11925
+ * @type {string}
11926
+ * @memberof RegistryManifestModuleDTO
10767
11927
  */
10768
- topItems: Array<TopItemDTO>;
11928
+ name: string;
10769
11929
  /**
10770
11930
  *
10771
- * @type {Array<CategoryPerformanceDTO>}
10772
- * @memberof ProductMetricsDTO
11931
+ * @type {string}
11932
+ * @memberof RegistryManifestModuleDTO
10773
11933
  */
10774
- categories: Array<CategoryPerformanceDTO>;
11934
+ latestVersion: string;
10775
11935
  /**
10776
11936
  *
10777
- * @type {number}
10778
- * @memberof ProductMetricsDTO
11937
+ * @type {Array<string>}
11938
+ * @memberof RegistryManifestModuleDTO
10779
11939
  */
10780
- deadStock: number;
11940
+ versions: Array<string>;
10781
11941
  /**
10782
11942
  *
10783
- * @type {Array<DeadStockItemDTO>}
10784
- * @memberof ProductMetricsDTO
11943
+ * @type {string}
11944
+ * @memberof RegistryManifestModuleDTO
10785
11945
  */
10786
- deadStockItems?: Array<DeadStockItemDTO>;
11946
+ description?: string;
11947
+ }
11948
+ /**
11949
+ *
11950
+ * @export
11951
+ * @interface RegistryModuleVersionOutputDTO
11952
+ */
11953
+ export interface RegistryModuleVersionOutputDTO {
10787
11954
  /**
10788
11955
  *
10789
- * @type {number}
10790
- * @memberof ProductMetricsDTO
11956
+ * @type {string}
11957
+ * @memberof RegistryModuleVersionOutputDTO
10791
11958
  */
10792
- totalProducts: number;
11959
+ name: string;
11960
+ /**
11961
+ *
11962
+ * @type {Array<string>}
11963
+ * @memberof RegistryModuleVersionOutputDTO
11964
+ */
11965
+ versions: Array<string>;
11966
+ /**
11967
+ *
11968
+ * @type {string}
11969
+ * @memberof RegistryModuleVersionOutputDTO
11970
+ */
11971
+ latestVersion: string;
11972
+ /**
11973
+ *
11974
+ * @type {string}
11975
+ * @memberof RegistryModuleVersionOutputDTO
11976
+ */
11977
+ description?: string;
10793
11978
  }
10794
11979
  /**
10795
11980
  *
10796
11981
  * @export
10797
- * @interface RadiusSearchInputDTO
11982
+ * @interface RegistryOutputDTO
10798
11983
  */
10799
- export interface RadiusSearchInputDTO {
11984
+ export interface RegistryOutputDTO {
10800
11985
  /**
10801
11986
  *
10802
- * @type {number}
10803
- * @memberof RadiusSearchInputDTO
11987
+ * @type {string}
11988
+ * @memberof RegistryOutputDTO
10804
11989
  */
10805
- x: number;
11990
+ url: string;
10806
11991
  /**
10807
11992
  *
10808
- * @type {number}
10809
- * @memberof RadiusSearchInputDTO
11993
+ * @type {string}
11994
+ * @memberof RegistryOutputDTO
10810
11995
  */
10811
- y: number;
11996
+ name: string;
10812
11997
  /**
10813
11998
  *
10814
- * @type {number}
10815
- * @memberof RadiusSearchInputDTO
11999
+ * @type {string}
12000
+ * @memberof RegistryOutputDTO
10816
12001
  */
10817
- z: number;
12002
+ description?: string;
10818
12003
  /**
10819
12004
  *
10820
- * @type {number}
10821
- * @memberof RadiusSearchInputDTO
12005
+ * @type {string}
12006
+ * @memberof RegistryOutputDTO
10822
12007
  */
10823
- radius: number;
12008
+ id: string;
10824
12009
  /**
10825
12010
  *
10826
12011
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10827
- * @memberof RadiusSearchInputDTO
12012
+ * @memberof RegistryOutputDTO
10828
12013
  */
10829
- startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12014
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10830
12015
  /**
10831
12016
  *
10832
12017
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10833
- * @memberof RadiusSearchInputDTO
12018
+ * @memberof RegistryOutputDTO
10834
12019
  */
10835
- endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12020
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12021
+ }
12022
+ /**
12023
+ *
12024
+ * @export
12025
+ * @interface RegistrySubscribeBody
12026
+ */
12027
+ export interface RegistrySubscribeBody {
10836
12028
  /**
10837
12029
  *
10838
12030
  * @type {string}
10839
- * @memberof RadiusSearchInputDTO
12031
+ * @memberof RegistrySubscribeBody
10840
12032
  */
10841
- gameserverId: string;
12033
+ url: string;
10842
12034
  }
10843
12035
  /**
10844
12036
  *
10845
12037
  * @export
10846
- * @interface RangeFilterCreatedAndUpdatedAt
12038
+ * @interface RegistrySubscribeInputDTO
10847
12039
  */
10848
- export interface RangeFilterCreatedAndUpdatedAt {
12040
+ export interface RegistrySubscribeInputDTO {
10849
12041
  /**
10850
12042
  *
10851
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10852
- * @memberof RangeFilterCreatedAndUpdatedAt
12043
+ * @type {string}
12044
+ * @memberof RegistrySubscribeInputDTO
10853
12045
  */
10854
- createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12046
+ url: string;
12047
+ }
12048
+ /**
12049
+ *
12050
+ * @export
12051
+ * @interface RegistryUpdateDTO
12052
+ */
12053
+ export interface RegistryUpdateDTO {
10855
12054
  /**
10856
12055
  *
10857
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
10858
- * @memberof RangeFilterCreatedAndUpdatedAt
12056
+ * @type {string}
12057
+ * @memberof RegistryUpdateDTO
10859
12058
  */
10860
- updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12059
+ name?: string;
12060
+ /**
12061
+ *
12062
+ * @type {string}
12063
+ * @memberof RegistryUpdateDTO
12064
+ */
12065
+ description?: string;
10861
12066
  }
10862
12067
  /**
10863
12068
  *
10864
12069
  * @export
10865
- * @interface RecentOrderDTO
12070
+ * @interface RegistryWithManifestOutputDTO
10866
12071
  */
10867
- export interface RecentOrderDTO {
12072
+ export interface RegistryWithManifestOutputDTO {
10868
12073
  /**
10869
12074
  *
10870
12075
  * @type {string}
10871
- * @memberof RecentOrderDTO
12076
+ * @memberof RegistryWithManifestOutputDTO
10872
12077
  */
10873
- id: string;
12078
+ url: string;
10874
12079
  /**
10875
12080
  *
10876
12081
  * @type {string}
10877
- * @memberof RecentOrderDTO
12082
+ * @memberof RegistryWithManifestOutputDTO
10878
12083
  */
10879
- playerName: string;
12084
+ name: string;
10880
12085
  /**
10881
12086
  *
10882
12087
  * @type {string}
10883
- * @memberof RecentOrderDTO
12088
+ * @memberof RegistryWithManifestOutputDTO
10884
12089
  */
10885
- itemName: string;
12090
+ description?: string;
10886
12091
  /**
10887
12092
  *
10888
- * @type {number}
10889
- * @memberof RecentOrderDTO
12093
+ * @type {object}
12094
+ * @memberof RegistryWithManifestOutputDTO
10890
12095
  */
10891
- value: number;
12096
+ manifest?: object;
10892
12097
  /**
10893
12098
  *
10894
12099
  * @type {string}
10895
- * @memberof RecentOrderDTO
12100
+ * @memberof RegistryWithManifestOutputDTO
10896
12101
  */
10897
- time: string;
12102
+ id: string;
10898
12103
  /**
10899
12104
  *
10900
- * @type {string}
10901
- * @memberof RecentOrderDTO
12105
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12106
+ * @memberof RegistryWithManifestOutputDTO
10902
12107
  */
10903
- status: RecentOrderDTOStatusEnum;
12108
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12109
+ /**
12110
+ *
12111
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12112
+ * @memberof RegistryWithManifestOutputDTO
12113
+ */
12114
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10904
12115
  }
10905
- export declare const RecentOrderDTOStatusEnum: {
10906
- readonly Completed: "COMPLETED";
10907
- readonly Paid: "PAID";
10908
- readonly Canceled: "CANCELED";
10909
- };
10910
- export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
10911
12116
  /**
10912
12117
  *
10913
12118
  * @export
10914
- * @interface RedirectQs
12119
+ * @interface RegistryWithManifestOutputDTOAPI
10915
12120
  */
10916
- export interface RedirectQs {
12121
+ export interface RegistryWithManifestOutputDTOAPI {
10917
12122
  /**
10918
12123
  *
10919
- * @type {string}
10920
- * @memberof RedirectQs
12124
+ * @type {RegistryWithManifestOutputDTO}
12125
+ * @memberof RegistryWithManifestOutputDTOAPI
10921
12126
  */
10922
- redirect: string;
12127
+ data: RegistryWithManifestOutputDTO;
12128
+ /**
12129
+ *
12130
+ * @type {MetadataOutput}
12131
+ * @memberof RegistryWithManifestOutputDTOAPI
12132
+ */
12133
+ meta: MetadataOutput;
10923
12134
  }
10924
12135
  /**
10925
12136
  *
@@ -16216,6 +17427,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
16216
17427
  * @throws {RequiredError}
16217
17428
  */
16218
17429
  analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17430
+ /**
17431
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
17432
+ * @summary Get per-installation module KPIs
17433
+ * @param {string} gameServerId
17434
+ * @param {string} moduleId
17435
+ * @param {string} [startDate]
17436
+ * @param {string} [endDate]
17437
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17438
+ * @param {*} [options] Override http request option.
17439
+ * @throws {RequiredError}
17440
+ */
17441
+ analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
16219
17442
  /**
16220
17443
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
16221
17444
  * @summary Get module item failure aggregate
@@ -16593,6 +17816,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
16593
17816
  * @throws {RequiredError}
16594
17817
  */
16595
17818
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
17819
+ /**
17820
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
17821
+ * @summary Get per-installation module KPIs
17822
+ * @param {string} gameServerId
17823
+ * @param {string} moduleId
17824
+ * @param {string} [startDate]
17825
+ * @param {string} [endDate]
17826
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17827
+ * @param {*} [options] Override http request option.
17828
+ * @throws {RequiredError}
17829
+ */
17830
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
16596
17831
  /**
16597
17832
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
16598
17833
  * @summary Get module item failure aggregate
@@ -16970,6 +18205,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
16970
18205
  * @throws {RequiredError}
16971
18206
  */
16972
18207
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
18208
+ /**
18209
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18210
+ * @summary Get per-installation module KPIs
18211
+ * @param {string} gameServerId
18212
+ * @param {string} moduleId
18213
+ * @param {string} [startDate]
18214
+ * @param {string} [endDate]
18215
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18216
+ * @param {*} [options] Override http request option.
18217
+ * @throws {RequiredError}
18218
+ */
18219
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
16973
18220
  /**
16974
18221
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
16975
18222
  * @summary Get module item failure aggregate
@@ -17362,6 +18609,19 @@ export declare class AnalyticsApi extends BaseAPI {
17362
18609
  * @memberof AnalyticsApi
17363
18610
  */
17364
18611
  analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
18612
+ /**
18613
+ * Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
18614
+ * @summary Get per-installation module KPIs
18615
+ * @param {string} gameServerId
18616
+ * @param {string} moduleId
18617
+ * @param {string} [startDate]
18618
+ * @param {string} [endDate]
18619
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
18620
+ * @param {*} [options] Override http request option.
18621
+ * @throws {RequiredError}
18622
+ * @memberof AnalyticsApi
18623
+ */
18624
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
17365
18625
  /**
17366
18626
  * Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
17367
18627
  * @summary Get module item failure aggregate
@@ -17735,6 +18995,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
17735
18995
  readonly _90d: "90d";
17736
18996
  };
17737
18997
  export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
18998
+ /**
18999
+ * @export
19000
+ */
19001
+ export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
19002
+ readonly _24h: "24h";
19003
+ readonly _7d: "7d";
19004
+ readonly _30d: "30d";
19005
+ readonly _90d: "90d";
19006
+ };
19007
+ export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
17738
19008
  /**
17739
19009
  * @export
17740
19010
  */
@@ -17928,23 +19198,173 @@ export type AnalyticsControllerGetTopListingsPeriodEnum = (typeof AnalyticsContr
17928
19198
  /**
17929
19199
  * @export
17930
19200
  */
17931
- export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
17932
- readonly _24h: "24h";
17933
- readonly _7d: "7d";
17934
- readonly _30d: "30d";
17935
- readonly _90d: "90d";
19201
+ export declare const AnalyticsControllerGetTopModulesByVolumePeriodEnum: {
19202
+ readonly _24h: "24h";
19203
+ readonly _7d: "7d";
19204
+ readonly _30d: "30d";
19205
+ readonly _90d: "90d";
19206
+ };
19207
+ export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
19208
+ /**
19209
+ * @export
19210
+ */
19211
+ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
19212
+ readonly _24h: "24h";
19213
+ readonly _7d: "7d";
19214
+ readonly _30d: "30d";
19215
+ readonly _90d: "90d";
19216
+ };
19217
+ export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
19218
+ /**
19219
+ * AuthApi - axios parameter creator
19220
+ * @export
19221
+ */
19222
+ export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
19223
+ /**
19224
+ * <br> OperationId: `AuthControllerAccount`
19225
+ * @summary Account
19226
+ * @param {*} [options] Override http request option.
19227
+ * @throws {RequiredError}
19228
+ */
19229
+ authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19230
+ /**
19231
+ * <br> OperationId: `AuthControllerCallback`
19232
+ * @summary Callback
19233
+ * @param {*} [options] Override http request option.
19234
+ * @throws {RequiredError}
19235
+ */
19236
+ authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19237
+ /**
19238
+ * <br> OperationId: `AuthControllerLogin`
19239
+ * @summary Login
19240
+ * @param {string} [redirect]
19241
+ * @param {*} [options] Override http request option.
19242
+ * @throws {RequiredError}
19243
+ */
19244
+ authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19245
+ /**
19246
+ * <br> OperationId: `AuthControllerLogout`
19247
+ * @summary Logout
19248
+ * @param {string} [redirect]
19249
+ * @param {*} [options] Override http request option.
19250
+ * @throws {RequiredError}
19251
+ */
19252
+ authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19253
+ };
19254
+ /**
19255
+ * AuthApi - functional programming interface
19256
+ * @export
19257
+ */
19258
+ export declare const AuthApiFp: (configuration?: Configuration) => {
19259
+ /**
19260
+ * <br> OperationId: `AuthControllerAccount`
19261
+ * @summary Account
19262
+ * @param {*} [options] Override http request option.
19263
+ * @throws {RequiredError}
19264
+ */
19265
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19266
+ /**
19267
+ * <br> OperationId: `AuthControllerCallback`
19268
+ * @summary Callback
19269
+ * @param {*} [options] Override http request option.
19270
+ * @throws {RequiredError}
19271
+ */
19272
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19273
+ /**
19274
+ * <br> OperationId: `AuthControllerLogin`
19275
+ * @summary Login
19276
+ * @param {string} [redirect]
19277
+ * @param {*} [options] Override http request option.
19278
+ * @throws {RequiredError}
19279
+ */
19280
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19281
+ /**
19282
+ * <br> OperationId: `AuthControllerLogout`
19283
+ * @summary Logout
19284
+ * @param {string} [redirect]
19285
+ * @param {*} [options] Override http request option.
19286
+ * @throws {RequiredError}
19287
+ */
19288
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
17936
19289
  };
17937
- export type AnalyticsControllerGetTopModulesByVolumePeriodEnum = (typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum)[keyof typeof AnalyticsControllerGetTopModulesByVolumePeriodEnum];
17938
19290
  /**
19291
+ * AuthApi - factory interface
17939
19292
  * @export
17940
19293
  */
17941
- export declare const AnalyticsControllerGetTopServersPeriodEnum: {
17942
- readonly _24h: "24h";
17943
- readonly _7d: "7d";
17944
- readonly _30d: "30d";
17945
- readonly _90d: "90d";
19294
+ export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
19295
+ /**
19296
+ * <br> OperationId: `AuthControllerAccount`
19297
+ * @summary Account
19298
+ * @param {*} [options] Override http request option.
19299
+ * @throws {RequiredError}
19300
+ */
19301
+ authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
19302
+ /**
19303
+ * <br> OperationId: `AuthControllerCallback`
19304
+ * @summary Callback
19305
+ * @param {*} [options] Override http request option.
19306
+ * @throws {RequiredError}
19307
+ */
19308
+ authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
19309
+ /**
19310
+ * <br> OperationId: `AuthControllerLogin`
19311
+ * @summary Login
19312
+ * @param {string} [redirect]
19313
+ * @param {*} [options] Override http request option.
19314
+ * @throws {RequiredError}
19315
+ */
19316
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19317
+ /**
19318
+ * <br> OperationId: `AuthControllerLogout`
19319
+ * @summary Logout
19320
+ * @param {string} [redirect]
19321
+ * @param {*} [options] Override http request option.
19322
+ * @throws {RequiredError}
19323
+ */
19324
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
17946
19325
  };
17947
- export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
19326
+ /**
19327
+ * AuthApi - object-oriented interface
19328
+ * @export
19329
+ * @class AuthApi
19330
+ * @extends {BaseAPI}
19331
+ */
19332
+ export declare class AuthApi extends BaseAPI {
19333
+ /**
19334
+ * <br> OperationId: `AuthControllerAccount`
19335
+ * @summary Account
19336
+ * @param {*} [options] Override http request option.
19337
+ * @throws {RequiredError}
19338
+ * @memberof AuthApi
19339
+ */
19340
+ authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19341
+ /**
19342
+ * <br> OperationId: `AuthControllerCallback`
19343
+ * @summary Callback
19344
+ * @param {*} [options] Override http request option.
19345
+ * @throws {RequiredError}
19346
+ * @memberof AuthApi
19347
+ */
19348
+ authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19349
+ /**
19350
+ * <br> OperationId: `AuthControllerLogin`
19351
+ * @summary Login
19352
+ * @param {string} [redirect]
19353
+ * @param {*} [options] Override http request option.
19354
+ * @throws {RequiredError}
19355
+ * @memberof AuthApi
19356
+ */
19357
+ authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19358
+ /**
19359
+ * <br> OperationId: `AuthControllerLogout`
19360
+ * @summary Logout
19361
+ * @param {string} [redirect]
19362
+ * @param {*} [options] Override http request option.
19363
+ * @throws {RequiredError}
19364
+ * @memberof AuthApi
19365
+ */
19366
+ authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
19367
+ }
17948
19368
  /**
17949
19369
  * CommandApi - axios parameter creator
17950
19370
  * @export
@@ -19266,6 +20686,22 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
19266
20686
  * @throws {RequiredError}
19267
20687
  */
19268
20688
  eventControllerCreate: (eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20689
+ /**
20690
+ * 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`
20691
+ * @summary Explore events
20692
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20693
+ * @param {*} [options] Override http request option.
20694
+ * @throws {RequiredError}
20695
+ */
20696
+ eventControllerExplore: (eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20697
+ /**
20698
+ * 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`
20699
+ * @summary Get event volume time-series with optional grouping
20700
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20701
+ * @param {*} [options] Override http request option.
20702
+ * @throws {RequiredError}
20703
+ */
20704
+ eventControllerExploreVolume: (eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19269
20705
  /**
19270
20706
  * 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
20707
  * @summary Export events to CSV
@@ -19312,6 +20748,22 @@ export declare const EventApiFp: (configuration?: Configuration) => {
19312
20748
  * @throws {RequiredError}
19313
20749
  */
19314
20750
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
20751
+ /**
20752
+ * 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`
20753
+ * @summary Explore events
20754
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20755
+ * @param {*} [options] Override http request option.
20756
+ * @throws {RequiredError}
20757
+ */
20758
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>>;
20759
+ /**
20760
+ * 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`
20761
+ * @summary Get event volume time-series with optional grouping
20762
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20763
+ * @param {*} [options] Override http request option.
20764
+ * @throws {RequiredError}
20765
+ */
20766
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventVolumeOutputDTOAPI>>;
19315
20767
  /**
19316
20768
  * 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
20769
  * @summary Export events to CSV
@@ -19358,6 +20810,22 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
19358
20810
  * @throws {RequiredError}
19359
20811
  */
19360
20812
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
20813
+ /**
20814
+ * 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`
20815
+ * @summary Explore events
20816
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20817
+ * @param {*} [options] Override http request option.
20818
+ * @throws {RequiredError}
20819
+ */
20820
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventExploreOutputDTOAPI>;
20821
+ /**
20822
+ * 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`
20823
+ * @summary Get event volume time-series with optional grouping
20824
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20825
+ * @param {*} [options] Override http request option.
20826
+ * @throws {RequiredError}
20827
+ */
20828
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventVolumeOutputDTOAPI>;
19361
20829
  /**
19362
20830
  * 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
20831
  * @summary Export events to CSV
@@ -19407,6 +20875,24 @@ export declare class EventApi extends BaseAPI {
19407
20875
  * @memberof EventApi
19408
20876
  */
19409
20877
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
20878
+ /**
20879
+ * 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`
20880
+ * @summary Explore events
20881
+ * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
20882
+ * @param {*} [options] Override http request option.
20883
+ * @throws {RequiredError}
20884
+ * @memberof EventApi
20885
+ */
20886
+ eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventExploreOutputDTOAPI, any>>;
20887
+ /**
20888
+ * 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`
20889
+ * @summary Get event volume time-series with optional grouping
20890
+ * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
20891
+ * @param {*} [options] Override http request option.
20892
+ * @throws {RequiredError}
20893
+ * @memberof EventApi
20894
+ */
20895
+ eventControllerExploreVolume(eventVolumeInputDTO?: EventVolumeInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventVolumeOutputDTOAPI, any>>;
19410
20896
  /**
19411
20897
  * 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
20898
  * @summary Export events to CSV
@@ -21808,6 +23294,15 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
21808
23294
  * @throws {RequiredError}
21809
23295
  */
21810
23296
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23297
+ /**
23298
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23299
+ * @summary Bulk assign role
23300
+ * @param {string} roleId
23301
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23302
+ * @param {*} [options] Override http request option.
23303
+ * @throws {RequiredError}
23304
+ */
23305
+ playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21811
23306
  /**
21812
23307
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
21813
23308
  * @summary Bulk delete
@@ -21914,6 +23409,15 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
21914
23409
  * @throws {RequiredError}
21915
23410
  */
21916
23411
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23412
+ /**
23413
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23414
+ * @summary Bulk assign role
23415
+ * @param {string} roleId
23416
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23417
+ * @param {*} [options] Override http request option.
23418
+ * @throws {RequiredError}
23419
+ */
23420
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
21917
23421
  /**
21918
23422
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
21919
23423
  * @summary Bulk delete
@@ -22020,6 +23524,15 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
22020
23524
  * @throws {RequiredError}
22021
23525
  */
22022
23526
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23527
+ /**
23528
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23529
+ * @summary Bulk assign role
23530
+ * @param {string} roleId
23531
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23532
+ * @param {*} [options] Override http request option.
23533
+ * @throws {RequiredError}
23534
+ */
23535
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
22023
23536
  /**
22024
23537
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22025
23538
  * @summary Bulk delete
@@ -22134,6 +23647,16 @@ export declare class PlayerApi extends BaseAPI {
22134
23647
  * @memberof PlayerApi
22135
23648
  */
22136
23649
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23650
+ /**
23651
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23652
+ * @summary Bulk assign role
23653
+ * @param {string} roleId
23654
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23655
+ * @param {*} [options] Override http request option.
23656
+ * @throws {RequiredError}
23657
+ * @memberof PlayerApi
23658
+ */
23659
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
22137
23660
  /**
22138
23661
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22139
23662
  * @summary Bulk delete
@@ -22205,6 +23728,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
22205
23728
  * @throws {RequiredError}
22206
23729
  */
22207
23730
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23731
+ /**
23732
+ * 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`
23733
+ * @summary Bulk add currency
23734
+ * @param {string} gameServerId
23735
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23736
+ * @param {*} [options] Override http request option.
23737
+ * @throws {RequiredError}
23738
+ */
23739
+ playerOnGameServerControllerBulkAddCurrency: (gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22208
23740
  /**
22209
23741
  * 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
23742
  * @summary Bulk delete
@@ -22287,6 +23819,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
22287
23819
  * @throws {RequiredError}
22288
23820
  */
22289
23821
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23822
+ /**
23823
+ * 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`
23824
+ * @summary Bulk add currency
23825
+ * @param {string} gameServerId
23826
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23827
+ * @param {*} [options] Override http request option.
23828
+ * @throws {RequiredError}
23829
+ */
23830
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>>;
22290
23831
  /**
22291
23832
  * 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
23833
  * @summary Bulk delete
@@ -22369,6 +23910,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
22369
23910
  * @throws {RequiredError}
22370
23911
  */
22371
23912
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23913
+ /**
23914
+ * 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`
23915
+ * @summary Bulk add currency
23916
+ * @param {string} gameServerId
23917
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23918
+ * @param {*} [options] Override http request option.
23919
+ * @throws {RequiredError}
23920
+ */
23921
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>;
22372
23922
  /**
22373
23923
  * 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
23924
  * @summary Bulk delete
@@ -22454,6 +24004,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22454
24004
  * @memberof PlayerOnGameServerApi
22455
24005
  */
22456
24006
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24007
+ /**
24008
+ * 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`
24009
+ * @summary Bulk add currency
24010
+ * @param {string} gameServerId
24011
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24012
+ * @param {*} [options] Override http request option.
24013
+ * @throws {RequiredError}
24014
+ * @memberof PlayerOnGameServerApi
24015
+ */
24016
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkAddCurrencyOutputDTOAPI, any>>;
22457
24017
  /**
22458
24018
  * 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
24019
  * @summary Bulk delete
@@ -22528,6 +24088,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22528
24088
  */
22529
24089
  playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
22530
24090
  }
24091
+ /**
24092
+ * RegistryApi - axios parameter creator
24093
+ * @export
24094
+ */
24095
+ export declare const RegistryApiAxiosParamCreator: (configuration?: Configuration) => {
24096
+ /**
24097
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24098
+ * @summary Install a module from a registry
24099
+ * @param {string} id
24100
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24101
+ * @param {*} [options] Override http request option.
24102
+ * @throws {RequiredError}
24103
+ */
24104
+ registryControllerInstall: (id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24105
+ /**
24106
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24107
+ * @summary List subscribed registries
24108
+ * @param {*} [options] Override http request option.
24109
+ * @throws {RequiredError}
24110
+ */
24111
+ registryControllerList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24112
+ /**
24113
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24114
+ * @summary Refresh registry manifest
24115
+ * @param {string} id
24116
+ * @param {*} [options] Override http request option.
24117
+ * @throws {RequiredError}
24118
+ */
24119
+ registryControllerRefresh: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24120
+ /**
24121
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24122
+ * @summary Subscribe to a registry
24123
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24124
+ * @param {*} [options] Override http request option.
24125
+ * @throws {RequiredError}
24126
+ */
24127
+ registryControllerSubscribe: (registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24128
+ /**
24129
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24130
+ * @summary Unsubscribe from a registry
24131
+ * @param {string} id
24132
+ * @param {*} [options] Override http request option.
24133
+ * @throws {RequiredError}
24134
+ */
24135
+ registryControllerUnsubscribe: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24136
+ };
24137
+ /**
24138
+ * RegistryApi - functional programming interface
24139
+ * @export
24140
+ */
24141
+ export declare const RegistryApiFp: (configuration?: Configuration) => {
24142
+ /**
24143
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24144
+ * @summary Install a module from a registry
24145
+ * @param {string} id
24146
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24147
+ * @param {*} [options] Override http request option.
24148
+ * @throws {RequiredError}
24149
+ */
24150
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24151
+ /**
24152
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24153
+ * @summary List subscribed registries
24154
+ * @param {*} [options] Override http request option.
24155
+ * @throws {RequiredError}
24156
+ */
24157
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>>;
24158
+ /**
24159
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24160
+ * @summary Refresh registry manifest
24161
+ * @param {string} id
24162
+ * @param {*} [options] Override http request option.
24163
+ * @throws {RequiredError}
24164
+ */
24165
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
24166
+ /**
24167
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24168
+ * @summary Subscribe to a registry
24169
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24170
+ * @param {*} [options] Override http request option.
24171
+ * @throws {RequiredError}
24172
+ */
24173
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
24174
+ /**
24175
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24176
+ * @summary Unsubscribe from a registry
24177
+ * @param {string} id
24178
+ * @param {*} [options] Override http request option.
24179
+ * @throws {RequiredError}
24180
+ */
24181
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24182
+ };
24183
+ /**
24184
+ * RegistryApi - factory interface
24185
+ * @export
24186
+ */
24187
+ export declare const RegistryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
24188
+ /**
24189
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24190
+ * @summary Install a module from a registry
24191
+ * @param {string} id
24192
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24193
+ * @param {*} [options] Override http request option.
24194
+ * @throws {RequiredError}
24195
+ */
24196
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24197
+ /**
24198
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24199
+ * @summary List subscribed registries
24200
+ * @param {*} [options] Override http request option.
24201
+ * @throws {RequiredError}
24202
+ */
24203
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI>;
24204
+ /**
24205
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24206
+ * @summary Refresh registry manifest
24207
+ * @param {string} id
24208
+ * @param {*} [options] Override http request option.
24209
+ * @throws {RequiredError}
24210
+ */
24211
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
24212
+ /**
24213
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24214
+ * @summary Subscribe to a registry
24215
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24216
+ * @param {*} [options] Override http request option.
24217
+ * @throws {RequiredError}
24218
+ */
24219
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
24220
+ /**
24221
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24222
+ * @summary Unsubscribe from a registry
24223
+ * @param {string} id
24224
+ * @param {*} [options] Override http request option.
24225
+ * @throws {RequiredError}
24226
+ */
24227
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24228
+ };
24229
+ /**
24230
+ * RegistryApi - object-oriented interface
24231
+ * @export
24232
+ * @class RegistryApi
24233
+ * @extends {BaseAPI}
24234
+ */
24235
+ export declare class RegistryApi extends BaseAPI {
24236
+ /**
24237
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
24238
+ * @summary Install a module from a registry
24239
+ * @param {string} id
24240
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
24241
+ * @param {*} [options] Override http request option.
24242
+ * @throws {RequiredError}
24243
+ * @memberof RegistryApi
24244
+ */
24245
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24246
+ /**
24247
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
24248
+ * @summary List subscribed registries
24249
+ * @param {*} [options] Override http request option.
24250
+ * @throws {RequiredError}
24251
+ * @memberof RegistryApi
24252
+ */
24253
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryListOutputDTOAPI, any>>;
24254
+ /**
24255
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
24256
+ * @summary Refresh registry manifest
24257
+ * @param {string} id
24258
+ * @param {*} [options] Override http request option.
24259
+ * @throws {RequiredError}
24260
+ * @memberof RegistryApi
24261
+ */
24262
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
24263
+ /**
24264
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
24265
+ * @summary Subscribe to a registry
24266
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
24267
+ * @param {*} [options] Override http request option.
24268
+ * @throws {RequiredError}
24269
+ * @memberof RegistryApi
24270
+ */
24271
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
24272
+ /**
24273
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
24274
+ * @summary Unsubscribe from a registry
24275
+ * @param {string} id
24276
+ * @param {*} [options] Override http request option.
24277
+ * @throws {RequiredError}
24278
+ * @memberof RegistryApi
24279
+ */
24280
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24281
+ }
22531
24282
  /**
22532
24283
  * RoleApi - axios parameter creator
22533
24284
  * @export