@takaro/apiclient 0.0.0-dev.cad8e2e → 0.0.0-dev.caee66e

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3367,10 +3367,10 @@ export interface EventExploreInputDTO {
3367
3367
  filters?: EventExploreFiltersDTO;
3368
3368
  /**
3369
3369
  *
3370
- * @type {Array<any>}
3370
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3371
3371
  * @memberof EventExploreInputDTO
3372
3372
  */
3373
- metaFilters?: Array<any>;
3373
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3374
3374
  /**
3375
3375
  *
3376
3376
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -3993,12 +3993,11 @@ export interface EventVolumeDimensionTotalDTO {
3993
3993
  */
3994
3994
  key: string;
3995
3995
  /**
3996
- * Resolved display name (populated when groupBy=gameServerId). Null for the
3997
- * "other" bucket or when the entity no longer exists.
3996
+ *
3998
3997
  * @type {string}
3999
3998
  * @memberof EventVolumeDimensionTotalDTO
4000
3999
  */
4001
- name?: string | null;
4000
+ name?: string;
4002
4001
  /**
4003
4002
  *
4004
4003
  * @type {number}
@@ -4020,10 +4019,10 @@ export interface EventVolumeInputDTO {
4020
4019
  filters?: EventExploreFiltersDTO;
4021
4020
  /**
4022
4021
  *
4023
- * @type {Array<any>}
4022
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4024
4023
  * @memberof EventVolumeInputDTO
4025
4024
  */
4026
- metaFilters?: Array<any>;
4025
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4027
4026
  /**
4028
4027
  *
4029
4028
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -4043,8 +4042,7 @@ export interface EventVolumeInputDTO {
4043
4042
  */
4044
4043
  groupBy?: EventVolumeInputDTOGroupByEnum;
4045
4044
  /**
4046
- * Optional preset period name (e.g. "24h", "7d") enabling result caching
4047
- * for standard preset windows with empty filters.
4045
+ *
4048
4046
  * @type {string}
4049
4047
  * @memberof EventVolumeInputDTO
4050
4048
  */
@@ -4125,12 +4123,11 @@ export interface EventVolumeSeriesDTO {
4125
4123
  */
4126
4124
  key: string;
4127
4125
  /**
4128
- * Resolved display name (populated when groupBy=gameServerId). Null for the
4129
- * "other" bucket or when the entity no longer exists.
4126
+ *
4130
4127
  * @type {string}
4131
4128
  * @memberof EventVolumeSeriesDTO
4132
4129
  */
4133
- name?: string | null;
4130
+ name?: string;
4134
4131
  /**
4135
4132
  *
4136
4133
  * @type {Array<EventVolumePointDTO>}
@@ -7199,6 +7196,32 @@ export interface LoginOutputDTOAPI {
7199
7196
  */
7200
7197
  meta: MetadataOutput;
7201
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
+ }
7202
7225
  /**
7203
7226
  *
7204
7227
  * @export
@@ -7423,6 +7446,56 @@ export interface MessageSendInputDTO {
7423
7446
  */
7424
7447
  opts?: IMessageOptsDTO;
7425
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];
7426
7499
  /**
7427
7500
  *
7428
7501
  * @export
@@ -7772,6 +7845,94 @@ export interface ModuleInstallParamId {
7772
7845
  */
7773
7846
  gameServerId: string;
7774
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];
7775
7936
  /**
7776
7937
  *
7777
7938
  * @export
@@ -8375,6 +8536,12 @@ export interface ModuleTransferVersionDTO {
8375
8536
  * @memberof ModuleTransferVersionDTO
8376
8537
  */
8377
8538
  uiSchema: string;
8539
+ /**
8540
+ *
8541
+ * @type {string}
8542
+ * @memberof ModuleTransferVersionDTO
8543
+ */
8544
+ defaultSystemConfig?: string;
8378
8545
  /**
8379
8546
  *
8380
8547
  * @type {Array<ICommand>}
@@ -8529,6 +8696,24 @@ export interface ModuleVersionOutputDTO {
8529
8696
  * @memberof ModuleVersionOutputDTO
8530
8697
  */
8531
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;
8532
8717
  /**
8533
8718
  *
8534
8719
  * @type {Array<CronJobOutputDTO>}
@@ -9053,6 +9238,19 @@ export declare const ParamKeyKeyEnum: {
9053
9238
  readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
9054
9239
  };
9055
9240
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
9241
+ /**
9242
+ *
9243
+ * @export
9244
+ * @interface ParamRoleId
9245
+ */
9246
+ export interface ParamRoleId {
9247
+ /**
9248
+ *
9249
+ * @type {string}
9250
+ * @memberof ParamRoleId
9251
+ */
9252
+ roleId: string;
9253
+ }
9056
9254
  /**
9057
9255
  *
9058
9256
  * @export
@@ -9377,6 +9575,94 @@ export interface PlayerActivityMixEntryDTOAPI {
9377
9575
  */
9378
9576
  meta: MetadataOutput;
9379
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
+ }
9380
9666
  /**
9381
9667
  *
9382
9668
  * @export
@@ -11125,108 +11411,190 @@ export interface PlayersByItemInputDTO {
11125
11411
  /**
11126
11412
  *
11127
11413
  * @export
11128
- * @interface PogBulkDeleteErrorDTO
11414
+ * @interface PogBulkAddCurrencyErrorDTO
11129
11415
  */
11130
- export interface PogBulkDeleteErrorDTO {
11416
+ export interface PogBulkAddCurrencyErrorDTO {
11131
11417
  /**
11132
11418
  *
11133
11419
  * @type {string}
11134
- * @memberof PogBulkDeleteErrorDTO
11420
+ * @memberof PogBulkAddCurrencyErrorDTO
11135
11421
  */
11136
11422
  playerId: string;
11137
11423
  /**
11138
11424
  *
11139
11425
  * @type {string}
11140
- * @memberof PogBulkDeleteErrorDTO
11426
+ * @memberof PogBulkAddCurrencyErrorDTO
11141
11427
  */
11142
11428
  reason: string;
11143
11429
  }
11144
11430
  /**
11145
11431
  *
11146
11432
  * @export
11147
- * @interface PogBulkDeleteInputDTO
11433
+ * @interface PogBulkAddCurrencyInputDTO
11148
11434
  */
11149
- export interface PogBulkDeleteInputDTO {
11435
+ export interface PogBulkAddCurrencyInputDTO {
11150
11436
  /**
11151
11437
  *
11152
11438
  * @type {Array<string>}
11153
- * @memberof PogBulkDeleteInputDTO
11439
+ * @memberof PogBulkAddCurrencyInputDTO
11154
11440
  */
11155
11441
  playerIds: Array<string>;
11442
+ /**
11443
+ *
11444
+ * @type {number}
11445
+ * @memberof PogBulkAddCurrencyInputDTO
11446
+ */
11447
+ amount: number;
11156
11448
  }
11157
11449
  /**
11158
11450
  *
11159
11451
  * @export
11160
- * @interface PogBulkDeleteOutputDTO
11452
+ * @interface PogBulkAddCurrencyOutputDTO
11161
11453
  */
11162
- export interface PogBulkDeleteOutputDTO {
11454
+ export interface PogBulkAddCurrencyOutputDTO {
11163
11455
  /**
11164
11456
  *
11165
11457
  * @type {number}
11166
- * @memberof PogBulkDeleteOutputDTO
11458
+ * @memberof PogBulkAddCurrencyOutputDTO
11167
11459
  */
11168
- deleted: number;
11460
+ success: number;
11169
11461
  /**
11170
11462
  *
11171
11463
  * @type {number}
11172
- * @memberof PogBulkDeleteOutputDTO
11464
+ * @memberof PogBulkAddCurrencyOutputDTO
11173
11465
  */
11174
11466
  failed: number;
11175
11467
  /**
11176
11468
  *
11177
- * @type {Array<PogBulkDeleteErrorDTO>}
11178
- * @memberof PogBulkDeleteOutputDTO
11469
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
11470
+ * @memberof PogBulkAddCurrencyOutputDTO
11179
11471
  */
11180
- errors: Array<PogBulkDeleteErrorDTO>;
11472
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
11181
11473
  }
11182
11474
  /**
11183
11475
  *
11184
11476
  * @export
11185
- * @interface PogBulkDeleteOutputDTOAPI
11477
+ * @interface PogBulkAddCurrencyOutputDTOAPI
11186
11478
  */
11187
- export interface PogBulkDeleteOutputDTOAPI {
11479
+ export interface PogBulkAddCurrencyOutputDTOAPI {
11188
11480
  /**
11189
11481
  *
11190
- * @type {PogBulkDeleteOutputDTO}
11191
- * @memberof PogBulkDeleteOutputDTOAPI
11482
+ * @type {PogBulkAddCurrencyOutputDTO}
11483
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11192
11484
  */
11193
- data: PogBulkDeleteOutputDTO;
11485
+ data: PogBulkAddCurrencyOutputDTO;
11194
11486
  /**
11195
11487
  *
11196
11488
  * @type {MetadataOutput}
11197
- * @memberof PogBulkDeleteOutputDTOAPI
11489
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11198
11490
  */
11199
11491
  meta: MetadataOutput;
11200
11492
  }
11201
11493
  /**
11202
11494
  *
11203
11495
  * @export
11204
- * @interface PogParam
11496
+ * @interface PogBulkDeleteErrorDTO
11205
11497
  */
11206
- export interface PogParam {
11498
+ export interface PogBulkDeleteErrorDTO {
11207
11499
  /**
11208
11500
  *
11209
11501
  * @type {string}
11210
- * @memberof PogParam
11502
+ * @memberof PogBulkDeleteErrorDTO
11211
11503
  */
11212
- gameServerId: string;
11504
+ playerId: string;
11213
11505
  /**
11214
11506
  *
11215
11507
  * @type {string}
11216
- * @memberof PogParam
11508
+ * @memberof PogBulkDeleteErrorDTO
11217
11509
  */
11218
- playerId: string;
11510
+ reason: string;
11219
11511
  }
11220
11512
  /**
11221
11513
  *
11222
11514
  * @export
11223
- * @interface ProductMetricsDTO
11515
+ * @interface PogBulkDeleteInputDTO
11224
11516
  */
11225
- export interface ProductMetricsDTO {
11517
+ export interface PogBulkDeleteInputDTO {
11226
11518
  /**
11227
11519
  *
11228
- * @type {Array<TopItemDTO>}
11229
- * @memberof ProductMetricsDTO
11520
+ * @type {Array<string>}
11521
+ * @memberof PogBulkDeleteInputDTO
11522
+ */
11523
+ playerIds: Array<string>;
11524
+ }
11525
+ /**
11526
+ *
11527
+ * @export
11528
+ * @interface PogBulkDeleteOutputDTO
11529
+ */
11530
+ export interface PogBulkDeleteOutputDTO {
11531
+ /**
11532
+ *
11533
+ * @type {number}
11534
+ * @memberof PogBulkDeleteOutputDTO
11535
+ */
11536
+ deleted: number;
11537
+ /**
11538
+ *
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
11230
11598
  */
11231
11599
  topItems: Array<TopItemDTO>;
11232
11600
  /**
@@ -11384,6 +11752,386 @@ export interface RedirectQs {
11384
11752
  */
11385
11753
  redirect: string;
11386
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
11864
+ */
11865
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11866
+ /**
11867
+ *
11868
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11869
+ * @memberof RegistryListOutputDTO
11870
+ */
11871
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11872
+ }
11873
+ /**
11874
+ *
11875
+ * @export
11876
+ * @interface RegistryListOutputDTOAPI
11877
+ */
11878
+ export interface RegistryListOutputDTOAPI {
11879
+ /**
11880
+ *
11881
+ * @type {Array<RegistryListOutputDTO>}
11882
+ * @memberof RegistryListOutputDTOAPI
11883
+ */
11884
+ data: Array<RegistryListOutputDTO>;
11885
+ /**
11886
+ *
11887
+ * @type {MetadataOutput}
11888
+ * @memberof RegistryListOutputDTOAPI
11889
+ */
11890
+ meta: MetadataOutput;
11891
+ }
11892
+ /**
11893
+ *
11894
+ * @export
11895
+ * @interface RegistryManifestDTO
11896
+ */
11897
+ export interface RegistryManifestDTO {
11898
+ /**
11899
+ *
11900
+ * @type {string}
11901
+ * @memberof RegistryManifestDTO
11902
+ */
11903
+ name: string;
11904
+ /**
11905
+ *
11906
+ * @type {string}
11907
+ * @memberof RegistryManifestDTO
11908
+ */
11909
+ description?: string;
11910
+ /**
11911
+ *
11912
+ * @type {Array<RegistryManifestModuleDTO>}
11913
+ * @memberof RegistryManifestDTO
11914
+ */
11915
+ modules: Array<RegistryManifestModuleDTO>;
11916
+ }
11917
+ /**
11918
+ *
11919
+ * @export
11920
+ * @interface RegistryManifestModuleDTO
11921
+ */
11922
+ export interface RegistryManifestModuleDTO {
11923
+ /**
11924
+ *
11925
+ * @type {string}
11926
+ * @memberof RegistryManifestModuleDTO
11927
+ */
11928
+ name: string;
11929
+ /**
11930
+ *
11931
+ * @type {string}
11932
+ * @memberof RegistryManifestModuleDTO
11933
+ */
11934
+ latestVersion: string;
11935
+ /**
11936
+ *
11937
+ * @type {Array<string>}
11938
+ * @memberof RegistryManifestModuleDTO
11939
+ */
11940
+ versions: Array<string>;
11941
+ /**
11942
+ *
11943
+ * @type {string}
11944
+ * @memberof RegistryManifestModuleDTO
11945
+ */
11946
+ description?: string;
11947
+ }
11948
+ /**
11949
+ *
11950
+ * @export
11951
+ * @interface RegistryModuleVersionOutputDTO
11952
+ */
11953
+ export interface RegistryModuleVersionOutputDTO {
11954
+ /**
11955
+ *
11956
+ * @type {string}
11957
+ * @memberof RegistryModuleVersionOutputDTO
11958
+ */
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;
11978
+ }
11979
+ /**
11980
+ *
11981
+ * @export
11982
+ * @interface RegistryOutputDTO
11983
+ */
11984
+ export interface RegistryOutputDTO {
11985
+ /**
11986
+ *
11987
+ * @type {string}
11988
+ * @memberof RegistryOutputDTO
11989
+ */
11990
+ url: string;
11991
+ /**
11992
+ *
11993
+ * @type {string}
11994
+ * @memberof RegistryOutputDTO
11995
+ */
11996
+ name: string;
11997
+ /**
11998
+ *
11999
+ * @type {string}
12000
+ * @memberof RegistryOutputDTO
12001
+ */
12002
+ description?: string;
12003
+ /**
12004
+ *
12005
+ * @type {string}
12006
+ * @memberof RegistryOutputDTO
12007
+ */
12008
+ id: string;
12009
+ /**
12010
+ *
12011
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12012
+ * @memberof RegistryOutputDTO
12013
+ */
12014
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12015
+ /**
12016
+ *
12017
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12018
+ * @memberof RegistryOutputDTO
12019
+ */
12020
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12021
+ }
12022
+ /**
12023
+ *
12024
+ * @export
12025
+ * @interface RegistrySubscribeBody
12026
+ */
12027
+ export interface RegistrySubscribeBody {
12028
+ /**
12029
+ *
12030
+ * @type {string}
12031
+ * @memberof RegistrySubscribeBody
12032
+ */
12033
+ url: string;
12034
+ }
12035
+ /**
12036
+ *
12037
+ * @export
12038
+ * @interface RegistrySubscribeInputDTO
12039
+ */
12040
+ export interface RegistrySubscribeInputDTO {
12041
+ /**
12042
+ *
12043
+ * @type {string}
12044
+ * @memberof RegistrySubscribeInputDTO
12045
+ */
12046
+ url: string;
12047
+ }
12048
+ /**
12049
+ *
12050
+ * @export
12051
+ * @interface RegistryUpdateDTO
12052
+ */
12053
+ export interface RegistryUpdateDTO {
12054
+ /**
12055
+ *
12056
+ * @type {string}
12057
+ * @memberof RegistryUpdateDTO
12058
+ */
12059
+ name?: string;
12060
+ /**
12061
+ *
12062
+ * @type {string}
12063
+ * @memberof RegistryUpdateDTO
12064
+ */
12065
+ description?: string;
12066
+ }
12067
+ /**
12068
+ *
12069
+ * @export
12070
+ * @interface RegistryWithManifestOutputDTO
12071
+ */
12072
+ export interface RegistryWithManifestOutputDTO {
12073
+ /**
12074
+ *
12075
+ * @type {string}
12076
+ * @memberof RegistryWithManifestOutputDTO
12077
+ */
12078
+ url: string;
12079
+ /**
12080
+ *
12081
+ * @type {string}
12082
+ * @memberof RegistryWithManifestOutputDTO
12083
+ */
12084
+ name: string;
12085
+ /**
12086
+ *
12087
+ * @type {string}
12088
+ * @memberof RegistryWithManifestOutputDTO
12089
+ */
12090
+ description?: string;
12091
+ /**
12092
+ *
12093
+ * @type {object}
12094
+ * @memberof RegistryWithManifestOutputDTO
12095
+ */
12096
+ manifest?: object;
12097
+ /**
12098
+ *
12099
+ * @type {string}
12100
+ * @memberof RegistryWithManifestOutputDTO
12101
+ */
12102
+ id: string;
12103
+ /**
12104
+ *
12105
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12106
+ * @memberof RegistryWithManifestOutputDTO
12107
+ */
12108
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12109
+ /**
12110
+ *
12111
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
12112
+ * @memberof RegistryWithManifestOutputDTO
12113
+ */
12114
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
12115
+ }
12116
+ /**
12117
+ *
12118
+ * @export
12119
+ * @interface RegistryWithManifestOutputDTOAPI
12120
+ */
12121
+ export interface RegistryWithManifestOutputDTOAPI {
12122
+ /**
12123
+ *
12124
+ * @type {RegistryWithManifestOutputDTO}
12125
+ * @memberof RegistryWithManifestOutputDTOAPI
12126
+ */
12127
+ data: RegistryWithManifestOutputDTO;
12128
+ /**
12129
+ *
12130
+ * @type {MetadataOutput}
12131
+ * @memberof RegistryWithManifestOutputDTOAPI
12132
+ */
12133
+ meta: MetadataOutput;
12134
+ }
11387
12135
  /**
11388
12136
  *
11389
12137
  * @export
@@ -16679,6 +17427,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
16679
17427
  * @throws {RequiredError}
16680
17428
  */
16681
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>;
16682
17442
  /**
16683
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`
16684
17444
  * @summary Get module item failure aggregate
@@ -17056,6 +17816,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17056
17816
  * @throws {RequiredError}
17057
17817
  */
17058
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>>;
17059
17831
  /**
17060
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`
17061
17833
  * @summary Get module item failure aggregate
@@ -17433,6 +18205,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
17433
18205
  * @throws {RequiredError}
17434
18206
  */
17435
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>;
17436
18220
  /**
17437
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`
17438
18222
  * @summary Get module item failure aggregate
@@ -17814,17 +18598,30 @@ export declare class AnalyticsApi extends BaseAPI {
17814
18598
  */
17815
18599
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
17816
18600
  /**
17817
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17818
- * @summary Get module health scores
18601
+ * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18602
+ * @summary Get module health scores
18603
+ * @param {string} [startDate]
18604
+ * @param {string} [endDate]
18605
+ * @param {string} [gameServerId]
18606
+ * @param {AnalyticsControllerGetModuleHealthPeriodEnum} [period]
18607
+ * @param {*} [options] Override http request option.
18608
+ * @throws {RequiredError}
18609
+ * @memberof AnalyticsApi
18610
+ */
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
17819
18617
  * @param {string} [startDate]
17820
18618
  * @param {string} [endDate]
17821
- * @param {string} [gameServerId]
17822
- * @param {AnalyticsControllerGetModuleHealthPeriodEnum} [period]
18619
+ * @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
17823
18620
  * @param {*} [options] Override http request option.
17824
18621
  * @throws {RequiredError}
17825
18622
  * @memberof AnalyticsApi
17826
18623
  */
17827
- analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
18624
+ analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
17828
18625
  /**
17829
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`
17830
18627
  * @summary Get module item failure aggregate
@@ -18198,6 +18995,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
18198
18995
  readonly _90d: "90d";
18199
18996
  };
18200
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];
18201
19008
  /**
18202
19009
  * @export
18203
19010
  */
@@ -18408,6 +19215,156 @@ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
18408
19215
  readonly _90d: "90d";
18409
19216
  };
18410
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>>;
19289
+ };
19290
+ /**
19291
+ * AuthApi - factory interface
19292
+ * @export
19293
+ */
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>;
19325
+ };
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
+ }
18411
19368
  /**
18412
19369
  * CommandApi - axios parameter creator
18413
19370
  * @export
@@ -19730,15 +20687,15 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
19730
20687
  */
19731
20688
  eventControllerCreate: (eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19732
20689
  /**
19733
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19734
- * @summary Explore events (ClickHouse-backed)
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
19735
20692
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19736
20693
  * @param {*} [options] Override http request option.
19737
20694
  * @throws {RequiredError}
19738
20695
  */
19739
20696
  eventControllerExplore: (eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19740
20697
  /**
19741
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
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`
19742
20699
  * @summary Get event volume time-series with optional grouping
19743
20700
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19744
20701
  * @param {*} [options] Override http request option.
@@ -19792,15 +20749,15 @@ export declare const EventApiFp: (configuration?: Configuration) => {
19792
20749
  */
19793
20750
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
19794
20751
  /**
19795
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19796
- * @summary Explore events (ClickHouse-backed)
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
19797
20754
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19798
20755
  * @param {*} [options] Override http request option.
19799
20756
  * @throws {RequiredError}
19800
20757
  */
19801
20758
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>>;
19802
20759
  /**
19803
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
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`
19804
20761
  * @summary Get event volume time-series with optional grouping
19805
20762
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19806
20763
  * @param {*} [options] Override http request option.
@@ -19854,15 +20811,15 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
19854
20811
  */
19855
20812
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
19856
20813
  /**
19857
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19858
- * @summary Explore events (ClickHouse-backed)
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
19859
20816
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19860
20817
  * @param {*} [options] Override http request option.
19861
20818
  * @throws {RequiredError}
19862
20819
  */
19863
20820
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventExploreOutputDTOAPI>;
19864
20821
  /**
19865
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
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`
19866
20823
  * @summary Get event volume time-series with optional grouping
19867
20824
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19868
20825
  * @param {*} [options] Override http request option.
@@ -19919,8 +20876,8 @@ export declare class EventApi extends BaseAPI {
19919
20876
  */
19920
20877
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
19921
20878
  /**
19922
- * Cursor-paginated event search powered by ClickHouse. Rows are hydrated with current entity names (player, gameserver, module, user) from Postgres. Use the returned `nextCursor` to fetch older events; pass `cursor: null` (or omit) to start from the newest. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExplore`
19923
- * @summary Explore events (ClickHouse-backed)
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
19924
20881
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19925
20882
  * @param {*} [options] Override http request option.
19926
20883
  * @throws {RequiredError}
@@ -19928,7 +20885,7 @@ export declare class EventApi extends BaseAPI {
19928
20885
  */
19929
20886
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventExploreOutputDTOAPI, any>>;
19930
20887
  /**
19931
- * Returns time-bucketed event counts, optionally stacked by event name or game server. Accepts the same filter shape as `/event/explore` so the graph matches the stream. Bucket size adapts to the range. Caches preset-period queries with empty filters/metaFilters. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerExploreVolume`
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`
19932
20889
  * @summary Get event volume time-series with optional grouping
19933
20890
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19934
20891
  * @param {*} [options] Override http request option.
@@ -22337,6 +23294,15 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
22337
23294
  * @throws {RequiredError}
22338
23295
  */
22339
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>;
22340
23306
  /**
22341
23307
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22342
23308
  * @summary Bulk delete
@@ -22443,6 +23409,15 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
22443
23409
  * @throws {RequiredError}
22444
23410
  */
22445
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>>;
22446
23421
  /**
22447
23422
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22448
23423
  * @summary Bulk delete
@@ -22549,6 +23524,15 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
22549
23524
  * @throws {RequiredError}
22550
23525
  */
22551
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>;
22552
23536
  /**
22553
23537
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22554
23538
  * @summary Bulk delete
@@ -22663,6 +23647,16 @@ export declare class PlayerApi extends BaseAPI {
22663
23647
  * @memberof PlayerApi
22664
23648
  */
22665
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>>;
22666
23660
  /**
22667
23661
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22668
23662
  * @summary Bulk delete
@@ -22734,6 +23728,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
22734
23728
  * @throws {RequiredError}
22735
23729
  */
22736
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>;
22737
23740
  /**
22738
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`
22739
23742
  * @summary Bulk delete
@@ -22816,6 +23819,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
22816
23819
  * @throws {RequiredError}
22817
23820
  */
22818
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>>;
22819
23831
  /**
22820
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`
22821
23833
  * @summary Bulk delete
@@ -22898,6 +23910,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
22898
23910
  * @throws {RequiredError}
22899
23911
  */
22900
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>;
22901
23922
  /**
22902
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`
22903
23924
  * @summary Bulk delete
@@ -22983,6 +24004,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22983
24004
  * @memberof PlayerOnGameServerApi
22984
24005
  */
22985
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>>;
22986
24017
  /**
22987
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`
22988
24019
  * @summary Bulk delete
@@ -23057,6 +24088,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
23057
24088
  */
23058
24089
  playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23059
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
+ }
23060
24282
  /**
23061
24283
  * RoleApi - axios parameter creator
23062
24284
  * @export