@takaro/apiclient 0.0.0-dev.95796c3 → 0.0.0-dev.9646ad0

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.
@@ -746,6 +746,88 @@ export interface BoundingBoxSearchInputDTO {
746
746
  */
747
747
  gameserverId: string;
748
748
  }
749
+ /**
750
+ *
751
+ * @export
752
+ * @interface BulkActionFailureDTO
753
+ */
754
+ export interface BulkActionFailureDTO {
755
+ /**
756
+ *
757
+ * @type {string}
758
+ * @memberof BulkActionFailureDTO
759
+ */
760
+ id: string;
761
+ /**
762
+ *
763
+ * @type {string}
764
+ * @memberof BulkActionFailureDTO
765
+ */
766
+ name: string;
767
+ /**
768
+ *
769
+ * @type {string}
770
+ * @memberof BulkActionFailureDTO
771
+ */
772
+ reason: string;
773
+ }
774
+ /**
775
+ *
776
+ * @export
777
+ * @interface BulkActionResultDTO
778
+ */
779
+ export interface BulkActionResultDTO {
780
+ /**
781
+ *
782
+ * @type {number}
783
+ * @memberof BulkActionResultDTO
784
+ */
785
+ succeeded: number;
786
+ /**
787
+ *
788
+ * @type {Array<BulkActionFailureDTO>}
789
+ * @memberof BulkActionResultDTO
790
+ */
791
+ failed: Array<BulkActionFailureDTO>;
792
+ }
793
+ /**
794
+ *
795
+ * @export
796
+ * @interface BulkActionResultDTOAPI
797
+ */
798
+ export interface BulkActionResultDTOAPI {
799
+ /**
800
+ *
801
+ * @type {BulkActionResultDTO}
802
+ * @memberof BulkActionResultDTOAPI
803
+ */
804
+ data: BulkActionResultDTO;
805
+ /**
806
+ *
807
+ * @type {MetadataOutput}
808
+ * @memberof BulkActionResultDTOAPI
809
+ */
810
+ meta: MetadataOutput;
811
+ }
812
+ /**
813
+ *
814
+ * @export
815
+ * @interface BulkTargetDTO
816
+ */
817
+ export interface BulkTargetDTO {
818
+ /**
819
+ *
820
+ * @type {Array<string>}
821
+ * @memberof BulkTargetDTO
822
+ */
823
+ ids?: Array<string>;
824
+ /**
825
+ *
826
+ * @type {Array<string>}
827
+ * @memberof BulkTargetDTO
828
+ */
829
+ excludedIds?: Array<string>;
830
+ }
749
831
  /**
750
832
  *
751
833
  * @export
@@ -2218,6 +2300,30 @@ export interface DomainCreateInputDTO {
2218
2300
  * @memberof DomainCreateInputDTO
2219
2301
  */
2220
2302
  maxFunctionsInModule?: number;
2303
+ /**
2304
+ *
2305
+ * @type {number}
2306
+ * @memberof DomainCreateInputDTO
2307
+ */
2308
+ maxCustomRoles?: number;
2309
+ /**
2310
+ *
2311
+ * @type {number}
2312
+ * @memberof DomainCreateInputDTO
2313
+ */
2314
+ maxDiscordLinkedRoles?: number;
2315
+ /**
2316
+ *
2317
+ * @type {boolean}
2318
+ * @memberof DomainCreateInputDTO
2319
+ */
2320
+ skipBuiltinSeeding?: boolean;
2321
+ /**
2322
+ *
2323
+ * @type {string}
2324
+ * @memberof DomainCreateInputDTO
2325
+ */
2326
+ serverRegistrationToken?: string;
2221
2327
  }
2222
2328
  export declare const DomainCreateInputDTOStateEnum: {
2223
2329
  readonly Active: "ACTIVE";
@@ -2372,6 +2478,18 @@ export interface DomainOutputDTO {
2372
2478
  * @memberof DomainOutputDTO
2373
2479
  */
2374
2480
  maxFunctionsInModule: number;
2481
+ /**
2482
+ *
2483
+ * @type {number}
2484
+ * @memberof DomainOutputDTO
2485
+ */
2486
+ maxCustomRoles: number;
2487
+ /**
2488
+ *
2489
+ * @type {number}
2490
+ * @memberof DomainOutputDTO
2491
+ */
2492
+ maxDiscordLinkedRoles: number;
2375
2493
  /**
2376
2494
  *
2377
2495
  * @type {string}
@@ -2592,6 +2710,18 @@ export interface DomainUpdateInputDTO {
2592
2710
  * @memberof DomainUpdateInputDTO
2593
2711
  */
2594
2712
  maxFunctionsInModule?: number;
2713
+ /**
2714
+ *
2715
+ * @type {number}
2716
+ * @memberof DomainUpdateInputDTO
2717
+ */
2718
+ maxCustomRoles?: number;
2719
+ /**
2720
+ *
2721
+ * @type {number}
2722
+ * @memberof DomainUpdateInputDTO
2723
+ */
2724
+ maxDiscordLinkedRoles?: number;
2595
2725
  }
2596
2726
  export declare const DomainUpdateInputDTOStateEnum: {
2597
2727
  readonly Active: "ACTIVE";
@@ -3023,19 +3153,19 @@ export interface ErrorOutput {
3023
3153
  * @type {string}
3024
3154
  * @memberof ErrorOutput
3025
3155
  */
3026
- code: string;
3156
+ code?: string;
3027
3157
  /**
3028
3158
  *
3029
3159
  * @type {string}
3030
3160
  * @memberof ErrorOutput
3031
3161
  */
3032
- message: string;
3162
+ message?: string;
3033
3163
  /**
3034
3164
  *
3035
3165
  * @type {string}
3036
3166
  * @memberof ErrorOutput
3037
3167
  */
3038
- details: string;
3168
+ details?: string;
3039
3169
  }
3040
3170
  /**
3041
3171
  *
@@ -3048,7 +3178,7 @@ export interface EventChatMessage {
3048
3178
  * @type {IGamePlayer}
3049
3179
  * @memberof EventChatMessage
3050
3180
  */
3051
- player: IGamePlayer;
3181
+ player?: IGamePlayer;
3052
3182
  /**
3053
3183
  *
3054
3184
  * @type {string}
@@ -3176,6 +3306,7 @@ export declare const EventCreateDTOEventNameEnum: {
3176
3306
  readonly PlayerInventoryChanged: "player-inventory-changed";
3177
3307
  readonly EventRateLimited: "event-rate-limited";
3178
3308
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3309
+ readonly InviteLinkCreated: "invite-link-created";
3179
3310
  readonly PlayerConnected: "player-connected";
3180
3311
  readonly PlayerDisconnected: "player-disconnected";
3181
3312
  readonly ChatMessage: "chat-message";
@@ -3390,6 +3521,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3390
3521
  readonly PlayerInventoryChanged: "player-inventory-changed";
3391
3522
  readonly EventRateLimited: "event-rate-limited";
3392
3523
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3524
+ readonly InviteLinkCreated: "invite-link-created";
3393
3525
  readonly PlayerConnected: "player-connected";
3394
3526
  readonly PlayerDisconnected: "player-disconnected";
3395
3527
  readonly ChatMessage: "chat-message";
@@ -3756,6 +3888,7 @@ export declare const EventOutputDTOEventNameEnum: {
3756
3888
  readonly PlayerInventoryChanged: "player-inventory-changed";
3757
3889
  readonly EventRateLimited: "event-rate-limited";
3758
3890
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3891
+ readonly InviteLinkCreated: "invite-link-created";
3759
3892
  readonly PlayerConnected: "player-connected";
3760
3893
  readonly PlayerDisconnected: "player-disconnected";
3761
3894
  readonly ChatMessage: "chat-message";
@@ -3767,7 +3900,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3767
3900
  * @type EventOutputDTOMeta
3768
3901
  * @export
3769
3902
  */
3770
- export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3903
+ export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3771
3904
  /**
3772
3905
  *
3773
3906
  * @export
@@ -3944,6 +4077,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3944
4077
  readonly PlayerInventoryChanged: "player-inventory-changed";
3945
4078
  readonly EventRateLimited: "event-rate-limited";
3946
4079
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
4080
+ readonly InviteLinkCreated: "invite-link-created";
3947
4081
  readonly PlayerConnected: "player-connected";
3948
4082
  readonly PlayerDisconnected: "player-disconnected";
3949
4083
  readonly ChatMessage: "chat-message";
@@ -5378,6 +5512,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5378
5512
  readonly PlayerInventoryChanged: "player-inventory-changed";
5379
5513
  readonly EventRateLimited: "event-rate-limited";
5380
5514
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5515
+ readonly InviteLinkCreated: "invite-link-created";
5381
5516
  };
5382
5517
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5383
5518
  /**
@@ -5538,6 +5673,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5538
5673
  readonly PlayerInventoryChanged: "player-inventory-changed";
5539
5674
  readonly EventRateLimited: "event-rate-limited";
5540
5675
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5676
+ readonly InviteLinkCreated: "invite-link-created";
5541
5677
  };
5542
5678
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5543
5679
  /**
@@ -5643,6 +5779,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5643
5779
  readonly PlayerInventoryChanged: "player-inventory-changed";
5644
5780
  readonly EventRateLimited: "event-rate-limited";
5645
5781
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5782
+ readonly InviteLinkCreated: "invite-link-created";
5646
5783
  };
5647
5784
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5648
5785
  /**
@@ -5813,6 +5950,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5813
5950
  readonly PlayerInventoryChanged: "player-inventory-changed";
5814
5951
  readonly EventRateLimited: "event-rate-limited";
5815
5952
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5953
+ readonly InviteLinkCreated: "invite-link-created";
5816
5954
  };
5817
5955
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5818
5956
  /**
@@ -5899,6 +6037,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5899
6037
  readonly PlayerInventoryChanged: "player-inventory-changed";
5900
6038
  readonly EventRateLimited: "event-rate-limited";
5901
6039
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6040
+ readonly InviteLinkCreated: "invite-link-created";
5902
6041
  };
5903
6042
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5904
6043
  /**
@@ -6225,6 +6364,7 @@ export declare const IHookEventTypeEnum: {
6225
6364
  readonly PlayerInventoryChanged: "player-inventory-changed";
6226
6365
  readonly EventRateLimited: "event-rate-limited";
6227
6366
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6367
+ readonly InviteLinkCreated: "invite-link-created";
6228
6368
  };
6229
6369
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6230
6370
  /**
@@ -6648,25 +6788,6 @@ export interface InviteCreateDTO {
6648
6788
  */
6649
6789
  email: string;
6650
6790
  }
6651
- /**
6652
- *
6653
- * @export
6654
- * @interface InviteOutputDTO
6655
- */
6656
- export interface InviteOutputDTO {
6657
- /**
6658
- *
6659
- * @type {string}
6660
- * @memberof InviteOutputDTO
6661
- */
6662
- botInvite: string;
6663
- /**
6664
- *
6665
- * @type {string}
6666
- * @memberof InviteOutputDTO
6667
- */
6668
- devServer: string;
6669
- }
6670
6791
  /**
6671
6792
  *
6672
6793
  * @export
@@ -6806,27 +6927,28 @@ export interface InviteLinkCreateResultDTOAPI {
6806
6927
  /**
6807
6928
  *
6808
6929
  * @export
6809
- * @interface InviteLinkOutputDTO
6930
+ * @interface InviteLinkOutputArrayDTOAPI
6810
6931
  */
6811
- export interface InviteLinkOutputDTO {
6812
- /**
6813
- *
6814
- * @type {string}
6815
- * @memberof InviteLinkOutputDTO
6816
- */
6817
- id: string;
6932
+ export interface InviteLinkOutputArrayDTOAPI {
6818
6933
  /**
6819
6934
  *
6820
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6821
- * @memberof InviteLinkOutputDTO
6935
+ * @type {Array<InviteLinkOutputDTO>}
6936
+ * @memberof InviteLinkOutputArrayDTOAPI
6822
6937
  */
6823
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6938
+ data: Array<InviteLinkOutputDTO>;
6824
6939
  /**
6825
6940
  *
6826
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6827
- * @memberof InviteLinkOutputDTO
6941
+ * @type {MetadataOutput}
6942
+ * @memberof InviteLinkOutputArrayDTOAPI
6828
6943
  */
6829
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6944
+ meta: MetadataOutput;
6945
+ }
6946
+ /**
6947
+ *
6948
+ * @export
6949
+ * @interface InviteLinkOutputDTO
6950
+ */
6951
+ export interface InviteLinkOutputDTO {
6830
6952
  /**
6831
6953
  *
6832
6954
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -6875,6 +6997,24 @@ export interface InviteLinkOutputDTO {
6875
6997
  * @memberof InviteLinkOutputDTO
6876
6998
  */
6877
6999
  roles: Array<InviteLinkRoleDTO>;
7000
+ /**
7001
+ *
7002
+ * @type {string}
7003
+ * @memberof InviteLinkOutputDTO
7004
+ */
7005
+ id: string;
7006
+ /**
7007
+ *
7008
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7009
+ * @memberof InviteLinkOutputDTO
7010
+ */
7011
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7012
+ /**
7013
+ *
7014
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7015
+ * @memberof InviteLinkOutputDTO
7016
+ */
7017
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6878
7018
  }
6879
7019
  export declare const InviteLinkOutputDTOStatusEnum: {
6880
7020
  readonly Active: "ACTIVE";
@@ -6902,25 +7042,6 @@ export interface InviteLinkOutputDTOAPI {
6902
7042
  */
6903
7043
  meta: MetadataOutput;
6904
7044
  }
6905
- /**
6906
- *
6907
- * @export
6908
- * @interface InviteLinkOutputArrayDTOAPI
6909
- */
6910
- export interface InviteLinkOutputArrayDTOAPI {
6911
- /**
6912
- *
6913
- * @type {Array<InviteLinkOutputDTO>}
6914
- * @memberof InviteLinkOutputArrayDTOAPI
6915
- */
6916
- data: Array<InviteLinkOutputDTO>;
6917
- /**
6918
- *
6919
- * @type {MetadataOutput}
6920
- * @memberof InviteLinkOutputArrayDTOAPI
6921
- */
6922
- meta: MetadataOutput;
6923
- }
6924
7045
  /**
6925
7046
  *
6926
7047
  * @export
@@ -7110,15 +7231,21 @@ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearch
7110
7231
  /**
7111
7232
  *
7112
7233
  * @export
7113
- * @interface RedeemInputDTO
7234
+ * @interface InviteOutputDTO
7114
7235
  */
7115
- export interface RedeemInputDTO {
7236
+ export interface InviteOutputDTO {
7116
7237
  /**
7117
7238
  *
7118
7239
  * @type {string}
7119
- * @memberof RedeemInputDTO
7240
+ * @memberof InviteOutputDTO
7120
7241
  */
7121
- token: string;
7242
+ botInvite: string;
7243
+ /**
7244
+ *
7245
+ * @type {string}
7246
+ * @memberof InviteOutputDTO
7247
+ */
7248
+ devServer: string;
7122
7249
  }
7123
7250
  /**
7124
7251
  *
@@ -8010,7 +8137,7 @@ export interface MetadataOutput {
8010
8137
  * @type {ErrorOutput}
8011
8138
  * @memberof MetadataOutput
8012
8139
  */
8013
- error: ErrorOutput;
8140
+ error?: ErrorOutput;
8014
8141
  /**
8015
8142
  *
8016
8143
  * @type {number}
@@ -10102,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
10102
10229
  * @type {Array<string>}
10103
10230
  * @memberof PlayerBulkAssignRoleInputDTO
10104
10231
  */
10105
- playerIds: Array<string>;
10232
+ playerIds?: Array<string>;
10233
+ /**
10234
+ *
10235
+ * @type {PlayerSearchInputDTO}
10236
+ * @memberof PlayerBulkAssignRoleInputDTO
10237
+ */
10238
+ query?: PlayerSearchInputDTO;
10106
10239
  /**
10107
10240
  *
10108
10241
  * @type {string}
@@ -10115,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
10115
10248
  * @memberof PlayerBulkAssignRoleInputDTO
10116
10249
  */
10117
10250
  expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
10251
+ /**
10252
+ *
10253
+ * @type {Array<string>}
10254
+ * @memberof PlayerBulkAssignRoleInputDTO
10255
+ */
10256
+ ids?: Array<string>;
10257
+ /**
10258
+ *
10259
+ * @type {Array<string>}
10260
+ * @memberof PlayerBulkAssignRoleInputDTO
10261
+ */
10262
+ excludedIds?: Array<string>;
10118
10263
  }
10119
10264
  /**
10120
10265
  *
@@ -10190,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
10190
10335
  * @type {Array<string>}
10191
10336
  * @memberof PlayerBulkDeleteInputDTO
10192
10337
  */
10193
- playerIds: Array<string>;
10338
+ playerIds?: Array<string>;
10339
+ /**
10340
+ *
10341
+ * @type {PlayerSearchInputDTO}
10342
+ * @memberof PlayerBulkDeleteInputDTO
10343
+ */
10344
+ query?: PlayerSearchInputDTO;
10345
+ /**
10346
+ *
10347
+ * @type {Array<string>}
10348
+ * @memberof PlayerBulkDeleteInputDTO
10349
+ */
10350
+ ids?: Array<string>;
10351
+ /**
10352
+ *
10353
+ * @type {Array<string>}
10354
+ * @memberof PlayerBulkDeleteInputDTO
10355
+ */
10356
+ excludedIds?: Array<string>;
10194
10357
  }
10195
10358
  /**
10196
10359
  *
@@ -10762,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
10762
10925
  * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10763
10926
  */
10764
10927
  playtimeSeconds?: number;
10928
+ /**
10929
+ *
10930
+ * @type {number}
10931
+ * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10932
+ */
10933
+ currency?: number;
10765
10934
  /**
10766
10935
  *
10767
10936
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -11685,26 +11854,49 @@ export interface PlayerSearchInputAllowedFilters {
11685
11854
  roleId?: Array<string>;
11686
11855
  /**
11687
11856
  *
11688
- * @type {Array<string>}
11857
+ * @type {Array<boolean>}
11689
11858
  * @memberof PlayerSearchInputAllowedFilters
11690
11859
  */
11691
- id?: Array<string>;
11692
- }
11693
- /**
11694
- *
11695
- * @export
11696
- * @interface PlayerSearchInputAllowedRangeFilter
11697
- */
11698
- export interface PlayerSearchInputAllowedRangeFilter {
11860
+ online?: Array<boolean>;
11699
11861
  /**
11700
11862
  *
11701
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11702
- * @memberof PlayerSearchInputAllowedRangeFilter
11863
+ * @type {Array<string>}
11864
+ * @memberof PlayerSearchInputAllowedFilters
11703
11865
  */
11704
- steamAccountCreated?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11866
+ roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
11705
11867
  /**
11706
11868
  *
11707
- * @type {number}
11869
+ * @type {Array<string>}
11870
+ * @memberof PlayerSearchInputAllowedFilters
11871
+ */
11872
+ roleAssignmentGameServerId?: Array<string>;
11873
+ /**
11874
+ *
11875
+ * @type {Array<string>}
11876
+ * @memberof PlayerSearchInputAllowedFilters
11877
+ */
11878
+ id?: Array<string>;
11879
+ }
11880
+ export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
11881
+ readonly Global: "global";
11882
+ readonly GameServer: "gameServer";
11883
+ };
11884
+ export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
11885
+ /**
11886
+ *
11887
+ * @export
11888
+ * @interface PlayerSearchInputAllowedRangeFilter
11889
+ */
11890
+ export interface PlayerSearchInputAllowedRangeFilter {
11891
+ /**
11892
+ *
11893
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
11894
+ * @memberof PlayerSearchInputAllowedRangeFilter
11895
+ */
11896
+ steamAccountCreated?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
11897
+ /**
11898
+ *
11899
+ * @type {number}
11708
11900
  * @memberof PlayerSearchInputAllowedRangeFilter
11709
11901
  */
11710
11902
  steamsDaysSinceLastBan?: number;
@@ -11935,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
11935
12127
  * @type {Array<string>}
11936
12128
  * @memberof PogBulkAddCurrencyInputDTO
11937
12129
  */
11938
- playerIds: Array<string>;
12130
+ playerIds?: Array<string>;
12131
+ /**
12132
+ *
12133
+ * @type {PlayerOnGameServerSearchInputDTO}
12134
+ * @memberof PogBulkAddCurrencyInputDTO
12135
+ */
12136
+ query?: PlayerOnGameServerSearchInputDTO;
11939
12137
  /**
11940
12138
  *
11941
12139
  * @type {number}
11942
12140
  * @memberof PogBulkAddCurrencyInputDTO
11943
12141
  */
11944
12142
  amount: number;
12143
+ /**
12144
+ *
12145
+ * @type {Array<string>}
12146
+ * @memberof PogBulkAddCurrencyInputDTO
12147
+ */
12148
+ ids?: Array<string>;
12149
+ /**
12150
+ *
12151
+ * @type {Array<string>}
12152
+ * @memberof PogBulkAddCurrencyInputDTO
12153
+ */
12154
+ excludedIds?: Array<string>;
11945
12155
  }
11946
12156
  /**
11947
12157
  *
@@ -12236,6 +12446,19 @@ export declare const RecentOrderDTOStatusEnum: {
12236
12446
  readonly Canceled: "CANCELED";
12237
12447
  };
12238
12448
  export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
12449
+ /**
12450
+ *
12451
+ * @export
12452
+ * @interface RedeemInputDTO
12453
+ */
12454
+ export interface RedeemInputDTO {
12455
+ /**
12456
+ *
12457
+ * @type {string}
12458
+ * @memberof RedeemInputDTO
12459
+ */
12460
+ token: string;
12461
+ }
12239
12462
  /**
12240
12463
  *
12241
12464
  * @export
@@ -12247,7 +12470,7 @@ export interface RedirectQs {
12247
12470
  * @type {string}
12248
12471
  * @memberof RedirectQs
12249
12472
  */
12250
- redirect: string;
12473
+ redirect?: string;
12251
12474
  }
12252
12475
  /**
12253
12476
  *
@@ -13042,7 +13265,7 @@ export interface RoleUpdateInputDTO {
13042
13265
  * @type {string}
13043
13266
  * @memberof RoleUpdateInputDTO
13044
13267
  */
13045
- linkedDiscordRoleId?: string;
13268
+ linkedDiscordRoleId?: string | null;
13046
13269
  }
13047
13270
  /**
13048
13271
  *
@@ -13775,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
13775
13998
  * @type {Array<string>}
13776
13999
  * @memberof ShopCategoryBulkAssignDTO
13777
14000
  */
13778
- listingIds: Array<string>;
14001
+ listingIds?: Array<string>;
14002
+ /**
14003
+ *
14004
+ * @type {ShopListingSearchInputDTO}
14005
+ * @memberof ShopCategoryBulkAssignDTO
14006
+ */
14007
+ query?: ShopListingSearchInputDTO;
13779
14008
  /**
13780
14009
  *
13781
14010
  * @type {Array<string>}
@@ -13788,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
13788
14017
  * @memberof ShopCategoryBulkAssignDTO
13789
14018
  */
13790
14019
  removeCategoryIds?: Array<string>;
14020
+ /**
14021
+ *
14022
+ * @type {Array<string>}
14023
+ * @memberof ShopCategoryBulkAssignDTO
14024
+ */
14025
+ ids?: Array<string>;
14026
+ /**
14027
+ *
14028
+ * @type {Array<string>}
14029
+ * @memberof ShopCategoryBulkAssignDTO
14030
+ */
14031
+ excludedIds?: Array<string>;
13791
14032
  }
13792
14033
  /**
13793
14034
  *
@@ -14398,6 +14639,56 @@ export interface ShopKpisDTOAPI {
14398
14639
  */
14399
14640
  meta: MetadataOutput;
14400
14641
  }
14642
+ /**
14643
+ *
14644
+ * @export
14645
+ * @interface ShopListingBulkInputDTO
14646
+ */
14647
+ export interface ShopListingBulkInputDTO {
14648
+ /**
14649
+ *
14650
+ * @type {ShopListingBulkTargetDTO}
14651
+ * @memberof ShopListingBulkInputDTO
14652
+ */
14653
+ target: ShopListingBulkTargetDTO;
14654
+ /**
14655
+ *
14656
+ * @type {string}
14657
+ * @memberof ShopListingBulkInputDTO
14658
+ */
14659
+ action: ShopListingBulkInputDTOActionEnum;
14660
+ }
14661
+ export declare const ShopListingBulkInputDTOActionEnum: {
14662
+ readonly Delete: "delete";
14663
+ readonly Publish: "publish";
14664
+ readonly Unpublish: "unpublish";
14665
+ };
14666
+ export type ShopListingBulkInputDTOActionEnum = (typeof ShopListingBulkInputDTOActionEnum)[keyof typeof ShopListingBulkInputDTOActionEnum];
14667
+ /**
14668
+ *
14669
+ * @export
14670
+ * @interface ShopListingBulkTargetDTO
14671
+ */
14672
+ export interface ShopListingBulkTargetDTO {
14673
+ /**
14674
+ *
14675
+ * @type {ShopListingSearchInputDTO}
14676
+ * @memberof ShopListingBulkTargetDTO
14677
+ */
14678
+ query?: ShopListingSearchInputDTO;
14679
+ /**
14680
+ *
14681
+ * @type {Array<string>}
14682
+ * @memberof ShopListingBulkTargetDTO
14683
+ */
14684
+ ids?: Array<string>;
14685
+ /**
14686
+ *
14687
+ * @type {Array<string>}
14688
+ * @memberof ShopListingBulkTargetDTO
14689
+ */
14690
+ excludedIds?: Array<string>;
14691
+ }
14401
14692
  /**
14402
14693
  *
14403
14694
  * @export
@@ -14446,6 +14737,12 @@ export interface ShopListingCreateDTO {
14446
14737
  * @memberof ShopListingCreateDTO
14447
14738
  */
14448
14739
  categoryIds?: Array<string>;
14740
+ /**
14741
+ *
14742
+ * @type {Array<string>}
14743
+ * @memberof ShopListingCreateDTO
14744
+ */
14745
+ roleIds?: Array<string>;
14449
14746
  /**
14450
14747
  *
14451
14748
  * @type {number}
@@ -14612,6 +14909,12 @@ export interface ShopListingOutputDTO {
14612
14909
  * @memberof ShopListingOutputDTO
14613
14910
  */
14614
14911
  categories?: Array<ShopCategoryOutputDTO>;
14912
+ /**
14913
+ *
14914
+ * @type {Array<ShopListingRoleOutputDTO>}
14915
+ * @memberof ShopListingOutputDTO
14916
+ */
14917
+ roles?: Array<ShopListingRoleOutputDTO>;
14615
14918
  /**
14616
14919
  *
14617
14920
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -14644,6 +14947,37 @@ export interface ShopListingOutputDTOAPI {
14644
14947
  */
14645
14948
  meta: MetadataOutput;
14646
14949
  }
14950
+ /**
14951
+ *
14952
+ * @export
14953
+ * @interface ShopListingRoleOutputDTO
14954
+ */
14955
+ export interface ShopListingRoleOutputDTO {
14956
+ /**
14957
+ *
14958
+ * @type {string}
14959
+ * @memberof ShopListingRoleOutputDTO
14960
+ */
14961
+ id: string;
14962
+ /**
14963
+ *
14964
+ * @type {string}
14965
+ * @memberof ShopListingRoleOutputDTO
14966
+ */
14967
+ name: string;
14968
+ /**
14969
+ *
14970
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14971
+ * @memberof ShopListingRoleOutputDTO
14972
+ */
14973
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14974
+ /**
14975
+ *
14976
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14977
+ * @memberof ShopListingRoleOutputDTO
14978
+ */
14979
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14980
+ }
14647
14981
  /**
14648
14982
  *
14649
14983
  * @export
@@ -14692,6 +15026,12 @@ export interface ShopListingSearchInputAllowedFilters {
14692
15026
  * @memberof ShopListingSearchInputAllowedFilters
14693
15027
  */
14694
15028
  uncategorized?: boolean;
15029
+ /**
15030
+ *
15031
+ * @type {Array<string>}
15032
+ * @memberof ShopListingSearchInputAllowedFilters
15033
+ */
15034
+ visibleToRoleIds?: Array<string>;
14695
15035
  }
14696
15036
  /**
14697
15037
  *
@@ -14832,6 +15172,12 @@ export interface ShopListingUpdateDTO {
14832
15172
  * @memberof ShopListingUpdateDTO
14833
15173
  */
14834
15174
  categoryIds?: Array<string>;
15175
+ /**
15176
+ *
15177
+ * @type {Array<string>}
15178
+ * @memberof ShopListingUpdateDTO
15179
+ */
15180
+ roleIds?: Array<string>;
14835
15181
  }
14836
15182
  /**
14837
15183
  *
@@ -15565,6 +15911,38 @@ export interface StorefrontConfigUpsertDTO {
15565
15911
  */
15566
15912
  values: object;
15567
15913
  }
15914
+ /**
15915
+ *
15916
+ * @export
15917
+ * @interface StorefrontPreviewDTO
15918
+ */
15919
+ export interface StorefrontPreviewDTO {
15920
+ /**
15921
+ *
15922
+ * @type {string}
15923
+ * @memberof StorefrontPreviewDTO
15924
+ */
15925
+ html: string;
15926
+ }
15927
+ /**
15928
+ *
15929
+ * @export
15930
+ * @interface StorefrontPreviewOutputDTOAPI
15931
+ */
15932
+ export interface StorefrontPreviewOutputDTOAPI {
15933
+ /**
15934
+ *
15935
+ * @type {StorefrontPreviewDTO}
15936
+ * @memberof StorefrontPreviewOutputDTOAPI
15937
+ */
15938
+ data: StorefrontPreviewDTO;
15939
+ /**
15940
+ *
15941
+ * @type {MetadataOutput}
15942
+ * @memberof StorefrontPreviewOutputDTOAPI
15943
+ */
15944
+ meta: MetadataOutput;
15945
+ }
15568
15946
  /**
15569
15947
  *
15570
15948
  * @export
@@ -15930,6 +16308,49 @@ export interface TakaroEventHookExecuted {
15930
16308
  */
15931
16309
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15932
16310
  }
16311
+ /**
16312
+ *
16313
+ * @export
16314
+ * @interface TakaroEventInviteLinkCreated
16315
+ */
16316
+ export interface TakaroEventInviteLinkCreated {
16317
+ /**
16318
+ *
16319
+ * @type {string}
16320
+ * @memberof TakaroEventInviteLinkCreated
16321
+ */
16322
+ inviteLinkId: string;
16323
+ /**
16324
+ *
16325
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16326
+ * @memberof TakaroEventInviteLinkCreated
16327
+ */
16328
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16329
+ /**
16330
+ *
16331
+ * @type {number}
16332
+ * @memberof TakaroEventInviteLinkCreated
16333
+ */
16334
+ maxUses: number;
16335
+ /**
16336
+ *
16337
+ * @type {Array<string>}
16338
+ * @memberof TakaroEventInviteLinkCreated
16339
+ */
16340
+ roleIds: Array<string>;
16341
+ /**
16342
+ *
16343
+ * @type {boolean}
16344
+ * @memberof TakaroEventInviteLinkCreated
16345
+ */
16346
+ staffOrigin: boolean;
16347
+ /**
16348
+ *
16349
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16350
+ * @memberof TakaroEventInviteLinkCreated
16351
+ */
16352
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16353
+ }
15933
16354
  /**
15934
16355
  *
15935
16356
  * @export
@@ -17277,6 +17698,37 @@ export interface UserCreateInputDTO {
17277
17698
  */
17278
17699
  isDashboardUser?: boolean;
17279
17700
  }
17701
+ /**
17702
+ *
17703
+ * @export
17704
+ * @interface UserCreateInviteDTO
17705
+ */
17706
+ export interface UserCreateInviteDTO {
17707
+ /**
17708
+ *
17709
+ * @type {string}
17710
+ * @memberof UserCreateInviteDTO
17711
+ */
17712
+ name: string;
17713
+ /**
17714
+ *
17715
+ * @type {string}
17716
+ * @memberof UserCreateInviteDTO
17717
+ */
17718
+ email: string;
17719
+ /**
17720
+ *
17721
+ * @type {string}
17722
+ * @memberof UserCreateInviteDTO
17723
+ */
17724
+ idpId?: string;
17725
+ /**
17726
+ *
17727
+ * @type {boolean}
17728
+ * @memberof UserCreateInviteDTO
17729
+ */
17730
+ isDashboardUser?: boolean;
17731
+ }
17280
17732
  /**
17281
17733
  *
17282
17734
  * @export
@@ -17380,7 +17832,7 @@ export interface UserOutputDTO {
17380
17832
  * @type {PlayerOutputWithRolesDTO}
17381
17833
  * @memberof UserOutputDTO
17382
17834
  */
17383
- player: PlayerOutputWithRolesDTO;
17835
+ player?: PlayerOutputWithRolesDTO;
17384
17836
  /**
17385
17837
  *
17386
17838
  * @type {boolean}
@@ -17398,25 +17850,25 @@ export interface UserOutputDTO {
17398
17850
  * @type {string}
17399
17851
  * @memberof UserOutputDTO
17400
17852
  */
17401
- id: string;
17853
+ inviteLinkId?: string;
17402
17854
  /**
17403
17855
  *
17404
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17856
+ * @type {string}
17405
17857
  * @memberof UserOutputDTO
17406
17858
  */
17407
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17859
+ id: string;
17408
17860
  /**
17409
17861
  *
17410
17862
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17411
17863
  * @memberof UserOutputDTO
17412
17864
  */
17413
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17865
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17414
17866
  /**
17415
17867
  *
17416
- * @type {string}
17868
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17417
17869
  * @memberof UserOutputDTO
17418
17870
  */
17419
- inviteLinkId?: string;
17871
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17420
17872
  }
17421
17873
  /**
17422
17874
  *
@@ -17508,7 +17960,7 @@ export interface UserOutputWithRolesDTO {
17508
17960
  * @type {PlayerOutputWithRolesDTO}
17509
17961
  * @memberof UserOutputWithRolesDTO
17510
17962
  */
17511
- player: PlayerOutputWithRolesDTO;
17963
+ player?: PlayerOutputWithRolesDTO;
17512
17964
  /**
17513
17965
  *
17514
17966
  * @type {boolean}
@@ -17758,29 +18210,54 @@ export interface UserUpdateDTO {
17758
18210
  /**
17759
18211
  *
17760
18212
  * @export
17761
- * @interface VariableCreateDTO
18213
+ * @interface VariableBulkDeleteInputDTO
17762
18214
  */
17763
- export interface VariableCreateDTO {
18215
+ export interface VariableBulkDeleteInputDTO {
17764
18216
  /**
17765
18217
  *
17766
- * @type {string}
17767
- * @memberof VariableCreateDTO
18218
+ * @type {VariableSearchInputDTO}
18219
+ * @memberof VariableBulkDeleteInputDTO
17768
18220
  */
17769
- key: string;
18221
+ query?: VariableSearchInputDTO;
17770
18222
  /**
17771
18223
  *
17772
- * @type {string}
17773
- * @memberof VariableCreateDTO
18224
+ * @type {Array<string>}
18225
+ * @memberof VariableBulkDeleteInputDTO
17774
18226
  */
17775
- value: string;
18227
+ ids?: Array<string>;
17776
18228
  /**
17777
18229
  *
17778
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17779
- * @memberof VariableCreateDTO
18230
+ * @type {Array<string>}
18231
+ * @memberof VariableBulkDeleteInputDTO
17780
18232
  */
17781
- expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17782
- /**
17783
- *
18233
+ excludedIds?: Array<string>;
18234
+ }
18235
+ /**
18236
+ *
18237
+ * @export
18238
+ * @interface VariableCreateDTO
18239
+ */
18240
+ export interface VariableCreateDTO {
18241
+ /**
18242
+ *
18243
+ * @type {string}
18244
+ * @memberof VariableCreateDTO
18245
+ */
18246
+ key: string;
18247
+ /**
18248
+ *
18249
+ * @type {string}
18250
+ * @memberof VariableCreateDTO
18251
+ */
18252
+ value: string;
18253
+ /**
18254
+ *
18255
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
18256
+ * @memberof VariableCreateDTO
18257
+ */
18258
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
18259
+ /**
18260
+ *
17784
18261
  * @type {string}
17785
18262
  * @memberof VariableCreateDTO
17786
18263
  */
@@ -17964,6 +18441,12 @@ export interface VariableSearchInputAllowedSearch {
17964
18441
  * @memberof VariableSearchInputAllowedSearch
17965
18442
  */
17966
18443
  key?: Array<string>;
18444
+ /**
18445
+ *
18446
+ * @type {Array<string>}
18447
+ * @memberof VariableSearchInputAllowedSearch
18448
+ */
18449
+ value?: Array<string>;
17967
18450
  }
17968
18451
  /**
17969
18452
  *
@@ -20545,16 +21028,16 @@ export declare class CommandApi extends BaseAPI {
20545
21028
  */
20546
21029
  export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration) => {
20547
21030
  /**
20548
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
20549
- * @summary Create
21031
+ * Adds a cron job to a module version, running a function on a schedule. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
21032
+ * @summary Create a cron job
20550
21033
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
20551
21034
  * @param {*} [options] Override http request option.
20552
21035
  * @throws {RequiredError}
20553
21036
  */
20554
21037
  cronJobControllerCreate: (cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20555
21038
  /**
20556
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
20557
- * @summary Get executions
21039
+ * Returns the executions of a cron job on a game server. By default it returns only the runs that fail, with the error output each one produced; pass success=true for the runs that succeeded instead. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
21040
+ * @summary Get the execution history of a cron job
20558
21041
  * @param {string} id
20559
21042
  * @param {any} [success]
20560
21043
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -20563,40 +21046,40 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
20563
21046
  */
20564
21047
  cronJobControllerGetExecutions: (id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20565
21048
  /**
20566
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
20567
- * @summary Get one
21049
+ * Fetch a single cron job with its schedule and the function it runs. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
21050
+ * @summary Get one cron job
20568
21051
  * @param {string} id
20569
21052
  * @param {*} [options] Override http request option.
20570
21053
  * @throws {RequiredError}
20571
21054
  */
20572
21055
  cronJobControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20573
21056
  /**
20574
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
20575
- * @summary Remove
21057
+ * Removes a cron job from its module version. Installed game servers stop running it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
21058
+ * @summary Delete a cron job
20576
21059
  * @param {string} id
20577
21060
  * @param {*} [options] Override http request option.
20578
21061
  * @throws {RequiredError}
20579
21062
  */
20580
21063
  cronJobControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20581
21064
  /**
20582
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
20583
- * @summary Search
21065
+ * Find the cron jobs defined in a module version, by name or by the module they belong to. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
21066
+ * @summary Search cron jobs
20584
21067
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
20585
21068
  * @param {*} [options] Override http request option.
20586
21069
  * @throws {RequiredError}
20587
21070
  */
20588
21071
  cronJobControllerSearch: (cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20589
21072
  /**
20590
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
20591
- * @summary Trigger
21073
+ * Runs a cron job now on a specific game server, without waiting for its schedule. Every installation of the module on that server runs it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
21074
+ * @summary Trigger a cron job manually
20592
21075
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
20593
21076
  * @param {*} [options] Override http request option.
20594
21077
  * @throws {RequiredError}
20595
21078
  */
20596
21079
  cronJobControllerTrigger: (cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20597
21080
  /**
20598
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
20599
- * @summary Update
21081
+ * Change a cron job\'s name, schedule or the function it runs. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
21082
+ * @summary Update a cron job
20600
21083
  * @param {string} id
20601
21084
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
20602
21085
  * @param {*} [options] Override http request option.
@@ -20610,16 +21093,16 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
20610
21093
  */
20611
21094
  export declare const CronJobApiFp: (configuration?: Configuration) => {
20612
21095
  /**
20613
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
20614
- * @summary Create
21096
+ * Adds a cron job to a module version, running a function on a schedule. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
21097
+ * @summary Create a cron job
20615
21098
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
20616
21099
  * @param {*} [options] Override http request option.
20617
21100
  * @throws {RequiredError}
20618
21101
  */
20619
21102
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputDTOAPI>>;
20620
21103
  /**
20621
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
20622
- * @summary Get executions
21104
+ * Returns the executions of a cron job on a game server. By default it returns only the runs that fail, with the error output each one produced; pass success=true for the runs that succeeded instead. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
21105
+ * @summary Get the execution history of a cron job
20623
21106
  * @param {string} id
20624
21107
  * @param {any} [success]
20625
21108
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -20628,40 +21111,40 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
20628
21111
  */
20629
21112
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputArrayDTOAPI>>;
20630
21113
  /**
20631
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
20632
- * @summary Get one
21114
+ * Fetch a single cron job with its schedule and the function it runs. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
21115
+ * @summary Get one cron job
20633
21116
  * @param {string} id
20634
21117
  * @param {*} [options] Override http request option.
20635
21118
  * @throws {RequiredError}
20636
21119
  */
20637
21120
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputDTOAPI>>;
20638
21121
  /**
20639
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
20640
- * @summary Remove
21122
+ * Removes a cron job from its module version. Installed game servers stop running it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
21123
+ * @summary Delete a cron job
20641
21124
  * @param {string} id
20642
21125
  * @param {*} [options] Override http request option.
20643
21126
  * @throws {RequiredError}
20644
21127
  */
20645
21128
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
20646
21129
  /**
20647
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
20648
- * @summary Search
21130
+ * Find the cron jobs defined in a module version, by name or by the module they belong to. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
21131
+ * @summary Search cron jobs
20649
21132
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
20650
21133
  * @param {*} [options] Override http request option.
20651
21134
  * @throws {RequiredError}
20652
21135
  */
20653
21136
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputArrayDTOAPI>>;
20654
21137
  /**
20655
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
20656
- * @summary Trigger
21138
+ * Runs a cron job now on a specific game server, without waiting for its schedule. Every installation of the module on that server runs it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
21139
+ * @summary Trigger a cron job manually
20657
21140
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
20658
21141
  * @param {*} [options] Override http request option.
20659
21142
  * @throws {RequiredError}
20660
21143
  */
20661
21144
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
20662
21145
  /**
20663
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
20664
- * @summary Update
21146
+ * Change a cron job\'s name, schedule or the function it runs. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
21147
+ * @summary Update a cron job
20665
21148
  * @param {string} id
20666
21149
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
20667
21150
  * @param {*} [options] Override http request option.
@@ -20675,16 +21158,16 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
20675
21158
  */
20676
21159
  export declare const CronJobApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
20677
21160
  /**
20678
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
20679
- * @summary Create
21161
+ * Adds a cron job to a module version, running a function on a schedule. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
21162
+ * @summary Create a cron job
20680
21163
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
20681
21164
  * @param {*} [options] Override http request option.
20682
21165
  * @throws {RequiredError}
20683
21166
  */
20684
21167
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
20685
21168
  /**
20686
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
20687
- * @summary Get executions
21169
+ * Returns the executions of a cron job on a game server. By default it returns only the runs that fail, with the error output each one produced; pass success=true for the runs that succeeded instead. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
21170
+ * @summary Get the execution history of a cron job
20688
21171
  * @param {string} id
20689
21172
  * @param {any} [success]
20690
21173
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -20693,40 +21176,40 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
20693
21176
  */
20694
21177
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
20695
21178
  /**
20696
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
20697
- * @summary Get one
21179
+ * Fetch a single cron job with its schedule and the function it runs. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
21180
+ * @summary Get one cron job
20698
21181
  * @param {string} id
20699
21182
  * @param {*} [options] Override http request option.
20700
21183
  * @throws {RequiredError}
20701
21184
  */
20702
21185
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
20703
21186
  /**
20704
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
20705
- * @summary Remove
21187
+ * Removes a cron job from its module version. Installed game servers stop running it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
21188
+ * @summary Delete a cron job
20706
21189
  * @param {string} id
20707
21190
  * @param {*} [options] Override http request option.
20708
21191
  * @throws {RequiredError}
20709
21192
  */
20710
21193
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
20711
21194
  /**
20712
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
20713
- * @summary Search
21195
+ * Find the cron jobs defined in a module version, by name or by the module they belong to. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
21196
+ * @summary Search cron jobs
20714
21197
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
20715
21198
  * @param {*} [options] Override http request option.
20716
21199
  * @throws {RequiredError}
20717
21200
  */
20718
21201
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputArrayDTOAPI>;
20719
21202
  /**
20720
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
20721
- * @summary Trigger
21203
+ * Runs a cron job now on a specific game server, without waiting for its schedule. Every installation of the module on that server runs it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
21204
+ * @summary Trigger a cron job manually
20722
21205
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
20723
21206
  * @param {*} [options] Override http request option.
20724
21207
  * @throws {RequiredError}
20725
21208
  */
20726
21209
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20727
21210
  /**
20728
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
20729
- * @summary Update
21211
+ * Change a cron job\'s name, schedule or the function it runs. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
21212
+ * @summary Update a cron job
20730
21213
  * @param {string} id
20731
21214
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
20732
21215
  * @param {*} [options] Override http request option.
@@ -20742,8 +21225,8 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
20742
21225
  */
20743
21226
  export declare class CronJobApi extends BaseAPI {
20744
21227
  /**
20745
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
20746
- * @summary Create
21228
+ * Adds a cron job to a module version, running a function on a schedule. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
21229
+ * @summary Create a cron job
20747
21230
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
20748
21231
  * @param {*} [options] Override http request option.
20749
21232
  * @throws {RequiredError}
@@ -20751,8 +21234,8 @@ export declare class CronJobApi extends BaseAPI {
20751
21234
  */
20752
21235
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputDTOAPI, any>>;
20753
21236
  /**
20754
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
20755
- * @summary Get executions
21237
+ * Returns the executions of a cron job on a game server. By default it returns only the runs that fail, with the error output each one produced; pass success=true for the runs that succeeded instead. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
21238
+ * @summary Get the execution history of a cron job
20756
21239
  * @param {string} id
20757
21240
  * @param {any} [success]
20758
21241
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -20762,8 +21245,8 @@ export declare class CronJobApi extends BaseAPI {
20762
21245
  */
20763
21246
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputArrayDTOAPI, any>>;
20764
21247
  /**
20765
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
20766
- * @summary Get one
21248
+ * Fetch a single cron job with its schedule and the function it runs. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
21249
+ * @summary Get one cron job
20767
21250
  * @param {string} id
20768
21251
  * @param {*} [options] Override http request option.
20769
21252
  * @throws {RequiredError}
@@ -20771,8 +21254,8 @@ export declare class CronJobApi extends BaseAPI {
20771
21254
  */
20772
21255
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputDTOAPI, any>>;
20773
21256
  /**
20774
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
20775
- * @summary Remove
21257
+ * Removes a cron job from its module version. Installed game servers stop running it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
21258
+ * @summary Delete a cron job
20776
21259
  * @param {string} id
20777
21260
  * @param {*} [options] Override http request option.
20778
21261
  * @throws {RequiredError}
@@ -20780,8 +21263,8 @@ export declare class CronJobApi extends BaseAPI {
20780
21263
  */
20781
21264
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
20782
21265
  /**
20783
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
20784
- * @summary Search
21266
+ * Find the cron jobs defined in a module version, by name or by the module they belong to. Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
21267
+ * @summary Search cron jobs
20785
21268
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
20786
21269
  * @param {*} [options] Override http request option.
20787
21270
  * @throws {RequiredError}
@@ -20789,8 +21272,8 @@ export declare class CronJobApi extends BaseAPI {
20789
21272
  */
20790
21273
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputArrayDTOAPI, any>>;
20791
21274
  /**
20792
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
20793
- * @summary Trigger
21275
+ * Runs a cron job now on a specific game server, without waiting for its schedule. Every installation of the module on that server runs it. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
21276
+ * @summary Trigger a cron job manually
20794
21277
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
20795
21278
  * @param {*} [options] Override http request option.
20796
21279
  * @throws {RequiredError}
@@ -20798,8 +21281,8 @@ export declare class CronJobApi extends BaseAPI {
20798
21281
  */
20799
21282
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20800
21283
  /**
20801
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
20802
- * @summary Update
21284
+ * Change a cron job\'s name, schedule or the function it runs. Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
21285
+ * @summary Update a cron job
20803
21286
  * @param {string} id
20804
21287
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
20805
21288
  * @param {*} [options] Override http request option.
@@ -21127,6 +21610,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
21127
21610
  * @throws {RequiredError}
21128
21611
  */
21129
21612
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21613
+ /**
21614
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21615
+ * @summary Create staff-recovery invite link for a domain
21616
+ * @param {string} id
21617
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21618
+ * @param {*} [options] Override http request option.
21619
+ * @throws {RequiredError}
21620
+ */
21621
+ domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21130
21622
  /**
21131
21623
  * <br> OperationId: `DomainControllerGetOne`
21132
21624
  * @summary Get one
@@ -21191,6 +21683,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
21191
21683
  * @throws {RequiredError}
21192
21684
  */
21193
21685
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21686
+ /**
21687
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21688
+ * @summary Create staff-recovery invite link for a domain
21689
+ * @param {string} id
21690
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21691
+ * @param {*} [options] Override http request option.
21692
+ * @throws {RequiredError}
21693
+ */
21694
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
21194
21695
  /**
21195
21696
  * <br> OperationId: `DomainControllerGetOne`
21196
21697
  * @summary Get one
@@ -21255,6 +21756,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
21255
21756
  * @throws {RequiredError}
21256
21757
  */
21257
21758
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21759
+ /**
21760
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21761
+ * @summary Create staff-recovery invite link for a domain
21762
+ * @param {string} id
21763
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21764
+ * @param {*} [options] Override http request option.
21765
+ * @throws {RequiredError}
21766
+ */
21767
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
21258
21768
  /**
21259
21769
  * <br> OperationId: `DomainControllerGetOne`
21260
21770
  * @summary Get one
@@ -21322,6 +21832,16 @@ export declare class DomainApi extends BaseAPI {
21322
21832
  * @memberof DomainApi
21323
21833
  */
21324
21834
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21835
+ /**
21836
+ * Creates a staff-recovery invite link scoped to the target domain. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — distribute securely. Hardened for recovery use: expiry is forced to 24 hours and maxUses is forced to 1, regardless of request body values. roleIds is passed through as-is; omit it to grant no extra roles (plain member). Attribution is limited: the admin secret is a single shared identity; this event records that staff acted on the domain but cannot name the individual.<br> OperationId: `DomainControllerCreateInviteLink`
21837
+ * @summary Create staff-recovery invite link for a domain
21838
+ * @param {string} id
21839
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21840
+ * @param {*} [options] Override http request option.
21841
+ * @throws {RequiredError}
21842
+ * @memberof DomainApi
21843
+ */
21844
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
21325
21845
  /**
21326
21846
  * <br> OperationId: `DomainControllerGetOne`
21327
21847
  * @summary Get one
@@ -21525,8 +22045,8 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
21525
22045
  */
21526
22046
  eventControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21527
22047
  /**
21528
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
21529
- * @summary Search
22048
+ * Find what happened on your game servers: chat messages, player deaths and kills, connects and disconnects, commands executed, and module activity. Filter by event name, player, game server or time range, and sort by createdAt descending for the most recent first. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
22049
+ * @summary Find recent activity: chat messages, deaths, connections
21530
22050
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
21531
22051
  * @param {*} [options] Override http request option.
21532
22052
  * @throws {RequiredError}
@@ -21587,8 +22107,8 @@ export declare const EventApiFp: (configuration?: Configuration) => {
21587
22107
  */
21588
22108
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
21589
22109
  /**
21590
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
21591
- * @summary Search
22110
+ * Find what happened on your game servers: chat messages, player deaths and kills, connects and disconnects, commands executed, and module activity. Filter by event name, player, game server or time range, and sort by createdAt descending for the most recent first. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
22111
+ * @summary Find recent activity: chat messages, deaths, connections
21592
22112
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
21593
22113
  * @param {*} [options] Override http request option.
21594
22114
  * @throws {RequiredError}
@@ -21649,8 +22169,8 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
21649
22169
  */
21650
22170
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
21651
22171
  /**
21652
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
21653
- * @summary Search
22172
+ * Find what happened on your game servers: chat messages, player deaths and kills, connects and disconnects, commands executed, and module activity. Filter by event name, player, game server or time range, and sort by createdAt descending for the most recent first. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
22173
+ * @summary Find recent activity: chat messages, deaths, connections
21654
22174
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
21655
22175
  * @param {*} [options] Override http request option.
21656
22176
  * @throws {RequiredError}
@@ -21719,8 +22239,8 @@ export declare class EventApi extends BaseAPI {
21719
22239
  */
21720
22240
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
21721
22241
  /**
21722
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
21723
- * @summary Search
22242
+ * Find what happened on your game servers: chat messages, player deaths and kills, connects and disconnects, commands executed, and module activity. Filter by event name, player, game server or time range, and sort by createdAt descending for the most recent first. Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
22243
+ * @summary Find recent activity: chat messages, deaths, connections
21724
22244
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
21725
22245
  * @param {*} [options] Override http request option.
21726
22246
  * @throws {RequiredError}
@@ -21736,11 +22256,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
21736
22256
  /**
21737
22257
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21738
22258
  * @summary Auth discord
21739
- * @param {string} redirect
22259
+ * @param {string} [redirect]
21740
22260
  * @param {*} [options] Override http request option.
21741
22261
  * @throws {RequiredError}
21742
22262
  */
21743
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22263
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21744
22264
  /**
21745
22265
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21746
22266
  * @summary Auth discord return
@@ -21757,11 +22277,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
21757
22277
  /**
21758
22278
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21759
22279
  * @summary Auth discord
21760
- * @param {string} redirect
22280
+ * @param {string} [redirect]
21761
22281
  * @param {*} [options] Override http request option.
21762
22282
  * @throws {RequiredError}
21763
22283
  */
21764
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22284
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21765
22285
  /**
21766
22286
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21767
22287
  * @summary Auth discord return
@@ -21778,11 +22298,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
21778
22298
  /**
21779
22299
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21780
22300
  * @summary Auth discord
21781
- * @param {string} redirect
22301
+ * @param {string} [redirect]
21782
22302
  * @param {*} [options] Override http request option.
21783
22303
  * @throws {RequiredError}
21784
22304
  */
21785
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22305
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21786
22306
  /**
21787
22307
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21788
22308
  * @summary Auth discord return
@@ -21801,12 +22321,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21801
22321
  /**
21802
22322
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21803
22323
  * @summary Auth discord
21804
- * @param {string} redirect
22324
+ * @param {string} [redirect]
21805
22325
  * @param {*} [options] Override http request option.
21806
22326
  * @throws {RequiredError}
21807
22327
  * @memberof ExternalAuthApi
21808
22328
  */
21809
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22329
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21810
22330
  /**
21811
22331
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21812
22332
  * @summary Auth discord return
@@ -22091,7 +22611,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
22091
22611
  gameServerControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22092
22612
  /**
22093
22613
  * Fetch a list of players on a gameserver. Requires gameserver to be online and reachable. Please use the Player on GameServer (PoG) search endpoint instead: `POST /gameserver/player/search` for more flexible filtering, sorting, and pagination options. Required permissions: `READ_PLAYERS`<br> OperationId: `GameServerControllerGetPlayers`
22094
- * @summary Get players
22614
+ * @summary List the players currently online on a game server
22095
22615
  * @param {string} id
22096
22616
  * @param {*} [options] Override http request option.
22097
22617
  * @deprecated
@@ -22200,16 +22720,16 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
22200
22720
  */
22201
22721
  gameServerControllerTeleportPlayer: (gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22202
22722
  /**
22203
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
22204
- * @summary Test reachability
22723
+ * Checks whether the connection details you are about to save can actually reach a game server that Takaro does not know about yet. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachability`
22724
+ * @summary Test connection settings before creating a game server
22205
22725
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
22206
22726
  * @param {*} [options] Override http request option.
22207
22727
  * @throws {RequiredError}
22208
22728
  */
22209
22729
  gameServerControllerTestReachability: (gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22210
22730
  /**
22211
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22212
- * @summary Test reachability for id
22731
+ * Checks whether Takaro can still reach a game server it already knows about, using the connection details stored for it. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22732
+ * @summary Test whether an existing game server is reachable
22213
22733
  * @param {string} id
22214
22734
  * @param {*} [options] Override http request option.
22215
22735
  * @throws {RequiredError}
@@ -22324,7 +22844,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
22324
22844
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GameServerOutputDTOAPI>>;
22325
22845
  /**
22326
22846
  * Fetch a list of players on a gameserver. Requires gameserver to be online and reachable. Please use the Player on GameServer (PoG) search endpoint instead: `POST /gameserver/player/search` for more flexible filtering, sorting, and pagination options. Required permissions: `READ_PLAYERS`<br> OperationId: `GameServerControllerGetPlayers`
22327
- * @summary Get players
22847
+ * @summary List the players currently online on a game server
22328
22848
  * @param {string} id
22329
22849
  * @param {*} [options] Override http request option.
22330
22850
  * @deprecated
@@ -22433,16 +22953,16 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
22433
22953
  */
22434
22954
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
22435
22955
  /**
22436
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
22437
- * @summary Test reachability
22956
+ * Checks whether the connection details you are about to save can actually reach a game server that Takaro does not know about yet. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachability`
22957
+ * @summary Test connection settings before creating a game server
22438
22958
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
22439
22959
  * @param {*} [options] Override http request option.
22440
22960
  * @throws {RequiredError}
22441
22961
  */
22442
22962
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GameServerTestReachabilityDTOAPI>>;
22443
22963
  /**
22444
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22445
- * @summary Test reachability for id
22964
+ * Checks whether Takaro can still reach a game server it already knows about, using the connection details stored for it. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22965
+ * @summary Test whether an existing game server is reachable
22446
22966
  * @param {string} id
22447
22967
  * @param {*} [options] Override http request option.
22448
22968
  * @throws {RequiredError}
@@ -22557,7 +23077,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
22557
23077
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputDTOAPI>;
22558
23078
  /**
22559
23079
  * Fetch a list of players on a gameserver. Requires gameserver to be online and reachable. Please use the Player on GameServer (PoG) search endpoint instead: `POST /gameserver/player/search` for more flexible filtering, sorting, and pagination options. Required permissions: `READ_PLAYERS`<br> OperationId: `GameServerControllerGetPlayers`
22560
- * @summary Get players
23080
+ * @summary List the players currently online on a game server
22561
23081
  * @param {string} id
22562
23082
  * @param {*} [options] Override http request option.
22563
23083
  * @deprecated
@@ -22666,16 +23186,16 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
22666
23186
  */
22667
23187
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
22668
23188
  /**
22669
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
22670
- * @summary Test reachability
23189
+ * Checks whether the connection details you are about to save can actually reach a game server that Takaro does not know about yet. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachability`
23190
+ * @summary Test connection settings before creating a game server
22671
23191
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
22672
23192
  * @param {*} [options] Override http request option.
22673
23193
  * @throws {RequiredError}
22674
23194
  */
22675
23195
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerTestReachabilityDTOAPI>;
22676
23196
  /**
22677
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22678
- * @summary Test reachability for id
23197
+ * Checks whether Takaro can still reach a game server it already knows about, using the connection details stored for it. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachabilityForId`
23198
+ * @summary Test whether an existing game server is reachable
22679
23199
  * @param {string} id
22680
23200
  * @param {*} [options] Override http request option.
22681
23201
  * @throws {RequiredError}
@@ -22800,7 +23320,7 @@ export declare class GameServerApi extends BaseAPI {
22800
23320
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GameServerOutputDTOAPI, any>>;
22801
23321
  /**
22802
23322
  * Fetch a list of players on a gameserver. Requires gameserver to be online and reachable. Please use the Player on GameServer (PoG) search endpoint instead: `POST /gameserver/player/search` for more flexible filtering, sorting, and pagination options. Required permissions: `READ_PLAYERS`<br> OperationId: `GameServerControllerGetPlayers`
22803
- * @summary Get players
23323
+ * @summary List the players currently online on a game server
22804
23324
  * @param {string} id
22805
23325
  * @param {*} [options] Override http request option.
22806
23326
  * @deprecated
@@ -22922,8 +23442,8 @@ export declare class GameServerApi extends BaseAPI {
22922
23442
  */
22923
23443
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
22924
23444
  /**
22925
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
22926
- * @summary Test reachability
23445
+ * Checks whether the connection details you are about to save can actually reach a game server that Takaro does not know about yet. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachability`
23446
+ * @summary Test connection settings before creating a game server
22927
23447
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
22928
23448
  * @param {*} [options] Override http request option.
22929
23449
  * @throws {RequiredError}
@@ -22931,8 +23451,8 @@ export declare class GameServerApi extends BaseAPI {
22931
23451
  */
22932
23452
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GameServerTestReachabilityDTOAPI, any>>;
22933
23453
  /**
22934
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22935
- * @summary Test reachability for id
23454
+ * Checks whether Takaro can still reach a game server it already knows about, using the connection details stored for it. Does a thorough check and reports details.<br> OperationId: `GameServerControllerTestReachabilityForId`
23455
+ * @summary Test whether an existing game server is reachable
22936
23456
  * @param {string} id
22937
23457
  * @param {*} [options] Override http request option.
22938
23458
  * @throws {RequiredError}
@@ -23241,166 +23761,371 @@ export declare class HookApi extends BaseAPI {
23241
23761
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23242
23762
  }
23243
23763
  /**
23244
- * ItemApi - axios parameter creator
23764
+ * InviteLinkApi - axios parameter creator
23245
23765
  * @export
23246
23766
  */
23247
- export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
23767
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23248
23768
  /**
23249
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23250
- * @summary Find one
23251
- * @param {string} id
23769
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23770
+ * @summary Create invite link
23771
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23252
23772
  * @param {*} [options] Override http request option.
23253
23773
  * @throws {RequiredError}
23254
23774
  */
23255
- itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23775
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23256
23776
  /**
23257
- * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23258
- * @summary Search
23259
- * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23777
+ * <br> OperationId: `InviteLinkControllerPreview`
23778
+ * @summary Preview
23779
+ * @param {string} token
23260
23780
  * @param {*} [options] Override http request option.
23261
23781
  * @throws {RequiredError}
23262
23782
  */
23263
- itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23264
- };
23265
- /**
23266
- * ItemApi - functional programming interface
23267
- * @export
23268
- */
23269
- export declare const ItemApiFp: (configuration?: Configuration) => {
23783
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23270
23784
  /**
23271
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23272
- * @summary Find one
23785
+ * <br> OperationId: `InviteLinkControllerRedeem`
23786
+ * @summary Redeem
23787
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23788
+ * @param {*} [options] Override http request option.
23789
+ * @throws {RequiredError}
23790
+ */
23791
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23792
+ /**
23793
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23794
+ * @summary Revoke
23273
23795
  * @param {string} id
23274
23796
  * @param {*} [options] Override http request option.
23275
23797
  * @throws {RequiredError}
23276
23798
  */
23277
- itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputDTOAPI>>;
23799
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23278
23800
  /**
23279
- * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23801
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23280
23802
  * @summary Search
23281
- * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23803
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23282
23804
  * @param {*} [options] Override http request option.
23283
23805
  * @throws {RequiredError}
23284
23806
  */
23285
- itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputArrayDTOAPI>>;
23807
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23286
23808
  };
23287
23809
  /**
23288
- * ItemApi - factory interface
23810
+ * InviteLinkApi - functional programming interface
23289
23811
  * @export
23290
23812
  */
23291
- export declare const ItemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23813
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23292
23814
  /**
23293
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23294
- * @summary Find one
23295
- * @param {string} id
23815
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23816
+ * @summary Create invite link
23817
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23296
23818
  * @param {*} [options] Override http request option.
23297
23819
  * @throws {RequiredError}
23298
23820
  */
23299
- itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputDTOAPI>;
23821
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23300
23822
  /**
23301
- * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23302
- * @summary Search
23303
- * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23823
+ * <br> OperationId: `InviteLinkControllerPreview`
23824
+ * @summary Preview
23825
+ * @param {string} token
23304
23826
  * @param {*} [options] Override http request option.
23305
23827
  * @throws {RequiredError}
23306
23828
  */
23307
- itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputArrayDTOAPI>;
23308
- };
23309
- /**
23310
- * ItemApi - object-oriented interface
23311
- * @export
23312
- * @class ItemApi
23313
- * @extends {BaseAPI}
23314
- */
23315
- export declare class ItemApi extends BaseAPI {
23829
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23316
23830
  /**
23317
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23318
- * @summary Find one
23831
+ * <br> OperationId: `InviteLinkControllerRedeem`
23832
+ * @summary Redeem
23833
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23834
+ * @param {*} [options] Override http request option.
23835
+ * @throws {RequiredError}
23836
+ */
23837
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
23838
+ /**
23839
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23840
+ * @summary Revoke
23319
23841
  * @param {string} id
23320
23842
  * @param {*} [options] Override http request option.
23321
23843
  * @throws {RequiredError}
23322
- * @memberof ItemApi
23323
23844
  */
23324
- itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputDTOAPI, any>>;
23845
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23325
23846
  /**
23326
- * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23847
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23327
23848
  * @summary Search
23328
- * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23849
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23329
23850
  * @param {*} [options] Override http request option.
23330
23851
  * @throws {RequiredError}
23331
- * @memberof ItemApi
23332
23852
  */
23333
- itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputArrayDTOAPI, any>>;
23334
- }
23853
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23854
+ };
23335
23855
  /**
23336
- * MetaApi - axios parameter creator
23856
+ * InviteLinkApi - factory interface
23337
23857
  * @export
23338
23858
  */
23339
- export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) => {
23340
- /**
23341
- * <br> OperationId: `MetaGetHealth`
23342
- * @summary Get health
23343
- * @param {*} [options] Override http request option.
23344
- * @throws {RequiredError}
23345
- */
23346
- metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23859
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23347
23860
  /**
23348
- * <br> OperationId: `MetaGetMetrics`
23349
- * @summary Get metrics
23861
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23862
+ * @summary Create invite link
23863
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23350
23864
  * @param {*} [options] Override http request option.
23351
23865
  * @throws {RequiredError}
23352
23866
  */
23353
- metaGetMetrics: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23867
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23354
23868
  /**
23355
- * <br> OperationId: `MetaGetOpenApi`
23356
- * @summary Get open api
23869
+ * <br> OperationId: `InviteLinkControllerPreview`
23870
+ * @summary Preview
23871
+ * @param {string} token
23357
23872
  * @param {*} [options] Override http request option.
23358
23873
  * @throws {RequiredError}
23359
23874
  */
23360
- metaGetOpenApi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23875
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23361
23876
  /**
23362
- * <br> OperationId: `MetaGetOpenApiHtml`
23363
- * @summary Get open api html
23877
+ * <br> OperationId: `InviteLinkControllerRedeem`
23878
+ * @summary Redeem
23879
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23364
23880
  * @param {*} [options] Override http request option.
23365
23881
  * @throws {RequiredError}
23366
23882
  */
23367
- metaGetOpenApiHtml: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23883
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23368
23884
  /**
23369
- * <br> OperationId: `MetaGetReadiness`
23370
- * @summary Get readiness
23885
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23886
+ * @summary Revoke
23887
+ * @param {string} id
23371
23888
  * @param {*} [options] Override http request option.
23372
23889
  * @throws {RequiredError}
23373
23890
  */
23374
- metaGetReadiness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23891
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23375
23892
  /**
23376
- * <br> OperationId: `MetaGetRoot`
23377
- * @summary Get root
23893
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23894
+ * @summary Search
23895
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23378
23896
  * @param {*} [options] Override http request option.
23379
23897
  * @throws {RequiredError}
23380
23898
  */
23381
- metaGetRoot: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23899
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
23382
23900
  };
23383
23901
  /**
23384
- * MetaApi - functional programming interface
23902
+ * InviteLinkApi - object-oriented interface
23385
23903
  * @export
23904
+ * @class InviteLinkApi
23905
+ * @extends {BaseAPI}
23386
23906
  */
23387
- export declare const MetaApiFp: (configuration?: Configuration) => {
23907
+ export declare class InviteLinkApi extends BaseAPI {
23388
23908
  /**
23389
- * <br> OperationId: `MetaGetHealth`
23390
- * @summary Get health
23909
+ * Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
23910
+ * @summary Create invite link
23911
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23391
23912
  * @param {*} [options] Override http request option.
23392
23913
  * @throws {RequiredError}
23914
+ * @memberof InviteLinkApi
23393
23915
  */
23394
- metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
23916
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
23395
23917
  /**
23396
- * <br> OperationId: `MetaGetMetrics`
23397
- * @summary Get metrics
23918
+ * <br> OperationId: `InviteLinkControllerPreview`
23919
+ * @summary Preview
23920
+ * @param {string} token
23398
23921
  * @param {*} [options] Override http request option.
23399
23922
  * @throws {RequiredError}
23923
+ * @memberof InviteLinkApi
23400
23924
  */
23401
- metaGetMetrics(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
23925
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
23402
23926
  /**
23403
- * <br> OperationId: `MetaGetOpenApi`
23927
+ * <br> OperationId: `InviteLinkControllerRedeem`
23928
+ * @summary Redeem
23929
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23930
+ * @param {*} [options] Override http request option.
23931
+ * @throws {RequiredError}
23932
+ * @memberof InviteLinkApi
23933
+ */
23934
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
23935
+ /**
23936
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23937
+ * @summary Revoke
23938
+ * @param {string} id
23939
+ * @param {*} [options] Override http request option.
23940
+ * @throws {RequiredError}
23941
+ * @memberof InviteLinkApi
23942
+ */
23943
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23944
+ /**
23945
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23946
+ * @summary Search
23947
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23948
+ * @param {*} [options] Override http request option.
23949
+ * @throws {RequiredError}
23950
+ * @memberof InviteLinkApi
23951
+ */
23952
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
23953
+ }
23954
+ /**
23955
+ * ItemApi - axios parameter creator
23956
+ * @export
23957
+ */
23958
+ export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
23959
+ /**
23960
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23961
+ * @summary Find one
23962
+ * @param {string} id
23963
+ * @param {*} [options] Override http request option.
23964
+ * @throws {RequiredError}
23965
+ */
23966
+ itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23967
+ /**
23968
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23969
+ * @summary Search
23970
+ * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23971
+ * @param {*} [options] Override http request option.
23972
+ * @throws {RequiredError}
23973
+ */
23974
+ itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23975
+ };
23976
+ /**
23977
+ * ItemApi - functional programming interface
23978
+ * @export
23979
+ */
23980
+ export declare const ItemApiFp: (configuration?: Configuration) => {
23981
+ /**
23982
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23983
+ * @summary Find one
23984
+ * @param {string} id
23985
+ * @param {*} [options] Override http request option.
23986
+ * @throws {RequiredError}
23987
+ */
23988
+ itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputDTOAPI>>;
23989
+ /**
23990
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23991
+ * @summary Search
23992
+ * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23993
+ * @param {*} [options] Override http request option.
23994
+ * @throws {RequiredError}
23995
+ */
23996
+ itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputArrayDTOAPI>>;
23997
+ };
23998
+ /**
23999
+ * ItemApi - factory interface
24000
+ * @export
24001
+ */
24002
+ export declare const ItemApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
24003
+ /**
24004
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
24005
+ * @summary Find one
24006
+ * @param {string} id
24007
+ * @param {*} [options] Override http request option.
24008
+ * @throws {RequiredError}
24009
+ */
24010
+ itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputDTOAPI>;
24011
+ /**
24012
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
24013
+ * @summary Search
24014
+ * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
24015
+ * @param {*} [options] Override http request option.
24016
+ * @throws {RequiredError}
24017
+ */
24018
+ itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ItemOutputArrayDTOAPI>;
24019
+ };
24020
+ /**
24021
+ * ItemApi - object-oriented interface
24022
+ * @export
24023
+ * @class ItemApi
24024
+ * @extends {BaseAPI}
24025
+ */
24026
+ export declare class ItemApi extends BaseAPI {
24027
+ /**
24028
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
24029
+ * @summary Find one
24030
+ * @param {string} id
24031
+ * @param {*} [options] Override http request option.
24032
+ * @throws {RequiredError}
24033
+ * @memberof ItemApi
24034
+ */
24035
+ itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputDTOAPI, any>>;
24036
+ /**
24037
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
24038
+ * @summary Search
24039
+ * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
24040
+ * @param {*} [options] Override http request option.
24041
+ * @throws {RequiredError}
24042
+ * @memberof ItemApi
24043
+ */
24044
+ itemControllerSearch(itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ItemOutputArrayDTOAPI, any>>;
24045
+ }
24046
+ /**
24047
+ * MetaApi - axios parameter creator
24048
+ * @export
24049
+ */
24050
+ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) => {
24051
+ /**
24052
+ * <br> OperationId: `MetaGetHealth`
24053
+ * @summary Get health
24054
+ * @param {*} [options] Override http request option.
24055
+ * @throws {RequiredError}
24056
+ */
24057
+ metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24058
+ /**
24059
+ * <br> OperationId: `MetaGetLiveness`
24060
+ * @summary Get liveness
24061
+ * @param {*} [options] Override http request option.
24062
+ * @throws {RequiredError}
24063
+ */
24064
+ metaGetLiveness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24065
+ /**
24066
+ * <br> OperationId: `MetaGetMetrics`
24067
+ * @summary Get metrics
24068
+ * @param {*} [options] Override http request option.
24069
+ * @throws {RequiredError}
24070
+ */
24071
+ metaGetMetrics: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24072
+ /**
24073
+ * <br> OperationId: `MetaGetOpenApi`
24074
+ * @summary Get open api
24075
+ * @param {*} [options] Override http request option.
24076
+ * @throws {RequiredError}
24077
+ */
24078
+ metaGetOpenApi: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24079
+ /**
24080
+ * <br> OperationId: `MetaGetOpenApiHtml`
24081
+ * @summary Get open api html
24082
+ * @param {*} [options] Override http request option.
24083
+ * @throws {RequiredError}
24084
+ */
24085
+ metaGetOpenApiHtml: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24086
+ /**
24087
+ * <br> OperationId: `MetaGetReadiness`
24088
+ * @summary Get readiness
24089
+ * @param {*} [options] Override http request option.
24090
+ * @throws {RequiredError}
24091
+ */
24092
+ metaGetReadiness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24093
+ /**
24094
+ * <br> OperationId: `MetaGetRoot`
24095
+ * @summary Get root
24096
+ * @param {*} [options] Override http request option.
24097
+ * @throws {RequiredError}
24098
+ */
24099
+ metaGetRoot: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24100
+ };
24101
+ /**
24102
+ * MetaApi - functional programming interface
24103
+ * @export
24104
+ */
24105
+ export declare const MetaApiFp: (configuration?: Configuration) => {
24106
+ /**
24107
+ * <br> OperationId: `MetaGetHealth`
24108
+ * @summary Get health
24109
+ * @param {*} [options] Override http request option.
24110
+ * @throws {RequiredError}
24111
+ */
24112
+ metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
24113
+ /**
24114
+ * <br> OperationId: `MetaGetLiveness`
24115
+ * @summary Get liveness
24116
+ * @param {*} [options] Override http request option.
24117
+ * @throws {RequiredError}
24118
+ */
24119
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
24120
+ /**
24121
+ * <br> OperationId: `MetaGetMetrics`
24122
+ * @summary Get metrics
24123
+ * @param {*} [options] Override http request option.
24124
+ * @throws {RequiredError}
24125
+ */
24126
+ metaGetMetrics(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
24127
+ /**
24128
+ * <br> OperationId: `MetaGetOpenApi`
23404
24129
  * @summary Get open api
23405
24130
  * @param {*} [options] Override http request option.
23406
24131
  * @throws {RequiredError}
@@ -23440,6 +24165,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
23440
24165
  * @throws {RequiredError}
23441
24166
  */
23442
24167
  metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
24168
+ /**
24169
+ * <br> OperationId: `MetaGetLiveness`
24170
+ * @summary Get liveness
24171
+ * @param {*} [options] Override http request option.
24172
+ * @throws {RequiredError}
24173
+ */
24174
+ metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
23443
24175
  /**
23444
24176
  * <br> OperationId: `MetaGetMetrics`
23445
24177
  * @summary Get metrics
@@ -23491,6 +24223,14 @@ export declare class MetaApi extends BaseAPI {
23491
24223
  * @memberof MetaApi
23492
24224
  */
23493
24225
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
24226
+ /**
24227
+ * <br> OperationId: `MetaGetLiveness`
24228
+ * @summary Get liveness
24229
+ * @param {*} [options] Override http request option.
24230
+ * @throws {RequiredError}
24231
+ * @memberof MetaApi
24232
+ */
24233
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
23494
24234
  /**
23495
24235
  * <br> OperationId: `MetaGetMetrics`
23496
24236
  * @summary Get metrics
@@ -23596,16 +24336,16 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
23596
24336
  */
23597
24337
  moduleControllerUpdate: (id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23598
24338
  /**
23599
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23600
- * @summary Search module installations
24339
+ * Find module installations, optionally narrowed to one game server or one module, with the configuration each installation was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
24340
+ * @summary List the modules installed on a game server
23601
24341
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23602
24342
  * @param {*} [options] Override http request option.
23603
24343
  * @throws {RequiredError}
23604
24344
  */
23605
24345
  moduleInstallationsControllerGetInstalledModules: (moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23606
24346
  /**
23607
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23608
- * @summary Get one installation
24347
+ * Fetch the installation of a specific module on a specific game server, with the configuration it was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
24348
+ * @summary Get one module installation
23609
24349
  * @param {string} moduleId
23610
24350
  * @param {string} gameServerId
23611
24351
  * @param {*} [options] Override http request option.
@@ -23613,8 +24353,8 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
23613
24353
  */
23614
24354
  moduleInstallationsControllerGetModuleInstallation: (moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23615
24355
  /**
23616
- * Install a module on a gameserver. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
23617
- * @summary Install module
24356
+ * Installs a module version on a game server, so its commands, hooks and cron jobs start running there. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
24357
+ * @summary Install a module on a game server
23618
24358
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23619
24359
  * @param {*} [options] Override http request option.
23620
24360
  * @throws {RequiredError}
@@ -23622,7 +24362,7 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
23622
24362
  moduleInstallationsControllerInstallModule: (installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23623
24363
  /**
23624
24364
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
23625
- * @summary Uninstall module
24365
+ * @summary Uninstall a module from a game server
23626
24366
  * @param {string} moduleId
23627
24367
  * @param {string} gameServerId
23628
24368
  * @param {*} [options] Override http request option.
@@ -23718,16 +24458,16 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
23718
24458
  */
23719
24459
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleOutputDTOAPI>>;
23720
24460
  /**
23721
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23722
- * @summary Search module installations
24461
+ * Find module installations, optionally narrowed to one game server or one module, with the configuration each installation was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
24462
+ * @summary List the modules installed on a game server
23723
24463
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23724
24464
  * @param {*} [options] Override http request option.
23725
24465
  * @throws {RequiredError}
23726
24466
  */
23727
24467
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputArrayDTOAPI>>;
23728
24468
  /**
23729
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23730
- * @summary Get one installation
24469
+ * Fetch the installation of a specific module on a specific game server, with the configuration it was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
24470
+ * @summary Get one module installation
23731
24471
  * @param {string} moduleId
23732
24472
  * @param {string} gameServerId
23733
24473
  * @param {*} [options] Override http request option.
@@ -23735,8 +24475,8 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
23735
24475
  */
23736
24476
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputDTOAPI>>;
23737
24477
  /**
23738
- * Install a module on a gameserver. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
23739
- * @summary Install module
24478
+ * Installs a module version on a game server, so its commands, hooks and cron jobs start running there. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
24479
+ * @summary Install a module on a game server
23740
24480
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23741
24481
  * @param {*} [options] Override http request option.
23742
24482
  * @throws {RequiredError}
@@ -23744,7 +24484,7 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
23744
24484
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputDTOAPI>>;
23745
24485
  /**
23746
24486
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
23747
- * @summary Uninstall module
24487
+ * @summary Uninstall a module from a game server
23748
24488
  * @param {string} moduleId
23749
24489
  * @param {string} gameServerId
23750
24490
  * @param {*} [options] Override http request option.
@@ -23840,16 +24580,16 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23840
24580
  */
23841
24581
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputDTOAPI>;
23842
24582
  /**
23843
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23844
- * @summary Search module installations
24583
+ * Find module installations, optionally narrowed to one game server or one module, with the configuration each installation was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
24584
+ * @summary List the modules installed on a game server
23845
24585
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23846
24586
  * @param {*} [options] Override http request option.
23847
24587
  * @throws {RequiredError}
23848
24588
  */
23849
24589
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputArrayDTOAPI>;
23850
24590
  /**
23851
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23852
- * @summary Get one installation
24591
+ * Fetch the installation of a specific module on a specific game server, with the configuration it was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
24592
+ * @summary Get one module installation
23853
24593
  * @param {string} moduleId
23854
24594
  * @param {string} gameServerId
23855
24595
  * @param {*} [options] Override http request option.
@@ -23857,8 +24597,8 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23857
24597
  */
23858
24598
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
23859
24599
  /**
23860
- * Install a module on a gameserver. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
23861
- * @summary Install module
24600
+ * Installs a module version on a game server, so its commands, hooks and cron jobs start running there. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
24601
+ * @summary Install a module on a game server
23862
24602
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23863
24603
  * @param {*} [options] Override http request option.
23864
24604
  * @throws {RequiredError}
@@ -23866,7 +24606,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23866
24606
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
23867
24607
  /**
23868
24608
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
23869
- * @summary Uninstall module
24609
+ * @summary Uninstall a module from a game server
23870
24610
  * @param {string} moduleId
23871
24611
  * @param {string} gameServerId
23872
24612
  * @param {*} [options] Override http request option.
@@ -23971,8 +24711,8 @@ export declare class ModuleApi extends BaseAPI {
23971
24711
  */
23972
24712
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleOutputDTOAPI, any>>;
23973
24713
  /**
23974
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23975
- * @summary Search module installations
24714
+ * Find module installations, optionally narrowed to one game server or one module, with the configuration each installation was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
24715
+ * @summary List the modules installed on a game server
23976
24716
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23977
24717
  * @param {*} [options] Override http request option.
23978
24718
  * @throws {RequiredError}
@@ -23980,8 +24720,8 @@ export declare class ModuleApi extends BaseAPI {
23980
24720
  */
23981
24721
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputArrayDTOAPI, any>>;
23982
24722
  /**
23983
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23984
- * @summary Get one installation
24723
+ * Fetch the installation of a specific module on a specific game server, with the configuration it was given. Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
24724
+ * @summary Get one module installation
23985
24725
  * @param {string} moduleId
23986
24726
  * @param {string} gameServerId
23987
24727
  * @param {*} [options] Override http request option.
@@ -23990,8 +24730,8 @@ export declare class ModuleApi extends BaseAPI {
23990
24730
  */
23991
24731
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputDTOAPI, any>>;
23992
24732
  /**
23993
- * Install a module on a gameserver. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
23994
- * @summary Install module
24733
+ * Installs a module version on a game server, so its commands, hooks and cron jobs start running there. You can have multiple installations of the same module on the same gameserver. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerInstallModule`
24734
+ * @summary Install a module on a game server
23995
24735
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23996
24736
  * @param {*} [options] Override http request option.
23997
24737
  * @throws {RequiredError}
@@ -24000,7 +24740,7 @@ export declare class ModuleApi extends BaseAPI {
24000
24740
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputDTOAPI, any>>;
24001
24741
  /**
24002
24742
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
24003
- * @summary Uninstall module
24743
+ * @summary Uninstall a module from a game server
24004
24744
  * @param {string} moduleId
24005
24745
  * @param {string} gameServerId
24006
24746
  * @param {*} [options] Override http request option.
@@ -24083,8 +24823,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24083
24823
  */
24084
24824
  banControllerUpdate: (id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24085
24825
  /**
24086
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24087
- * @summary Assign role
24826
+ * Gives a role to a player, granting them its permissions. The role can be scoped to a single game server and can be set to expire. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24827
+ * @summary Assign a role to a player
24088
24828
  * @param {string} id
24089
24829
  * @param {string} roleId
24090
24830
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24093,8 +24833,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24093
24833
  */
24094
24834
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24095
24835
  /**
24096
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24097
- * @summary Bulk assign role
24836
+ * Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24837
+ * @summary Assign a role to many players at once
24098
24838
  * @param {string} roleId
24099
24839
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
24100
24840
  * @param {*} [options] Override http request option.
@@ -24102,7 +24842,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24102
24842
  */
24103
24843
  playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24104
24844
  /**
24105
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24845
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24106
24846
  * @summary Bulk delete
24107
24847
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24108
24848
  * @param {*} [options] Override http request option.
@@ -24125,16 +24865,16 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24125
24865
  */
24126
24866
  playerControllerGetMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24127
24867
  /**
24128
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24129
- * @summary Get one
24868
+ * Fetch a single player by their Takaro player id, with the platform identifiers and roles attached to them. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24869
+ * @summary Get one player
24130
24870
  * @param {string} id
24131
24871
  * @param {*} [options] Override http request option.
24132
24872
  * @throws {RequiredError}
24133
24873
  */
24134
24874
  playerControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24135
24875
  /**
24136
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24137
- * @summary Remove role
24876
+ * Takes a role away from a player, revoking the permissions it granted them. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24877
+ * @summary Remove a role from a player
24138
24878
  * @param {string} id
24139
24879
  * @param {string} roleId
24140
24880
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24143,8 +24883,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
24143
24883
  */
24144
24884
  playerControllerRemoveRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24145
24885
  /**
24146
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
24147
- * @summary Search
24886
+ * Search every player Takaro knows about, across all game servers. Match on their name or on a platform identifier: Steam ID, Xbox live ID, Epic Online Services ID, or their Takaro player id. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
24887
+ * @summary Find a player by name or platform id
24148
24888
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
24149
24889
  * @param {*} [options] Override http request option.
24150
24890
  * @throws {RequiredError}
@@ -24198,8 +24938,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24198
24938
  */
24199
24939
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputDTOAPI>>;
24200
24940
  /**
24201
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24202
- * @summary Assign role
24941
+ * Gives a role to a player, granting them its permissions. The role can be scoped to a single game server and can be set to expire. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24942
+ * @summary Assign a role to a player
24203
24943
  * @param {string} id
24204
24944
  * @param {string} roleId
24205
24945
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24208,8 +24948,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24208
24948
  */
24209
24949
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24210
24950
  /**
24211
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24212
- * @summary Bulk assign role
24951
+ * Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24952
+ * @summary Assign a role to many players at once
24213
24953
  * @param {string} roleId
24214
24954
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
24215
24955
  * @param {*} [options] Override http request option.
@@ -24217,7 +24957,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24217
24957
  */
24218
24958
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
24219
24959
  /**
24220
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24960
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24221
24961
  * @summary Bulk delete
24222
24962
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24223
24963
  * @param {*} [options] Override http request option.
@@ -24240,16 +24980,16 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24240
24980
  */
24241
24981
  playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerMeOutputDTO>>;
24242
24982
  /**
24243
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24244
- * @summary Get one
24983
+ * Fetch a single player by their Takaro player id, with the platform identifiers and roles attached to them. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24984
+ * @summary Get one player
24245
24985
  * @param {string} id
24246
24986
  * @param {*} [options] Override http request option.
24247
24987
  * @throws {RequiredError}
24248
24988
  */
24249
24989
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOutputWithRolesDTOAPI>>;
24250
24990
  /**
24251
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24252
- * @summary Remove role
24991
+ * Takes a role away from a player, revoking the permissions it granted them. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24992
+ * @summary Remove a role from a player
24253
24993
  * @param {string} id
24254
24994
  * @param {string} roleId
24255
24995
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24258,8 +24998,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
24258
24998
  */
24259
24999
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24260
25000
  /**
24261
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
24262
- * @summary Search
25001
+ * Search every player Takaro knows about, across all game servers. Match on their name or on a platform identifier: Steam ID, Xbox live ID, Epic Online Services ID, or their Takaro player id. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
25002
+ * @summary Find a player by name or platform id
24263
25003
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
24264
25004
  * @param {*} [options] Override http request option.
24265
25005
  * @throws {RequiredError}
@@ -24313,8 +25053,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24313
25053
  */
24314
25054
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputDTOAPI>;
24315
25055
  /**
24316
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24317
- * @summary Assign role
25056
+ * Gives a role to a player, granting them its permissions. The role can be scoped to a single game server and can be set to expire. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
25057
+ * @summary Assign a role to a player
24318
25058
  * @param {string} id
24319
25059
  * @param {string} roleId
24320
25060
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24323,8 +25063,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24323
25063
  */
24324
25064
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24325
25065
  /**
24326
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24327
- * @summary Bulk assign role
25066
+ * Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
25067
+ * @summary Assign a role to many players at once
24328
25068
  * @param {string} roleId
24329
25069
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
24330
25070
  * @param {*} [options] Override http request option.
@@ -24332,7 +25072,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24332
25072
  */
24333
25073
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
24334
25074
  /**
24335
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25075
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24336
25076
  * @summary Bulk delete
24337
25077
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24338
25078
  * @param {*} [options] Override http request option.
@@ -24355,16 +25095,16 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24355
25095
  */
24356
25096
  playerControllerGetMe(options?: RawAxiosRequestConfig): AxiosPromise<PlayerMeOutputDTO>;
24357
25097
  /**
24358
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24359
- * @summary Get one
25098
+ * Fetch a single player by their Takaro player id, with the platform identifiers and roles attached to them. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
25099
+ * @summary Get one player
24360
25100
  * @param {string} id
24361
25101
  * @param {*} [options] Override http request option.
24362
25102
  * @throws {RequiredError}
24363
25103
  */
24364
25104
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOutputWithRolesDTOAPI>;
24365
25105
  /**
24366
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24367
- * @summary Remove role
25106
+ * Takes a role away from a player, revoking the permissions it granted them. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
25107
+ * @summary Remove a role from a player
24368
25108
  * @param {string} id
24369
25109
  * @param {string} roleId
24370
25110
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24373,8 +25113,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
24373
25113
  */
24374
25114
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24375
25115
  /**
24376
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
24377
- * @summary Search
25116
+ * Search every player Takaro knows about, across all game servers. Match on their name or on a platform identifier: Steam ID, Xbox live ID, Epic Online Services ID, or their Takaro player id. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
25117
+ * @summary Find a player by name or platform id
24378
25118
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
24379
25119
  * @param {*} [options] Override http request option.
24380
25120
  * @throws {RequiredError}
@@ -24435,8 +25175,8 @@ export declare class PlayerApi extends BaseAPI {
24435
25175
  */
24436
25176
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputDTOAPI, any>>;
24437
25177
  /**
24438
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
24439
- * @summary Assign role
25178
+ * Gives a role to a player, granting them its permissions. The role can be scoped to a single game server and can be set to expire. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
25179
+ * @summary Assign a role to a player
24440
25180
  * @param {string} id
24441
25181
  * @param {string} roleId
24442
25182
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24446,8 +25186,8 @@ export declare class PlayerApi extends BaseAPI {
24446
25186
  */
24447
25187
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24448
25188
  /**
24449
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24450
- * @summary Bulk assign role
25189
+ * Bulk assign a role to multiple players, targeted by ids or by a search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
25190
+ * @summary Assign a role to many players at once
24451
25191
  * @param {string} roleId
24452
25192
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
24453
25193
  * @param {*} [options] Override http request option.
@@ -24456,7 +25196,7 @@ export declare class PlayerApi extends BaseAPI {
24456
25196
  */
24457
25197
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
24458
25198
  /**
24459
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25199
+ * Bulk delete players, targeted by ids or by a search query. Deletes Player records which cascades to POG records. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24460
25200
  * @summary Bulk delete
24461
25201
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
24462
25202
  * @param {*} [options] Override http request option.
@@ -24482,8 +25222,8 @@ export declare class PlayerApi extends BaseAPI {
24482
25222
  */
24483
25223
  playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerMeOutputDTO, any>>;
24484
25224
  /**
24485
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
24486
- * @summary Get one
25225
+ * Fetch a single player by their Takaro player id, with the platform identifiers and roles attached to them. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
25226
+ * @summary Get one player
24487
25227
  * @param {string} id
24488
25228
  * @param {*} [options] Override http request option.
24489
25229
  * @throws {RequiredError}
@@ -24491,8 +25231,8 @@ export declare class PlayerApi extends BaseAPI {
24491
25231
  */
24492
25232
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOutputWithRolesDTOAPI, any>>;
24493
25233
  /**
24494
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
24495
- * @summary Remove role
25234
+ * Takes a role away from a player, revoking the permissions it granted them. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
25235
+ * @summary Remove a role from a player
24496
25236
  * @param {string} id
24497
25237
  * @param {string} roleId
24498
25238
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -24502,8 +25242,8 @@ export declare class PlayerApi extends BaseAPI {
24502
25242
  */
24503
25243
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24504
25244
  /**
24505
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
24506
- * @summary Search
25245
+ * Search every player Takaro knows about, across all game servers. Match on their name or on a platform identifier: Steam ID, Xbox live ID, Epic Online Services ID, or their Takaro player id. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
25246
+ * @summary Find a player by name or platform id
24507
25247
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
24508
25248
  * @param {*} [options] Override http request option.
24509
25249
  * @throws {RequiredError}
@@ -24517,8 +25257,8 @@ export declare class PlayerApi extends BaseAPI {
24517
25257
  */
24518
25258
  export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Configuration) => {
24519
25259
  /**
24520
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
24521
- * @summary Add currency
25260
+ * Grant currency to a player on a game server as a reward, a payout or a manual correction. The amount is added to the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
25261
+ * @summary Give a player currency
24522
25262
  * @param {string} gameServerId
24523
25263
  * @param {string} playerId
24524
25264
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24527,8 +25267,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24527
25267
  */
24528
25268
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24529
25269
  /**
24530
- * 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`
24531
- * @summary Bulk add currency
25270
+ * Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
25271
+ * @summary Give several players currency at once
24532
25272
  * @param {string} gameServerId
24533
25273
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24534
25274
  * @param {*} [options] Override http request option.
@@ -24537,7 +25277,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24537
25277
  playerOnGameServerControllerBulkAddCurrency: (gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24538
25278
  /**
24539
25279
  * 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`
24540
- * @summary Bulk delete
25280
+ * @summary Permanently delete several players\' records and their history
24541
25281
  * @param {string} gameServerId
24542
25282
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
24543
25283
  * @param {*} [options] Override http request option.
@@ -24545,8 +25285,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24545
25285
  */
24546
25286
  playerOnGameServerControllerBulkDelete: (gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24547
25287
  /**
24548
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
24549
- * @summary Deduct currency
25288
+ * Remove currency from a player on a game server as a fine or a manual correction. The amount is subtracted from the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25289
+ * @summary Take currency away from a player
24550
25290
  * @param {string} gameServerId
24551
25291
  * @param {string} playerId
24552
25292
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24555,8 +25295,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24555
25295
  */
24556
25296
  playerOnGameServerControllerDeductCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24557
25297
  /**
24558
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
24559
- * @summary Delete
25298
+ * Removes the per-server record only. The player themselves, and their records on other game servers, remain untouched. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
25299
+ * @summary Permanently delete a player\'s record and its history
24560
25300
  * @param {string} gameServerId
24561
25301
  * @param {string} playerId
24562
25302
  * @param {*} [options] Override http request option.
@@ -24564,8 +25304,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24564
25304
  */
24565
25305
  playerOnGameServerControllerDelete: (gameServerId: string, playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24566
25306
  /**
24567
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
24568
- * @summary Get one
25307
+ * Fetch a single player\'s record on a specific game server, with their currency balance, playtime and online status. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
25308
+ * @summary Get one player on a game server
24569
25309
  * @param {string} gameServerId
24570
25310
  * @param {string} playerId
24571
25311
  * @param {*} [options] Override http request option.
@@ -24573,16 +25313,16 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24573
25313
  */
24574
25314
  playerOnGameServerControllerGetOne: (gameServerId: string, playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24575
25315
  /**
24576
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
24577
- * @summary Search
25316
+ * Find the per-server record of a player: their currency balance, playtime, online status and when they were last seen on that game server. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
25317
+ * @summary Search players on a game server
24578
25318
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
24579
25319
  * @param {*} [options] Override http request option.
24580
25320
  * @throws {RequiredError}
24581
25321
  */
24582
25322
  playerOnGameServerControllerSearch: (playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24583
25323
  /**
24584
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
24585
- * @summary Set currency
25324
+ * Overwrite a player\'s currency balance on a game server with an exact amount, rather than adding to or subtracting from it. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
25325
+ * @summary Set a player\'s currency balance
24586
25326
  * @param {string} gameServerId
24587
25327
  * @param {string} playerId
24588
25328
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24591,8 +25331,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24591
25331
  */
24592
25332
  playerOnGameServerControllerSetCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24593
25333
  /**
24594
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
24595
- * @summary Transact between players
25334
+ * Move currency from one player to another on the same game server, deducting from the sender and adding to the receiver in a single operation. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
25335
+ * @summary Transfer currency between two players
24596
25336
  * @param {string} gameServerId
24597
25337
  * @param {string} sender
24598
25338
  * @param {string} receiver
@@ -24608,8 +25348,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
24608
25348
  */
24609
25349
  export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) => {
24610
25350
  /**
24611
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
24612
- * @summary Add currency
25351
+ * Grant currency to a player on a game server as a reward, a payout or a manual correction. The amount is added to the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
25352
+ * @summary Give a player currency
24613
25353
  * @param {string} gameServerId
24614
25354
  * @param {string} playerId
24615
25355
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24618,8 +25358,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24618
25358
  */
24619
25359
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24620
25360
  /**
24621
- * 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`
24622
- * @summary Bulk add currency
25361
+ * Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
25362
+ * @summary Give several players currency at once
24623
25363
  * @param {string} gameServerId
24624
25364
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24625
25365
  * @param {*} [options] Override http request option.
@@ -24628,7 +25368,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24628
25368
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>>;
24629
25369
  /**
24630
25370
  * 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`
24631
- * @summary Bulk delete
25371
+ * @summary Permanently delete several players\' records and their history
24632
25372
  * @param {string} gameServerId
24633
25373
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
24634
25374
  * @param {*} [options] Override http request option.
@@ -24636,8 +25376,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24636
25376
  */
24637
25377
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>>;
24638
25378
  /**
24639
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
24640
- * @summary Deduct currency
25379
+ * Remove currency from a player on a game server as a fine or a manual correction. The amount is subtracted from the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25380
+ * @summary Take currency away from a player
24641
25381
  * @param {string} gameServerId
24642
25382
  * @param {string} playerId
24643
25383
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24646,8 +25386,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24646
25386
  */
24647
25387
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24648
25388
  /**
24649
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
24650
- * @summary Delete
25389
+ * Removes the per-server record only. The player themselves, and their records on other game servers, remain untouched. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
25390
+ * @summary Permanently delete a player\'s record and its history
24651
25391
  * @param {string} gameServerId
24652
25392
  * @param {string} playerId
24653
25393
  * @param {*} [options] Override http request option.
@@ -24655,8 +25395,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24655
25395
  */
24656
25396
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
24657
25397
  /**
24658
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
24659
- * @summary Get one
25398
+ * Fetch a single player\'s record on a specific game server, with their currency balance, playtime and online status. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
25399
+ * @summary Get one player on a game server
24660
25400
  * @param {string} gameServerId
24661
25401
  * @param {string} playerId
24662
25402
  * @param {*} [options] Override http request option.
@@ -24664,16 +25404,16 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24664
25404
  */
24665
25405
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24666
25406
  /**
24667
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
24668
- * @summary Search
25407
+ * Find the per-server record of a player: their currency balance, playtime, online status and when they were last seen on that game server. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
25408
+ * @summary Search players on a game server
24669
25409
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
24670
25410
  * @param {*} [options] Override http request option.
24671
25411
  * @throws {RequiredError}
24672
25412
  */
24673
25413
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>>;
24674
25414
  /**
24675
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
24676
- * @summary Set currency
25415
+ * Overwrite a player\'s currency balance on a game server with an exact amount, rather than adding to or subtracting from it. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
25416
+ * @summary Set a player\'s currency balance
24677
25417
  * @param {string} gameServerId
24678
25418
  * @param {string} playerId
24679
25419
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24682,8 +25422,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24682
25422
  */
24683
25423
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24684
25424
  /**
24685
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
24686
- * @summary Transact between players
25425
+ * Move currency from one player to another on the same game server, deducting from the sender and adding to the receiver in a single operation. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
25426
+ * @summary Transfer currency between two players
24687
25427
  * @param {string} gameServerId
24688
25428
  * @param {string} sender
24689
25429
  * @param {string} receiver
@@ -24699,8 +25439,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24699
25439
  */
24700
25440
  export declare const PlayerOnGameServerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
24701
25441
  /**
24702
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
24703
- * @summary Add currency
25442
+ * Grant currency to a player on a game server as a reward, a payout or a manual correction. The amount is added to the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
25443
+ * @summary Give a player currency
24704
25444
  * @param {string} gameServerId
24705
25445
  * @param {string} playerId
24706
25446
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24709,8 +25449,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24709
25449
  */
24710
25450
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
24711
25451
  /**
24712
- * 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`
24713
- * @summary Bulk add currency
25452
+ * Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
25453
+ * @summary Give several players currency at once
24714
25454
  * @param {string} gameServerId
24715
25455
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24716
25456
  * @param {*} [options] Override http request option.
@@ -24719,7 +25459,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24719
25459
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>;
24720
25460
  /**
24721
25461
  * 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`
24722
- * @summary Bulk delete
25462
+ * @summary Permanently delete several players\' records and their history
24723
25463
  * @param {string} gameServerId
24724
25464
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
24725
25465
  * @param {*} [options] Override http request option.
@@ -24727,8 +25467,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24727
25467
  */
24728
25468
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkDeleteOutputDTOAPI>;
24729
25469
  /**
24730
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
24731
- * @summary Deduct currency
25470
+ * Remove currency from a player on a game server as a fine or a manual correction. The amount is subtracted from the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25471
+ * @summary Take currency away from a player
24732
25472
  * @param {string} gameServerId
24733
25473
  * @param {string} playerId
24734
25474
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24737,8 +25477,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24737
25477
  */
24738
25478
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
24739
25479
  /**
24740
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
24741
- * @summary Delete
25480
+ * Removes the per-server record only. The player themselves, and their records on other game servers, remain untouched. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
25481
+ * @summary Permanently delete a player\'s record and its history
24742
25482
  * @param {string} gameServerId
24743
25483
  * @param {string} playerId
24744
25484
  * @param {*} [options] Override http request option.
@@ -24746,8 +25486,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24746
25486
  */
24747
25487
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
24748
25488
  /**
24749
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
24750
- * @summary Get one
25489
+ * Fetch a single player\'s record on a specific game server, with their currency balance, playtime and online status. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
25490
+ * @summary Get one player on a game server
24751
25491
  * @param {string} gameServerId
24752
25492
  * @param {string} playerId
24753
25493
  * @param {*} [options] Override http request option.
@@ -24755,16 +25495,16 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24755
25495
  */
24756
25496
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
24757
25497
  /**
24758
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
24759
- * @summary Search
25498
+ * Find the per-server record of a player: their currency balance, playtime, online status and when they were last seen on that game server. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
25499
+ * @summary Search players on a game server
24760
25500
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
24761
25501
  * @param {*} [options] Override http request option.
24762
25502
  * @throws {RequiredError}
24763
25503
  */
24764
25504
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>;
24765
25505
  /**
24766
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
24767
- * @summary Set currency
25506
+ * Overwrite a player\'s currency balance on a game server with an exact amount, rather than adding to or subtracting from it. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
25507
+ * @summary Set a player\'s currency balance
24768
25508
  * @param {string} gameServerId
24769
25509
  * @param {string} playerId
24770
25510
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24773,8 +25513,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24773
25513
  */
24774
25514
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
24775
25515
  /**
24776
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
24777
- * @summary Transact between players
25516
+ * Move currency from one player to another on the same game server, deducting from the sender and adding to the receiver in a single operation. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
25517
+ * @summary Transfer currency between two players
24778
25518
  * @param {string} gameServerId
24779
25519
  * @param {string} sender
24780
25520
  * @param {string} receiver
@@ -24792,8 +25532,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24792
25532
  */
24793
25533
  export declare class PlayerOnGameServerApi extends BaseAPI {
24794
25534
  /**
24795
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
24796
- * @summary Add currency
25535
+ * Grant currency to a player on a game server as a reward, a payout or a manual correction. The amount is added to the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
25536
+ * @summary Give a player currency
24797
25537
  * @param {string} gameServerId
24798
25538
  * @param {string} playerId
24799
25539
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24803,8 +25543,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24803
25543
  */
24804
25544
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24805
25545
  /**
24806
- * 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`
24807
- * @summary Bulk add currency
25546
+ * Bulk add currency to players on a game server, targeted by player ids or by a player-on-game-server search query (at most 1000 resolved players). Processes each player individually and reports partial failures. `playerIds` is deprecated; use `ids`. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
25547
+ * @summary Give several players currency at once
24808
25548
  * @param {string} gameServerId
24809
25549
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24810
25550
  * @param {*} [options] Override http request option.
@@ -24814,7 +25554,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24814
25554
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkAddCurrencyOutputDTOAPI, any>>;
24815
25555
  /**
24816
25556
  * 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`
24817
- * @summary Bulk delete
25557
+ * @summary Permanently delete several players\' records and their history
24818
25558
  * @param {string} gameServerId
24819
25559
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
24820
25560
  * @param {*} [options] Override http request option.
@@ -24823,8 +25563,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24823
25563
  */
24824
25564
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkDeleteOutputDTOAPI, any>>;
24825
25565
  /**
24826
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
24827
- * @summary Deduct currency
25566
+ * Remove currency from a player on a game server as a fine or a manual correction. The amount is subtracted from the balance they already have. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
25567
+ * @summary Take currency away from a player
24828
25568
  * @param {string} gameServerId
24829
25569
  * @param {string} playerId
24830
25570
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24834,8 +25574,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24834
25574
  */
24835
25575
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24836
25576
  /**
24837
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
24838
- * @summary Delete
25577
+ * Removes the per-server record only. The player themselves, and their records on other game servers, remain untouched. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
25578
+ * @summary Permanently delete a player\'s record and its history
24839
25579
  * @param {string} gameServerId
24840
25580
  * @param {string} playerId
24841
25581
  * @param {*} [options] Override http request option.
@@ -24844,8 +25584,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24844
25584
  */
24845
25585
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24846
25586
  /**
24847
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
24848
- * @summary Get one
25587
+ * Fetch a single player\'s record on a specific game server, with their currency balance, playtime and online status. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
25588
+ * @summary Get one player on a game server
24849
25589
  * @param {string} gameServerId
24850
25590
  * @param {string} playerId
24851
25591
  * @param {*} [options] Override http request option.
@@ -24854,8 +25594,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24854
25594
  */
24855
25595
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24856
25596
  /**
24857
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
24858
- * @summary Search
25597
+ * Find the per-server record of a player: their currency balance, playtime, online status and when they were last seen on that game server. Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
25598
+ * @summary Search players on a game server
24859
25599
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
24860
25600
  * @param {*} [options] Override http request option.
24861
25601
  * @throws {RequiredError}
@@ -24863,8 +25603,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24863
25603
  */
24864
25604
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputArrayDTOAPI, any>>;
24865
25605
  /**
24866
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
24867
- * @summary Set currency
25606
+ * Overwrite a player\'s currency balance on a game server with an exact amount, rather than adding to or subtracting from it. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
25607
+ * @summary Set a player\'s currency balance
24868
25608
  * @param {string} gameServerId
24869
25609
  * @param {string} playerId
24870
25610
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24874,8 +25614,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24874
25614
  */
24875
25615
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24876
25616
  /**
24877
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
24878
- * @summary Transact between players
25617
+ * Move currency from one player to another on the same game server, deducting from the sender and adding to the receiver in a single operation. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
25618
+ * @summary Transfer currency between two players
24879
25619
  * @param {string} gameServerId
24880
25620
  * @param {string} sender
24881
25621
  * @param {string} receiver
@@ -25099,8 +25839,8 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
25099
25839
  */
25100
25840
  roleControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25101
25841
  /**
25102
- * <br> OperationId: `RoleControllerGetPermissions`
25103
- * @summary Get permissions
25842
+ * Returns the full catalogue of permissions that can be assigned to a role, including the ones modules contribute.<br> OperationId: `RoleControllerGetPermissions`
25843
+ * @summary List every permission a role can grant
25104
25844
  * @param {*} [options] Override http request option.
25105
25845
  * @throws {RequiredError}
25106
25846
  */
@@ -25153,8 +25893,8 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
25153
25893
  */
25154
25894
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleOutputDTOAPI>>;
25155
25895
  /**
25156
- * <br> OperationId: `RoleControllerGetPermissions`
25157
- * @summary Get permissions
25896
+ * Returns the full catalogue of permissions that can be assigned to a role, including the ones modules contribute.<br> OperationId: `RoleControllerGetPermissions`
25897
+ * @summary List every permission a role can grant
25158
25898
  * @param {*} [options] Override http request option.
25159
25899
  * @throws {RequiredError}
25160
25900
  */
@@ -25207,8 +25947,8 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
25207
25947
  */
25208
25948
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputDTOAPI>;
25209
25949
  /**
25210
- * <br> OperationId: `RoleControllerGetPermissions`
25211
- * @summary Get permissions
25950
+ * Returns the full catalogue of permissions that can be assigned to a role, including the ones modules contribute.<br> OperationId: `RoleControllerGetPermissions`
25951
+ * @summary List every permission a role can grant
25212
25952
  * @param {*} [options] Override http request option.
25213
25953
  * @throws {RequiredError}
25214
25954
  */
@@ -25265,8 +26005,8 @@ export declare class RoleApi extends BaseAPI {
25265
26005
  */
25266
26006
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleOutputDTOAPI, any>>;
25267
26007
  /**
25268
- * <br> OperationId: `RoleControllerGetPermissions`
25269
- * @summary Get permissions
26008
+ * Returns the full catalogue of permissions that can be assigned to a role, including the ones modules contribute.<br> OperationId: `RoleControllerGetPermissions`
26009
+ * @summary List every permission a role can grant
25270
26010
  * @param {*} [options] Override http request option.
25271
26011
  * @throws {RequiredError}
25272
26012
  * @memberof RoleApi
@@ -25767,7 +26507,7 @@ export declare class ShopActionApi extends BaseAPI {
25767
26507
  */
25768
26508
  export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
25769
26509
  /**
25770
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26510
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
25771
26511
  * @summary Bulk assign
25772
26512
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25773
26513
  * @param {*} [options] Override http request option.
@@ -25840,7 +26580,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
25840
26580
  */
25841
26581
  export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25842
26582
  /**
25843
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26583
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
25844
26584
  * @summary Bulk assign
25845
26585
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25846
26586
  * @param {*} [options] Override http request option.
@@ -25913,7 +26653,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25913
26653
  */
25914
26654
  export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25915
26655
  /**
25916
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26656
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
25917
26657
  * @summary Bulk assign
25918
26658
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25919
26659
  * @param {*} [options] Override http request option.
@@ -25988,7 +26728,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
25988
26728
  */
25989
26729
  export declare class ShopCategoryApi extends BaseAPI {
25990
26730
  /**
25991
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26731
+ * Bulk assign categories to shop listings, targeted by ids or by a listing search query. `listingIds` is deprecated; use `ids`. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
25992
26732
  * @summary Bulk assign
25993
26733
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25994
26734
  * @param {*} [options] Override http request option.
@@ -26068,6 +26808,14 @@ export declare class ShopCategoryApi extends BaseAPI {
26068
26808
  * @export
26069
26809
  */
26070
26810
  export declare const ShopListingApiAxiosParamCreator: (configuration?: Configuration) => {
26811
+ /**
26812
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26813
+ * @summary Bulk
26814
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26815
+ * @param {*} [options] Override http request option.
26816
+ * @throws {RequiredError}
26817
+ */
26818
+ shopListingControllerBulk: (shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26071
26819
  /**
26072
26820
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26073
26821
  * @summary Create
@@ -26122,6 +26870,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
26122
26870
  * @export
26123
26871
  */
26124
26872
  export declare const ShopListingApiFp: (configuration?: Configuration) => {
26873
+ /**
26874
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26875
+ * @summary Bulk
26876
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26877
+ * @param {*} [options] Override http request option.
26878
+ * @throws {RequiredError}
26879
+ */
26880
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
26125
26881
  /**
26126
26882
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26127
26883
  * @summary Create
@@ -26176,6 +26932,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
26176
26932
  * @export
26177
26933
  */
26178
26934
  export declare const ShopListingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26935
+ /**
26936
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26937
+ * @summary Bulk
26938
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26939
+ * @param {*} [options] Override http request option.
26940
+ * @throws {RequiredError}
26941
+ */
26942
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
26179
26943
  /**
26180
26944
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26181
26945
  * @summary Create
@@ -26232,6 +26996,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
26232
26996
  * @extends {BaseAPI}
26233
26997
  */
26234
26998
  export declare class ShopListingApi extends BaseAPI {
26999
+ /**
27000
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
27001
+ * @summary Bulk
27002
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
27003
+ * @param {*} [options] Override http request option.
27004
+ * @throws {RequiredError}
27005
+ * @memberof ShopListingApi
27006
+ */
27007
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
26235
27008
  /**
26236
27009
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
26237
27010
  * @summary Create
@@ -26498,6 +27271,15 @@ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Conf
26498
27271
  * @throws {RequiredError}
26499
27272
  */
26500
27273
  storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27274
+ /**
27275
+ * Render the storefront for a game server from an unsaved template id and values, using the same validation and render path as the public page. Persists nothing. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerPreviewConfig`
27276
+ * @summary Preview config
27277
+ * @param {string} gameServerId
27278
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27279
+ * @param {*} [options] Override http request option.
27280
+ * @throws {RequiredError}
27281
+ */
27282
+ storefrontConfigControllerPreviewConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26501
27283
  /**
26502
27284
  * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26503
27285
  * @summary Set config
@@ -26528,6 +27310,15 @@ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
26528
27310
  * @throws {RequiredError}
26529
27311
  */
26530
27312
  storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
27313
+ /**
27314
+ * Render the storefront for a game server from an unsaved template id and values, using the same validation and render path as the public page. Persists nothing. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerPreviewConfig`
27315
+ * @summary Preview config
27316
+ * @param {string} gameServerId
27317
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27318
+ * @param {*} [options] Override http request option.
27319
+ * @throws {RequiredError}
27320
+ */
27321
+ storefrontConfigControllerPreviewConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontPreviewOutputDTOAPI>>;
26531
27322
  /**
26532
27323
  * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26533
27324
  * @summary Set config
@@ -26558,6 +27349,15 @@ export declare const StorefrontConfigApiFactory: (configuration?: Configuration,
26558
27349
  * @throws {RequiredError}
26559
27350
  */
26560
27351
  storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
27352
+ /**
27353
+ * Render the storefront for a game server from an unsaved template id and values, using the same validation and render path as the public page. Persists nothing. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerPreviewConfig`
27354
+ * @summary Preview config
27355
+ * @param {string} gameServerId
27356
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27357
+ * @param {*} [options] Override http request option.
27358
+ * @throws {RequiredError}
27359
+ */
27360
+ storefrontConfigControllerPreviewConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<StorefrontPreviewOutputDTOAPI>;
26561
27361
  /**
26562
27362
  * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26563
27363
  * @summary Set config
@@ -26592,6 +27392,16 @@ export declare class StorefrontConfigApi extends BaseAPI {
26592
27392
  * @memberof StorefrontConfigApi
26593
27393
  */
26594
27394
  storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
27395
+ /**
27396
+ * Render the storefront for a game server from an unsaved template id and values, using the same validation and render path as the public page. Persists nothing. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerPreviewConfig`
27397
+ * @summary Preview config
27398
+ * @param {string} gameServerId
27399
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27400
+ * @param {*} [options] Override http request option.
27401
+ * @throws {RequiredError}
27402
+ * @memberof StorefrontConfigApi
27403
+ */
27404
+ storefrontConfigControllerPreviewConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontPreviewOutputDTOAPI, any>>;
26595
27405
  /**
26596
27406
  * Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
26597
27407
  * @summary Set config
@@ -26844,6 +27654,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
26844
27654
  * @summary Invite
26845
27655
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26846
27656
  * @param {*} [options] Override http request option.
27657
+ * @deprecated
26847
27658
  * @throws {RequiredError}
26848
27659
  */
26849
27660
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -26970,6 +27781,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26970
27781
  * @summary Invite
26971
27782
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26972
27783
  * @param {*} [options] Override http request option.
27784
+ * @deprecated
26973
27785
  * @throws {RequiredError}
26974
27786
  */
26975
27787
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -27096,6 +27908,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
27096
27908
  * @summary Invite
27097
27909
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
27098
27910
  * @param {*} [options] Override http request option.
27911
+ * @deprecated
27099
27912
  * @throws {RequiredError}
27100
27913
  */
27101
27914
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -27229,6 +28042,7 @@ export declare class UserApi extends BaseAPI {
27229
28042
  * @summary Invite
27230
28043
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
27231
28044
  * @param {*} [options] Override http request option.
28045
+ * @deprecated
27232
28046
  * @throws {RequiredError}
27233
28047
  * @memberof UserApi
27234
28048
  */
@@ -27320,6 +28134,14 @@ export declare class UserApi extends BaseAPI {
27320
28134
  * @export
27321
28135
  */
27322
28136
  export declare const VariableApiAxiosParamCreator: (configuration?: Configuration) => {
28137
+ /**
28138
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28139
+ * @summary Bulk delete
28140
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28141
+ * @param {*} [options] Override http request option.
28142
+ * @throws {RequiredError}
28143
+ */
28144
+ variableControllerBulkDelete: (variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27323
28145
  /**
27324
28146
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27325
28147
  * @summary Create
@@ -27367,6 +28189,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
27367
28189
  * @export
27368
28190
  */
27369
28191
  export declare const VariableApiFp: (configuration?: Configuration) => {
28192
+ /**
28193
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28194
+ * @summary Bulk delete
28195
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28196
+ * @param {*} [options] Override http request option.
28197
+ * @throws {RequiredError}
28198
+ */
28199
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
27370
28200
  /**
27371
28201
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27372
28202
  * @summary Create
@@ -27414,6 +28244,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
27414
28244
  * @export
27415
28245
  */
27416
28246
  export declare const VariableApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
28247
+ /**
28248
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28249
+ * @summary Bulk delete
28250
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28251
+ * @param {*} [options] Override http request option.
28252
+ * @throws {RequiredError}
28253
+ */
28254
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
27417
28255
  /**
27418
28256
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27419
28257
  * @summary Create
@@ -27463,6 +28301,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
27463
28301
  * @extends {BaseAPI}
27464
28302
  */
27465
28303
  export declare class VariableApi extends BaseAPI {
28304
+ /**
28305
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28306
+ * @summary Bulk delete
28307
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28308
+ * @param {*} [options] Override http request option.
28309
+ * @throws {RequiredError}
28310
+ * @memberof VariableApi
28311
+ */
28312
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
27466
28313
  /**
27467
28314
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
27468
28315
  * @summary Create
@@ -27510,195 +28357,4 @@ export declare class VariableApi extends BaseAPI {
27510
28357
  */
27511
28358
  variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
27512
28359
  }
27513
- /**
27514
- * InviteLinkApi - axios parameter creator
27515
- * @export
27516
- */
27517
- export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
27518
- /**
27519
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27520
- * @summary Create invite link
27521
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27522
- * @param {*} [options] Override http request option.
27523
- * @throws {RequiredError}
27524
- */
27525
- inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27526
- /**
27527
- * <br> OperationId: `InviteLinkControllerPreview`
27528
- * @summary Preview
27529
- * @param {string} token
27530
- * @param {*} [options] Override http request option.
27531
- * @throws {RequiredError}
27532
- */
27533
- inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27534
- /**
27535
- * <br> OperationId: `InviteLinkControllerRedeem`
27536
- * @summary Redeem
27537
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27538
- * @param {*} [options] Override http request option.
27539
- * @throws {RequiredError}
27540
- */
27541
- inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27542
- /**
27543
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27544
- * @summary Revoke
27545
- * @param {string} id
27546
- * @param {*} [options] Override http request option.
27547
- * @throws {RequiredError}
27548
- */
27549
- inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27550
- /**
27551
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27552
- * @summary Search
27553
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27554
- * @param {*} [options] Override http request option.
27555
- * @throws {RequiredError}
27556
- */
27557
- inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27558
- };
27559
- /**
27560
- * InviteLinkApi - functional programming interface
27561
- * @export
27562
- */
27563
- export declare const InviteLinkApiFp: (configuration?: Configuration) => {
27564
- /**
27565
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27566
- * @summary Create invite link
27567
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27568
- * @param {*} [options] Override http request option.
27569
- * @throws {RequiredError}
27570
- */
27571
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
27572
- /**
27573
- * <br> OperationId: `InviteLinkControllerPreview`
27574
- * @summary Preview
27575
- * @param {string} token
27576
- * @param {*} [options] Override http request option.
27577
- * @throws {RequiredError}
27578
- */
27579
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
27580
- /**
27581
- * <br> OperationId: `InviteLinkControllerRedeem`
27582
- * @summary Redeem
27583
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27584
- * @param {*} [options] Override http request option.
27585
- * @throws {RequiredError}
27586
- */
27587
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
27588
- /**
27589
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27590
- * @summary Revoke
27591
- * @param {string} id
27592
- * @param {*} [options] Override http request option.
27593
- * @throws {RequiredError}
27594
- */
27595
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27596
- /**
27597
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27598
- * @summary Search
27599
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27600
- * @param {*} [options] Override http request option.
27601
- * @throws {RequiredError}
27602
- */
27603
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
27604
- };
27605
- /**
27606
- * InviteLinkApi - factory interface
27607
- * @export
27608
- */
27609
- export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27610
- /**
27611
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27612
- * @summary Create invite link
27613
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27614
- * @param {*} [options] Override http request option.
27615
- * @throws {RequiredError}
27616
- */
27617
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
27618
- /**
27619
- * <br> OperationId: `InviteLinkControllerPreview`
27620
- * @summary Preview
27621
- * @param {string} token
27622
- * @param {*} [options] Override http request option.
27623
- * @throws {RequiredError}
27624
- */
27625
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
27626
- /**
27627
- * <br> OperationId: `InviteLinkControllerRedeem`
27628
- * @summary Redeem
27629
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27630
- * @param {*} [options] Override http request option.
27631
- * @throws {RequiredError}
27632
- */
27633
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
27634
- /**
27635
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27636
- * @summary Revoke
27637
- * @param {string} id
27638
- * @param {*} [options] Override http request option.
27639
- * @throws {RequiredError}
27640
- */
27641
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27642
- /**
27643
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27644
- * @summary Search
27645
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27646
- * @param {*} [options] Override http request option.
27647
- * @throws {RequiredError}
27648
- */
27649
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
27650
- };
27651
- /**
27652
- * InviteLinkApi - object-oriented interface
27653
- * @export
27654
- * @class InviteLinkApi
27655
- * @extends {BaseAPI}
27656
- */
27657
- export declare class InviteLinkApi extends BaseAPI {
27658
- /**
27659
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27660
- * @summary Create invite link
27661
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27662
- * @param {*} [options] Override http request option.
27663
- * @throws {RequiredError}
27664
- * @memberof InviteLinkApi
27665
- */
27666
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
27667
- /**
27668
- * <br> OperationId: `InviteLinkControllerPreview`
27669
- * @summary Preview
27670
- * @param {string} token
27671
- * @param {*} [options] Override http request option.
27672
- * @throws {RequiredError}
27673
- * @memberof InviteLinkApi
27674
- */
27675
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
27676
- /**
27677
- * <br> OperationId: `InviteLinkControllerRedeem`
27678
- * @summary Redeem
27679
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27680
- * @param {*} [options] Override http request option.
27681
- * @throws {RequiredError}
27682
- * @memberof InviteLinkApi
27683
- */
27684
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
27685
- /**
27686
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27687
- * @summary Revoke
27688
- * @param {string} id
27689
- * @param {*} [options] Override http request option.
27690
- * @throws {RequiredError}
27691
- * @memberof InviteLinkApi
27692
- */
27693
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27694
- /**
27695
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27696
- * @summary Search
27697
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27698
- * @param {*} [options] Override http request option.
27699
- * @throws {RequiredError}
27700
- * @memberof InviteLinkApi
27701
- */
27702
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
27703
- }
27704
28360
  //# sourceMappingURL=api.d.ts.map