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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -3367,10 +3367,10 @@ export interface EventExploreInputDTO {
3367
3367
  filters?: EventExploreFiltersDTO;
3368
3368
  /**
3369
3369
  *
3370
- * @type {Array<any>}
3370
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
3371
3371
  * @memberof EventExploreInputDTO
3372
3372
  */
3373
- metaFilters?: Array<any>;
3373
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
3374
3374
  /**
3375
3375
  *
3376
3376
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -3993,12 +3993,11 @@ export interface EventVolumeDimensionTotalDTO {
3993
3993
  */
3994
3994
  key: string;
3995
3995
  /**
3996
- * Resolved display name (populated when groupBy=gameServerId). Null for the
3997
- * "other" bucket or when the entity no longer exists.
3996
+ *
3998
3997
  * @type {string}
3999
3998
  * @memberof EventVolumeDimensionTotalDTO
4000
3999
  */
4001
- name?: string | null;
4000
+ name?: string;
4002
4001
  /**
4003
4002
  *
4004
4003
  * @type {number}
@@ -4020,10 +4019,10 @@ export interface EventVolumeInputDTO {
4020
4019
  filters?: EventExploreFiltersDTO;
4021
4020
  /**
4022
4021
  *
4023
- * @type {Array<any>}
4022
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
4024
4023
  * @memberof EventVolumeInputDTO
4025
4024
  */
4026
- metaFilters?: Array<any>;
4025
+ metaFilters?: Array<MetaFilterGroupOrLeafDTO>;
4027
4026
  /**
4028
4027
  *
4029
4028
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -4043,8 +4042,7 @@ export interface EventVolumeInputDTO {
4043
4042
  */
4044
4043
  groupBy?: EventVolumeInputDTOGroupByEnum;
4045
4044
  /**
4046
- * Optional preset period name (e.g. "24h", "7d") enabling result caching
4047
- * for standard preset windows with empty filters.
4045
+ *
4048
4046
  * @type {string}
4049
4047
  * @memberof EventVolumeInputDTO
4050
4048
  */
@@ -4125,12 +4123,11 @@ export interface EventVolumeSeriesDTO {
4125
4123
  */
4126
4124
  key: string;
4127
4125
  /**
4128
- * Resolved display name (populated when groupBy=gameServerId). Null for the
4129
- * "other" bucket or when the entity no longer exists.
4126
+ *
4130
4127
  * @type {string}
4131
4128
  * @memberof EventVolumeSeriesDTO
4132
4129
  */
4133
- name?: string | null;
4130
+ name?: string;
4134
4131
  /**
4135
4132
  *
4136
4133
  * @type {Array<EventVolumePointDTO>}
@@ -7423,6 +7420,56 @@ export interface MessageSendInputDTO {
7423
7420
  */
7424
7421
  opts?: IMessageOptsDTO;
7425
7422
  }
7423
+ /**
7424
+ *
7425
+ * @export
7426
+ * @interface MetaFilterGroupOrLeafDTO
7427
+ */
7428
+ export interface MetaFilterGroupOrLeafDTO {
7429
+ /**
7430
+ *
7431
+ * @type {string}
7432
+ * @memberof MetaFilterGroupOrLeafDTO
7433
+ */
7434
+ logicalOperator?: MetaFilterGroupOrLeafDTOLogicalOperatorEnum;
7435
+ /**
7436
+ *
7437
+ * @type {Array<MetaFilterGroupOrLeafDTO>}
7438
+ * @memberof MetaFilterGroupOrLeafDTO
7439
+ */
7440
+ filters?: Array<MetaFilterGroupOrLeafDTO>;
7441
+ /**
7442
+ *
7443
+ * @type {string}
7444
+ * @memberof MetaFilterGroupOrLeafDTO
7445
+ */
7446
+ field?: string;
7447
+ /**
7448
+ *
7449
+ * @type {string}
7450
+ * @memberof MetaFilterGroupOrLeafDTO
7451
+ */
7452
+ operator?: MetaFilterGroupOrLeafDTOOperatorEnum;
7453
+ /**
7454
+ *
7455
+ * @type {string}
7456
+ * @memberof MetaFilterGroupOrLeafDTO
7457
+ */
7458
+ value?: string;
7459
+ }
7460
+ export declare const MetaFilterGroupOrLeafDTOLogicalOperatorEnum: {
7461
+ readonly And: "AND";
7462
+ readonly Or: "OR";
7463
+ };
7464
+ export type MetaFilterGroupOrLeafDTOLogicalOperatorEnum = (typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOLogicalOperatorEnum];
7465
+ export declare const MetaFilterGroupOrLeafDTOOperatorEnum: {
7466
+ readonly Equal: "=";
7467
+ readonly NotEqual: "!=";
7468
+ readonly GreaterThan: ">";
7469
+ readonly LessThan: "<";
7470
+ readonly ArrayContains: "array_contains";
7471
+ };
7472
+ export type MetaFilterGroupOrLeafDTOOperatorEnum = (typeof MetaFilterGroupOrLeafDTOOperatorEnum)[keyof typeof MetaFilterGroupOrLeafDTOOperatorEnum];
7426
7473
  /**
7427
7474
  *
7428
7475
  * @export
@@ -8375,6 +8422,12 @@ export interface ModuleTransferVersionDTO {
8375
8422
  * @memberof ModuleTransferVersionDTO
8376
8423
  */
8377
8424
  uiSchema: string;
8425
+ /**
8426
+ *
8427
+ * @type {string}
8428
+ * @memberof ModuleTransferVersionDTO
8429
+ */
8430
+ defaultSystemConfig?: string;
8378
8431
  /**
8379
8432
  *
8380
8433
  * @type {Array<ICommand>}
@@ -8529,6 +8582,24 @@ export interface ModuleVersionOutputDTO {
8529
8582
  * @memberof ModuleVersionOutputDTO
8530
8583
  */
8531
8584
  moduleId: string;
8585
+ /**
8586
+ *
8587
+ * @type {string}
8588
+ * @memberof ModuleVersionOutputDTO
8589
+ */
8590
+ registryId?: string;
8591
+ /**
8592
+ *
8593
+ * @type {string}
8594
+ * @memberof ModuleVersionOutputDTO
8595
+ */
8596
+ sourceModuleName?: string;
8597
+ /**
8598
+ *
8599
+ * @type {string}
8600
+ * @memberof ModuleVersionOutputDTO
8601
+ */
8602
+ sourceVersion?: string;
8532
8603
  /**
8533
8604
  *
8534
8605
  * @type {Array<CronJobOutputDTO>}
@@ -9053,6 +9124,19 @@ export declare const ParamKeyKeyEnum: {
9053
9124
  readonly UnknownCommandFeedbackMessage: "unknownCommandFeedbackMessage";
9054
9125
  };
9055
9126
  export type ParamKeyKeyEnum = (typeof ParamKeyKeyEnum)[keyof typeof ParamKeyKeyEnum];
9127
+ /**
9128
+ *
9129
+ * @export
9130
+ * @interface ParamRoleId
9131
+ */
9132
+ export interface ParamRoleId {
9133
+ /**
9134
+ *
9135
+ * @type {string}
9136
+ * @memberof ParamRoleId
9137
+ */
9138
+ roleId: string;
9139
+ }
9056
9140
  /**
9057
9141
  *
9058
9142
  * @export
@@ -9377,6 +9461,94 @@ export interface PlayerActivityMixEntryDTOAPI {
9377
9461
  */
9378
9462
  meta: MetadataOutput;
9379
9463
  }
9464
+ /**
9465
+ *
9466
+ * @export
9467
+ * @interface PlayerBulkAssignRoleErrorDTO
9468
+ */
9469
+ export interface PlayerBulkAssignRoleErrorDTO {
9470
+ /**
9471
+ *
9472
+ * @type {string}
9473
+ * @memberof PlayerBulkAssignRoleErrorDTO
9474
+ */
9475
+ playerId: string;
9476
+ /**
9477
+ *
9478
+ * @type {string}
9479
+ * @memberof PlayerBulkAssignRoleErrorDTO
9480
+ */
9481
+ reason: string;
9482
+ }
9483
+ /**
9484
+ *
9485
+ * @export
9486
+ * @interface PlayerBulkAssignRoleInputDTO
9487
+ */
9488
+ export interface PlayerBulkAssignRoleInputDTO {
9489
+ /**
9490
+ *
9491
+ * @type {Array<string>}
9492
+ * @memberof PlayerBulkAssignRoleInputDTO
9493
+ */
9494
+ playerIds: Array<string>;
9495
+ /**
9496
+ *
9497
+ * @type {string}
9498
+ * @memberof PlayerBulkAssignRoleInputDTO
9499
+ */
9500
+ gameServerId?: string;
9501
+ /**
9502
+ *
9503
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
9504
+ * @memberof PlayerBulkAssignRoleInputDTO
9505
+ */
9506
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
9507
+ }
9508
+ /**
9509
+ *
9510
+ * @export
9511
+ * @interface PlayerBulkAssignRoleOutputDTO
9512
+ */
9513
+ export interface PlayerBulkAssignRoleOutputDTO {
9514
+ /**
9515
+ *
9516
+ * @type {number}
9517
+ * @memberof PlayerBulkAssignRoleOutputDTO
9518
+ */
9519
+ success: number;
9520
+ /**
9521
+ *
9522
+ * @type {number}
9523
+ * @memberof PlayerBulkAssignRoleOutputDTO
9524
+ */
9525
+ failed: number;
9526
+ /**
9527
+ *
9528
+ * @type {Array<PlayerBulkAssignRoleErrorDTO>}
9529
+ * @memberof PlayerBulkAssignRoleOutputDTO
9530
+ */
9531
+ errors: Array<PlayerBulkAssignRoleErrorDTO>;
9532
+ }
9533
+ /**
9534
+ *
9535
+ * @export
9536
+ * @interface PlayerBulkAssignRoleOutputDTOAPI
9537
+ */
9538
+ export interface PlayerBulkAssignRoleOutputDTOAPI {
9539
+ /**
9540
+ *
9541
+ * @type {PlayerBulkAssignRoleOutputDTO}
9542
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9543
+ */
9544
+ data: PlayerBulkAssignRoleOutputDTO;
9545
+ /**
9546
+ *
9547
+ * @type {MetadataOutput}
9548
+ * @memberof PlayerBulkAssignRoleOutputDTOAPI
9549
+ */
9550
+ meta: MetadataOutput;
9551
+ }
9380
9552
  /**
9381
9553
  *
9382
9554
  * @export
@@ -11122,6 +11294,88 @@ export interface PlayersByItemInputDTO {
11122
11294
  */
11123
11295
  endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11124
11296
  }
11297
+ /**
11298
+ *
11299
+ * @export
11300
+ * @interface PogBulkAddCurrencyErrorDTO
11301
+ */
11302
+ export interface PogBulkAddCurrencyErrorDTO {
11303
+ /**
11304
+ *
11305
+ * @type {string}
11306
+ * @memberof PogBulkAddCurrencyErrorDTO
11307
+ */
11308
+ playerId: string;
11309
+ /**
11310
+ *
11311
+ * @type {string}
11312
+ * @memberof PogBulkAddCurrencyErrorDTO
11313
+ */
11314
+ reason: string;
11315
+ }
11316
+ /**
11317
+ *
11318
+ * @export
11319
+ * @interface PogBulkAddCurrencyInputDTO
11320
+ */
11321
+ export interface PogBulkAddCurrencyInputDTO {
11322
+ /**
11323
+ *
11324
+ * @type {Array<string>}
11325
+ * @memberof PogBulkAddCurrencyInputDTO
11326
+ */
11327
+ playerIds: Array<string>;
11328
+ /**
11329
+ *
11330
+ * @type {number}
11331
+ * @memberof PogBulkAddCurrencyInputDTO
11332
+ */
11333
+ amount: number;
11334
+ }
11335
+ /**
11336
+ *
11337
+ * @export
11338
+ * @interface PogBulkAddCurrencyOutputDTO
11339
+ */
11340
+ export interface PogBulkAddCurrencyOutputDTO {
11341
+ /**
11342
+ *
11343
+ * @type {number}
11344
+ * @memberof PogBulkAddCurrencyOutputDTO
11345
+ */
11346
+ success: number;
11347
+ /**
11348
+ *
11349
+ * @type {number}
11350
+ * @memberof PogBulkAddCurrencyOutputDTO
11351
+ */
11352
+ failed: number;
11353
+ /**
11354
+ *
11355
+ * @type {Array<PogBulkAddCurrencyErrorDTO>}
11356
+ * @memberof PogBulkAddCurrencyOutputDTO
11357
+ */
11358
+ errors: Array<PogBulkAddCurrencyErrorDTO>;
11359
+ }
11360
+ /**
11361
+ *
11362
+ * @export
11363
+ * @interface PogBulkAddCurrencyOutputDTOAPI
11364
+ */
11365
+ export interface PogBulkAddCurrencyOutputDTOAPI {
11366
+ /**
11367
+ *
11368
+ * @type {PogBulkAddCurrencyOutputDTO}
11369
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11370
+ */
11371
+ data: PogBulkAddCurrencyOutputDTO;
11372
+ /**
11373
+ *
11374
+ * @type {MetadataOutput}
11375
+ * @memberof PogBulkAddCurrencyOutputDTOAPI
11376
+ */
11377
+ meta: MetadataOutput;
11378
+ }
11125
11379
  /**
11126
11380
  *
11127
11381
  * @export
@@ -11252,137 +11506,517 @@ export interface ProductMetricsDTO {
11252
11506
  * @type {number}
11253
11507
  * @memberof ProductMetricsDTO
11254
11508
  */
11255
- totalProducts: number;
11509
+ totalProducts: number;
11510
+ }
11511
+ /**
11512
+ *
11513
+ * @export
11514
+ * @interface RadiusSearchInputDTO
11515
+ */
11516
+ export interface RadiusSearchInputDTO {
11517
+ /**
11518
+ *
11519
+ * @type {number}
11520
+ * @memberof RadiusSearchInputDTO
11521
+ */
11522
+ x: number;
11523
+ /**
11524
+ *
11525
+ * @type {number}
11526
+ * @memberof RadiusSearchInputDTO
11527
+ */
11528
+ y: number;
11529
+ /**
11530
+ *
11531
+ * @type {number}
11532
+ * @memberof RadiusSearchInputDTO
11533
+ */
11534
+ z: number;
11535
+ /**
11536
+ *
11537
+ * @type {number}
11538
+ * @memberof RadiusSearchInputDTO
11539
+ */
11540
+ radius: number;
11541
+ /**
11542
+ *
11543
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11544
+ * @memberof RadiusSearchInputDTO
11545
+ */
11546
+ startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11547
+ /**
11548
+ *
11549
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11550
+ * @memberof RadiusSearchInputDTO
11551
+ */
11552
+ endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11553
+ /**
11554
+ *
11555
+ * @type {string}
11556
+ * @memberof RadiusSearchInputDTO
11557
+ */
11558
+ gameserverId: string;
11559
+ }
11560
+ /**
11561
+ *
11562
+ * @export
11563
+ * @interface RangeFilterCreatedAndUpdatedAt
11564
+ */
11565
+ export interface RangeFilterCreatedAndUpdatedAt {
11566
+ /**
11567
+ *
11568
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11569
+ * @memberof RangeFilterCreatedAndUpdatedAt
11570
+ */
11571
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11572
+ /**
11573
+ *
11574
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11575
+ * @memberof RangeFilterCreatedAndUpdatedAt
11576
+ */
11577
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11578
+ }
11579
+ /**
11580
+ *
11581
+ * @export
11582
+ * @interface RecentOrderDTO
11583
+ */
11584
+ export interface RecentOrderDTO {
11585
+ /**
11586
+ *
11587
+ * @type {string}
11588
+ * @memberof RecentOrderDTO
11589
+ */
11590
+ id: string;
11591
+ /**
11592
+ *
11593
+ * @type {string}
11594
+ * @memberof RecentOrderDTO
11595
+ */
11596
+ playerName: string;
11597
+ /**
11598
+ *
11599
+ * @type {string}
11600
+ * @memberof RecentOrderDTO
11601
+ */
11602
+ itemName: string;
11603
+ /**
11604
+ *
11605
+ * @type {number}
11606
+ * @memberof RecentOrderDTO
11607
+ */
11608
+ value: number;
11609
+ /**
11610
+ *
11611
+ * @type {string}
11612
+ * @memberof RecentOrderDTO
11613
+ */
11614
+ time: string;
11615
+ /**
11616
+ *
11617
+ * @type {string}
11618
+ * @memberof RecentOrderDTO
11619
+ */
11620
+ status: RecentOrderDTOStatusEnum;
11621
+ }
11622
+ export declare const RecentOrderDTOStatusEnum: {
11623
+ readonly Completed: "COMPLETED";
11624
+ readonly Paid: "PAID";
11625
+ readonly Canceled: "CANCELED";
11626
+ };
11627
+ export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
11628
+ /**
11629
+ *
11630
+ * @export
11631
+ * @interface RedirectQs
11632
+ */
11633
+ export interface RedirectQs {
11634
+ /**
11635
+ *
11636
+ * @type {string}
11637
+ * @memberof RedirectQs
11638
+ */
11639
+ redirect: string;
11640
+ }
11641
+ /**
11642
+ *
11643
+ * @export
11644
+ * @interface RegistryCreateDTO
11645
+ */
11646
+ export interface RegistryCreateDTO {
11647
+ /**
11648
+ *
11649
+ * @type {string}
11650
+ * @memberof RegistryCreateDTO
11651
+ */
11652
+ url: string;
11653
+ /**
11654
+ *
11655
+ * @type {string}
11656
+ * @memberof RegistryCreateDTO
11657
+ */
11658
+ name?: string;
11659
+ /**
11660
+ *
11661
+ * @type {string}
11662
+ * @memberof RegistryCreateDTO
11663
+ */
11664
+ description?: string;
11665
+ }
11666
+ /**
11667
+ *
11668
+ * @export
11669
+ * @interface RegistryInstallBody
11670
+ */
11671
+ export interface RegistryInstallBody {
11672
+ /**
11673
+ *
11674
+ * @type {string}
11675
+ * @memberof RegistryInstallBody
11676
+ */
11677
+ moduleName: string;
11678
+ /**
11679
+ *
11680
+ * @type {string}
11681
+ * @memberof RegistryInstallBody
11682
+ */
11683
+ version: string;
11684
+ }
11685
+ /**
11686
+ *
11687
+ * @export
11688
+ * @interface RegistryInstallInputDTO
11689
+ */
11690
+ export interface RegistryInstallInputDTO {
11691
+ /**
11692
+ *
11693
+ * @type {string}
11694
+ * @memberof RegistryInstallInputDTO
11695
+ */
11696
+ moduleName: string;
11697
+ /**
11698
+ *
11699
+ * @type {string}
11700
+ * @memberof RegistryInstallInputDTO
11701
+ */
11702
+ version: string;
11703
+ }
11704
+ /**
11705
+ *
11706
+ * @export
11707
+ * @interface RegistryListOutputDTO
11708
+ */
11709
+ export interface RegistryListOutputDTO {
11710
+ /**
11711
+ *
11712
+ * @type {string}
11713
+ * @memberof RegistryListOutputDTO
11714
+ */
11715
+ url: string;
11716
+ /**
11717
+ *
11718
+ * @type {string}
11719
+ * @memberof RegistryListOutputDTO
11720
+ */
11721
+ name: string;
11722
+ /**
11723
+ *
11724
+ * @type {string}
11725
+ * @memberof RegistryListOutputDTO
11726
+ */
11727
+ description?: string;
11728
+ /**
11729
+ *
11730
+ * @type {Array<RegistryModuleVersionOutputDTO>}
11731
+ * @memberof RegistryListOutputDTO
11732
+ */
11733
+ modules?: Array<RegistryModuleVersionOutputDTO>;
11734
+ /**
11735
+ *
11736
+ * @type {string}
11737
+ * @memberof RegistryListOutputDTO
11738
+ */
11739
+ lastFetchError?: string;
11740
+ /**
11741
+ *
11742
+ * @type {string}
11743
+ * @memberof RegistryListOutputDTO
11744
+ */
11745
+ id: string;
11746
+ /**
11747
+ *
11748
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11749
+ * @memberof RegistryListOutputDTO
11750
+ */
11751
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11752
+ /**
11753
+ *
11754
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11755
+ * @memberof RegistryListOutputDTO
11756
+ */
11757
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11758
+ }
11759
+ /**
11760
+ *
11761
+ * @export
11762
+ * @interface RegistryListOutputDTOAPI
11763
+ */
11764
+ export interface RegistryListOutputDTOAPI {
11765
+ /**
11766
+ *
11767
+ * @type {Array<RegistryListOutputDTO>}
11768
+ * @memberof RegistryListOutputDTOAPI
11769
+ */
11770
+ data: Array<RegistryListOutputDTO>;
11771
+ /**
11772
+ *
11773
+ * @type {MetadataOutput}
11774
+ * @memberof RegistryListOutputDTOAPI
11775
+ */
11776
+ meta: MetadataOutput;
11777
+ }
11778
+ /**
11779
+ *
11780
+ * @export
11781
+ * @interface RegistryManifestDTO
11782
+ */
11783
+ export interface RegistryManifestDTO {
11784
+ /**
11785
+ *
11786
+ * @type {string}
11787
+ * @memberof RegistryManifestDTO
11788
+ */
11789
+ name: string;
11790
+ /**
11791
+ *
11792
+ * @type {string}
11793
+ * @memberof RegistryManifestDTO
11794
+ */
11795
+ description?: string;
11796
+ /**
11797
+ *
11798
+ * @type {Array<RegistryManifestModuleDTO>}
11799
+ * @memberof RegistryManifestDTO
11800
+ */
11801
+ modules: Array<RegistryManifestModuleDTO>;
11802
+ }
11803
+ /**
11804
+ *
11805
+ * @export
11806
+ * @interface RegistryManifestModuleDTO
11807
+ */
11808
+ export interface RegistryManifestModuleDTO {
11809
+ /**
11810
+ *
11811
+ * @type {string}
11812
+ * @memberof RegistryManifestModuleDTO
11813
+ */
11814
+ name: string;
11815
+ /**
11816
+ *
11817
+ * @type {string}
11818
+ * @memberof RegistryManifestModuleDTO
11819
+ */
11820
+ latestVersion: string;
11821
+ /**
11822
+ *
11823
+ * @type {Array<string>}
11824
+ * @memberof RegistryManifestModuleDTO
11825
+ */
11826
+ versions: Array<string>;
11827
+ /**
11828
+ *
11829
+ * @type {string}
11830
+ * @memberof RegistryManifestModuleDTO
11831
+ */
11832
+ description?: string;
11833
+ }
11834
+ /**
11835
+ *
11836
+ * @export
11837
+ * @interface RegistryModuleVersionOutputDTO
11838
+ */
11839
+ export interface RegistryModuleVersionOutputDTO {
11840
+ /**
11841
+ *
11842
+ * @type {string}
11843
+ * @memberof RegistryModuleVersionOutputDTO
11844
+ */
11845
+ name: string;
11846
+ /**
11847
+ *
11848
+ * @type {Array<string>}
11849
+ * @memberof RegistryModuleVersionOutputDTO
11850
+ */
11851
+ versions: Array<string>;
11852
+ /**
11853
+ *
11854
+ * @type {string}
11855
+ * @memberof RegistryModuleVersionOutputDTO
11856
+ */
11857
+ latestVersion: string;
11858
+ /**
11859
+ *
11860
+ * @type {string}
11861
+ * @memberof RegistryModuleVersionOutputDTO
11862
+ */
11863
+ description?: string;
11256
11864
  }
11257
11865
  /**
11258
11866
  *
11259
11867
  * @export
11260
- * @interface RadiusSearchInputDTO
11868
+ * @interface RegistryOutputDTO
11261
11869
  */
11262
- export interface RadiusSearchInputDTO {
11870
+ export interface RegistryOutputDTO {
11263
11871
  /**
11264
11872
  *
11265
- * @type {number}
11266
- * @memberof RadiusSearchInputDTO
11873
+ * @type {string}
11874
+ * @memberof RegistryOutputDTO
11267
11875
  */
11268
- x: number;
11876
+ url: string;
11269
11877
  /**
11270
11878
  *
11271
- * @type {number}
11272
- * @memberof RadiusSearchInputDTO
11879
+ * @type {string}
11880
+ * @memberof RegistryOutputDTO
11273
11881
  */
11274
- y: number;
11882
+ name: string;
11275
11883
  /**
11276
11884
  *
11277
- * @type {number}
11278
- * @memberof RadiusSearchInputDTO
11885
+ * @type {string}
11886
+ * @memberof RegistryOutputDTO
11279
11887
  */
11280
- z: number;
11888
+ description?: string;
11281
11889
  /**
11282
11890
  *
11283
- * @type {number}
11284
- * @memberof RadiusSearchInputDTO
11891
+ * @type {string}
11892
+ * @memberof RegistryOutputDTO
11285
11893
  */
11286
- radius: number;
11894
+ id: string;
11287
11895
  /**
11288
11896
  *
11289
11897
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11290
- * @memberof RadiusSearchInputDTO
11898
+ * @memberof RegistryOutputDTO
11291
11899
  */
11292
- startDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11900
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11293
11901
  /**
11294
11902
  *
11295
11903
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11296
- * @memberof RadiusSearchInputDTO
11904
+ * @memberof RegistryOutputDTO
11297
11905
  */
11298
- endDate?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11906
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11907
+ }
11908
+ /**
11909
+ *
11910
+ * @export
11911
+ * @interface RegistrySubscribeBody
11912
+ */
11913
+ export interface RegistrySubscribeBody {
11299
11914
  /**
11300
11915
  *
11301
11916
  * @type {string}
11302
- * @memberof RadiusSearchInputDTO
11917
+ * @memberof RegistrySubscribeBody
11303
11918
  */
11304
- gameserverId: string;
11919
+ url: string;
11305
11920
  }
11306
11921
  /**
11307
11922
  *
11308
11923
  * @export
11309
- * @interface RangeFilterCreatedAndUpdatedAt
11924
+ * @interface RegistrySubscribeInputDTO
11310
11925
  */
11311
- export interface RangeFilterCreatedAndUpdatedAt {
11926
+ export interface RegistrySubscribeInputDTO {
11312
11927
  /**
11313
11928
  *
11314
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11315
- * @memberof RangeFilterCreatedAndUpdatedAt
11929
+ * @type {string}
11930
+ * @memberof RegistrySubscribeInputDTO
11316
11931
  */
11317
- createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11932
+ url: string;
11933
+ }
11934
+ /**
11935
+ *
11936
+ * @export
11937
+ * @interface RegistryUpdateDTO
11938
+ */
11939
+ export interface RegistryUpdateDTO {
11318
11940
  /**
11319
11941
  *
11320
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11321
- * @memberof RangeFilterCreatedAndUpdatedAt
11942
+ * @type {string}
11943
+ * @memberof RegistryUpdateDTO
11322
11944
  */
11323
- updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11945
+ name?: string;
11946
+ /**
11947
+ *
11948
+ * @type {string}
11949
+ * @memberof RegistryUpdateDTO
11950
+ */
11951
+ description?: string;
11324
11952
  }
11325
11953
  /**
11326
11954
  *
11327
11955
  * @export
11328
- * @interface RecentOrderDTO
11956
+ * @interface RegistryWithManifestOutputDTO
11329
11957
  */
11330
- export interface RecentOrderDTO {
11958
+ export interface RegistryWithManifestOutputDTO {
11331
11959
  /**
11332
11960
  *
11333
11961
  * @type {string}
11334
- * @memberof RecentOrderDTO
11962
+ * @memberof RegistryWithManifestOutputDTO
11335
11963
  */
11336
- id: string;
11964
+ url: string;
11337
11965
  /**
11338
11966
  *
11339
11967
  * @type {string}
11340
- * @memberof RecentOrderDTO
11968
+ * @memberof RegistryWithManifestOutputDTO
11341
11969
  */
11342
- playerName: string;
11970
+ name: string;
11343
11971
  /**
11344
11972
  *
11345
11973
  * @type {string}
11346
- * @memberof RecentOrderDTO
11974
+ * @memberof RegistryWithManifestOutputDTO
11347
11975
  */
11348
- itemName: string;
11976
+ description?: string;
11349
11977
  /**
11350
11978
  *
11351
- * @type {number}
11352
- * @memberof RecentOrderDTO
11979
+ * @type {object}
11980
+ * @memberof RegistryWithManifestOutputDTO
11353
11981
  */
11354
- value: number;
11982
+ manifest?: object;
11355
11983
  /**
11356
11984
  *
11357
11985
  * @type {string}
11358
- * @memberof RecentOrderDTO
11986
+ * @memberof RegistryWithManifestOutputDTO
11359
11987
  */
11360
- time: string;
11988
+ id: string;
11361
11989
  /**
11362
11990
  *
11363
- * @type {string}
11364
- * @memberof RecentOrderDTO
11991
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11992
+ * @memberof RegistryWithManifestOutputDTO
11365
11993
  */
11366
- status: RecentOrderDTOStatusEnum;
11994
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11995
+ /**
11996
+ *
11997
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11998
+ * @memberof RegistryWithManifestOutputDTO
11999
+ */
12000
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11367
12001
  }
11368
- export declare const RecentOrderDTOStatusEnum: {
11369
- readonly Completed: "COMPLETED";
11370
- readonly Paid: "PAID";
11371
- readonly Canceled: "CANCELED";
11372
- };
11373
- export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
11374
12002
  /**
11375
12003
  *
11376
12004
  * @export
11377
- * @interface RedirectQs
12005
+ * @interface RegistryWithManifestOutputDTOAPI
11378
12006
  */
11379
- export interface RedirectQs {
12007
+ export interface RegistryWithManifestOutputDTOAPI {
11380
12008
  /**
11381
12009
  *
11382
- * @type {string}
11383
- * @memberof RedirectQs
12010
+ * @type {RegistryWithManifestOutputDTO}
12011
+ * @memberof RegistryWithManifestOutputDTOAPI
11384
12012
  */
11385
- redirect: string;
12013
+ data: RegistryWithManifestOutputDTO;
12014
+ /**
12015
+ *
12016
+ * @type {MetadataOutput}
12017
+ * @memberof RegistryWithManifestOutputDTOAPI
12018
+ */
12019
+ meta: MetadataOutput;
11386
12020
  }
11387
12021
  /**
11388
12022
  *
@@ -19730,15 +20364,15 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
19730
20364
  */
19731
20365
  eventControllerCreate: (eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19732
20366
  /**
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)
20367
+ * 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`
20368
+ * @summary Explore events
19735
20369
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19736
20370
  * @param {*} [options] Override http request option.
19737
20371
  * @throws {RequiredError}
19738
20372
  */
19739
20373
  eventControllerExplore: (eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19740
20374
  /**
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`
20375
+ * 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
20376
  * @summary Get event volume time-series with optional grouping
19743
20377
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19744
20378
  * @param {*} [options] Override http request option.
@@ -19792,15 +20426,15 @@ export declare const EventApiFp: (configuration?: Configuration) => {
19792
20426
  */
19793
20427
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
19794
20428
  /**
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)
20429
+ * 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`
20430
+ * @summary Explore events
19797
20431
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19798
20432
  * @param {*} [options] Override http request option.
19799
20433
  * @throws {RequiredError}
19800
20434
  */
19801
20435
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventExploreOutputDTOAPI>>;
19802
20436
  /**
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`
20437
+ * 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
20438
  * @summary Get event volume time-series with optional grouping
19805
20439
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19806
20440
  * @param {*} [options] Override http request option.
@@ -19854,15 +20488,15 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
19854
20488
  */
19855
20489
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
19856
20490
  /**
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)
20491
+ * 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`
20492
+ * @summary Explore events
19859
20493
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19860
20494
  * @param {*} [options] Override http request option.
19861
20495
  * @throws {RequiredError}
19862
20496
  */
19863
20497
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventExploreOutputDTOAPI>;
19864
20498
  /**
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`
20499
+ * 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
20500
  * @summary Get event volume time-series with optional grouping
19867
20501
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19868
20502
  * @param {*} [options] Override http request option.
@@ -19919,8 +20553,8 @@ export declare class EventApi extends BaseAPI {
19919
20553
  */
19920
20554
  eventControllerCreate(eventCreateDTO?: EventCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
19921
20555
  /**
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)
20556
+ * 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`
20557
+ * @summary Explore events
19924
20558
  * @param {EventExploreInputDTO} [eventExploreInputDTO] EventExploreInputDTO
19925
20559
  * @param {*} [options] Override http request option.
19926
20560
  * @throws {RequiredError}
@@ -19928,7 +20562,7 @@ export declare class EventApi extends BaseAPI {
19928
20562
  */
19929
20563
  eventControllerExplore(eventExploreInputDTO?: EventExploreInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventExploreOutputDTOAPI, any>>;
19930
20564
  /**
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`
20565
+ * 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
20566
  * @summary Get event volume time-series with optional grouping
19933
20567
  * @param {EventVolumeInputDTO} [eventVolumeInputDTO] EventVolumeInputDTO
19934
20568
  * @param {*} [options] Override http request option.
@@ -22337,6 +22971,15 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
22337
22971
  * @throws {RequiredError}
22338
22972
  */
22339
22973
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22974
+ /**
22975
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
22976
+ * @summary Bulk assign role
22977
+ * @param {string} roleId
22978
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
22979
+ * @param {*} [options] Override http request option.
22980
+ * @throws {RequiredError}
22981
+ */
22982
+ playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22340
22983
  /**
22341
22984
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22342
22985
  * @summary Bulk delete
@@ -22443,6 +23086,15 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
22443
23086
  * @throws {RequiredError}
22444
23087
  */
22445
23088
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23089
+ /**
23090
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23091
+ * @summary Bulk assign role
23092
+ * @param {string} roleId
23093
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23094
+ * @param {*} [options] Override http request option.
23095
+ * @throws {RequiredError}
23096
+ */
23097
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
22446
23098
  /**
22447
23099
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22448
23100
  * @summary Bulk delete
@@ -22549,6 +23201,15 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
22549
23201
  * @throws {RequiredError}
22550
23202
  */
22551
23203
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23204
+ /**
23205
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23206
+ * @summary Bulk assign role
23207
+ * @param {string} roleId
23208
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23209
+ * @param {*} [options] Override http request option.
23210
+ * @throws {RequiredError}
23211
+ */
23212
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
22552
23213
  /**
22553
23214
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22554
23215
  * @summary Bulk delete
@@ -22663,6 +23324,16 @@ export declare class PlayerApi extends BaseAPI {
22663
23324
  * @memberof PlayerApi
22664
23325
  */
22665
23326
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23327
+ /**
23328
+ * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23329
+ * @summary Bulk assign role
23330
+ * @param {string} roleId
23331
+ * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23332
+ * @param {*} [options] Override http request option.
23333
+ * @throws {RequiredError}
23334
+ * @memberof PlayerApi
23335
+ */
23336
+ playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
22666
23337
  /**
22667
23338
  * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
22668
23339
  * @summary Bulk delete
@@ -22734,6 +23405,15 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
22734
23405
  * @throws {RequiredError}
22735
23406
  */
22736
23407
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23408
+ /**
23409
+ * 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`
23410
+ * @summary Bulk add currency
23411
+ * @param {string} gameServerId
23412
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23413
+ * @param {*} [options] Override http request option.
23414
+ * @throws {RequiredError}
23415
+ */
23416
+ playerOnGameServerControllerBulkAddCurrency: (gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22737
23417
  /**
22738
23418
  * 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
23419
  * @summary Bulk delete
@@ -22816,6 +23496,15 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
22816
23496
  * @throws {RequiredError}
22817
23497
  */
22818
23498
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23499
+ /**
23500
+ * 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`
23501
+ * @summary Bulk add currency
23502
+ * @param {string} gameServerId
23503
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23504
+ * @param {*} [options] Override http request option.
23505
+ * @throws {RequiredError}
23506
+ */
23507
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>>;
22819
23508
  /**
22820
23509
  * 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
23510
  * @summary Bulk delete
@@ -22898,6 +23587,15 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
22898
23587
  * @throws {RequiredError}
22899
23588
  */
22900
23589
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23590
+ /**
23591
+ * 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`
23592
+ * @summary Bulk add currency
23593
+ * @param {string} gameServerId
23594
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23595
+ * @param {*} [options] Override http request option.
23596
+ * @throws {RequiredError}
23597
+ */
23598
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>;
22901
23599
  /**
22902
23600
  * 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
23601
  * @summary Bulk delete
@@ -22983,6 +23681,16 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
22983
23681
  * @memberof PlayerOnGameServerApi
22984
23682
  */
22985
23683
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23684
+ /**
23685
+ * 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`
23686
+ * @summary Bulk add currency
23687
+ * @param {string} gameServerId
23688
+ * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23689
+ * @param {*} [options] Override http request option.
23690
+ * @throws {RequiredError}
23691
+ * @memberof PlayerOnGameServerApi
23692
+ */
23693
+ playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkAddCurrencyOutputDTOAPI, any>>;
22986
23694
  /**
22987
23695
  * 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
23696
  * @summary Bulk delete
@@ -23057,6 +23765,197 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
23057
23765
  */
23058
23766
  playerOnGameServerControllerTransactBetweenPlayers(gameServerId: string, sender: string, receiver: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
23059
23767
  }
23768
+ /**
23769
+ * RegistryApi - axios parameter creator
23770
+ * @export
23771
+ */
23772
+ export declare const RegistryApiAxiosParamCreator: (configuration?: Configuration) => {
23773
+ /**
23774
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23775
+ * @summary Install a module from a registry
23776
+ * @param {string} id
23777
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23778
+ * @param {*} [options] Override http request option.
23779
+ * @throws {RequiredError}
23780
+ */
23781
+ registryControllerInstall: (id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23782
+ /**
23783
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23784
+ * @summary List subscribed registries
23785
+ * @param {*} [options] Override http request option.
23786
+ * @throws {RequiredError}
23787
+ */
23788
+ registryControllerList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23789
+ /**
23790
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23791
+ * @summary Refresh registry manifest
23792
+ * @param {string} id
23793
+ * @param {*} [options] Override http request option.
23794
+ * @throws {RequiredError}
23795
+ */
23796
+ registryControllerRefresh: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23797
+ /**
23798
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23799
+ * @summary Subscribe to a registry
23800
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23801
+ * @param {*} [options] Override http request option.
23802
+ * @throws {RequiredError}
23803
+ */
23804
+ registryControllerSubscribe: (registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23805
+ /**
23806
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23807
+ * @summary Unsubscribe from a registry
23808
+ * @param {string} id
23809
+ * @param {*} [options] Override http request option.
23810
+ * @throws {RequiredError}
23811
+ */
23812
+ registryControllerUnsubscribe: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23813
+ };
23814
+ /**
23815
+ * RegistryApi - functional programming interface
23816
+ * @export
23817
+ */
23818
+ export declare const RegistryApiFp: (configuration?: Configuration) => {
23819
+ /**
23820
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23821
+ * @summary Install a module from a registry
23822
+ * @param {string} id
23823
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23824
+ * @param {*} [options] Override http request option.
23825
+ * @throws {RequiredError}
23826
+ */
23827
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23828
+ /**
23829
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23830
+ * @summary List subscribed registries
23831
+ * @param {*} [options] Override http request option.
23832
+ * @throws {RequiredError}
23833
+ */
23834
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryListOutputDTOAPI>>;
23835
+ /**
23836
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23837
+ * @summary Refresh registry manifest
23838
+ * @param {string} id
23839
+ * @param {*} [options] Override http request option.
23840
+ * @throws {RequiredError}
23841
+ */
23842
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
23843
+ /**
23844
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23845
+ * @summary Subscribe to a registry
23846
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23847
+ * @param {*} [options] Override http request option.
23848
+ * @throws {RequiredError}
23849
+ */
23850
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RegistryWithManifestOutputDTOAPI>>;
23851
+ /**
23852
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23853
+ * @summary Unsubscribe from a registry
23854
+ * @param {string} id
23855
+ * @param {*} [options] Override http request option.
23856
+ * @throws {RequiredError}
23857
+ */
23858
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23859
+ };
23860
+ /**
23861
+ * RegistryApi - factory interface
23862
+ * @export
23863
+ */
23864
+ export declare const RegistryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23865
+ /**
23866
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23867
+ * @summary Install a module from a registry
23868
+ * @param {string} id
23869
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23870
+ * @param {*} [options] Override http request option.
23871
+ * @throws {RequiredError}
23872
+ */
23873
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23874
+ /**
23875
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23876
+ * @summary List subscribed registries
23877
+ * @param {*} [options] Override http request option.
23878
+ * @throws {RequiredError}
23879
+ */
23880
+ registryControllerList(options?: RawAxiosRequestConfig): AxiosPromise<RegistryListOutputDTOAPI>;
23881
+ /**
23882
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23883
+ * @summary Refresh registry manifest
23884
+ * @param {string} id
23885
+ * @param {*} [options] Override http request option.
23886
+ * @throws {RequiredError}
23887
+ */
23888
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
23889
+ /**
23890
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23891
+ * @summary Subscribe to a registry
23892
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23893
+ * @param {*} [options] Override http request option.
23894
+ * @throws {RequiredError}
23895
+ */
23896
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): AxiosPromise<RegistryWithManifestOutputDTOAPI>;
23897
+ /**
23898
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23899
+ * @summary Unsubscribe from a registry
23900
+ * @param {string} id
23901
+ * @param {*} [options] Override http request option.
23902
+ * @throws {RequiredError}
23903
+ */
23904
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23905
+ };
23906
+ /**
23907
+ * RegistryApi - object-oriented interface
23908
+ * @export
23909
+ * @class RegistryApi
23910
+ * @extends {BaseAPI}
23911
+ */
23912
+ export declare class RegistryApi extends BaseAPI {
23913
+ /**
23914
+ * Fetch a specific module version from the registry and install it into the domain Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerInstall`
23915
+ * @summary Install a module from a registry
23916
+ * @param {string} id
23917
+ * @param {RegistryInstallBody} [registryInstallBody] RegistryInstallBody
23918
+ * @param {*} [options] Override http request option.
23919
+ * @throws {RequiredError}
23920
+ * @memberof RegistryApi
23921
+ */
23922
+ registryControllerInstall(id: string, registryInstallBody?: RegistryInstallBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23923
+ /**
23924
+ * List all subscribed registries with their cached module manifests Required permissions: `READ_MODULES`<br> OperationId: `RegistryControllerList`
23925
+ * @summary List subscribed registries
23926
+ * @param {*} [options] Override http request option.
23927
+ * @throws {RequiredError}
23928
+ * @memberof RegistryApi
23929
+ */
23930
+ registryControllerList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryListOutputDTOAPI, any>>;
23931
+ /**
23932
+ * Bust the manifest cache and re-fetch from the registry URL. Requires MANAGE_MODULES permission. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerRefresh`
23933
+ * @summary Refresh registry manifest
23934
+ * @param {string} id
23935
+ * @param {*} [options] Override http request option.
23936
+ * @throws {RequiredError}
23937
+ * @memberof RegistryApi
23938
+ */
23939
+ registryControllerRefresh(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
23940
+ /**
23941
+ * Subscribe to a module registry by URL. The URL must serve a valid registry.json manifest. Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerSubscribe`
23942
+ * @summary Subscribe to a registry
23943
+ * @param {RegistrySubscribeBody} [registrySubscribeBody] RegistrySubscribeBody
23944
+ * @param {*} [options] Override http request option.
23945
+ * @throws {RequiredError}
23946
+ * @memberof RegistryApi
23947
+ */
23948
+ registryControllerSubscribe(registrySubscribeBody?: RegistrySubscribeBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RegistryWithManifestOutputDTOAPI, any>>;
23949
+ /**
23950
+ * Unsubscribe from a registry. Installed modules from this registry will be orphaned (registry_id set to null). Required permissions: `MANAGE_MODULES`<br> OperationId: `RegistryControllerUnsubscribe`
23951
+ * @summary Unsubscribe from a registry
23952
+ * @param {string} id
23953
+ * @param {*} [options] Override http request option.
23954
+ * @throws {RequiredError}
23955
+ * @memberof RegistryApi
23956
+ */
23957
+ registryControllerUnsubscribe(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23958
+ }
23060
23959
  /**
23061
23960
  * RoleApi - axios parameter creator
23062
23961
  * @export