@takaro/apiclient 0.0.0-dev.db86b98 → 0.0.0-dev.dc6ba0b

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";
@@ -2599,6 +2729,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
2599
2729
  readonly Maintenance: "MAINTENANCE";
2600
2730
  };
2601
2731
  export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
2732
+ /**
2733
+ *
2734
+ * @export
2735
+ * @interface EffectiveStorefrontConfigDTO
2736
+ */
2737
+ export interface EffectiveStorefrontConfigDTO {
2738
+ /**
2739
+ *
2740
+ * @type {string}
2741
+ * @memberof EffectiveStorefrontConfigDTO
2742
+ */
2743
+ templateId: string;
2744
+ /**
2745
+ *
2746
+ * @type {object}
2747
+ * @memberof EffectiveStorefrontConfigDTO
2748
+ */
2749
+ values: object;
2750
+ /**
2751
+ *
2752
+ * @type {object}
2753
+ * @memberof EffectiveStorefrontConfigDTO
2754
+ */
2755
+ schema: object;
2756
+ }
2757
+ /**
2758
+ *
2759
+ * @export
2760
+ * @interface EffectiveStorefrontConfigOutputDTOAPI
2761
+ */
2762
+ export interface EffectiveStorefrontConfigOutputDTOAPI {
2763
+ /**
2764
+ *
2765
+ * @type {EffectiveStorefrontConfigDTO}
2766
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2767
+ */
2768
+ data: EffectiveStorefrontConfigDTO;
2769
+ /**
2770
+ *
2771
+ * @type {MetadataOutput}
2772
+ * @memberof EffectiveStorefrontConfigOutputDTOAPI
2773
+ */
2774
+ meta: MetadataOutput;
2775
+ }
2602
2776
  /**
2603
2777
  *
2604
2778
  * @export
@@ -2979,19 +3153,19 @@ export interface ErrorOutput {
2979
3153
  * @type {string}
2980
3154
  * @memberof ErrorOutput
2981
3155
  */
2982
- code: string;
3156
+ code?: string;
2983
3157
  /**
2984
3158
  *
2985
3159
  * @type {string}
2986
3160
  * @memberof ErrorOutput
2987
3161
  */
2988
- message: string;
3162
+ message?: string;
2989
3163
  /**
2990
3164
  *
2991
3165
  * @type {string}
2992
3166
  * @memberof ErrorOutput
2993
3167
  */
2994
- details: string;
3168
+ details?: string;
2995
3169
  }
2996
3170
  /**
2997
3171
  *
@@ -3004,7 +3178,7 @@ export interface EventChatMessage {
3004
3178
  * @type {IGamePlayer}
3005
3179
  * @memberof EventChatMessage
3006
3180
  */
3007
- player: IGamePlayer;
3181
+ player?: IGamePlayer;
3008
3182
  /**
3009
3183
  *
3010
3184
  * @type {string}
@@ -3132,6 +3306,7 @@ export declare const EventCreateDTOEventNameEnum: {
3132
3306
  readonly PlayerInventoryChanged: "player-inventory-changed";
3133
3307
  readonly EventRateLimited: "event-rate-limited";
3134
3308
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3309
+ readonly InviteLinkCreated: "invite-link-created";
3135
3310
  readonly PlayerConnected: "player-connected";
3136
3311
  readonly PlayerDisconnected: "player-disconnected";
3137
3312
  readonly ChatMessage: "chat-message";
@@ -3346,6 +3521,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3346
3521
  readonly PlayerInventoryChanged: "player-inventory-changed";
3347
3522
  readonly EventRateLimited: "event-rate-limited";
3348
3523
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3524
+ readonly InviteLinkCreated: "invite-link-created";
3349
3525
  readonly PlayerConnected: "player-connected";
3350
3526
  readonly PlayerDisconnected: "player-disconnected";
3351
3527
  readonly ChatMessage: "chat-message";
@@ -3712,6 +3888,7 @@ export declare const EventOutputDTOEventNameEnum: {
3712
3888
  readonly PlayerInventoryChanged: "player-inventory-changed";
3713
3889
  readonly EventRateLimited: "event-rate-limited";
3714
3890
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3891
+ readonly InviteLinkCreated: "invite-link-created";
3715
3892
  readonly PlayerConnected: "player-connected";
3716
3893
  readonly PlayerDisconnected: "player-disconnected";
3717
3894
  readonly ChatMessage: "chat-message";
@@ -3723,7 +3900,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3723
3900
  * @type EventOutputDTOMeta
3724
3901
  * @export
3725
3902
  */
3726
- 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;
3727
3904
  /**
3728
3905
  *
3729
3906
  * @export
@@ -3900,6 +4077,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3900
4077
  readonly PlayerInventoryChanged: "player-inventory-changed";
3901
4078
  readonly EventRateLimited: "event-rate-limited";
3902
4079
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
4080
+ readonly InviteLinkCreated: "invite-link-created";
3903
4081
  readonly PlayerConnected: "player-connected";
3904
4082
  readonly PlayerDisconnected: "player-disconnected";
3905
4083
  readonly ChatMessage: "chat-message";
@@ -5334,6 +5512,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5334
5512
  readonly PlayerInventoryChanged: "player-inventory-changed";
5335
5513
  readonly EventRateLimited: "event-rate-limited";
5336
5514
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5515
+ readonly InviteLinkCreated: "invite-link-created";
5337
5516
  };
5338
5517
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5339
5518
  /**
@@ -5494,6 +5673,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5494
5673
  readonly PlayerInventoryChanged: "player-inventory-changed";
5495
5674
  readonly EventRateLimited: "event-rate-limited";
5496
5675
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5676
+ readonly InviteLinkCreated: "invite-link-created";
5497
5677
  };
5498
5678
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5499
5679
  /**
@@ -5599,6 +5779,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5599
5779
  readonly PlayerInventoryChanged: "player-inventory-changed";
5600
5780
  readonly EventRateLimited: "event-rate-limited";
5601
5781
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5782
+ readonly InviteLinkCreated: "invite-link-created";
5602
5783
  };
5603
5784
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5604
5785
  /**
@@ -5769,6 +5950,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5769
5950
  readonly PlayerInventoryChanged: "player-inventory-changed";
5770
5951
  readonly EventRateLimited: "event-rate-limited";
5771
5952
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5953
+ readonly InviteLinkCreated: "invite-link-created";
5772
5954
  };
5773
5955
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5774
5956
  /**
@@ -5855,6 +6037,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5855
6037
  readonly PlayerInventoryChanged: "player-inventory-changed";
5856
6038
  readonly EventRateLimited: "event-rate-limited";
5857
6039
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6040
+ readonly InviteLinkCreated: "invite-link-created";
5858
6041
  };
5859
6042
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5860
6043
  /**
@@ -6181,6 +6364,7 @@ export declare const IHookEventTypeEnum: {
6181
6364
  readonly PlayerInventoryChanged: "player-inventory-changed";
6182
6365
  readonly EventRateLimited: "event-rate-limited";
6183
6366
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6367
+ readonly InviteLinkCreated: "invite-link-created";
6184
6368
  };
6185
6369
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6186
6370
  /**
@@ -6607,193 +6791,633 @@ export interface InviteCreateDTO {
6607
6791
  /**
6608
6792
  *
6609
6793
  * @export
6610
- * @interface InviteOutputDTO
6794
+ * @interface InviteLinkCreateInputDTO
6611
6795
  */
6612
- export interface InviteOutputDTO {
6796
+ export interface InviteLinkCreateInputDTO {
6613
6797
  /**
6614
6798
  *
6615
- * @type {string}
6616
- * @memberof InviteOutputDTO
6799
+ * @type {Array<string>}
6800
+ * @memberof InviteLinkCreateInputDTO
6617
6801
  */
6618
- botInvite: string;
6802
+ roleIds?: Array<string>;
6619
6803
  /**
6620
6804
  *
6621
- * @type {string}
6622
- * @memberof InviteOutputDTO
6805
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6806
+ * @memberof InviteLinkCreateInputDTO
6623
6807
  */
6624
- devServer: string;
6808
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6809
+ /**
6810
+ *
6811
+ * @type {number}
6812
+ * @memberof InviteLinkCreateInputDTO
6813
+ */
6814
+ maxUses?: number;
6625
6815
  }
6626
6816
  /**
6627
6817
  *
6628
6818
  * @export
6629
- * @interface IpHistoryOutputDTO
6819
+ * @interface InviteLinkCreateResultDTO
6630
6820
  */
6631
- export interface IpHistoryOutputDTO {
6821
+ export interface InviteLinkCreateResultDTO {
6632
6822
  /**
6633
6823
  *
6634
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6635
- * @memberof IpHistoryOutputDTO
6824
+ * @type {string}
6825
+ * @memberof InviteLinkCreateResultDTO
6636
6826
  */
6637
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6827
+ inviteUrl: string;
6638
6828
  /**
6639
6829
  *
6640
6830
  * @type {string}
6641
- * @memberof IpHistoryOutputDTO
6831
+ * @memberof InviteLinkCreateResultDTO
6642
6832
  */
6643
- ip: string;
6833
+ token: string;
6644
6834
  /**
6645
6835
  *
6646
6836
  * @type {string}
6647
- * @memberof IpHistoryOutputDTO
6837
+ * @memberof InviteLinkCreateResultDTO
6648
6838
  */
6649
- country?: string;
6839
+ id: string;
6650
6840
  /**
6651
6841
  *
6652
- * @type {string}
6653
- * @memberof IpHistoryOutputDTO
6842
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6843
+ * @memberof InviteLinkCreateResultDTO
6654
6844
  */
6655
- city?: string;
6845
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6656
6846
  /**
6657
6847
  *
6658
- * @type {string}
6659
- * @memberof IpHistoryOutputDTO
6848
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6849
+ * @memberof InviteLinkCreateResultDTO
6660
6850
  */
6661
- latitude?: string;
6851
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6662
6852
  /**
6663
6853
  *
6664
- * @type {string}
6665
- * @memberof IpHistoryOutputDTO
6854
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6855
+ * @memberof InviteLinkCreateResultDTO
6666
6856
  */
6667
- longitude?: string;
6668
- }
6669
- /**
6670
- *
6671
- * @export
6672
- * @interface ItemCreateDTO
6673
- */
6674
- export interface ItemCreateDTO {
6857
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6675
6858
  /**
6676
6859
  *
6677
- * @type {string}
6678
- * @memberof ItemCreateDTO
6860
+ * @type {number}
6861
+ * @memberof InviteLinkCreateResultDTO
6679
6862
  */
6680
- name: string;
6863
+ maxUses?: number;
6681
6864
  /**
6682
6865
  *
6683
- * @type {string}
6684
- * @memberof ItemCreateDTO
6866
+ * @type {number}
6867
+ * @memberof InviteLinkCreateResultDTO
6685
6868
  */
6686
- code: string;
6869
+ uses: number;
6687
6870
  /**
6688
6871
  *
6689
- * @type {string}
6690
- * @memberof ItemCreateDTO
6872
+ * @type {number}
6873
+ * @memberof InviteLinkCreateResultDTO
6691
6874
  */
6692
- description?: string;
6875
+ remaining?: number;
6693
6876
  /**
6694
6877
  *
6695
6878
  * @type {string}
6696
- * @memberof ItemCreateDTO
6879
+ * @memberof InviteLinkCreateResultDTO
6697
6880
  */
6698
- icon?: string;
6881
+ status: InviteLinkCreateResultDTOStatusEnum;
6882
+ /**
6883
+ *
6884
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6885
+ * @memberof InviteLinkCreateResultDTO
6886
+ */
6887
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6699
6888
  /**
6700
6889
  *
6701
6890
  * @type {string}
6702
- * @memberof ItemCreateDTO
6891
+ * @memberof InviteLinkCreateResultDTO
6703
6892
  */
6704
- gameserverId: string;
6893
+ createdBy?: string;
6894
+ /**
6895
+ *
6896
+ * @type {Array<InviteLinkRoleDTO>}
6897
+ * @memberof InviteLinkCreateResultDTO
6898
+ */
6899
+ roles: Array<InviteLinkRoleDTO>;
6705
6900
  }
6901
+ export declare const InviteLinkCreateResultDTOStatusEnum: {
6902
+ readonly Active: "ACTIVE";
6903
+ readonly Revoked: "REVOKED";
6904
+ readonly Expired: "EXPIRED";
6905
+ readonly Depleted: "DEPLETED";
6906
+ };
6907
+ export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
6706
6908
  /**
6707
6909
  *
6708
6910
  * @export
6709
- * @interface ItemOutputArrayDTOAPI
6911
+ * @interface InviteLinkCreateResultDTOAPI
6710
6912
  */
6711
- export interface ItemOutputArrayDTOAPI {
6913
+ export interface InviteLinkCreateResultDTOAPI {
6712
6914
  /**
6713
6915
  *
6714
- * @type {Array<ItemsOutputDTO>}
6715
- * @memberof ItemOutputArrayDTOAPI
6916
+ * @type {InviteLinkCreateResultDTO}
6917
+ * @memberof InviteLinkCreateResultDTOAPI
6716
6918
  */
6717
- data: Array<ItemsOutputDTO>;
6919
+ data: InviteLinkCreateResultDTO;
6718
6920
  /**
6719
6921
  *
6720
6922
  * @type {MetadataOutput}
6721
- * @memberof ItemOutputArrayDTOAPI
6923
+ * @memberof InviteLinkCreateResultDTOAPI
6722
6924
  */
6723
6925
  meta: MetadataOutput;
6724
6926
  }
6725
6927
  /**
6726
6928
  *
6727
6929
  * @export
6728
- * @interface ItemOutputDTOAPI
6930
+ * @interface InviteLinkOutputArrayDTOAPI
6729
6931
  */
6730
- export interface ItemOutputDTOAPI {
6932
+ export interface InviteLinkOutputArrayDTOAPI {
6731
6933
  /**
6732
6934
  *
6733
- * @type {ItemsOutputDTO}
6734
- * @memberof ItemOutputDTOAPI
6935
+ * @type {Array<InviteLinkOutputDTO>}
6936
+ * @memberof InviteLinkOutputArrayDTOAPI
6735
6937
  */
6736
- data: ItemsOutputDTO;
6938
+ data: Array<InviteLinkOutputDTO>;
6737
6939
  /**
6738
6940
  *
6739
6941
  * @type {MetadataOutput}
6740
- * @memberof ItemOutputDTOAPI
6942
+ * @memberof InviteLinkOutputArrayDTOAPI
6741
6943
  */
6742
6944
  meta: MetadataOutput;
6743
6945
  }
6744
6946
  /**
6745
6947
  *
6746
6948
  * @export
6747
- * @interface ItemSearchInputAllowedFilters
6949
+ * @interface InviteLinkOutputDTO
6748
6950
  */
6749
- export interface ItemSearchInputAllowedFilters {
6951
+ export interface InviteLinkOutputDTO {
6750
6952
  /**
6751
6953
  *
6752
- * @type {Array<string>}
6753
- * @memberof ItemSearchInputAllowedFilters
6954
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6955
+ * @memberof InviteLinkOutputDTO
6754
6956
  */
6755
- name?: Array<string>;
6957
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6756
6958
  /**
6757
6959
  *
6758
- * @type {Array<string>}
6759
- * @memberof ItemSearchInputAllowedFilters
6960
+ * @type {number}
6961
+ * @memberof InviteLinkOutputDTO
6760
6962
  */
6761
- code?: Array<string>;
6963
+ maxUses?: number;
6762
6964
  /**
6763
6965
  *
6764
- * @type {Array<string>}
6765
- * @memberof ItemSearchInputAllowedFilters
6966
+ * @type {number}
6967
+ * @memberof InviteLinkOutputDTO
6766
6968
  */
6767
- gameserverId?: Array<string>;
6969
+ uses: number;
6768
6970
  /**
6769
6971
  *
6770
- * @type {Array<string>}
6771
- * @memberof ItemSearchInputAllowedFilters
6972
+ * @type {number}
6973
+ * @memberof InviteLinkOutputDTO
6772
6974
  */
6773
- id?: Array<string>;
6774
- }
6775
- /**
6776
- *
6777
- * @export
6778
- * @interface ItemSearchInputAllowedSearch
6779
- */
6780
- export interface ItemSearchInputAllowedSearch {
6975
+ remaining?: number;
6781
6976
  /**
6782
6977
  *
6783
- * @type {Array<string>}
6784
- * @memberof ItemSearchInputAllowedSearch
6978
+ * @type {string}
6979
+ * @memberof InviteLinkOutputDTO
6785
6980
  */
6786
- name?: Array<string>;
6981
+ status: InviteLinkOutputDTOStatusEnum;
6787
6982
  /**
6788
6983
  *
6789
- * @type {Array<string>}
6790
- * @memberof ItemSearchInputAllowedSearch
6984
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6985
+ * @memberof InviteLinkOutputDTO
6791
6986
  */
6792
- code?: Array<string>;
6793
- }
6794
- /**
6795
- *
6796
- * @export
6987
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6988
+ /**
6989
+ *
6990
+ * @type {string}
6991
+ * @memberof InviteLinkOutputDTO
6992
+ */
6993
+ createdBy?: string;
6994
+ /**
6995
+ *
6996
+ * @type {Array<InviteLinkRoleDTO>}
6997
+ * @memberof InviteLinkOutputDTO
6998
+ */
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;
7018
+ }
7019
+ export declare const InviteLinkOutputDTOStatusEnum: {
7020
+ readonly Active: "ACTIVE";
7021
+ readonly Revoked: "REVOKED";
7022
+ readonly Expired: "EXPIRED";
7023
+ readonly Depleted: "DEPLETED";
7024
+ };
7025
+ export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
7026
+ /**
7027
+ *
7028
+ * @export
7029
+ * @interface InviteLinkOutputDTOAPI
7030
+ */
7031
+ export interface InviteLinkOutputDTOAPI {
7032
+ /**
7033
+ *
7034
+ * @type {InviteLinkOutputDTO}
7035
+ * @memberof InviteLinkOutputDTOAPI
7036
+ */
7037
+ data: InviteLinkOutputDTO;
7038
+ /**
7039
+ *
7040
+ * @type {MetadataOutput}
7041
+ * @memberof InviteLinkOutputDTOAPI
7042
+ */
7043
+ meta: MetadataOutput;
7044
+ }
7045
+ /**
7046
+ *
7047
+ * @export
7048
+ * @interface InviteLinkPreviewDTO
7049
+ */
7050
+ export interface InviteLinkPreviewDTO {
7051
+ /**
7052
+ *
7053
+ * @type {InviteLinkPreviewDomainDTO}
7054
+ * @memberof InviteLinkPreviewDTO
7055
+ */
7056
+ domain: InviteLinkPreviewDomainDTO;
7057
+ /**
7058
+ *
7059
+ * @type {Array<InviteLinkPreviewRoleDTO>}
7060
+ * @memberof InviteLinkPreviewDTO
7061
+ */
7062
+ roles: Array<InviteLinkPreviewRoleDTO>;
7063
+ /**
7064
+ *
7065
+ * @type {string}
7066
+ * @memberof InviteLinkPreviewDTO
7067
+ */
7068
+ status: InviteLinkPreviewDTOStatusEnum;
7069
+ /**
7070
+ *
7071
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7072
+ * @memberof InviteLinkPreviewDTO
7073
+ */
7074
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7075
+ /**
7076
+ *
7077
+ * @type {number}
7078
+ * @memberof InviteLinkPreviewDTO
7079
+ */
7080
+ remaining?: number;
7081
+ }
7082
+ export declare const InviteLinkPreviewDTOStatusEnum: {
7083
+ readonly Active: "ACTIVE";
7084
+ readonly Revoked: "REVOKED";
7085
+ readonly Expired: "EXPIRED";
7086
+ readonly Depleted: "DEPLETED";
7087
+ };
7088
+ export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
7089
+ /**
7090
+ *
7091
+ * @export
7092
+ * @interface InviteLinkPreviewDTOAPI
7093
+ */
7094
+ export interface InviteLinkPreviewDTOAPI {
7095
+ /**
7096
+ *
7097
+ * @type {InviteLinkPreviewDTO}
7098
+ * @memberof InviteLinkPreviewDTOAPI
7099
+ */
7100
+ data: InviteLinkPreviewDTO;
7101
+ /**
7102
+ *
7103
+ * @type {MetadataOutput}
7104
+ * @memberof InviteLinkPreviewDTOAPI
7105
+ */
7106
+ meta: MetadataOutput;
7107
+ }
7108
+ /**
7109
+ *
7110
+ * @export
7111
+ * @interface InviteLinkPreviewDomainDTO
7112
+ */
7113
+ export interface InviteLinkPreviewDomainDTO {
7114
+ /**
7115
+ *
7116
+ * @type {string}
7117
+ * @memberof InviteLinkPreviewDomainDTO
7118
+ */
7119
+ id: string;
7120
+ /**
7121
+ *
7122
+ * @type {string}
7123
+ * @memberof InviteLinkPreviewDomainDTO
7124
+ */
7125
+ name: string;
7126
+ }
7127
+ /**
7128
+ *
7129
+ * @export
7130
+ * @interface InviteLinkPreviewRoleDTO
7131
+ */
7132
+ export interface InviteLinkPreviewRoleDTO {
7133
+ /**
7134
+ *
7135
+ * @type {string}
7136
+ * @memberof InviteLinkPreviewRoleDTO
7137
+ */
7138
+ id: string;
7139
+ /**
7140
+ *
7141
+ * @type {string}
7142
+ * @memberof InviteLinkPreviewRoleDTO
7143
+ */
7144
+ name: string;
7145
+ }
7146
+ /**
7147
+ *
7148
+ * @export
7149
+ * @interface InviteLinkRoleDTO
7150
+ */
7151
+ export interface InviteLinkRoleDTO {
7152
+ /**
7153
+ *
7154
+ * @type {string}
7155
+ * @memberof InviteLinkRoleDTO
7156
+ */
7157
+ roleId: string;
7158
+ /**
7159
+ *
7160
+ * @type {string}
7161
+ * @memberof InviteLinkRoleDTO
7162
+ */
7163
+ name: string;
7164
+ }
7165
+ /**
7166
+ *
7167
+ * @export
7168
+ * @interface InviteLinkSearchInputDTO
7169
+ */
7170
+ export interface InviteLinkSearchInputDTO {
7171
+ /**
7172
+ *
7173
+ * @type {string}
7174
+ * @memberof InviteLinkSearchInputDTO
7175
+ */
7176
+ sortBy?: string;
7177
+ /**
7178
+ *
7179
+ * @type {any}
7180
+ * @memberof InviteLinkSearchInputDTO
7181
+ */
7182
+ filters?: any;
7183
+ /**
7184
+ *
7185
+ * @type {any}
7186
+ * @memberof InviteLinkSearchInputDTO
7187
+ */
7188
+ search?: any;
7189
+ /**
7190
+ *
7191
+ * @type {any}
7192
+ * @memberof InviteLinkSearchInputDTO
7193
+ */
7194
+ greaterThan?: any;
7195
+ /**
7196
+ *
7197
+ * @type {any}
7198
+ * @memberof InviteLinkSearchInputDTO
7199
+ */
7200
+ lessThan?: any;
7201
+ /**
7202
+ *
7203
+ * @type {number}
7204
+ * @memberof InviteLinkSearchInputDTO
7205
+ */
7206
+ page?: number;
7207
+ /**
7208
+ *
7209
+ * @type {number}
7210
+ * @memberof InviteLinkSearchInputDTO
7211
+ */
7212
+ limit?: number;
7213
+ /**
7214
+ *
7215
+ * @type {string}
7216
+ * @memberof InviteLinkSearchInputDTO
7217
+ */
7218
+ sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
7219
+ /**
7220
+ *
7221
+ * @type {Array<string>}
7222
+ * @memberof InviteLinkSearchInputDTO
7223
+ */
7224
+ extend?: Array<string>;
7225
+ }
7226
+ export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
7227
+ readonly Asc: "asc";
7228
+ readonly Desc: "desc";
7229
+ };
7230
+ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
7231
+ /**
7232
+ *
7233
+ * @export
7234
+ * @interface InviteOutputDTO
7235
+ */
7236
+ export interface InviteOutputDTO {
7237
+ /**
7238
+ *
7239
+ * @type {string}
7240
+ * @memberof InviteOutputDTO
7241
+ */
7242
+ botInvite: string;
7243
+ /**
7244
+ *
7245
+ * @type {string}
7246
+ * @memberof InviteOutputDTO
7247
+ */
7248
+ devServer: string;
7249
+ }
7250
+ /**
7251
+ *
7252
+ * @export
7253
+ * @interface IpHistoryOutputDTO
7254
+ */
7255
+ export interface IpHistoryOutputDTO {
7256
+ /**
7257
+ *
7258
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
7259
+ * @memberof IpHistoryOutputDTO
7260
+ */
7261
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
7262
+ /**
7263
+ *
7264
+ * @type {string}
7265
+ * @memberof IpHistoryOutputDTO
7266
+ */
7267
+ ip: string;
7268
+ /**
7269
+ *
7270
+ * @type {string}
7271
+ * @memberof IpHistoryOutputDTO
7272
+ */
7273
+ country?: string;
7274
+ /**
7275
+ *
7276
+ * @type {string}
7277
+ * @memberof IpHistoryOutputDTO
7278
+ */
7279
+ city?: string;
7280
+ /**
7281
+ *
7282
+ * @type {string}
7283
+ * @memberof IpHistoryOutputDTO
7284
+ */
7285
+ latitude?: string;
7286
+ /**
7287
+ *
7288
+ * @type {string}
7289
+ * @memberof IpHistoryOutputDTO
7290
+ */
7291
+ longitude?: string;
7292
+ }
7293
+ /**
7294
+ *
7295
+ * @export
7296
+ * @interface ItemCreateDTO
7297
+ */
7298
+ export interface ItemCreateDTO {
7299
+ /**
7300
+ *
7301
+ * @type {string}
7302
+ * @memberof ItemCreateDTO
7303
+ */
7304
+ name: string;
7305
+ /**
7306
+ *
7307
+ * @type {string}
7308
+ * @memberof ItemCreateDTO
7309
+ */
7310
+ code: string;
7311
+ /**
7312
+ *
7313
+ * @type {string}
7314
+ * @memberof ItemCreateDTO
7315
+ */
7316
+ description?: string;
7317
+ /**
7318
+ *
7319
+ * @type {string}
7320
+ * @memberof ItemCreateDTO
7321
+ */
7322
+ icon?: string;
7323
+ /**
7324
+ *
7325
+ * @type {string}
7326
+ * @memberof ItemCreateDTO
7327
+ */
7328
+ gameserverId: string;
7329
+ }
7330
+ /**
7331
+ *
7332
+ * @export
7333
+ * @interface ItemOutputArrayDTOAPI
7334
+ */
7335
+ export interface ItemOutputArrayDTOAPI {
7336
+ /**
7337
+ *
7338
+ * @type {Array<ItemsOutputDTO>}
7339
+ * @memberof ItemOutputArrayDTOAPI
7340
+ */
7341
+ data: Array<ItemsOutputDTO>;
7342
+ /**
7343
+ *
7344
+ * @type {MetadataOutput}
7345
+ * @memberof ItemOutputArrayDTOAPI
7346
+ */
7347
+ meta: MetadataOutput;
7348
+ }
7349
+ /**
7350
+ *
7351
+ * @export
7352
+ * @interface ItemOutputDTOAPI
7353
+ */
7354
+ export interface ItemOutputDTOAPI {
7355
+ /**
7356
+ *
7357
+ * @type {ItemsOutputDTO}
7358
+ * @memberof ItemOutputDTOAPI
7359
+ */
7360
+ data: ItemsOutputDTO;
7361
+ /**
7362
+ *
7363
+ * @type {MetadataOutput}
7364
+ * @memberof ItemOutputDTOAPI
7365
+ */
7366
+ meta: MetadataOutput;
7367
+ }
7368
+ /**
7369
+ *
7370
+ * @export
7371
+ * @interface ItemSearchInputAllowedFilters
7372
+ */
7373
+ export interface ItemSearchInputAllowedFilters {
7374
+ /**
7375
+ *
7376
+ * @type {Array<string>}
7377
+ * @memberof ItemSearchInputAllowedFilters
7378
+ */
7379
+ name?: Array<string>;
7380
+ /**
7381
+ *
7382
+ * @type {Array<string>}
7383
+ * @memberof ItemSearchInputAllowedFilters
7384
+ */
7385
+ code?: Array<string>;
7386
+ /**
7387
+ *
7388
+ * @type {Array<string>}
7389
+ * @memberof ItemSearchInputAllowedFilters
7390
+ */
7391
+ gameserverId?: Array<string>;
7392
+ /**
7393
+ *
7394
+ * @type {Array<string>}
7395
+ * @memberof ItemSearchInputAllowedFilters
7396
+ */
7397
+ id?: Array<string>;
7398
+ }
7399
+ /**
7400
+ *
7401
+ * @export
7402
+ * @interface ItemSearchInputAllowedSearch
7403
+ */
7404
+ export interface ItemSearchInputAllowedSearch {
7405
+ /**
7406
+ *
7407
+ * @type {Array<string>}
7408
+ * @memberof ItemSearchInputAllowedSearch
7409
+ */
7410
+ name?: Array<string>;
7411
+ /**
7412
+ *
7413
+ * @type {Array<string>}
7414
+ * @memberof ItemSearchInputAllowedSearch
7415
+ */
7416
+ code?: Array<string>;
7417
+ }
7418
+ /**
7419
+ *
7420
+ * @export
6797
7421
  * @interface ItemSearchInputDTO
6798
7422
  */
6799
7423
  export interface ItemSearchInputDTO {
@@ -7345,7 +7969,7 @@ export interface MeOutputDTO {
7345
7969
  * @type {UserOutputWithRolesDTO}
7346
7970
  * @memberof MeOutputDTO
7347
7971
  */
7348
- user: UserOutputWithRolesDTO;
7972
+ user?: UserOutputWithRolesDTO;
7349
7973
  /**
7350
7974
  *
7351
7975
  * @type {Array<DomainOutputDTO>}
@@ -7357,7 +7981,7 @@ export interface MeOutputDTO {
7357
7981
  * @type {string}
7358
7982
  * @memberof MeOutputDTO
7359
7983
  */
7360
- domain: string;
7984
+ domain?: string;
7361
7985
  /**
7362
7986
  *
7363
7987
  * @type {PlayerOutputWithRolesDTO}
@@ -7513,7 +8137,7 @@ export interface MetadataOutput {
7513
8137
  * @type {ErrorOutput}
7514
8138
  * @memberof MetadataOutput
7515
8139
  */
7516
- error: ErrorOutput;
8140
+ error?: ErrorOutput;
7517
8141
  /**
7518
8142
  *
7519
8143
  * @type {number}
@@ -9605,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
9605
10229
  * @type {Array<string>}
9606
10230
  * @memberof PlayerBulkAssignRoleInputDTO
9607
10231
  */
9608
- playerIds: Array<string>;
10232
+ playerIds?: Array<string>;
10233
+ /**
10234
+ *
10235
+ * @type {PlayerSearchInputDTO}
10236
+ * @memberof PlayerBulkAssignRoleInputDTO
10237
+ */
10238
+ query?: PlayerSearchInputDTO;
9609
10239
  /**
9610
10240
  *
9611
10241
  * @type {string}
@@ -9618,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
9618
10248
  * @memberof PlayerBulkAssignRoleInputDTO
9619
10249
  */
9620
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>;
9621
10263
  }
9622
10264
  /**
9623
10265
  *
@@ -9693,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
9693
10335
  * @type {Array<string>}
9694
10336
  * @memberof PlayerBulkDeleteInputDTO
9695
10337
  */
9696
- 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>;
9697
10357
  }
9698
10358
  /**
9699
10359
  *
@@ -10265,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
10265
10925
  * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10266
10926
  */
10267
10927
  playtimeSeconds?: number;
10928
+ /**
10929
+ *
10930
+ * @type {number}
10931
+ * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10932
+ */
10933
+ currency?: number;
10268
10934
  /**
10269
10935
  *
10270
10936
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -11186,6 +11852,24 @@ export interface PlayerSearchInputAllowedFilters {
11186
11852
  * @memberof PlayerSearchInputAllowedFilters
11187
11853
  */
11188
11854
  roleId?: Array<string>;
11855
+ /**
11856
+ *
11857
+ * @type {Array<boolean>}
11858
+ * @memberof PlayerSearchInputAllowedFilters
11859
+ */
11860
+ online?: Array<boolean>;
11861
+ /**
11862
+ *
11863
+ * @type {Array<string>}
11864
+ * @memberof PlayerSearchInputAllowedFilters
11865
+ */
11866
+ roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
11867
+ /**
11868
+ *
11869
+ * @type {Array<string>}
11870
+ * @memberof PlayerSearchInputAllowedFilters
11871
+ */
11872
+ roleAssignmentGameServerId?: Array<string>;
11189
11873
  /**
11190
11874
  *
11191
11875
  * @type {Array<string>}
@@ -11193,6 +11877,11 @@ export interface PlayerSearchInputAllowedFilters {
11193
11877
  */
11194
11878
  id?: Array<string>;
11195
11879
  }
11880
+ export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
11881
+ readonly Global: "global";
11882
+ readonly GameServer: "gameServer";
11883
+ };
11884
+ export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
11196
11885
  /**
11197
11886
  *
11198
11887
  * @export
@@ -11438,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
11438
12127
  * @type {Array<string>}
11439
12128
  * @memberof PogBulkAddCurrencyInputDTO
11440
12129
  */
11441
- playerIds: Array<string>;
12130
+ playerIds?: Array<string>;
12131
+ /**
12132
+ *
12133
+ * @type {PlayerOnGameServerSearchInputDTO}
12134
+ * @memberof PogBulkAddCurrencyInputDTO
12135
+ */
12136
+ query?: PlayerOnGameServerSearchInputDTO;
11442
12137
  /**
11443
12138
  *
11444
12139
  * @type {number}
11445
12140
  * @memberof PogBulkAddCurrencyInputDTO
11446
12141
  */
11447
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>;
11448
12155
  }
11449
12156
  /**
11450
12157
  *
@@ -11739,6 +12446,19 @@ export declare const RecentOrderDTOStatusEnum: {
11739
12446
  readonly Canceled: "CANCELED";
11740
12447
  };
11741
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
+ }
11742
12462
  /**
11743
12463
  *
11744
12464
  * @export
@@ -11750,7 +12470,7 @@ export interface RedirectQs {
11750
12470
  * @type {string}
11751
12471
  * @memberof RedirectQs
11752
12472
  */
11753
- redirect: string;
12473
+ redirect?: string;
11754
12474
  }
11755
12475
  /**
11756
12476
  *
@@ -12545,7 +13265,7 @@ export interface RoleUpdateInputDTO {
12545
13265
  * @type {string}
12546
13266
  * @memberof RoleUpdateInputDTO
12547
13267
  */
12548
- linkedDiscordRoleId?: string;
13268
+ linkedDiscordRoleId?: string | null;
12549
13269
  }
12550
13270
  /**
12551
13271
  *
@@ -13278,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
13278
13998
  * @type {Array<string>}
13279
13999
  * @memberof ShopCategoryBulkAssignDTO
13280
14000
  */
13281
- listingIds: Array<string>;
14001
+ listingIds?: Array<string>;
14002
+ /**
14003
+ *
14004
+ * @type {ShopListingSearchInputDTO}
14005
+ * @memberof ShopCategoryBulkAssignDTO
14006
+ */
14007
+ query?: ShopListingSearchInputDTO;
13282
14008
  /**
13283
14009
  *
13284
14010
  * @type {Array<string>}
@@ -13291,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
13291
14017
  * @memberof ShopCategoryBulkAssignDTO
13292
14018
  */
13293
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>;
13294
14032
  }
13295
14033
  /**
13296
14034
  *
@@ -13739,6 +14477,25 @@ export interface ShopDeadStockItemDTO {
13739
14477
  */
13740
14478
  daysSinceLastSale?: number;
13741
14479
  }
14480
+ /**
14481
+ *
14482
+ * @export
14483
+ * @interface ShopImportFailureDTO
14484
+ */
14485
+ export interface ShopImportFailureDTO {
14486
+ /**
14487
+ *
14488
+ * @type {string}
14489
+ * @memberof ShopImportFailureDTO
14490
+ */
14491
+ name: string;
14492
+ /**
14493
+ *
14494
+ * @type {string}
14495
+ * @memberof ShopImportFailureDTO
14496
+ */
14497
+ reason: string;
14498
+ }
13742
14499
  /**
13743
14500
  *
13744
14501
  * @export
@@ -13764,6 +14521,44 @@ export interface ShopImportOptions {
13764
14521
  */
13765
14522
  gameServerId: string;
13766
14523
  }
14524
+ /**
14525
+ *
14526
+ * @export
14527
+ * @interface ShopImportResultDTO
14528
+ */
14529
+ export interface ShopImportResultDTO {
14530
+ /**
14531
+ *
14532
+ * @type {number}
14533
+ * @memberof ShopImportResultDTO
14534
+ */
14535
+ imported: number;
14536
+ /**
14537
+ *
14538
+ * @type {Array<ShopImportFailureDTO>}
14539
+ * @memberof ShopImportResultDTO
14540
+ */
14541
+ failed: Array<ShopImportFailureDTO>;
14542
+ }
14543
+ /**
14544
+ *
14545
+ * @export
14546
+ * @interface ShopImportResultDTOAPI
14547
+ */
14548
+ export interface ShopImportResultDTOAPI {
14549
+ /**
14550
+ *
14551
+ * @type {ShopImportResultDTO}
14552
+ * @memberof ShopImportResultDTOAPI
14553
+ */
14554
+ data: ShopImportResultDTO;
14555
+ /**
14556
+ *
14557
+ * @type {MetadataOutput}
14558
+ * @memberof ShopImportResultDTOAPI
14559
+ */
14560
+ meta: MetadataOutput;
14561
+ }
13767
14562
  /**
13768
14563
  *
13769
14564
  * @export
@@ -13844,6 +14639,56 @@ export interface ShopKpisDTOAPI {
13844
14639
  */
13845
14640
  meta: MetadataOutput;
13846
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
+ }
13847
14692
  /**
13848
14693
  *
13849
14694
  * @export
@@ -13892,6 +14737,12 @@ export interface ShopListingCreateDTO {
13892
14737
  * @memberof ShopListingCreateDTO
13893
14738
  */
13894
14739
  categoryIds?: Array<string>;
14740
+ /**
14741
+ *
14742
+ * @type {Array<string>}
14743
+ * @memberof ShopListingCreateDTO
14744
+ */
14745
+ roleIds?: Array<string>;
13895
14746
  /**
13896
14747
  *
13897
14748
  * @type {number}
@@ -14058,6 +14909,12 @@ export interface ShopListingOutputDTO {
14058
14909
  * @memberof ShopListingOutputDTO
14059
14910
  */
14060
14911
  categories?: Array<ShopCategoryOutputDTO>;
14912
+ /**
14913
+ *
14914
+ * @type {Array<ShopListingRoleOutputDTO>}
14915
+ * @memberof ShopListingOutputDTO
14916
+ */
14917
+ roles?: Array<ShopListingRoleOutputDTO>;
14061
14918
  /**
14062
14919
  *
14063
14920
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -14074,21 +14931,52 @@ export interface ShopListingOutputDTO {
14074
14931
  /**
14075
14932
  *
14076
14933
  * @export
14077
- * @interface ShopListingOutputDTOAPI
14934
+ * @interface ShopListingOutputDTOAPI
14935
+ */
14936
+ export interface ShopListingOutputDTOAPI {
14937
+ /**
14938
+ *
14939
+ * @type {ShopListingOutputDTO}
14940
+ * @memberof ShopListingOutputDTOAPI
14941
+ */
14942
+ data: ShopListingOutputDTO;
14943
+ /**
14944
+ *
14945
+ * @type {MetadataOutput}
14946
+ * @memberof ShopListingOutputDTOAPI
14947
+ */
14948
+ meta: MetadataOutput;
14949
+ }
14950
+ /**
14951
+ *
14952
+ * @export
14953
+ * @interface ShopListingRoleOutputDTO
14078
14954
  */
14079
- export interface ShopListingOutputDTOAPI {
14955
+ export interface ShopListingRoleOutputDTO {
14080
14956
  /**
14081
14957
  *
14082
- * @type {ShopListingOutputDTO}
14083
- * @memberof ShopListingOutputDTOAPI
14958
+ * @type {string}
14959
+ * @memberof ShopListingRoleOutputDTO
14084
14960
  */
14085
- data: ShopListingOutputDTO;
14961
+ id: string;
14086
14962
  /**
14087
14963
  *
14088
- * @type {MetadataOutput}
14089
- * @memberof ShopListingOutputDTOAPI
14964
+ * @type {string}
14965
+ * @memberof ShopListingRoleOutputDTO
14090
14966
  */
14091
- meta: MetadataOutput;
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;
14092
14980
  }
14093
14981
  /**
14094
14982
  *
@@ -14138,6 +15026,12 @@ export interface ShopListingSearchInputAllowedFilters {
14138
15026
  * @memberof ShopListingSearchInputAllowedFilters
14139
15027
  */
14140
15028
  uncategorized?: boolean;
15029
+ /**
15030
+ *
15031
+ * @type {Array<string>}
15032
+ * @memberof ShopListingSearchInputAllowedFilters
15033
+ */
15034
+ visibleToRoleIds?: Array<string>;
14141
15035
  }
14142
15036
  /**
14143
15037
  *
@@ -14278,6 +15172,12 @@ export interface ShopListingUpdateDTO {
14278
15172
  * @memberof ShopListingUpdateDTO
14279
15173
  */
14280
15174
  categoryIds?: Array<string>;
15175
+ /**
15176
+ *
15177
+ * @type {Array<string>}
15178
+ * @memberof ShopListingUpdateDTO
15179
+ */
15180
+ roleIds?: Array<string>;
14281
15181
  }
14282
15182
  /**
14283
15183
  *
@@ -14659,232 +15559,433 @@ export interface ShopRecentOrderDTOAPI {
14659
15559
  * @type {MetadataOutput}
14660
15560
  * @memberof ShopRecentOrderDTOAPI
14661
15561
  */
14662
- meta: MetadataOutput;
15562
+ meta: MetadataOutput;
15563
+ }
15564
+ /**
15565
+ *
15566
+ * @export
15567
+ * @interface ShopRevenueHeatmapCellDTO
15568
+ */
15569
+ export interface ShopRevenueHeatmapCellDTO {
15570
+ /**
15571
+ *
15572
+ * @type {number}
15573
+ * @memberof ShopRevenueHeatmapCellDTO
15574
+ */
15575
+ hour: number;
15576
+ /**
15577
+ *
15578
+ * @type {number}
15579
+ * @memberof ShopRevenueHeatmapCellDTO
15580
+ */
15581
+ dayOfWeek: number;
15582
+ /**
15583
+ *
15584
+ * @type {number}
15585
+ * @memberof ShopRevenueHeatmapCellDTO
15586
+ */
15587
+ revenue: number;
15588
+ }
15589
+ /**
15590
+ *
15591
+ * @export
15592
+ * @interface ShopRevenueHeatmapCellDTOAPI
15593
+ */
15594
+ export interface ShopRevenueHeatmapCellDTOAPI {
15595
+ /**
15596
+ *
15597
+ * @type {Array<ShopRevenueHeatmapCellDTO>}
15598
+ * @memberof ShopRevenueHeatmapCellDTOAPI
15599
+ */
15600
+ data: Array<ShopRevenueHeatmapCellDTO>;
15601
+ /**
15602
+ *
15603
+ * @type {MetadataOutput}
15604
+ * @memberof ShopRevenueHeatmapCellDTOAPI
15605
+ */
15606
+ meta: MetadataOutput;
15607
+ }
15608
+ /**
15609
+ *
15610
+ * @export
15611
+ * @interface ShopSearchInputAllowedRangeFilter
15612
+ */
15613
+ export interface ShopSearchInputAllowedRangeFilter {
15614
+ /**
15615
+ *
15616
+ * @type {number}
15617
+ * @memberof ShopSearchInputAllowedRangeFilter
15618
+ */
15619
+ price?: number;
15620
+ /**
15621
+ *
15622
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15623
+ * @memberof ShopSearchInputAllowedRangeFilter
15624
+ */
15625
+ deletedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15626
+ /**
15627
+ *
15628
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15629
+ * @memberof ShopSearchInputAllowedRangeFilter
15630
+ */
15631
+ createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15632
+ /**
15633
+ *
15634
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15635
+ * @memberof ShopSearchInputAllowedRangeFilter
15636
+ */
15637
+ updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15638
+ }
15639
+ /**
15640
+ *
15641
+ * @export
15642
+ * @interface ShopTopBuyerDTO
15643
+ */
15644
+ export interface ShopTopBuyerDTO {
15645
+ /**
15646
+ *
15647
+ * @type {string}
15648
+ * @memberof ShopTopBuyerDTO
15649
+ */
15650
+ playerId: string;
15651
+ /**
15652
+ *
15653
+ * @type {string}
15654
+ * @memberof ShopTopBuyerDTO
15655
+ */
15656
+ playerName?: string;
15657
+ /**
15658
+ *
15659
+ * @type {number}
15660
+ * @memberof ShopTopBuyerDTO
15661
+ */
15662
+ orderCount: number;
15663
+ /**
15664
+ *
15665
+ * @type {number}
15666
+ * @memberof ShopTopBuyerDTO
15667
+ */
15668
+ totalSpend: number;
15669
+ }
15670
+ /**
15671
+ *
15672
+ * @export
15673
+ * @interface ShopTopBuyerDTOAPI
15674
+ */
15675
+ export interface ShopTopBuyerDTOAPI {
15676
+ /**
15677
+ *
15678
+ * @type {Array<ShopTopBuyerDTO>}
15679
+ * @memberof ShopTopBuyerDTOAPI
15680
+ */
15681
+ data: Array<ShopTopBuyerDTO>;
15682
+ /**
15683
+ *
15684
+ * @type {MetadataOutput}
15685
+ * @memberof ShopTopBuyerDTOAPI
15686
+ */
15687
+ meta: MetadataOutput;
15688
+ }
15689
+ /**
15690
+ *
15691
+ * @export
15692
+ * @interface ShopTopListingDTO
15693
+ */
15694
+ export interface ShopTopListingDTO {
15695
+ /**
15696
+ *
15697
+ * @type {string}
15698
+ * @memberof ShopTopListingDTO
15699
+ */
15700
+ name: string;
15701
+ /**
15702
+ *
15703
+ * @type {number}
15704
+ * @memberof ShopTopListingDTO
15705
+ */
15706
+ orderCount: number;
15707
+ /**
15708
+ *
15709
+ * @type {number}
15710
+ * @memberof ShopTopListingDTO
15711
+ */
15712
+ totalRevenue: number;
15713
+ /**
15714
+ *
15715
+ * @type {number}
15716
+ * @memberof ShopTopListingDTO
15717
+ */
15718
+ quantity: number;
15719
+ }
15720
+ /**
15721
+ *
15722
+ * @export
15723
+ * @interface ShopTopListingDTOAPI
15724
+ */
15725
+ export interface ShopTopListingDTOAPI {
15726
+ /**
15727
+ *
15728
+ * @type {Array<ShopTopListingDTO>}
15729
+ * @memberof ShopTopListingDTOAPI
15730
+ */
15731
+ data: Array<ShopTopListingDTO>;
15732
+ /**
15733
+ *
15734
+ * @type {MetadataOutput}
15735
+ * @memberof ShopTopListingDTOAPI
15736
+ */
15737
+ meta: MetadataOutput;
15738
+ }
15739
+ /**
15740
+ *
15741
+ * @export
15742
+ * @interface SmallModuleOutputArrayDTOAPI
15743
+ */
15744
+ export interface SmallModuleOutputArrayDTOAPI {
15745
+ /**
15746
+ *
15747
+ * @type {Array<SmallModuleVersionOutputDTO>}
15748
+ * @memberof SmallModuleOutputArrayDTOAPI
15749
+ */
15750
+ data: Array<SmallModuleVersionOutputDTO>;
15751
+ /**
15752
+ *
15753
+ * @type {MetadataOutput}
15754
+ * @memberof SmallModuleOutputArrayDTOAPI
15755
+ */
15756
+ meta: MetadataOutput;
15757
+ }
15758
+ /**
15759
+ *
15760
+ * @export
15761
+ * @interface SmallModuleVersionOutputDTO
15762
+ */
15763
+ export interface SmallModuleVersionOutputDTO {
15764
+ /**
15765
+ *
15766
+ * @type {string}
15767
+ * @memberof SmallModuleVersionOutputDTO
15768
+ */
15769
+ id: string;
15770
+ /**
15771
+ *
15772
+ * @type {string}
15773
+ * @memberof SmallModuleVersionOutputDTO
15774
+ */
15775
+ tag: string;
15776
+ /**
15777
+ *
15778
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15779
+ * @memberof SmallModuleVersionOutputDTO
15780
+ */
15781
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15782
+ /**
15783
+ *
15784
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
15785
+ * @memberof SmallModuleVersionOutputDTO
15786
+ */
15787
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14663
15788
  }
14664
15789
  /**
14665
15790
  *
14666
15791
  * @export
14667
- * @interface ShopRevenueHeatmapCellDTO
15792
+ * @interface StorefrontConfigCreateDTO
14668
15793
  */
14669
- export interface ShopRevenueHeatmapCellDTO {
15794
+ export interface StorefrontConfigCreateDTO {
14670
15795
  /**
14671
15796
  *
14672
- * @type {number}
14673
- * @memberof ShopRevenueHeatmapCellDTO
15797
+ * @type {string}
15798
+ * @memberof StorefrontConfigCreateDTO
14674
15799
  */
14675
- hour: number;
15800
+ gameServerId: string;
14676
15801
  /**
14677
15802
  *
14678
- * @type {number}
14679
- * @memberof ShopRevenueHeatmapCellDTO
15803
+ * @type {string}
15804
+ * @memberof StorefrontConfigCreateDTO
14680
15805
  */
14681
- dayOfWeek: number;
15806
+ templateId: string;
14682
15807
  /**
14683
15808
  *
14684
- * @type {number}
14685
- * @memberof ShopRevenueHeatmapCellDTO
15809
+ * @type {object}
15810
+ * @memberof StorefrontConfigCreateDTO
14686
15811
  */
14687
- revenue: number;
15812
+ values?: object;
14688
15813
  }
14689
15814
  /**
14690
15815
  *
14691
15816
  * @export
14692
- * @interface ShopRevenueHeatmapCellDTOAPI
15817
+ * @interface StorefrontConfigOutputDTO
14693
15818
  */
14694
- export interface ShopRevenueHeatmapCellDTOAPI {
15819
+ export interface StorefrontConfigOutputDTO {
14695
15820
  /**
14696
15821
  *
14697
- * @type {Array<ShopRevenueHeatmapCellDTO>}
14698
- * @memberof ShopRevenueHeatmapCellDTOAPI
15822
+ * @type {string}
15823
+ * @memberof StorefrontConfigOutputDTO
14699
15824
  */
14700
- data: Array<ShopRevenueHeatmapCellDTO>;
15825
+ gameServerId: string;
14701
15826
  /**
14702
15827
  *
14703
- * @type {MetadataOutput}
14704
- * @memberof ShopRevenueHeatmapCellDTOAPI
15828
+ * @type {string}
15829
+ * @memberof StorefrontConfigOutputDTO
14705
15830
  */
14706
- meta: MetadataOutput;
14707
- }
14708
- /**
14709
- *
14710
- * @export
14711
- * @interface ShopSearchInputAllowedRangeFilter
14712
- */
14713
- export interface ShopSearchInputAllowedRangeFilter {
15831
+ templateId: string;
14714
15832
  /**
14715
15833
  *
14716
- * @type {number}
14717
- * @memberof ShopSearchInputAllowedRangeFilter
15834
+ * @type {object}
15835
+ * @memberof StorefrontConfigOutputDTO
14718
15836
  */
14719
- price?: number;
15837
+ values: object;
14720
15838
  /**
14721
15839
  *
14722
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14723
- * @memberof ShopSearchInputAllowedRangeFilter
15840
+ * @type {string}
15841
+ * @memberof StorefrontConfigOutputDTO
14724
15842
  */
14725
- deletedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15843
+ id: string;
14726
15844
  /**
14727
15845
  *
14728
15846
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14729
- * @memberof ShopSearchInputAllowedRangeFilter
15847
+ * @memberof StorefrontConfigOutputDTO
14730
15848
  */
14731
- createdAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15849
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14732
15850
  /**
14733
15851
  *
14734
15852
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14735
- * @memberof ShopSearchInputAllowedRangeFilter
15853
+ * @memberof StorefrontConfigOutputDTO
14736
15854
  */
14737
- updatedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15855
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
14738
15856
  }
14739
15857
  /**
14740
15858
  *
14741
15859
  * @export
14742
- * @interface ShopTopBuyerDTO
15860
+ * @interface StorefrontConfigUpdateDTO
14743
15861
  */
14744
- export interface ShopTopBuyerDTO {
14745
- /**
14746
- *
14747
- * @type {string}
14748
- * @memberof ShopTopBuyerDTO
14749
- */
14750
- playerId: string;
15862
+ export interface StorefrontConfigUpdateDTO {
14751
15863
  /**
14752
15864
  *
14753
15865
  * @type {string}
14754
- * @memberof ShopTopBuyerDTO
14755
- */
14756
- playerName?: string;
14757
- /**
14758
- *
14759
- * @type {number}
14760
- * @memberof ShopTopBuyerDTO
15866
+ * @memberof StorefrontConfigUpdateDTO
14761
15867
  */
14762
- orderCount: number;
15868
+ templateId?: string;
14763
15869
  /**
14764
15870
  *
14765
- * @type {number}
14766
- * @memberof ShopTopBuyerDTO
15871
+ * @type {object}
15872
+ * @memberof StorefrontConfigUpdateDTO
14767
15873
  */
14768
- totalSpend: number;
15874
+ values?: object;
14769
15875
  }
14770
15876
  /**
14771
15877
  *
14772
15878
  * @export
14773
- * @interface ShopTopBuyerDTOAPI
15879
+ * @interface StorefrontConfigUpsertBody
14774
15880
  */
14775
- export interface ShopTopBuyerDTOAPI {
15881
+ export interface StorefrontConfigUpsertBody {
14776
15882
  /**
14777
15883
  *
14778
- * @type {Array<ShopTopBuyerDTO>}
14779
- * @memberof ShopTopBuyerDTOAPI
15884
+ * @type {string}
15885
+ * @memberof StorefrontConfigUpsertBody
14780
15886
  */
14781
- data: Array<ShopTopBuyerDTO>;
15887
+ templateId: string;
14782
15888
  /**
14783
15889
  *
14784
- * @type {MetadataOutput}
14785
- * @memberof ShopTopBuyerDTOAPI
15890
+ * @type {object}
15891
+ * @memberof StorefrontConfigUpsertBody
14786
15892
  */
14787
- meta: MetadataOutput;
15893
+ values: object;
14788
15894
  }
14789
15895
  /**
14790
15896
  *
14791
15897
  * @export
14792
- * @interface ShopTopListingDTO
15898
+ * @interface StorefrontConfigUpsertDTO
14793
15899
  */
14794
- export interface ShopTopListingDTO {
15900
+ export interface StorefrontConfigUpsertDTO {
14795
15901
  /**
14796
15902
  *
14797
15903
  * @type {string}
14798
- * @memberof ShopTopListingDTO
14799
- */
14800
- name: string;
14801
- /**
14802
- *
14803
- * @type {number}
14804
- * @memberof ShopTopListingDTO
14805
- */
14806
- orderCount: number;
14807
- /**
14808
- *
14809
- * @type {number}
14810
- * @memberof ShopTopListingDTO
15904
+ * @memberof StorefrontConfigUpsertDTO
14811
15905
  */
14812
- totalRevenue: number;
15906
+ templateId: string;
14813
15907
  /**
14814
15908
  *
14815
- * @type {number}
14816
- * @memberof ShopTopListingDTO
15909
+ * @type {object}
15910
+ * @memberof StorefrontConfigUpsertDTO
14817
15911
  */
14818
- quantity: number;
15912
+ values: object;
14819
15913
  }
14820
15914
  /**
14821
15915
  *
14822
15916
  * @export
14823
- * @interface ShopTopListingDTOAPI
15917
+ * @interface StorefrontPreviewDTO
14824
15918
  */
14825
- export interface ShopTopListingDTOAPI {
15919
+ export interface StorefrontPreviewDTO {
14826
15920
  /**
14827
15921
  *
14828
- * @type {Array<ShopTopListingDTO>}
14829
- * @memberof ShopTopListingDTOAPI
14830
- */
14831
- data: Array<ShopTopListingDTO>;
14832
- /**
14833
- *
14834
- * @type {MetadataOutput}
14835
- * @memberof ShopTopListingDTOAPI
15922
+ * @type {string}
15923
+ * @memberof StorefrontPreviewDTO
14836
15924
  */
14837
- meta: MetadataOutput;
15925
+ html: string;
14838
15926
  }
14839
15927
  /**
14840
15928
  *
14841
15929
  * @export
14842
- * @interface SmallModuleOutputArrayDTOAPI
15930
+ * @interface StorefrontPreviewOutputDTOAPI
14843
15931
  */
14844
- export interface SmallModuleOutputArrayDTOAPI {
15932
+ export interface StorefrontPreviewOutputDTOAPI {
14845
15933
  /**
14846
15934
  *
14847
- * @type {Array<SmallModuleVersionOutputDTO>}
14848
- * @memberof SmallModuleOutputArrayDTOAPI
15935
+ * @type {StorefrontPreviewDTO}
15936
+ * @memberof StorefrontPreviewOutputDTOAPI
14849
15937
  */
14850
- data: Array<SmallModuleVersionOutputDTO>;
15938
+ data: StorefrontPreviewDTO;
14851
15939
  /**
14852
15940
  *
14853
15941
  * @type {MetadataOutput}
14854
- * @memberof SmallModuleOutputArrayDTOAPI
15942
+ * @memberof StorefrontPreviewOutputDTOAPI
14855
15943
  */
14856
15944
  meta: MetadataOutput;
14857
15945
  }
14858
15946
  /**
14859
15947
  *
14860
15948
  * @export
14861
- * @interface SmallModuleVersionOutputDTO
15949
+ * @interface StorefrontTemplateDTO
14862
15950
  */
14863
- export interface SmallModuleVersionOutputDTO {
15951
+ export interface StorefrontTemplateDTO {
14864
15952
  /**
14865
15953
  *
14866
15954
  * @type {string}
14867
- * @memberof SmallModuleVersionOutputDTO
15955
+ * @memberof StorefrontTemplateDTO
14868
15956
  */
14869
15957
  id: string;
14870
15958
  /**
14871
15959
  *
14872
15960
  * @type {string}
14873
- * @memberof SmallModuleVersionOutputDTO
15961
+ * @memberof StorefrontTemplateDTO
14874
15962
  */
14875
- tag: string;
15963
+ name: string;
14876
15964
  /**
14877
15965
  *
14878
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14879
- * @memberof SmallModuleVersionOutputDTO
15966
+ * @type {object}
15967
+ * @memberof StorefrontTemplateDTO
14880
15968
  */
14881
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15969
+ schema: object;
15970
+ }
15971
+ /**
15972
+ *
15973
+ * @export
15974
+ * @interface StorefrontTemplateOutputArrayDTOAPI
15975
+ */
15976
+ export interface StorefrontTemplateOutputArrayDTOAPI {
14882
15977
  /**
14883
15978
  *
14884
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
14885
- * @memberof SmallModuleVersionOutputDTO
15979
+ * @type {Array<StorefrontTemplateDTO>}
15980
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
14886
15981
  */
14887
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15982
+ data: Array<StorefrontTemplateDTO>;
15983
+ /**
15984
+ *
15985
+ * @type {MetadataOutput}
15986
+ * @memberof StorefrontTemplateOutputArrayDTOAPI
15987
+ */
15988
+ meta: MetadataOutput;
14888
15989
  }
14889
15990
  /**
14890
15991
  *
@@ -15207,6 +16308,49 @@ export interface TakaroEventHookExecuted {
15207
16308
  */
15208
16309
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15209
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
+ }
15210
16354
  /**
15211
16355
  *
15212
16356
  * @export
@@ -16485,6 +17629,38 @@ export interface UserAssignmentOutputDTO {
16485
17629
  */
16486
17630
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16487
17631
  }
17632
+ /**
17633
+ *
17634
+ * @export
17635
+ * @interface UserCountOutputDTO
17636
+ */
17637
+ export interface UserCountOutputDTO {
17638
+ /**
17639
+ *
17640
+ * @type {number}
17641
+ * @memberof UserCountOutputDTO
17642
+ */
17643
+ count: number;
17644
+ }
17645
+ /**
17646
+ *
17647
+ * @export
17648
+ * @interface UserCountOutputDTOAPI
17649
+ */
17650
+ export interface UserCountOutputDTOAPI {
17651
+ /**
17652
+ *
17653
+ * @type {UserCountOutputDTO}
17654
+ * @memberof UserCountOutputDTOAPI
17655
+ */
17656
+ data: UserCountOutputDTO;
17657
+ /**
17658
+ *
17659
+ * @type {MetadataOutput}
17660
+ * @memberof UserCountOutputDTOAPI
17661
+ */
17662
+ meta: MetadataOutput;
17663
+ }
16488
17664
  /**
16489
17665
  *
16490
17666
  * @export
@@ -16522,6 +17698,37 @@ export interface UserCreateInputDTO {
16522
17698
  */
16523
17699
  isDashboardUser?: boolean;
16524
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
+ }
16525
17732
  /**
16526
17733
  *
16527
17734
  * @export
@@ -16625,13 +17832,25 @@ export interface UserOutputDTO {
16625
17832
  * @type {PlayerOutputWithRolesDTO}
16626
17833
  * @memberof UserOutputDTO
16627
17834
  */
16628
- player: PlayerOutputWithRolesDTO;
17835
+ player?: PlayerOutputWithRolesDTO;
16629
17836
  /**
16630
17837
  *
16631
17838
  * @type {boolean}
16632
17839
  * @memberof UserOutputDTO
16633
17840
  */
16634
17841
  isDashboardUser: boolean;
17842
+ /**
17843
+ *
17844
+ * @type {boolean}
17845
+ * @memberof UserOutputDTO
17846
+ */
17847
+ isSupportAccount: boolean;
17848
+ /**
17849
+ *
17850
+ * @type {string}
17851
+ * @memberof UserOutputDTO
17852
+ */
17853
+ inviteLinkId?: string;
16635
17854
  /**
16636
17855
  *
16637
17856
  * @type {string}
@@ -16723,31 +17942,62 @@ export interface UserOutputWithRolesDTO {
16723
17942
  * @type {string}
16724
17943
  * @memberof UserOutputWithRolesDTO
16725
17944
  */
16726
- discordId?: string;
17945
+ discordId?: string;
17946
+ /**
17947
+ *
17948
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17949
+ * @memberof UserOutputWithRolesDTO
17950
+ */
17951
+ lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17952
+ /**
17953
+ *
17954
+ * @type {string}
17955
+ * @memberof UserOutputWithRolesDTO
17956
+ */
17957
+ playerId?: string;
17958
+ /**
17959
+ *
17960
+ * @type {PlayerOutputWithRolesDTO}
17961
+ * @memberof UserOutputWithRolesDTO
17962
+ */
17963
+ player?: PlayerOutputWithRolesDTO;
17964
+ /**
17965
+ *
17966
+ * @type {boolean}
17967
+ * @memberof UserOutputWithRolesDTO
17968
+ */
17969
+ isDashboardUser: boolean;
16727
17970
  /**
16728
17971
  *
16729
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17972
+ * @type {boolean}
16730
17973
  * @memberof UserOutputWithRolesDTO
16731
17974
  */
16732
- lastSeen: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17975
+ isSupportAccount: boolean;
16733
17976
  /**
16734
17977
  *
16735
17978
  * @type {string}
16736
17979
  * @memberof UserOutputWithRolesDTO
16737
17980
  */
16738
- playerId?: string;
17981
+ inviteLinkId?: string;
17982
+ }
17983
+ /**
17984
+ *
17985
+ * @export
17986
+ * @interface UserOutputWithRolesDTOAPI
17987
+ */
17988
+ export interface UserOutputWithRolesDTOAPI {
16739
17989
  /**
16740
17990
  *
16741
- * @type {PlayerOutputWithRolesDTO}
16742
- * @memberof UserOutputWithRolesDTO
17991
+ * @type {UserOutputWithRolesDTO}
17992
+ * @memberof UserOutputWithRolesDTOAPI
16743
17993
  */
16744
- player: PlayerOutputWithRolesDTO;
17994
+ data: UserOutputWithRolesDTO;
16745
17995
  /**
16746
17996
  *
16747
- * @type {boolean}
16748
- * @memberof UserOutputWithRolesDTO
17997
+ * @type {MetadataOutput}
17998
+ * @memberof UserOutputWithRolesDTOAPI
16749
17999
  */
16750
- isDashboardUser: boolean;
18000
+ meta: MetadataOutput;
16751
18001
  }
16752
18002
  /**
16753
18003
  *
@@ -16957,6 +18207,31 @@ export interface UserUpdateDTO {
16957
18207
  */
16958
18208
  isDashboardUser?: boolean;
16959
18209
  }
18210
+ /**
18211
+ *
18212
+ * @export
18213
+ * @interface VariableBulkDeleteInputDTO
18214
+ */
18215
+ export interface VariableBulkDeleteInputDTO {
18216
+ /**
18217
+ *
18218
+ * @type {VariableSearchInputDTO}
18219
+ * @memberof VariableBulkDeleteInputDTO
18220
+ */
18221
+ query?: VariableSearchInputDTO;
18222
+ /**
18223
+ *
18224
+ * @type {Array<string>}
18225
+ * @memberof VariableBulkDeleteInputDTO
18226
+ */
18227
+ ids?: Array<string>;
18228
+ /**
18229
+ *
18230
+ * @type {Array<string>}
18231
+ * @memberof VariableBulkDeleteInputDTO
18232
+ */
18233
+ excludedIds?: Array<string>;
18234
+ }
16960
18235
  /**
16961
18236
  *
16962
18237
  * @export
@@ -17166,6 +18441,12 @@ export interface VariableSearchInputAllowedSearch {
17166
18441
  * @memberof VariableSearchInputAllowedSearch
17167
18442
  */
17168
18443
  key?: Array<string>;
18444
+ /**
18445
+ *
18446
+ * @type {Array<string>}
18447
+ * @memberof VariableSearchInputAllowedSearch
18448
+ */
18449
+ value?: Array<string>;
17169
18450
  }
17170
18451
  /**
17171
18452
  *
@@ -17417,7 +18698,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17417
18698
  */
17418
18699
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17419
18700
  /**
17420
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18701
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17421
18702
  * @summary Get module health scores
17422
18703
  * @param {string} [startDate]
17423
18704
  * @param {string} [endDate]
@@ -17650,7 +18931,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17650
18931
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17651
18932
  /**
17652
18933
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17653
- * @summary Get top modules by event volume
18934
+ * @summary Get top modules by execution volume
17654
18935
  * @param {string} [startDate]
17655
18936
  * @param {string} [endDate]
17656
18937
  * @param {string} [gameServerId]
@@ -17806,7 +19087,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
17806
19087
  */
17807
19088
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
17808
19089
  /**
17809
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19090
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17810
19091
  * @summary Get module health scores
17811
19092
  * @param {string} [startDate]
17812
19093
  * @param {string} [endDate]
@@ -18039,7 +19320,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
18039
19320
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
18040
19321
  /**
18041
19322
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18042
- * @summary Get top modules by event volume
19323
+ * @summary Get top modules by execution volume
18043
19324
  * @param {string} [startDate]
18044
19325
  * @param {string} [endDate]
18045
19326
  * @param {string} [gameServerId]
@@ -18195,7 +19476,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18195
19476
  */
18196
19477
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18197
19478
  /**
18198
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19479
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18199
19480
  * @summary Get module health scores
18200
19481
  * @param {string} [startDate]
18201
19482
  * @param {string} [endDate]
@@ -18428,7 +19709,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18428
19709
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18429
19710
  /**
18430
19711
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18431
- * @summary Get top modules by event volume
19712
+ * @summary Get top modules by execution volume
18432
19713
  * @param {string} [startDate]
18433
19714
  * @param {string} [endDate]
18434
19715
  * @param {string} [gameServerId]
@@ -18598,7 +19879,7 @@ export declare class AnalyticsApi extends BaseAPI {
18598
19879
  */
18599
19880
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18600
19881
  /**
18601
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19882
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18602
19883
  * @summary Get module health scores
18603
19884
  * @param {string} [startDate]
18604
19885
  * @param {string} [endDate]
@@ -18852,7 +20133,7 @@ export declare class AnalyticsApi extends BaseAPI {
18852
20133
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
18853
20134
  /**
18854
20135
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18855
- * @summary Get top modules by event volume
20136
+ * @summary Get top modules by execution volume
18856
20137
  * @param {string} [startDate]
18857
20138
  * @param {string} [endDate]
18858
20139
  * @param {string} [gameServerId]
@@ -19747,16 +21028,16 @@ export declare class CommandApi extends BaseAPI {
19747
21028
  */
19748
21029
  export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration) => {
19749
21030
  /**
19750
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
19751
- * @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
19752
21033
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
19753
21034
  * @param {*} [options] Override http request option.
19754
21035
  * @throws {RequiredError}
19755
21036
  */
19756
21037
  cronJobControllerCreate: (cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19757
21038
  /**
19758
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
19759
- * @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
19760
21041
  * @param {string} id
19761
21042
  * @param {any} [success]
19762
21043
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -19765,40 +21046,40 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
19765
21046
  */
19766
21047
  cronJobControllerGetExecutions: (id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19767
21048
  /**
19768
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
19769
- * @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
19770
21051
  * @param {string} id
19771
21052
  * @param {*} [options] Override http request option.
19772
21053
  * @throws {RequiredError}
19773
21054
  */
19774
21055
  cronJobControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19775
21056
  /**
19776
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
19777
- * @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
19778
21059
  * @param {string} id
19779
21060
  * @param {*} [options] Override http request option.
19780
21061
  * @throws {RequiredError}
19781
21062
  */
19782
21063
  cronJobControllerRemove: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19783
21064
  /**
19784
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
19785
- * @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
19786
21067
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
19787
21068
  * @param {*} [options] Override http request option.
19788
21069
  * @throws {RequiredError}
19789
21070
  */
19790
21071
  cronJobControllerSearch: (cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19791
21072
  /**
19792
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
19793
- * @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
19794
21075
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
19795
21076
  * @param {*} [options] Override http request option.
19796
21077
  * @throws {RequiredError}
19797
21078
  */
19798
21079
  cronJobControllerTrigger: (cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19799
21080
  /**
19800
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
19801
- * @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
19802
21083
  * @param {string} id
19803
21084
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
19804
21085
  * @param {*} [options] Override http request option.
@@ -19812,16 +21093,16 @@ export declare const CronJobApiAxiosParamCreator: (configuration?: Configuration
19812
21093
  */
19813
21094
  export declare const CronJobApiFp: (configuration?: Configuration) => {
19814
21095
  /**
19815
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
19816
- * @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
19817
21098
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
19818
21099
  * @param {*} [options] Override http request option.
19819
21100
  * @throws {RequiredError}
19820
21101
  */
19821
21102
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputDTOAPI>>;
19822
21103
  /**
19823
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
19824
- * @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
19825
21106
  * @param {string} id
19826
21107
  * @param {any} [success]
19827
21108
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -19830,40 +21111,40 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
19830
21111
  */
19831
21112
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputArrayDTOAPI>>;
19832
21113
  /**
19833
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
19834
- * @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
19835
21116
  * @param {string} id
19836
21117
  * @param {*} [options] Override http request option.
19837
21118
  * @throws {RequiredError}
19838
21119
  */
19839
21120
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputDTOAPI>>;
19840
21121
  /**
19841
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
19842
- * @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
19843
21124
  * @param {string} id
19844
21125
  * @param {*} [options] Override http request option.
19845
21126
  * @throws {RequiredError}
19846
21127
  */
19847
21128
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
19848
21129
  /**
19849
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
19850
- * @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
19851
21132
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
19852
21133
  * @param {*} [options] Override http request option.
19853
21134
  * @throws {RequiredError}
19854
21135
  */
19855
21136
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CronJobOutputArrayDTOAPI>>;
19856
21137
  /**
19857
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
19858
- * @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
19859
21140
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
19860
21141
  * @param {*} [options] Override http request option.
19861
21142
  * @throws {RequiredError}
19862
21143
  */
19863
21144
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
19864
21145
  /**
19865
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
19866
- * @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
19867
21148
  * @param {string} id
19868
21149
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
19869
21150
  * @param {*} [options] Override http request option.
@@ -19877,16 +21158,16 @@ export declare const CronJobApiFp: (configuration?: Configuration) => {
19877
21158
  */
19878
21159
  export declare const CronJobApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
19879
21160
  /**
19880
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
19881
- * @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
19882
21163
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
19883
21164
  * @param {*} [options] Override http request option.
19884
21165
  * @throws {RequiredError}
19885
21166
  */
19886
21167
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
19887
21168
  /**
19888
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
19889
- * @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
19890
21171
  * @param {string} id
19891
21172
  * @param {any} [success]
19892
21173
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -19895,40 +21176,40 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
19895
21176
  */
19896
21177
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputArrayDTOAPI>;
19897
21178
  /**
19898
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
19899
- * @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
19900
21181
  * @param {string} id
19901
21182
  * @param {*} [options] Override http request option.
19902
21183
  * @throws {RequiredError}
19903
21184
  */
19904
21185
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputDTOAPI>;
19905
21186
  /**
19906
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
19907
- * @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
19908
21189
  * @param {string} id
19909
21190
  * @param {*} [options] Override http request option.
19910
21191
  * @throws {RequiredError}
19911
21192
  */
19912
21193
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
19913
21194
  /**
19914
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
19915
- * @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
19916
21197
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
19917
21198
  * @param {*} [options] Override http request option.
19918
21199
  * @throws {RequiredError}
19919
21200
  */
19920
21201
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<CronJobOutputArrayDTOAPI>;
19921
21202
  /**
19922
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
19923
- * @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
19924
21205
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
19925
21206
  * @param {*} [options] Override http request option.
19926
21207
  * @throws {RequiredError}
19927
21208
  */
19928
21209
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
19929
21210
  /**
19930
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
19931
- * @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
19932
21213
  * @param {string} id
19933
21214
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
19934
21215
  * @param {*} [options] Override http request option.
@@ -19944,8 +21225,8 @@ export declare const CronJobApiFactory: (configuration?: Configuration, basePath
19944
21225
  */
19945
21226
  export declare class CronJobApi extends BaseAPI {
19946
21227
  /**
19947
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerCreate`
19948
- * @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
19949
21230
  * @param {CronJobCreateDTO} [cronJobCreateDTO] CronJobCreateDTO
19950
21231
  * @param {*} [options] Override http request option.
19951
21232
  * @throws {RequiredError}
@@ -19953,8 +21234,8 @@ export declare class CronJobApi extends BaseAPI {
19953
21234
  */
19954
21235
  cronJobControllerCreate(cronJobCreateDTO?: CronJobCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputDTOAPI, any>>;
19955
21236
  /**
19956
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetExecutions`
19957
- * @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
19958
21239
  * @param {string} id
19959
21240
  * @param {any} [success]
19960
21241
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
@@ -19964,8 +21245,8 @@ export declare class CronJobApi extends BaseAPI {
19964
21245
  */
19965
21246
  cronJobControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputArrayDTOAPI, any>>;
19966
21247
  /**
19967
- * Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerGetOne`
19968
- * @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
19969
21250
  * @param {string} id
19970
21251
  * @param {*} [options] Override http request option.
19971
21252
  * @throws {RequiredError}
@@ -19973,8 +21254,8 @@ export declare class CronJobApi extends BaseAPI {
19973
21254
  */
19974
21255
  cronJobControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputDTOAPI, any>>;
19975
21256
  /**
19976
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerRemove`
19977
- * @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
19978
21259
  * @param {string} id
19979
21260
  * @param {*} [options] Override http request option.
19980
21261
  * @throws {RequiredError}
@@ -19982,8 +21263,8 @@ export declare class CronJobApi extends BaseAPI {
19982
21263
  */
19983
21264
  cronJobControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
19984
21265
  /**
19985
- * Search cronjobs Required permissions: `READ_MODULES`<br> OperationId: `CronJobControllerSearch`
19986
- * @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
19987
21268
  * @param {CronJobSearchInputDTO} [cronJobSearchInputDTO] CronJobSearchInputDTO
19988
21269
  * @param {*} [options] Override http request option.
19989
21270
  * @throws {RequiredError}
@@ -19991,8 +21272,8 @@ export declare class CronJobApi extends BaseAPI {
19991
21272
  */
19992
21273
  cronJobControllerSearch(cronJobSearchInputDTO?: CronJobSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CronJobOutputArrayDTOAPI, any>>;
19993
21274
  /**
19994
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerTrigger`
19995
- * @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
19996
21277
  * @param {CronJobTriggerDTO} [cronJobTriggerDTO] CronJobTriggerDTO
19997
21278
  * @param {*} [options] Override http request option.
19998
21279
  * @throws {RequiredError}
@@ -20000,8 +21281,8 @@ export declare class CronJobApi extends BaseAPI {
20000
21281
  */
20001
21282
  cronJobControllerTrigger(cronJobTriggerDTO?: CronJobTriggerDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
20002
21283
  /**
20003
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `CronJobControllerUpdate`
20004
- * @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
20005
21286
  * @param {string} id
20006
21287
  * @param {CronJobUpdateDTO} [cronJobUpdateDTO] CronJobUpdateDTO
20007
21288
  * @param {*} [options] Override http request option.
@@ -20329,6 +21610,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20329
21610
  * @throws {RequiredError}
20330
21611
  */
20331
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>;
20332
21622
  /**
20333
21623
  * <br> OperationId: `DomainControllerGetOne`
20334
21624
  * @summary Get one
@@ -20393,6 +21683,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20393
21683
  * @throws {RequiredError}
20394
21684
  */
20395
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>>;
20396
21695
  /**
20397
21696
  * <br> OperationId: `DomainControllerGetOne`
20398
21697
  * @summary Get one
@@ -20457,6 +21756,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20457
21756
  * @throws {RequiredError}
20458
21757
  */
20459
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>;
20460
21768
  /**
20461
21769
  * <br> OperationId: `DomainControllerGetOne`
20462
21770
  * @summary Get one
@@ -20524,6 +21832,16 @@ export declare class DomainApi extends BaseAPI {
20524
21832
  * @memberof DomainApi
20525
21833
  */
20526
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>>;
20527
21845
  /**
20528
21846
  * <br> OperationId: `DomainControllerGetOne`
20529
21847
  * @summary Get one
@@ -20727,8 +22045,8 @@ export declare const EventApiAxiosParamCreator: (configuration?: Configuration)
20727
22045
  */
20728
22046
  eventControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20729
22047
  /**
20730
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
20731
- * @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
20732
22050
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
20733
22051
  * @param {*} [options] Override http request option.
20734
22052
  * @throws {RequiredError}
@@ -20789,8 +22107,8 @@ export declare const EventApiFp: (configuration?: Configuration) => {
20789
22107
  */
20790
22108
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EventOutputDTO>>;
20791
22109
  /**
20792
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
20793
- * @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
20794
22112
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
20795
22113
  * @param {*} [options] Override http request option.
20796
22114
  * @throws {RequiredError}
@@ -20851,8 +22169,8 @@ export declare const EventApiFactory: (configuration?: Configuration, basePath?:
20851
22169
  */
20852
22170
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<EventOutputDTO>;
20853
22171
  /**
20854
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
20855
- * @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
20856
22174
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
20857
22175
  * @param {*} [options] Override http request option.
20858
22176
  * @throws {RequiredError}
@@ -20921,8 +22239,8 @@ export declare class EventApi extends BaseAPI {
20921
22239
  */
20922
22240
  eventControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputDTO, any>>;
20923
22241
  /**
20924
- * Search events Required permissions: `READ_EVENTS`<br> OperationId: `EventControllerSearch`
20925
- * @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
20926
22244
  * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
20927
22245
  * @param {*} [options] Override http request option.
20928
22246
  * @throws {RequiredError}
@@ -20938,11 +22256,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
20938
22256
  /**
20939
22257
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20940
22258
  * @summary Auth discord
20941
- * @param {string} redirect
22259
+ * @param {string} [redirect]
20942
22260
  * @param {*} [options] Override http request option.
20943
22261
  * @throws {RequiredError}
20944
22262
  */
20945
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22263
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20946
22264
  /**
20947
22265
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20948
22266
  * @summary Auth discord return
@@ -20959,11 +22277,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
20959
22277
  /**
20960
22278
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20961
22279
  * @summary Auth discord
20962
- * @param {string} redirect
22280
+ * @param {string} [redirect]
20963
22281
  * @param {*} [options] Override http request option.
20964
22282
  * @throws {RequiredError}
20965
22283
  */
20966
- 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>>;
20967
22285
  /**
20968
22286
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20969
22287
  * @summary Auth discord return
@@ -20980,11 +22298,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
20980
22298
  /**
20981
22299
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
20982
22300
  * @summary Auth discord
20983
- * @param {string} redirect
22301
+ * @param {string} [redirect]
20984
22302
  * @param {*} [options] Override http request option.
20985
22303
  * @throws {RequiredError}
20986
22304
  */
20987
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22305
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
20988
22306
  /**
20989
22307
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
20990
22308
  * @summary Auth discord return
@@ -21003,12 +22321,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21003
22321
  /**
21004
22322
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21005
22323
  * @summary Auth discord
21006
- * @param {string} redirect
22324
+ * @param {string} [redirect]
21007
22325
  * @param {*} [options] Override http request option.
21008
22326
  * @throws {RequiredError}
21009
22327
  * @memberof ExternalAuthApi
21010
22328
  */
21011
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22329
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21012
22330
  /**
21013
22331
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21014
22332
  * @summary Auth discord return
@@ -21293,7 +22611,7 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
21293
22611
  gameServerControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21294
22612
  /**
21295
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`
21296
- * @summary Get players
22614
+ * @summary List the players currently online on a game server
21297
22615
  * @param {string} id
21298
22616
  * @param {*} [options] Override http request option.
21299
22617
  * @deprecated
@@ -21402,16 +22720,16 @@ export declare const GameServerApiAxiosParamCreator: (configuration?: Configurat
21402
22720
  */
21403
22721
  gameServerControllerTeleportPlayer: (gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21404
22722
  /**
21405
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
21406
- * @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
21407
22725
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
21408
22726
  * @param {*} [options] Override http request option.
21409
22727
  * @throws {RequiredError}
21410
22728
  */
21411
22729
  gameServerControllerTestReachability: (gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21412
22730
  /**
21413
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
21414
- * @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
21415
22733
  * @param {string} id
21416
22734
  * @param {*} [options] Override http request option.
21417
22735
  * @throws {RequiredError}
@@ -21526,7 +22844,7 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
21526
22844
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GameServerOutputDTOAPI>>;
21527
22845
  /**
21528
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`
21529
- * @summary Get players
22847
+ * @summary List the players currently online on a game server
21530
22848
  * @param {string} id
21531
22849
  * @param {*} [options] Override http request option.
21532
22850
  * @deprecated
@@ -21635,16 +22953,16 @@ export declare const GameServerApiFp: (configuration?: Configuration) => {
21635
22953
  */
21636
22954
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
21637
22955
  /**
21638
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
21639
- * @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
21640
22958
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
21641
22959
  * @param {*} [options] Override http request option.
21642
22960
  * @throws {RequiredError}
21643
22961
  */
21644
22962
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GameServerTestReachabilityDTOAPI>>;
21645
22963
  /**
21646
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
21647
- * @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
21648
22966
  * @param {string} id
21649
22967
  * @param {*} [options] Override http request option.
21650
22968
  * @throws {RequiredError}
@@ -21759,7 +23077,7 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
21759
23077
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<GameServerOutputDTOAPI>;
21760
23078
  /**
21761
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`
21762
- * @summary Get players
23080
+ * @summary List the players currently online on a game server
21763
23081
  * @param {string} id
21764
23082
  * @param {*} [options] Override http request option.
21765
23083
  * @deprecated
@@ -21868,16 +23186,16 @@ export declare const GameServerApiFactory: (configuration?: Configuration, baseP
21868
23186
  */
21869
23187
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
21870
23188
  /**
21871
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
21872
- * @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
21873
23191
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
21874
23192
  * @param {*} [options] Override http request option.
21875
23193
  * @throws {RequiredError}
21876
23194
  */
21877
23195
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<GameServerTestReachabilityDTOAPI>;
21878
23196
  /**
21879
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
21880
- * @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
21881
23199
  * @param {string} id
21882
23200
  * @param {*} [options] Override http request option.
21883
23201
  * @throws {RequiredError}
@@ -22002,7 +23320,7 @@ export declare class GameServerApi extends BaseAPI {
22002
23320
  gameServerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GameServerOutputDTOAPI, any>>;
22003
23321
  /**
22004
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`
22005
- * @summary Get players
23323
+ * @summary List the players currently online on a game server
22006
23324
  * @param {string} id
22007
23325
  * @param {*} [options] Override http request option.
22008
23326
  * @deprecated
@@ -22124,8 +23442,8 @@ export declare class GameServerApi extends BaseAPI {
22124
23442
  */
22125
23443
  gameServerControllerTeleportPlayer(gameServerId: string, playerId: string, teleportPlayerInputDTO?: TeleportPlayerInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
22126
23444
  /**
22127
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachability`
22128
- * @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
22129
23447
  * @param {GameServerTestReachabilityInputDTO} [gameServerTestReachabilityInputDTO] GameServerTestReachabilityInputDTO
22130
23448
  * @param {*} [options] Override http request option.
22131
23449
  * @throws {RequiredError}
@@ -22133,8 +23451,8 @@ export declare class GameServerApi extends BaseAPI {
22133
23451
  */
22134
23452
  gameServerControllerTestReachability(gameServerTestReachabilityInputDTO?: GameServerTestReachabilityInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GameServerTestReachabilityDTOAPI, any>>;
22135
23453
  /**
22136
- * Test if Takaro can connect to a gameserver. Will do a thorough check and report details.<br> OperationId: `GameServerControllerTestReachabilityForId`
22137
- * @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
22138
23456
  * @param {string} id
22139
23457
  * @param {*} [options] Override http request option.
22140
23458
  * @throws {RequiredError}
@@ -22357,90 +23675,281 @@ export declare const HookApiFactory: (configuration?: Configuration, basePath?:
22357
23675
  * @param {*} [options] Override http request option.
22358
23676
  * @throws {RequiredError}
22359
23677
  */
22360
- hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
23678
+ hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
23679
+ /**
23680
+ * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerUpdate`
23681
+ * @summary Update
23682
+ * @param {string} id
23683
+ * @param {HookUpdateDTO} [hookUpdateDTO] HookUpdateDTO
23684
+ * @param {*} [options] Override http request option.
23685
+ * @throws {RequiredError}
23686
+ */
23687
+ hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputDTOAPI>;
23688
+ };
23689
+ /**
23690
+ * HookApi - object-oriented interface
23691
+ * @export
23692
+ * @class HookApi
23693
+ * @extends {BaseAPI}
23694
+ */
23695
+ export declare class HookApi extends BaseAPI {
23696
+ /**
23697
+ * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerCreate`
23698
+ * @summary Create
23699
+ * @param {HookCreateDTO} [hookCreateDTO] HookCreateDTO
23700
+ * @param {*} [options] Override http request option.
23701
+ * @throws {RequiredError}
23702
+ * @memberof HookApi
23703
+ */
23704
+ hookControllerCreate(hookCreateDTO?: HookCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23705
+ /**
23706
+ * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerGetExecutions`
23707
+ * @summary Get executions
23708
+ * @param {string} id
23709
+ * @param {any} [success]
23710
+ * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
23711
+ * @param {*} [options] Override http request option.
23712
+ * @throws {RequiredError}
23713
+ * @memberof HookApi
23714
+ */
23715
+ hookControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputArrayDTOAPI, any>>;
23716
+ /**
23717
+ * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerGetOne`
23718
+ * @summary Get one
23719
+ * @param {string} id
23720
+ * @param {*} [options] Override http request option.
23721
+ * @throws {RequiredError}
23722
+ * @memberof HookApi
23723
+ */
23724
+ hookControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23725
+ /**
23726
+ * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerRemove`
23727
+ * @summary Remove
23728
+ * @param {string} id
23729
+ * @param {*} [options] Override http request option.
23730
+ * @throws {RequiredError}
23731
+ * @memberof HookApi
23732
+ */
23733
+ hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23734
+ /**
23735
+ * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
23736
+ * @summary Search
23737
+ * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
23738
+ * @param {*} [options] Override http request option.
23739
+ * @throws {RequiredError}
23740
+ * @memberof HookApi
23741
+ */
23742
+ hookControllerSearch(hookSearchInputDTO?: HookSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputArrayDTOAPI, any>>;
23743
+ /**
23744
+ * Trigger a hook. This is used for testing purposes, the event will not actually be created but the hook-logic will be executed. You can pass any data you want, but it must validate against the corresponding event metadata. Eg to trigger the `chat-message` event, you must pass an object with a `message` property Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerTrigger`
23745
+ * @summary Trigger
23746
+ * @param {HookTriggerDTO} [hookTriggerDTO] HookTriggerDTO
23747
+ * @param {*} [options] Override http request option.
23748
+ * @throws {RequiredError}
23749
+ * @memberof HookApi
23750
+ */
23751
+ hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
23752
+ /**
23753
+ * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerUpdate`
23754
+ * @summary Update
23755
+ * @param {string} id
23756
+ * @param {HookUpdateDTO} [hookUpdateDTO] HookUpdateDTO
23757
+ * @param {*} [options] Override http request option.
23758
+ * @throws {RequiredError}
23759
+ * @memberof HookApi
23760
+ */
23761
+ hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23762
+ }
23763
+ /**
23764
+ * InviteLinkApi - axios parameter creator
23765
+ * @export
23766
+ */
23767
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23768
+ /**
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
23772
+ * @param {*} [options] Override http request option.
23773
+ * @throws {RequiredError}
23774
+ */
23775
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23776
+ /**
23777
+ * <br> OperationId: `InviteLinkControllerPreview`
23778
+ * @summary Preview
23779
+ * @param {string} token
23780
+ * @param {*} [options] Override http request option.
23781
+ * @throws {RequiredError}
23782
+ */
23783
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23784
+ /**
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
23795
+ * @param {string} id
23796
+ * @param {*} [options] Override http request option.
23797
+ * @throws {RequiredError}
23798
+ */
23799
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23800
+ /**
23801
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23802
+ * @summary Search
23803
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23804
+ * @param {*} [options] Override http request option.
23805
+ * @throws {RequiredError}
23806
+ */
23807
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23808
+ };
23809
+ /**
23810
+ * InviteLinkApi - functional programming interface
23811
+ * @export
23812
+ */
23813
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23814
+ /**
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
23818
+ * @param {*} [options] Override http request option.
23819
+ * @throws {RequiredError}
23820
+ */
23821
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23822
+ /**
23823
+ * <br> OperationId: `InviteLinkControllerPreview`
23824
+ * @summary Preview
23825
+ * @param {string} token
23826
+ * @param {*} [options] Override http request option.
23827
+ * @throws {RequiredError}
23828
+ */
23829
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23830
+ /**
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
23841
+ * @param {string} id
23842
+ * @param {*} [options] Override http request option.
23843
+ * @throws {RequiredError}
23844
+ */
23845
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23846
+ /**
23847
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23848
+ * @summary Search
23849
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23850
+ * @param {*} [options] Override http request option.
23851
+ * @throws {RequiredError}
23852
+ */
23853
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23854
+ };
23855
+ /**
23856
+ * InviteLinkApi - factory interface
23857
+ * @export
23858
+ */
23859
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23860
+ /**
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
23864
+ * @param {*} [options] Override http request option.
23865
+ * @throws {RequiredError}
23866
+ */
23867
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23868
+ /**
23869
+ * <br> OperationId: `InviteLinkControllerPreview`
23870
+ * @summary Preview
23871
+ * @param {string} token
23872
+ * @param {*} [options] Override http request option.
23873
+ * @throws {RequiredError}
23874
+ */
23875
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23876
+ /**
23877
+ * <br> OperationId: `InviteLinkControllerRedeem`
23878
+ * @summary Redeem
23879
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23880
+ * @param {*} [options] Override http request option.
23881
+ * @throws {RequiredError}
23882
+ */
23883
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23884
+ /**
23885
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23886
+ * @summary Revoke
23887
+ * @param {string} id
23888
+ * @param {*} [options] Override http request option.
23889
+ * @throws {RequiredError}
23890
+ */
23891
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
22361
23892
  /**
22362
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerUpdate`
22363
- * @summary Update
22364
- * @param {string} id
22365
- * @param {HookUpdateDTO} [hookUpdateDTO] HookUpdateDTO
23893
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23894
+ * @summary Search
23895
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
22366
23896
  * @param {*} [options] Override http request option.
22367
23897
  * @throws {RequiredError}
22368
23898
  */
22369
- hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<HookOutputDTOAPI>;
23899
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
22370
23900
  };
22371
23901
  /**
22372
- * HookApi - object-oriented interface
23902
+ * InviteLinkApi - object-oriented interface
22373
23903
  * @export
22374
- * @class HookApi
23904
+ * @class InviteLinkApi
22375
23905
  * @extends {BaseAPI}
22376
23906
  */
22377
- export declare class HookApi extends BaseAPI {
23907
+ export declare class InviteLinkApi extends BaseAPI {
22378
23908
  /**
22379
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerCreate`
22380
- * @summary Create
22381
- * @param {HookCreateDTO} [hookCreateDTO] HookCreateDTO
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
22382
23912
  * @param {*} [options] Override http request option.
22383
23913
  * @throws {RequiredError}
22384
- * @memberof HookApi
23914
+ * @memberof InviteLinkApi
22385
23915
  */
22386
- hookControllerCreate(hookCreateDTO?: HookCreateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23916
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
22387
23917
  /**
22388
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerGetExecutions`
22389
- * @summary Get executions
22390
- * @param {string} id
22391
- * @param {any} [success]
22392
- * @param {EventSearchInputDTO} [eventSearchInputDTO] EventSearchInputDTO
23918
+ * <br> OperationId: `InviteLinkControllerPreview`
23919
+ * @summary Preview
23920
+ * @param {string} token
22393
23921
  * @param {*} [options] Override http request option.
22394
23922
  * @throws {RequiredError}
22395
- * @memberof HookApi
23923
+ * @memberof InviteLinkApi
22396
23924
  */
22397
- hookControllerGetExecutions(id: string, success?: any, eventSearchInputDTO?: EventSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EventOutputArrayDTOAPI, any>>;
23925
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
22398
23926
  /**
22399
- * Required permissions: `READ_MODULES`<br> OperationId: `HookControllerGetOne`
22400
- * @summary Get one
22401
- * @param {string} id
23927
+ * <br> OperationId: `InviteLinkControllerRedeem`
23928
+ * @summary Redeem
23929
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
22402
23930
  * @param {*} [options] Override http request option.
22403
23931
  * @throws {RequiredError}
22404
- * @memberof HookApi
23932
+ * @memberof InviteLinkApi
22405
23933
  */
22406
- hookControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23934
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
22407
23935
  /**
22408
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerRemove`
22409
- * @summary Remove
23936
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23937
+ * @summary Revoke
22410
23938
  * @param {string} id
22411
23939
  * @param {*} [options] Override http request option.
22412
23940
  * @throws {RequiredError}
22413
- * @memberof HookApi
23941
+ * @memberof InviteLinkApi
22414
23942
  */
22415
- hookControllerRemove(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23943
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
22416
23944
  /**
22417
- * Search hooks Required permissions: `READ_MODULES`<br> OperationId: `HookControllerSearch`
23945
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
22418
23946
  * @summary Search
22419
- * @param {HookSearchInputDTO} [hookSearchInputDTO] HookSearchInputDTO
22420
- * @param {*} [options] Override http request option.
22421
- * @throws {RequiredError}
22422
- * @memberof HookApi
22423
- */
22424
- hookControllerSearch(hookSearchInputDTO?: HookSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputArrayDTOAPI, any>>;
22425
- /**
22426
- * Trigger a hook. This is used for testing purposes, the event will not actually be created but the hook-logic will be executed. You can pass any data you want, but it must validate against the corresponding event metadata. Eg to trigger the `chat-message` event, you must pass an object with a `message` property Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerTrigger`
22427
- * @summary Trigger
22428
- * @param {HookTriggerDTO} [hookTriggerDTO] HookTriggerDTO
22429
- * @param {*} [options] Override http request option.
22430
- * @throws {RequiredError}
22431
- * @memberof HookApi
22432
- */
22433
- hookControllerTrigger(hookTriggerDTO?: HookTriggerDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22434
- /**
22435
- * Required permissions: `MANAGE_MODULES`<br> OperationId: `HookControllerUpdate`
22436
- * @summary Update
22437
- * @param {string} id
22438
- * @param {HookUpdateDTO} [hookUpdateDTO] HookUpdateDTO
23947
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
22439
23948
  * @param {*} [options] Override http request option.
22440
23949
  * @throws {RequiredError}
22441
- * @memberof HookApi
23950
+ * @memberof InviteLinkApi
22442
23951
  */
22443
- hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23952
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
22444
23953
  }
22445
23954
  /**
22446
23955
  * ItemApi - axios parameter creator
@@ -22546,6 +24055,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
22546
24055
  * @throws {RequiredError}
22547
24056
  */
22548
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>;
22549
24065
  /**
22550
24066
  * <br> OperationId: `MetaGetMetrics`
22551
24067
  * @summary Get metrics
@@ -22594,6 +24110,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
22594
24110
  * @throws {RequiredError}
22595
24111
  */
22596
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>>;
22597
24120
  /**
22598
24121
  * <br> OperationId: `MetaGetMetrics`
22599
24122
  * @summary Get metrics
@@ -22642,6 +24165,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
22642
24165
  * @throws {RequiredError}
22643
24166
  */
22644
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>;
22645
24175
  /**
22646
24176
  * <br> OperationId: `MetaGetMetrics`
22647
24177
  * @summary Get metrics
@@ -22693,6 +24223,14 @@ export declare class MetaApi extends BaseAPI {
22693
24223
  * @memberof MetaApi
22694
24224
  */
22695
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>>;
22696
24234
  /**
22697
24235
  * <br> OperationId: `MetaGetMetrics`
22698
24236
  * @summary Get metrics
@@ -22798,16 +24336,16 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
22798
24336
  */
22799
24337
  moduleControllerUpdate: (id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22800
24338
  /**
22801
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
22802
- * @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
22803
24341
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
22804
24342
  * @param {*} [options] Override http request option.
22805
24343
  * @throws {RequiredError}
22806
24344
  */
22807
24345
  moduleInstallationsControllerGetInstalledModules: (moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22808
24346
  /**
22809
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
22810
- * @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
22811
24349
  * @param {string} moduleId
22812
24350
  * @param {string} gameServerId
22813
24351
  * @param {*} [options] Override http request option.
@@ -22815,8 +24353,8 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
22815
24353
  */
22816
24354
  moduleInstallationsControllerGetModuleInstallation: (moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22817
24355
  /**
22818
- * 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`
22819
- * @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
22820
24358
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
22821
24359
  * @param {*} [options] Override http request option.
22822
24360
  * @throws {RequiredError}
@@ -22824,7 +24362,7 @@ export declare const ModuleApiAxiosParamCreator: (configuration?: Configuration)
22824
24362
  moduleInstallationsControllerInstallModule: (installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22825
24363
  /**
22826
24364
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
22827
- * @summary Uninstall module
24365
+ * @summary Uninstall a module from a game server
22828
24366
  * @param {string} moduleId
22829
24367
  * @param {string} gameServerId
22830
24368
  * @param {*} [options] Override http request option.
@@ -22920,16 +24458,16 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
22920
24458
  */
22921
24459
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleOutputDTOAPI>>;
22922
24460
  /**
22923
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
22924
- * @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
22925
24463
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
22926
24464
  * @param {*} [options] Override http request option.
22927
24465
  * @throws {RequiredError}
22928
24466
  */
22929
24467
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputArrayDTOAPI>>;
22930
24468
  /**
22931
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
22932
- * @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
22933
24471
  * @param {string} moduleId
22934
24472
  * @param {string} gameServerId
22935
24473
  * @param {*} [options] Override http request option.
@@ -22937,8 +24475,8 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
22937
24475
  */
22938
24476
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputDTOAPI>>;
22939
24477
  /**
22940
- * 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`
22941
- * @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
22942
24480
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
22943
24481
  * @param {*} [options] Override http request option.
22944
24482
  * @throws {RequiredError}
@@ -22946,7 +24484,7 @@ export declare const ModuleApiFp: (configuration?: Configuration) => {
22946
24484
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationOutputDTOAPI>>;
22947
24485
  /**
22948
24486
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
22949
- * @summary Uninstall module
24487
+ * @summary Uninstall a module from a game server
22950
24488
  * @param {string} moduleId
22951
24489
  * @param {string} gameServerId
22952
24490
  * @param {*} [options] Override http request option.
@@ -23042,16 +24580,16 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23042
24580
  */
23043
24581
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleOutputDTOAPI>;
23044
24582
  /**
23045
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23046
- * @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
23047
24585
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23048
24586
  * @param {*} [options] Override http request option.
23049
24587
  * @throws {RequiredError}
23050
24588
  */
23051
24589
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputArrayDTOAPI>;
23052
24590
  /**
23053
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23054
- * @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
23055
24593
  * @param {string} moduleId
23056
24594
  * @param {string} gameServerId
23057
24595
  * @param {*} [options] Override http request option.
@@ -23059,8 +24597,8 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23059
24597
  */
23060
24598
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
23061
24599
  /**
23062
- * 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`
23063
- * @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
23064
24602
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23065
24603
  * @param {*} [options] Override http request option.
23066
24604
  * @throws {RequiredError}
@@ -23068,7 +24606,7 @@ export declare const ModuleApiFactory: (configuration?: Configuration, basePath?
23068
24606
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationOutputDTOAPI>;
23069
24607
  /**
23070
24608
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
23071
- * @summary Uninstall module
24609
+ * @summary Uninstall a module from a game server
23072
24610
  * @param {string} moduleId
23073
24611
  * @param {string} gameServerId
23074
24612
  * @param {*} [options] Override http request option.
@@ -23173,8 +24711,8 @@ export declare class ModuleApi extends BaseAPI {
23173
24711
  */
23174
24712
  moduleControllerUpdate(id: string, moduleUpdateDTO?: ModuleUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleOutputDTOAPI, any>>;
23175
24713
  /**
23176
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetInstalledModules`
23177
- * @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
23178
24716
  * @param {ModuleInstallationSearchInputDTO} [moduleInstallationSearchInputDTO] ModuleInstallationSearchInputDTO
23179
24717
  * @param {*} [options] Override http request option.
23180
24718
  * @throws {RequiredError}
@@ -23182,8 +24720,8 @@ export declare class ModuleApi extends BaseAPI {
23182
24720
  */
23183
24721
  moduleInstallationsControllerGetInstalledModules(moduleInstallationSearchInputDTO?: ModuleInstallationSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputArrayDTOAPI, any>>;
23184
24722
  /**
23185
- * Required permissions: `READ_MODULES`<br> OperationId: `ModuleInstallationsControllerGetModuleInstallation`
23186
- * @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
23187
24725
  * @param {string} moduleId
23188
24726
  * @param {string} gameServerId
23189
24727
  * @param {*} [options] Override http request option.
@@ -23192,8 +24730,8 @@ export declare class ModuleApi extends BaseAPI {
23192
24730
  */
23193
24731
  moduleInstallationsControllerGetModuleInstallation(moduleId: string, gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputDTOAPI, any>>;
23194
24732
  /**
23195
- * 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`
23196
- * @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
23197
24735
  * @param {InstallModuleDTO} [installModuleDTO] InstallModuleDTO
23198
24736
  * @param {*} [options] Override http request option.
23199
24737
  * @throws {RequiredError}
@@ -23202,7 +24740,7 @@ export declare class ModuleApi extends BaseAPI {
23202
24740
  moduleInstallationsControllerInstallModule(installModuleDTO?: InstallModuleDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationOutputDTOAPI, any>>;
23203
24741
  /**
23204
24742
  * Uninstall a module from a gameserver. This will not delete the module from the database. Required permissions: `MANAGE_GAMESERVERS`<br> OperationId: `ModuleInstallationsControllerUninstallModule`
23205
- * @summary Uninstall module
24743
+ * @summary Uninstall a module from a game server
23206
24744
  * @param {string} moduleId
23207
24745
  * @param {string} gameServerId
23208
24746
  * @param {*} [options] Override http request option.
@@ -23285,8 +24823,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23285
24823
  */
23286
24824
  banControllerUpdate: (id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23287
24825
  /**
23288
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
23289
- * @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
23290
24828
  * @param {string} id
23291
24829
  * @param {string} roleId
23292
24830
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23295,8 +24833,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23295
24833
  */
23296
24834
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23297
24835
  /**
23298
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23299
- * @summary Bulk assign role
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
23300
24838
  * @param {string} roleId
23301
24839
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23302
24840
  * @param {*} [options] Override http request option.
@@ -23304,7 +24842,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23304
24842
  */
23305
24843
  playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23306
24844
  /**
23307
- * 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`
23308
24846
  * @summary Bulk delete
23309
24847
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23310
24848
  * @param {*} [options] Override http request option.
@@ -23327,16 +24865,16 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23327
24865
  */
23328
24866
  playerControllerGetMe: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23329
24867
  /**
23330
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
23331
- * @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
23332
24870
  * @param {string} id
23333
24871
  * @param {*} [options] Override http request option.
23334
24872
  * @throws {RequiredError}
23335
24873
  */
23336
24874
  playerControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23337
24875
  /**
23338
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
23339
- * @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
23340
24878
  * @param {string} id
23341
24879
  * @param {string} roleId
23342
24880
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23345,8 +24883,8 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23345
24883
  */
23346
24884
  playerControllerRemoveRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23347
24885
  /**
23348
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
23349
- * @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
23350
24888
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
23351
24889
  * @param {*} [options] Override http request option.
23352
24890
  * @throws {RequiredError}
@@ -23400,8 +24938,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23400
24938
  */
23401
24939
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BanOutputDTOAPI>>;
23402
24940
  /**
23403
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
23404
- * @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
23405
24943
  * @param {string} id
23406
24944
  * @param {string} roleId
23407
24945
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23410,8 +24948,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23410
24948
  */
23411
24949
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23412
24950
  /**
23413
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23414
- * @summary Bulk assign role
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
23415
24953
  * @param {string} roleId
23416
24954
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23417
24955
  * @param {*} [options] Override http request option.
@@ -23419,7 +24957,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23419
24957
  */
23420
24958
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
23421
24959
  /**
23422
- * 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`
23423
24961
  * @summary Bulk delete
23424
24962
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23425
24963
  * @param {*} [options] Override http request option.
@@ -23442,16 +24980,16 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23442
24980
  */
23443
24981
  playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerMeOutputDTO>>;
23444
24982
  /**
23445
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
23446
- * @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
23447
24985
  * @param {string} id
23448
24986
  * @param {*} [options] Override http request option.
23449
24987
  * @throws {RequiredError}
23450
24988
  */
23451
24989
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOutputWithRolesDTOAPI>>;
23452
24990
  /**
23453
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
23454
- * @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
23455
24993
  * @param {string} id
23456
24994
  * @param {string} roleId
23457
24995
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23460,8 +24998,8 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23460
24998
  */
23461
24999
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23462
25000
  /**
23463
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
23464
- * @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
23465
25003
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
23466
25004
  * @param {*} [options] Override http request option.
23467
25005
  * @throws {RequiredError}
@@ -23515,8 +25053,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23515
25053
  */
23516
25054
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): AxiosPromise<BanOutputDTOAPI>;
23517
25055
  /**
23518
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
23519
- * @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
23520
25058
  * @param {string} id
23521
25059
  * @param {string} roleId
23522
25060
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23525,8 +25063,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23525
25063
  */
23526
25064
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23527
25065
  /**
23528
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23529
- * @summary Bulk assign role
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
23530
25068
  * @param {string} roleId
23531
25069
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23532
25070
  * @param {*} [options] Override http request option.
@@ -23534,7 +25072,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23534
25072
  */
23535
25073
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
23536
25074
  /**
23537
- * 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`
23538
25076
  * @summary Bulk delete
23539
25077
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23540
25078
  * @param {*} [options] Override http request option.
@@ -23557,16 +25095,16 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23557
25095
  */
23558
25096
  playerControllerGetMe(options?: RawAxiosRequestConfig): AxiosPromise<PlayerMeOutputDTO>;
23559
25097
  /**
23560
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
23561
- * @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
23562
25100
  * @param {string} id
23563
25101
  * @param {*} [options] Override http request option.
23564
25102
  * @throws {RequiredError}
23565
25103
  */
23566
25104
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOutputWithRolesDTOAPI>;
23567
25105
  /**
23568
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
23569
- * @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
23570
25108
  * @param {string} id
23571
25109
  * @param {string} roleId
23572
25110
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23575,8 +25113,8 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23575
25113
  */
23576
25114
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23577
25115
  /**
23578
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
23579
- * @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
23580
25118
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
23581
25119
  * @param {*} [options] Override http request option.
23582
25120
  * @throws {RequiredError}
@@ -23637,8 +25175,8 @@ export declare class PlayerApi extends BaseAPI {
23637
25175
  */
23638
25176
  banControllerUpdate(id: string, banUpdateDTO?: BanUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BanOutputDTOAPI, any>>;
23639
25177
  /**
23640
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerAssignRole`
23641
- * @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
23642
25180
  * @param {string} id
23643
25181
  * @param {string} roleId
23644
25182
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23648,8 +25186,8 @@ export declare class PlayerApi extends BaseAPI {
23648
25186
  */
23649
25187
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23650
25188
  /**
23651
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
23652
- * @summary Bulk assign role
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
23653
25191
  * @param {string} roleId
23654
25192
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
23655
25193
  * @param {*} [options] Override http request option.
@@ -23658,7 +25196,7 @@ export declare class PlayerApi extends BaseAPI {
23658
25196
  */
23659
25197
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
23660
25198
  /**
23661
- * 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`
23662
25200
  * @summary Bulk delete
23663
25201
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23664
25202
  * @param {*} [options] Override http request option.
@@ -23684,8 +25222,8 @@ export declare class PlayerApi extends BaseAPI {
23684
25222
  */
23685
25223
  playerControllerGetMe(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerMeOutputDTO, any>>;
23686
25224
  /**
23687
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerGetOne`
23688
- * @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
23689
25227
  * @param {string} id
23690
25228
  * @param {*} [options] Override http request option.
23691
25229
  * @throws {RequiredError}
@@ -23693,8 +25231,8 @@ export declare class PlayerApi extends BaseAPI {
23693
25231
  */
23694
25232
  playerControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOutputWithRolesDTOAPI, any>>;
23695
25233
  /**
23696
- * Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerRemoveRole`
23697
- * @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
23698
25236
  * @param {string} id
23699
25237
  * @param {string} roleId
23700
25238
  * @param {PlayerRoleAssignChangeDTO} [playerRoleAssignChangeDTO] PlayerRoleAssignChangeDTO
@@ -23704,8 +25242,8 @@ export declare class PlayerApi extends BaseAPI {
23704
25242
  */
23705
25243
  playerControllerRemoveRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23706
25244
  /**
23707
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerControllerSearch`
23708
- * @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
23709
25247
  * @param {PlayerSearchInputDTO} [playerSearchInputDTO] PlayerSearchInputDTO
23710
25248
  * @param {*} [options] Override http request option.
23711
25249
  * @throws {RequiredError}
@@ -23719,8 +25257,8 @@ export declare class PlayerApi extends BaseAPI {
23719
25257
  */
23720
25258
  export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Configuration) => {
23721
25259
  /**
23722
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
23723
- * @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
23724
25262
  * @param {string} gameServerId
23725
25263
  * @param {string} playerId
23726
25264
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23729,8 +25267,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23729
25267
  */
23730
25268
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23731
25269
  /**
23732
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
23733
- * @summary Bulk add currency
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
23734
25272
  * @param {string} gameServerId
23735
25273
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23736
25274
  * @param {*} [options] Override http request option.
@@ -23739,7 +25277,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23739
25277
  playerOnGameServerControllerBulkAddCurrency: (gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23740
25278
  /**
23741
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`
23742
- * @summary Bulk delete
25280
+ * @summary Permanently delete several players\' records and their history
23743
25281
  * @param {string} gameServerId
23744
25282
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
23745
25283
  * @param {*} [options] Override http request option.
@@ -23747,8 +25285,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23747
25285
  */
23748
25286
  playerOnGameServerControllerBulkDelete: (gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23749
25287
  /**
23750
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
23751
- * @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
23752
25290
  * @param {string} gameServerId
23753
25291
  * @param {string} playerId
23754
25292
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23757,8 +25295,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23757
25295
  */
23758
25296
  playerOnGameServerControllerDeductCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23759
25297
  /**
23760
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
23761
- * @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
23762
25300
  * @param {string} gameServerId
23763
25301
  * @param {string} playerId
23764
25302
  * @param {*} [options] Override http request option.
@@ -23766,8 +25304,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23766
25304
  */
23767
25305
  playerOnGameServerControllerDelete: (gameServerId: string, playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23768
25306
  /**
23769
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
23770
- * @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
23771
25309
  * @param {string} gameServerId
23772
25310
  * @param {string} playerId
23773
25311
  * @param {*} [options] Override http request option.
@@ -23775,16 +25313,16 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23775
25313
  */
23776
25314
  playerOnGameServerControllerGetOne: (gameServerId: string, playerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23777
25315
  /**
23778
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
23779
- * @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
23780
25318
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
23781
25319
  * @param {*} [options] Override http request option.
23782
25320
  * @throws {RequiredError}
23783
25321
  */
23784
25322
  playerOnGameServerControllerSearch: (playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23785
25323
  /**
23786
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
23787
- * @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
23788
25326
  * @param {string} gameServerId
23789
25327
  * @param {string} playerId
23790
25328
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23793,8 +25331,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23793
25331
  */
23794
25332
  playerOnGameServerControllerSetCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23795
25333
  /**
23796
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
23797
- * @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
23798
25336
  * @param {string} gameServerId
23799
25337
  * @param {string} sender
23800
25338
  * @param {string} receiver
@@ -23810,8 +25348,8 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23810
25348
  */
23811
25349
  export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) => {
23812
25350
  /**
23813
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
23814
- * @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
23815
25353
  * @param {string} gameServerId
23816
25354
  * @param {string} playerId
23817
25355
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23820,8 +25358,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23820
25358
  */
23821
25359
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23822
25360
  /**
23823
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
23824
- * @summary Bulk add currency
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
23825
25363
  * @param {string} gameServerId
23826
25364
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23827
25365
  * @param {*} [options] Override http request option.
@@ -23830,7 +25368,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23830
25368
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>>;
23831
25369
  /**
23832
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`
23833
- * @summary Bulk delete
25371
+ * @summary Permanently delete several players\' records and their history
23834
25372
  * @param {string} gameServerId
23835
25373
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
23836
25374
  * @param {*} [options] Override http request option.
@@ -23838,8 +25376,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23838
25376
  */
23839
25377
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PogBulkDeleteOutputDTOAPI>>;
23840
25378
  /**
23841
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
23842
- * @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
23843
25381
  * @param {string} gameServerId
23844
25382
  * @param {string} playerId
23845
25383
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23848,8 +25386,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23848
25386
  */
23849
25387
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23850
25388
  /**
23851
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
23852
- * @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
23853
25391
  * @param {string} gameServerId
23854
25392
  * @param {string} playerId
23855
25393
  * @param {*} [options] Override http request option.
@@ -23857,8 +25395,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23857
25395
  */
23858
25396
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23859
25397
  /**
23860
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
23861
- * @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
23862
25400
  * @param {string} gameServerId
23863
25401
  * @param {string} playerId
23864
25402
  * @param {*} [options] Override http request option.
@@ -23866,16 +25404,16 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23866
25404
  */
23867
25405
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23868
25406
  /**
23869
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
23870
- * @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
23871
25409
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
23872
25410
  * @param {*} [options] Override http request option.
23873
25411
  * @throws {RequiredError}
23874
25412
  */
23875
25413
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>>;
23876
25414
  /**
23877
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
23878
- * @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
23879
25417
  * @param {string} gameServerId
23880
25418
  * @param {string} playerId
23881
25419
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23884,8 +25422,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23884
25422
  */
23885
25423
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
23886
25424
  /**
23887
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
23888
- * @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
23889
25427
  * @param {string} gameServerId
23890
25428
  * @param {string} sender
23891
25429
  * @param {string} receiver
@@ -23901,8 +25439,8 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
23901
25439
  */
23902
25440
  export declare const PlayerOnGameServerApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23903
25441
  /**
23904
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
23905
- * @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
23906
25444
  * @param {string} gameServerId
23907
25445
  * @param {string} playerId
23908
25446
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23911,8 +25449,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23911
25449
  */
23912
25450
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23913
25451
  /**
23914
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
23915
- * @summary Bulk add currency
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
23916
25454
  * @param {string} gameServerId
23917
25455
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
23918
25456
  * @param {*} [options] Override http request option.
@@ -23921,7 +25459,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23921
25459
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkAddCurrencyOutputDTOAPI>;
23922
25460
  /**
23923
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`
23924
- * @summary Bulk delete
25462
+ * @summary Permanently delete several players\' records and their history
23925
25463
  * @param {string} gameServerId
23926
25464
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
23927
25465
  * @param {*} [options] Override http request option.
@@ -23929,8 +25467,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23929
25467
  */
23930
25468
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PogBulkDeleteOutputDTOAPI>;
23931
25469
  /**
23932
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
23933
- * @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
23934
25472
  * @param {string} gameServerId
23935
25473
  * @param {string} playerId
23936
25474
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23939,8 +25477,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23939
25477
  */
23940
25478
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23941
25479
  /**
23942
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
23943
- * @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
23944
25482
  * @param {string} gameServerId
23945
25483
  * @param {string} playerId
23946
25484
  * @param {*} [options] Override http request option.
@@ -23948,8 +25486,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23948
25486
  */
23949
25487
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23950
25488
  /**
23951
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
23952
- * @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
23953
25491
  * @param {string} gameServerId
23954
25492
  * @param {string} playerId
23955
25493
  * @param {*} [options] Override http request option.
@@ -23957,16 +25495,16 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23957
25495
  */
23958
25496
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23959
25497
  /**
23960
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
23961
- * @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
23962
25500
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
23963
25501
  * @param {*} [options] Override http request option.
23964
25502
  * @throws {RequiredError}
23965
25503
  */
23966
25504
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputArrayDTOAPI>;
23967
25505
  /**
23968
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
23969
- * @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
23970
25508
  * @param {string} gameServerId
23971
25509
  * @param {string} playerId
23972
25510
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -23975,8 +25513,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23975
25513
  */
23976
25514
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
23977
25515
  /**
23978
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
23979
- * @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
23980
25518
  * @param {string} gameServerId
23981
25519
  * @param {string} sender
23982
25520
  * @param {string} receiver
@@ -23994,8 +25532,8 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
23994
25532
  */
23995
25533
  export declare class PlayerOnGameServerApi extends BaseAPI {
23996
25534
  /**
23997
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerAddCurrency`
23998
- * @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
23999
25537
  * @param {string} gameServerId
24000
25538
  * @param {string} playerId
24001
25539
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24005,8 +25543,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24005
25543
  */
24006
25544
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24007
25545
  /**
24008
- * Bulk add currency to multiple players on a game server. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerBulkAddCurrency`
24009
- * @summary Bulk add currency
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
24010
25548
  * @param {string} gameServerId
24011
25549
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
24012
25550
  * @param {*} [options] Override http request option.
@@ -24016,7 +25554,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24016
25554
  playerOnGameServerControllerBulkAddCurrency(gameServerId: string, pogBulkAddCurrencyInputDTO?: PogBulkAddCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkAddCurrencyOutputDTOAPI, any>>;
24017
25555
  /**
24018
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`
24019
- * @summary Bulk delete
25557
+ * @summary Permanently delete several players\' records and their history
24020
25558
  * @param {string} gameServerId
24021
25559
  * @param {PogBulkDeleteInputDTO} [pogBulkDeleteInputDTO] PogBulkDeleteInputDTO
24022
25560
  * @param {*} [options] Override http request option.
@@ -24025,8 +25563,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24025
25563
  */
24026
25564
  playerOnGameServerControllerBulkDelete(gameServerId: string, pogBulkDeleteInputDTO?: PogBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PogBulkDeleteOutputDTOAPI, any>>;
24027
25565
  /**
24028
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDeductCurrency`
24029
- * @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
24030
25568
  * @param {string} gameServerId
24031
25569
  * @param {string} playerId
24032
25570
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24036,8 +25574,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24036
25574
  */
24037
25575
  playerOnGameServerControllerDeductCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24038
25576
  /**
24039
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerDelete`
24040
- * @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
24041
25579
  * @param {string} gameServerId
24042
25580
  * @param {string} playerId
24043
25581
  * @param {*} [options] Override http request option.
@@ -24046,8 +25584,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24046
25584
  */
24047
25585
  playerOnGameServerControllerDelete(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
24048
25586
  /**
24049
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerGetOne`
24050
- * @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
24051
25589
  * @param {string} gameServerId
24052
25590
  * @param {string} playerId
24053
25591
  * @param {*} [options] Override http request option.
@@ -24056,8 +25594,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24056
25594
  */
24057
25595
  playerOnGameServerControllerGetOne(gameServerId: string, playerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24058
25596
  /**
24059
- * Required permissions: `READ_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSearch`
24060
- * @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
24061
25599
  * @param {PlayerOnGameServerSearchInputDTO} [playerOnGameServerSearchInputDTO] PlayerOnGameServerSearchInputDTO
24062
25600
  * @param {*} [options] Override http request option.
24063
25601
  * @throws {RequiredError}
@@ -24065,8 +25603,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24065
25603
  */
24066
25604
  playerOnGameServerControllerSearch(playerOnGameServerSearchInputDTO?: PlayerOnGameServerSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputArrayDTOAPI, any>>;
24067
25605
  /**
24068
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerSetCurrency`
24069
- * @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
24070
25608
  * @param {string} gameServerId
24071
25609
  * @param {string} playerId
24072
25610
  * @param {PlayerOnGameServerSetCurrencyInputDTO} [playerOnGameServerSetCurrencyInputDTO] PlayerOnGameServerSetCurrencyInputDTO
@@ -24076,8 +25614,8 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24076
25614
  */
24077
25615
  playerOnGameServerControllerSetCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24078
25616
  /**
24079
- * Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerOnGameServerControllerTransactBetweenPlayers`
24080
- * @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
24081
25619
  * @param {string} gameServerId
24082
25620
  * @param {string} sender
24083
25621
  * @param {string} receiver
@@ -24301,8 +25839,8 @@ export declare const RoleApiAxiosParamCreator: (configuration?: Configuration) =
24301
25839
  */
24302
25840
  roleControllerGetOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
24303
25841
  /**
24304
- * <br> OperationId: `RoleControllerGetPermissions`
24305
- * @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
24306
25844
  * @param {*} [options] Override http request option.
24307
25845
  * @throws {RequiredError}
24308
25846
  */
@@ -24355,8 +25893,8 @@ export declare const RoleApiFp: (configuration?: Configuration) => {
24355
25893
  */
24356
25894
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RoleOutputDTOAPI>>;
24357
25895
  /**
24358
- * <br> OperationId: `RoleControllerGetPermissions`
24359
- * @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
24360
25898
  * @param {*} [options] Override http request option.
24361
25899
  * @throws {RequiredError}
24362
25900
  */
@@ -24409,8 +25947,8 @@ export declare const RoleApiFactory: (configuration?: Configuration, basePath?:
24409
25947
  */
24410
25948
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): AxiosPromise<RoleOutputDTOAPI>;
24411
25949
  /**
24412
- * <br> OperationId: `RoleControllerGetPermissions`
24413
- * @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
24414
25952
  * @param {*} [options] Override http request option.
24415
25953
  * @throws {RequiredError}
24416
25954
  */
@@ -24467,8 +26005,8 @@ export declare class RoleApi extends BaseAPI {
24467
26005
  */
24468
26006
  roleControllerGetOne(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RoleOutputDTOAPI, any>>;
24469
26007
  /**
24470
- * <br> OperationId: `RoleControllerGetPermissions`
24471
- * @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
24472
26010
  * @param {*} [options] Override http request option.
24473
26011
  * @throws {RequiredError}
24474
26012
  * @memberof RoleApi
@@ -24969,7 +26507,7 @@ export declare class ShopActionApi extends BaseAPI {
24969
26507
  */
24970
26508
  export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
24971
26509
  /**
24972
- * 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`
24973
26511
  * @summary Bulk assign
24974
26512
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
24975
26513
  * @param {*} [options] Override http request option.
@@ -25042,7 +26580,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
25042
26580
  */
25043
26581
  export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25044
26582
  /**
25045
- * 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`
25046
26584
  * @summary Bulk assign
25047
26585
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25048
26586
  * @param {*} [options] Override http request option.
@@ -25115,7 +26653,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25115
26653
  */
25116
26654
  export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25117
26655
  /**
25118
- * 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`
25119
26657
  * @summary Bulk assign
25120
26658
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25121
26659
  * @param {*} [options] Override http request option.
@@ -25190,7 +26728,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
25190
26728
  */
25191
26729
  export declare class ShopCategoryApi extends BaseAPI {
25192
26730
  /**
25193
- * 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`
25194
26732
  * @summary Bulk assign
25195
26733
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25196
26734
  * @param {*} [options] Override http request option.
@@ -25270,6 +26808,14 @@ export declare class ShopCategoryApi extends BaseAPI {
25270
26808
  * @export
25271
26809
  */
25272
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>;
25273
26819
  /**
25274
26820
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25275
26821
  * @summary Create
@@ -25324,6 +26870,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
25324
26870
  * @export
25325
26871
  */
25326
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>>;
25327
26881
  /**
25328
26882
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25329
26883
  * @summary Create
@@ -25354,7 +26908,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25354
26908
  * @param {*} [options] Override http request option.
25355
26909
  * @throws {RequiredError}
25356
26910
  */
25357
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26911
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25358
26912
  /**
25359
26913
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25360
26914
  * @summary Search
@@ -25378,6 +26932,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25378
26932
  * @export
25379
26933
  */
25380
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>;
25381
26943
  /**
25382
26944
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25383
26945
  * @summary Create
@@ -25408,7 +26970,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25408
26970
  * @param {*} [options] Override http request option.
25409
26971
  * @throws {RequiredError}
25410
26972
  */
25411
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26973
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25412
26974
  /**
25413
26975
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25414
26976
  * @summary Search
@@ -25434,6 +26996,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25434
26996
  * @extends {BaseAPI}
25435
26997
  */
25436
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>>;
25437
27008
  /**
25438
27009
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25439
27010
  * @summary Create
@@ -25468,7 +27039,7 @@ export declare class ShopListingApi extends BaseAPI {
25468
27039
  * @throws {RequiredError}
25469
27040
  * @memberof ShopListingApi
25470
27041
  */
25471
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27042
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25472
27043
  /**
25473
27044
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25474
27045
  * @summary Search
@@ -25680,6 +27251,168 @@ export declare class ShopOrderApi extends BaseAPI {
25680
27251
  */
25681
27252
  shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
25682
27253
  }
27254
+ /**
27255
+ * StorefrontConfigApi - axios parameter creator
27256
+ * @export
27257
+ */
27258
+ export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
27259
+ /**
27260
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
27261
+ * @summary Get effective config
27262
+ * @param {string} gameServerId
27263
+ * @param {*} [options] Override http request option.
27264
+ * @throws {RequiredError}
27265
+ */
27266
+ storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27267
+ /**
27268
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
27269
+ * @summary List templates
27270
+ * @param {*} [options] Override http request option.
27271
+ * @throws {RequiredError}
27272
+ */
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>;
27283
+ /**
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`
27285
+ * @summary Set config
27286
+ * @param {string} gameServerId
27287
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27288
+ * @param {*} [options] Override http request option.
27289
+ * @throws {RequiredError}
27290
+ */
27291
+ storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27292
+ };
27293
+ /**
27294
+ * StorefrontConfigApi - functional programming interface
27295
+ * @export
27296
+ */
27297
+ export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
27298
+ /**
27299
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
27300
+ * @summary Get effective config
27301
+ * @param {string} gameServerId
27302
+ * @param {*} [options] Override http request option.
27303
+ * @throws {RequiredError}
27304
+ */
27305
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
27306
+ /**
27307
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
27308
+ * @summary List templates
27309
+ * @param {*} [options] Override http request option.
27310
+ * @throws {RequiredError}
27311
+ */
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>>;
27322
+ /**
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`
27324
+ * @summary Set config
27325
+ * @param {string} gameServerId
27326
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27327
+ * @param {*} [options] Override http request option.
27328
+ * @throws {RequiredError}
27329
+ */
27330
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
27331
+ };
27332
+ /**
27333
+ * StorefrontConfigApi - factory interface
27334
+ * @export
27335
+ */
27336
+ export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27337
+ /**
27338
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
27339
+ * @summary Get effective config
27340
+ * @param {string} gameServerId
27341
+ * @param {*} [options] Override http request option.
27342
+ * @throws {RequiredError}
27343
+ */
27344
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
27345
+ /**
27346
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
27347
+ * @summary List templates
27348
+ * @param {*} [options] Override http request option.
27349
+ * @throws {RequiredError}
27350
+ */
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>;
27361
+ /**
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`
27363
+ * @summary Set config
27364
+ * @param {string} gameServerId
27365
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27366
+ * @param {*} [options] Override http request option.
27367
+ * @throws {RequiredError}
27368
+ */
27369
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
27370
+ };
27371
+ /**
27372
+ * StorefrontConfigApi - object-oriented interface
27373
+ * @export
27374
+ * @class StorefrontConfigApi
27375
+ * @extends {BaseAPI}
27376
+ */
27377
+ export declare class StorefrontConfigApi extends BaseAPI {
27378
+ /**
27379
+ * Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
27380
+ * @summary Get effective config
27381
+ * @param {string} gameServerId
27382
+ * @param {*} [options] Override http request option.
27383
+ * @throws {RequiredError}
27384
+ * @memberof StorefrontConfigApi
27385
+ */
27386
+ storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
27387
+ /**
27388
+ * List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
27389
+ * @summary List templates
27390
+ * @param {*} [options] Override http request option.
27391
+ * @throws {RequiredError}
27392
+ * @memberof StorefrontConfigApi
27393
+ */
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>>;
27405
+ /**
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`
27407
+ * @summary Set config
27408
+ * @param {string} gameServerId
27409
+ * @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
27410
+ * @param {*} [options] Override http request option.
27411
+ * @throws {RequiredError}
27412
+ * @memberof StorefrontConfigApi
27413
+ */
27414
+ storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
27415
+ }
25683
27416
  /**
25684
27417
  * TrackingApi - axios parameter creator
25685
27418
  * @export
@@ -25886,6 +27619,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25886
27619
  * @throws {RequiredError}
25887
27620
  */
25888
27621
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27622
+ /**
27623
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27624
+ * @summary Count billable dashboard users
27625
+ * @param {*} [options] Override http request option.
27626
+ * @throws {RequiredError}
27627
+ */
27628
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25889
27629
  /**
25890
27630
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
25891
27631
  * @summary Create
@@ -25914,6 +27654,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
25914
27654
  * @summary Invite
25915
27655
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
25916
27656
  * @param {*} [options] Override http request option.
27657
+ * @deprecated
25917
27658
  * @throws {RequiredError}
25918
27659
  */
25919
27660
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -26005,6 +27746,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26005
27746
  * @throws {RequiredError}
26006
27747
  */
26007
27748
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27749
+ /**
27750
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27751
+ * @summary Count billable dashboard users
27752
+ * @param {*} [options] Override http request option.
27753
+ * @throws {RequiredError}
27754
+ */
27755
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
26008
27756
  /**
26009
27757
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26010
27758
  * @summary Create
@@ -26033,6 +27781,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26033
27781
  * @summary Invite
26034
27782
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26035
27783
  * @param {*} [options] Override http request option.
27784
+ * @deprecated
26036
27785
  * @throws {RequiredError}
26037
27786
  */
26038
27787
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -26124,6 +27873,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26124
27873
  * @throws {RequiredError}
26125
27874
  */
26126
27875
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27876
+ /**
27877
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27878
+ * @summary Count billable dashboard users
27879
+ * @param {*} [options] Override http request option.
27880
+ * @throws {RequiredError}
27881
+ */
27882
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
26127
27883
  /**
26128
27884
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26129
27885
  * @summary Create
@@ -26152,6 +27908,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26152
27908
  * @summary Invite
26153
27909
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26154
27910
  * @param {*} [options] Override http request option.
27911
+ * @deprecated
26155
27912
  * @throws {RequiredError}
26156
27913
  */
26157
27914
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -26246,6 +28003,14 @@ export declare class UserApi extends BaseAPI {
26246
28003
  * @memberof UserApi
26247
28004
  */
26248
28005
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
28006
+ /**
28007
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
28008
+ * @summary Count billable dashboard users
28009
+ * @param {*} [options] Override http request option.
28010
+ * @throws {RequiredError}
28011
+ * @memberof UserApi
28012
+ */
28013
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
26249
28014
  /**
26250
28015
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26251
28016
  * @summary Create
@@ -26277,6 +28042,7 @@ export declare class UserApi extends BaseAPI {
26277
28042
  * @summary Invite
26278
28043
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26279
28044
  * @param {*} [options] Override http request option.
28045
+ * @deprecated
26280
28046
  * @throws {RequiredError}
26281
28047
  * @memberof UserApi
26282
28048
  */
@@ -26368,6 +28134,14 @@ export declare class UserApi extends BaseAPI {
26368
28134
  * @export
26369
28135
  */
26370
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>;
26371
28145
  /**
26372
28146
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26373
28147
  * @summary Create
@@ -26415,6 +28189,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
26415
28189
  * @export
26416
28190
  */
26417
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>>;
26418
28200
  /**
26419
28201
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26420
28202
  * @summary Create
@@ -26462,6 +28244,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
26462
28244
  * @export
26463
28245
  */
26464
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>;
26465
28255
  /**
26466
28256
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26467
28257
  * @summary Create
@@ -26511,6 +28301,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
26511
28301
  * @extends {BaseAPI}
26512
28302
  */
26513
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>>;
26514
28313
  /**
26515
28314
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26516
28315
  * @summary Create