@takaro/apiclient 0.0.0-dev.a2993e0 → 0.0.0-dev.a453433

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -746,6 +746,88 @@ export interface BoundingBoxSearchInputDTO {
746
746
  */
747
747
  gameserverId: string;
748
748
  }
749
+ /**
750
+ *
751
+ * @export
752
+ * @interface BulkActionFailureDTO
753
+ */
754
+ export interface BulkActionFailureDTO {
755
+ /**
756
+ *
757
+ * @type {string}
758
+ * @memberof BulkActionFailureDTO
759
+ */
760
+ id: string;
761
+ /**
762
+ *
763
+ * @type {string}
764
+ * @memberof BulkActionFailureDTO
765
+ */
766
+ name: string;
767
+ /**
768
+ *
769
+ * @type {string}
770
+ * @memberof BulkActionFailureDTO
771
+ */
772
+ reason: string;
773
+ }
774
+ /**
775
+ *
776
+ * @export
777
+ * @interface BulkActionResultDTO
778
+ */
779
+ export interface BulkActionResultDTO {
780
+ /**
781
+ *
782
+ * @type {number}
783
+ * @memberof BulkActionResultDTO
784
+ */
785
+ succeeded: number;
786
+ /**
787
+ *
788
+ * @type {Array<BulkActionFailureDTO>}
789
+ * @memberof BulkActionResultDTO
790
+ */
791
+ failed: Array<BulkActionFailureDTO>;
792
+ }
793
+ /**
794
+ *
795
+ * @export
796
+ * @interface BulkActionResultDTOAPI
797
+ */
798
+ export interface BulkActionResultDTOAPI {
799
+ /**
800
+ *
801
+ * @type {BulkActionResultDTO}
802
+ * @memberof BulkActionResultDTOAPI
803
+ */
804
+ data: BulkActionResultDTO;
805
+ /**
806
+ *
807
+ * @type {MetadataOutput}
808
+ * @memberof BulkActionResultDTOAPI
809
+ */
810
+ meta: MetadataOutput;
811
+ }
812
+ /**
813
+ *
814
+ * @export
815
+ * @interface BulkTargetDTO
816
+ */
817
+ export interface BulkTargetDTO {
818
+ /**
819
+ *
820
+ * @type {Array<string>}
821
+ * @memberof BulkTargetDTO
822
+ */
823
+ ids?: Array<string>;
824
+ /**
825
+ *
826
+ * @type {Array<string>}
827
+ * @memberof BulkTargetDTO
828
+ */
829
+ excludedIds?: Array<string>;
830
+ }
749
831
  /**
750
832
  *
751
833
  * @export
@@ -2218,6 +2300,30 @@ export interface DomainCreateInputDTO {
2218
2300
  * @memberof DomainCreateInputDTO
2219
2301
  */
2220
2302
  maxFunctionsInModule?: number;
2303
+ /**
2304
+ *
2305
+ * @type {number}
2306
+ * @memberof DomainCreateInputDTO
2307
+ */
2308
+ maxCustomRoles?: number;
2309
+ /**
2310
+ *
2311
+ * @type {number}
2312
+ * @memberof DomainCreateInputDTO
2313
+ */
2314
+ maxDiscordLinkedRoles?: number;
2315
+ /**
2316
+ *
2317
+ * @type {boolean}
2318
+ * @memberof DomainCreateInputDTO
2319
+ */
2320
+ skipBuiltinSeeding?: boolean;
2321
+ /**
2322
+ *
2323
+ * @type {string}
2324
+ * @memberof DomainCreateInputDTO
2325
+ */
2326
+ serverRegistrationToken?: string;
2221
2327
  }
2222
2328
  export declare const DomainCreateInputDTOStateEnum: {
2223
2329
  readonly Active: "ACTIVE";
@@ -2372,6 +2478,18 @@ export interface DomainOutputDTO {
2372
2478
  * @memberof DomainOutputDTO
2373
2479
  */
2374
2480
  maxFunctionsInModule: number;
2481
+ /**
2482
+ *
2483
+ * @type {number}
2484
+ * @memberof DomainOutputDTO
2485
+ */
2486
+ maxCustomRoles: number;
2487
+ /**
2488
+ *
2489
+ * @type {number}
2490
+ * @memberof DomainOutputDTO
2491
+ */
2492
+ maxDiscordLinkedRoles: number;
2375
2493
  /**
2376
2494
  *
2377
2495
  * @type {string}
@@ -2592,6 +2710,18 @@ export interface DomainUpdateInputDTO {
2592
2710
  * @memberof DomainUpdateInputDTO
2593
2711
  */
2594
2712
  maxFunctionsInModule?: number;
2713
+ /**
2714
+ *
2715
+ * @type {number}
2716
+ * @memberof DomainUpdateInputDTO
2717
+ */
2718
+ maxCustomRoles?: number;
2719
+ /**
2720
+ *
2721
+ * @type {number}
2722
+ * @memberof DomainUpdateInputDTO
2723
+ */
2724
+ maxDiscordLinkedRoles?: number;
2595
2725
  }
2596
2726
  export declare const DomainUpdateInputDTOStateEnum: {
2597
2727
  readonly Active: "ACTIVE";
@@ -3023,19 +3153,19 @@ export interface ErrorOutput {
3023
3153
  * @type {string}
3024
3154
  * @memberof ErrorOutput
3025
3155
  */
3026
- code: string;
3156
+ code?: string;
3027
3157
  /**
3028
3158
  *
3029
3159
  * @type {string}
3030
3160
  * @memberof ErrorOutput
3031
3161
  */
3032
- message: string;
3162
+ message?: string;
3033
3163
  /**
3034
3164
  *
3035
3165
  * @type {string}
3036
3166
  * @memberof ErrorOutput
3037
3167
  */
3038
- details: string;
3168
+ details?: string;
3039
3169
  }
3040
3170
  /**
3041
3171
  *
@@ -3048,7 +3178,7 @@ export interface EventChatMessage {
3048
3178
  * @type {IGamePlayer}
3049
3179
  * @memberof EventChatMessage
3050
3180
  */
3051
- player: IGamePlayer;
3181
+ player?: IGamePlayer;
3052
3182
  /**
3053
3183
  *
3054
3184
  * @type {string}
@@ -3176,6 +3306,7 @@ export declare const EventCreateDTOEventNameEnum: {
3176
3306
  readonly PlayerInventoryChanged: "player-inventory-changed";
3177
3307
  readonly EventRateLimited: "event-rate-limited";
3178
3308
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3309
+ readonly InviteLinkCreated: "invite-link-created";
3179
3310
  readonly PlayerConnected: "player-connected";
3180
3311
  readonly PlayerDisconnected: "player-disconnected";
3181
3312
  readonly ChatMessage: "chat-message";
@@ -3390,6 +3521,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3390
3521
  readonly PlayerInventoryChanged: "player-inventory-changed";
3391
3522
  readonly EventRateLimited: "event-rate-limited";
3392
3523
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3524
+ readonly InviteLinkCreated: "invite-link-created";
3393
3525
  readonly PlayerConnected: "player-connected";
3394
3526
  readonly PlayerDisconnected: "player-disconnected";
3395
3527
  readonly ChatMessage: "chat-message";
@@ -3756,6 +3888,7 @@ export declare const EventOutputDTOEventNameEnum: {
3756
3888
  readonly PlayerInventoryChanged: "player-inventory-changed";
3757
3889
  readonly EventRateLimited: "event-rate-limited";
3758
3890
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3891
+ readonly InviteLinkCreated: "invite-link-created";
3759
3892
  readonly PlayerConnected: "player-connected";
3760
3893
  readonly PlayerDisconnected: "player-disconnected";
3761
3894
  readonly ChatMessage: "chat-message";
@@ -3767,7 +3900,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3767
3900
  * @type EventOutputDTOMeta
3768
3901
  * @export
3769
3902
  */
3770
- export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3903
+ export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
3771
3904
  /**
3772
3905
  *
3773
3906
  * @export
@@ -3944,6 +4077,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3944
4077
  readonly PlayerInventoryChanged: "player-inventory-changed";
3945
4078
  readonly EventRateLimited: "event-rate-limited";
3946
4079
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
4080
+ readonly InviteLinkCreated: "invite-link-created";
3947
4081
  readonly PlayerConnected: "player-connected";
3948
4082
  readonly PlayerDisconnected: "player-disconnected";
3949
4083
  readonly ChatMessage: "chat-message";
@@ -5378,6 +5512,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5378
5512
  readonly PlayerInventoryChanged: "player-inventory-changed";
5379
5513
  readonly EventRateLimited: "event-rate-limited";
5380
5514
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5515
+ readonly InviteLinkCreated: "invite-link-created";
5381
5516
  };
5382
5517
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5383
5518
  /**
@@ -5538,6 +5673,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5538
5673
  readonly PlayerInventoryChanged: "player-inventory-changed";
5539
5674
  readonly EventRateLimited: "event-rate-limited";
5540
5675
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5676
+ readonly InviteLinkCreated: "invite-link-created";
5541
5677
  };
5542
5678
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5543
5679
  /**
@@ -5643,6 +5779,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5643
5779
  readonly PlayerInventoryChanged: "player-inventory-changed";
5644
5780
  readonly EventRateLimited: "event-rate-limited";
5645
5781
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5782
+ readonly InviteLinkCreated: "invite-link-created";
5646
5783
  };
5647
5784
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5648
5785
  /**
@@ -5813,6 +5950,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5813
5950
  readonly PlayerInventoryChanged: "player-inventory-changed";
5814
5951
  readonly EventRateLimited: "event-rate-limited";
5815
5952
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5953
+ readonly InviteLinkCreated: "invite-link-created";
5816
5954
  };
5817
5955
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5818
5956
  /**
@@ -5899,6 +6037,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5899
6037
  readonly PlayerInventoryChanged: "player-inventory-changed";
5900
6038
  readonly EventRateLimited: "event-rate-limited";
5901
6039
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6040
+ readonly InviteLinkCreated: "invite-link-created";
5902
6041
  };
5903
6042
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5904
6043
  /**
@@ -6225,6 +6364,7 @@ export declare const IHookEventTypeEnum: {
6225
6364
  readonly PlayerInventoryChanged: "player-inventory-changed";
6226
6365
  readonly EventRateLimited: "event-rate-limited";
6227
6366
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6367
+ readonly InviteLinkCreated: "invite-link-created";
6228
6368
  };
6229
6369
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6230
6370
  /**
@@ -6648,6 +6788,446 @@ export interface InviteCreateDTO {
6648
6788
  */
6649
6789
  email: string;
6650
6790
  }
6791
+ /**
6792
+ *
6793
+ * @export
6794
+ * @interface InviteLinkCreateInputDTO
6795
+ */
6796
+ export interface InviteLinkCreateInputDTO {
6797
+ /**
6798
+ *
6799
+ * @type {Array<string>}
6800
+ * @memberof InviteLinkCreateInputDTO
6801
+ */
6802
+ roleIds?: Array<string>;
6803
+ /**
6804
+ *
6805
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6806
+ * @memberof InviteLinkCreateInputDTO
6807
+ */
6808
+ expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6809
+ /**
6810
+ *
6811
+ * @type {number}
6812
+ * @memberof InviteLinkCreateInputDTO
6813
+ */
6814
+ maxUses?: number;
6815
+ }
6816
+ /**
6817
+ *
6818
+ * @export
6819
+ * @interface InviteLinkCreateResultDTO
6820
+ */
6821
+ export interface InviteLinkCreateResultDTO {
6822
+ /**
6823
+ *
6824
+ * @type {string}
6825
+ * @memberof InviteLinkCreateResultDTO
6826
+ */
6827
+ inviteUrl: string;
6828
+ /**
6829
+ *
6830
+ * @type {string}
6831
+ * @memberof InviteLinkCreateResultDTO
6832
+ */
6833
+ token: string;
6834
+ /**
6835
+ *
6836
+ * @type {string}
6837
+ * @memberof InviteLinkCreateResultDTO
6838
+ */
6839
+ id: string;
6840
+ /**
6841
+ *
6842
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6843
+ * @memberof InviteLinkCreateResultDTO
6844
+ */
6845
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6846
+ /**
6847
+ *
6848
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6849
+ * @memberof InviteLinkCreateResultDTO
6850
+ */
6851
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6852
+ /**
6853
+ *
6854
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6855
+ * @memberof InviteLinkCreateResultDTO
6856
+ */
6857
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6858
+ /**
6859
+ *
6860
+ * @type {number}
6861
+ * @memberof InviteLinkCreateResultDTO
6862
+ */
6863
+ maxUses?: number;
6864
+ /**
6865
+ *
6866
+ * @type {number}
6867
+ * @memberof InviteLinkCreateResultDTO
6868
+ */
6869
+ uses: number;
6870
+ /**
6871
+ *
6872
+ * @type {number}
6873
+ * @memberof InviteLinkCreateResultDTO
6874
+ */
6875
+ remaining?: number;
6876
+ /**
6877
+ *
6878
+ * @type {string}
6879
+ * @memberof InviteLinkCreateResultDTO
6880
+ */
6881
+ status: InviteLinkCreateResultDTOStatusEnum;
6882
+ /**
6883
+ *
6884
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6885
+ * @memberof InviteLinkCreateResultDTO
6886
+ */
6887
+ revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6888
+ /**
6889
+ *
6890
+ * @type {string}
6891
+ * @memberof InviteLinkCreateResultDTO
6892
+ */
6893
+ createdBy?: string;
6894
+ /**
6895
+ *
6896
+ * @type {Array<InviteLinkRoleDTO>}
6897
+ * @memberof InviteLinkCreateResultDTO
6898
+ */
6899
+ roles: Array<InviteLinkRoleDTO>;
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];
6908
+ /**
6909
+ *
6910
+ * @export
6911
+ * @interface InviteLinkCreateResultDTOAPI
6912
+ */
6913
+ export interface InviteLinkCreateResultDTOAPI {
6914
+ /**
6915
+ *
6916
+ * @type {InviteLinkCreateResultDTO}
6917
+ * @memberof InviteLinkCreateResultDTOAPI
6918
+ */
6919
+ data: InviteLinkCreateResultDTO;
6920
+ /**
6921
+ *
6922
+ * @type {MetadataOutput}
6923
+ * @memberof InviteLinkCreateResultDTOAPI
6924
+ */
6925
+ meta: MetadataOutput;
6926
+ }
6927
+ /**
6928
+ *
6929
+ * @export
6930
+ * @interface InviteLinkOutputArrayDTOAPI
6931
+ */
6932
+ export interface InviteLinkOutputArrayDTOAPI {
6933
+ /**
6934
+ *
6935
+ * @type {Array<InviteLinkOutputDTO>}
6936
+ * @memberof InviteLinkOutputArrayDTOAPI
6937
+ */
6938
+ data: Array<InviteLinkOutputDTO>;
6939
+ /**
6940
+ *
6941
+ * @type {MetadataOutput}
6942
+ * @memberof InviteLinkOutputArrayDTOAPI
6943
+ */
6944
+ meta: MetadataOutput;
6945
+ }
6946
+ /**
6947
+ *
6948
+ * @export
6949
+ * @interface InviteLinkOutputDTO
6950
+ */
6951
+ export interface InviteLinkOutputDTO {
6952
+ /**
6953
+ *
6954
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6955
+ * @memberof InviteLinkOutputDTO
6956
+ */
6957
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6958
+ /**
6959
+ *
6960
+ * @type {number}
6961
+ * @memberof InviteLinkOutputDTO
6962
+ */
6963
+ maxUses?: number;
6964
+ /**
6965
+ *
6966
+ * @type {number}
6967
+ * @memberof InviteLinkOutputDTO
6968
+ */
6969
+ uses: number;
6970
+ /**
6971
+ *
6972
+ * @type {number}
6973
+ * @memberof InviteLinkOutputDTO
6974
+ */
6975
+ remaining?: number;
6976
+ /**
6977
+ *
6978
+ * @type {string}
6979
+ * @memberof InviteLinkOutputDTO
6980
+ */
6981
+ status: InviteLinkOutputDTOStatusEnum;
6982
+ /**
6983
+ *
6984
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6985
+ * @memberof InviteLinkOutputDTO
6986
+ */
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];
6651
7231
  /**
6652
7232
  *
6653
7233
  * @export
@@ -7557,7 +8137,7 @@ export interface MetadataOutput {
7557
8137
  * @type {ErrorOutput}
7558
8138
  * @memberof MetadataOutput
7559
8139
  */
7560
- error: ErrorOutput;
8140
+ error?: ErrorOutput;
7561
8141
  /**
7562
8142
  *
7563
8143
  * @type {number}
@@ -9649,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
9649
10229
  * @type {Array<string>}
9650
10230
  * @memberof PlayerBulkAssignRoleInputDTO
9651
10231
  */
9652
- playerIds: Array<string>;
10232
+ playerIds?: Array<string>;
10233
+ /**
10234
+ *
10235
+ * @type {PlayerSearchInputDTO}
10236
+ * @memberof PlayerBulkAssignRoleInputDTO
10237
+ */
10238
+ query?: PlayerSearchInputDTO;
9653
10239
  /**
9654
10240
  *
9655
10241
  * @type {string}
@@ -9662,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
9662
10248
  * @memberof PlayerBulkAssignRoleInputDTO
9663
10249
  */
9664
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>;
9665
10263
  }
9666
10264
  /**
9667
10265
  *
@@ -9737,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
9737
10335
  * @type {Array<string>}
9738
10336
  * @memberof PlayerBulkDeleteInputDTO
9739
10337
  */
9740
- 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>;
9741
10357
  }
9742
10358
  /**
9743
10359
  *
@@ -10309,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
10309
10925
  * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10310
10926
  */
10311
10927
  playtimeSeconds?: number;
10928
+ /**
10929
+ *
10930
+ * @type {number}
10931
+ * @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
10932
+ */
10933
+ currency?: number;
10312
10934
  /**
10313
10935
  *
10314
10936
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -11230,6 +11852,24 @@ export interface PlayerSearchInputAllowedFilters {
11230
11852
  * @memberof PlayerSearchInputAllowedFilters
11231
11853
  */
11232
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>;
11233
11873
  /**
11234
11874
  *
11235
11875
  * @type {Array<string>}
@@ -11237,6 +11877,11 @@ export interface PlayerSearchInputAllowedFilters {
11237
11877
  */
11238
11878
  id?: Array<string>;
11239
11879
  }
11880
+ export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
11881
+ readonly Global: "global";
11882
+ readonly GameServer: "gameServer";
11883
+ };
11884
+ export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
11240
11885
  /**
11241
11886
  *
11242
11887
  * @export
@@ -11482,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
11482
12127
  * @type {Array<string>}
11483
12128
  * @memberof PogBulkAddCurrencyInputDTO
11484
12129
  */
11485
- playerIds: Array<string>;
12130
+ playerIds?: Array<string>;
12131
+ /**
12132
+ *
12133
+ * @type {PlayerOnGameServerSearchInputDTO}
12134
+ * @memberof PogBulkAddCurrencyInputDTO
12135
+ */
12136
+ query?: PlayerOnGameServerSearchInputDTO;
11486
12137
  /**
11487
12138
  *
11488
12139
  * @type {number}
11489
12140
  * @memberof PogBulkAddCurrencyInputDTO
11490
12141
  */
11491
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>;
11492
12155
  }
11493
12156
  /**
11494
12157
  *
@@ -11783,6 +12446,19 @@ export declare const RecentOrderDTOStatusEnum: {
11783
12446
  readonly Canceled: "CANCELED";
11784
12447
  };
11785
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
+ }
11786
12462
  /**
11787
12463
  *
11788
12464
  * @export
@@ -11794,7 +12470,7 @@ export interface RedirectQs {
11794
12470
  * @type {string}
11795
12471
  * @memberof RedirectQs
11796
12472
  */
11797
- redirect: string;
12473
+ redirect?: string;
11798
12474
  }
11799
12475
  /**
11800
12476
  *
@@ -12589,7 +13265,7 @@ export interface RoleUpdateInputDTO {
12589
13265
  * @type {string}
12590
13266
  * @memberof RoleUpdateInputDTO
12591
13267
  */
12592
- linkedDiscordRoleId?: string;
13268
+ linkedDiscordRoleId?: string | null;
12593
13269
  }
12594
13270
  /**
12595
13271
  *
@@ -13322,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
13322
13998
  * @type {Array<string>}
13323
13999
  * @memberof ShopCategoryBulkAssignDTO
13324
14000
  */
13325
- listingIds: Array<string>;
14001
+ listingIds?: Array<string>;
14002
+ /**
14003
+ *
14004
+ * @type {ShopListingSearchInputDTO}
14005
+ * @memberof ShopCategoryBulkAssignDTO
14006
+ */
14007
+ query?: ShopListingSearchInputDTO;
13326
14008
  /**
13327
14009
  *
13328
14010
  * @type {Array<string>}
@@ -13335,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
13335
14017
  * @memberof ShopCategoryBulkAssignDTO
13336
14018
  */
13337
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>;
13338
14032
  }
13339
14033
  /**
13340
14034
  *
@@ -13783,6 +14477,25 @@ export interface ShopDeadStockItemDTO {
13783
14477
  */
13784
14478
  daysSinceLastSale?: number;
13785
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
+ }
13786
14499
  /**
13787
14500
  *
13788
14501
  * @export
@@ -13808,6 +14521,44 @@ export interface ShopImportOptions {
13808
14521
  */
13809
14522
  gameServerId: string;
13810
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
+ }
13811
14562
  /**
13812
14563
  *
13813
14564
  * @export
@@ -13888,6 +14639,56 @@ export interface ShopKpisDTOAPI {
13888
14639
  */
13889
14640
  meta: MetadataOutput;
13890
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
+ }
13891
14692
  /**
13892
14693
  *
13893
14694
  * @export
@@ -15420,6 +16221,49 @@ export interface TakaroEventHookExecuted {
15420
16221
  */
15421
16222
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15422
16223
  }
16224
+ /**
16225
+ *
16226
+ * @export
16227
+ * @interface TakaroEventInviteLinkCreated
16228
+ */
16229
+ export interface TakaroEventInviteLinkCreated {
16230
+ /**
16231
+ *
16232
+ * @type {string}
16233
+ * @memberof TakaroEventInviteLinkCreated
16234
+ */
16235
+ inviteLinkId: string;
16236
+ /**
16237
+ *
16238
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16239
+ * @memberof TakaroEventInviteLinkCreated
16240
+ */
16241
+ expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16242
+ /**
16243
+ *
16244
+ * @type {number}
16245
+ * @memberof TakaroEventInviteLinkCreated
16246
+ */
16247
+ maxUses: number;
16248
+ /**
16249
+ *
16250
+ * @type {Array<string>}
16251
+ * @memberof TakaroEventInviteLinkCreated
16252
+ */
16253
+ roleIds: Array<string>;
16254
+ /**
16255
+ *
16256
+ * @type {boolean}
16257
+ * @memberof TakaroEventInviteLinkCreated
16258
+ */
16259
+ staffOrigin: boolean;
16260
+ /**
16261
+ *
16262
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
16263
+ * @memberof TakaroEventInviteLinkCreated
16264
+ */
16265
+ timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16266
+ }
15423
16267
  /**
15424
16268
  *
15425
16269
  * @export
@@ -16698,6 +17542,38 @@ export interface UserAssignmentOutputDTO {
16698
17542
  */
16699
17543
  updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
16700
17544
  }
17545
+ /**
17546
+ *
17547
+ * @export
17548
+ * @interface UserCountOutputDTO
17549
+ */
17550
+ export interface UserCountOutputDTO {
17551
+ /**
17552
+ *
17553
+ * @type {number}
17554
+ * @memberof UserCountOutputDTO
17555
+ */
17556
+ count: number;
17557
+ }
17558
+ /**
17559
+ *
17560
+ * @export
17561
+ * @interface UserCountOutputDTOAPI
17562
+ */
17563
+ export interface UserCountOutputDTOAPI {
17564
+ /**
17565
+ *
17566
+ * @type {UserCountOutputDTO}
17567
+ * @memberof UserCountOutputDTOAPI
17568
+ */
17569
+ data: UserCountOutputDTO;
17570
+ /**
17571
+ *
17572
+ * @type {MetadataOutput}
17573
+ * @memberof UserCountOutputDTOAPI
17574
+ */
17575
+ meta: MetadataOutput;
17576
+ }
16701
17577
  /**
16702
17578
  *
16703
17579
  * @export
@@ -16735,6 +17611,37 @@ export interface UserCreateInputDTO {
16735
17611
  */
16736
17612
  isDashboardUser?: boolean;
16737
17613
  }
17614
+ /**
17615
+ *
17616
+ * @export
17617
+ * @interface UserCreateInviteDTO
17618
+ */
17619
+ export interface UserCreateInviteDTO {
17620
+ /**
17621
+ *
17622
+ * @type {string}
17623
+ * @memberof UserCreateInviteDTO
17624
+ */
17625
+ name: string;
17626
+ /**
17627
+ *
17628
+ * @type {string}
17629
+ * @memberof UserCreateInviteDTO
17630
+ */
17631
+ email: string;
17632
+ /**
17633
+ *
17634
+ * @type {string}
17635
+ * @memberof UserCreateInviteDTO
17636
+ */
17637
+ idpId?: string;
17638
+ /**
17639
+ *
17640
+ * @type {boolean}
17641
+ * @memberof UserCreateInviteDTO
17642
+ */
17643
+ isDashboardUser?: boolean;
17644
+ }
16738
17645
  /**
16739
17646
  *
16740
17647
  * @export
@@ -16838,13 +17745,25 @@ export interface UserOutputDTO {
16838
17745
  * @type {PlayerOutputWithRolesDTO}
16839
17746
  * @memberof UserOutputDTO
16840
17747
  */
16841
- player: PlayerOutputWithRolesDTO;
17748
+ player?: PlayerOutputWithRolesDTO;
17749
+ /**
17750
+ *
17751
+ * @type {boolean}
17752
+ * @memberof UserOutputDTO
17753
+ */
17754
+ isDashboardUser: boolean;
16842
17755
  /**
16843
17756
  *
16844
17757
  * @type {boolean}
16845
17758
  * @memberof UserOutputDTO
16846
17759
  */
16847
- isDashboardUser: boolean;
17760
+ isSupportAccount: boolean;
17761
+ /**
17762
+ *
17763
+ * @type {string}
17764
+ * @memberof UserOutputDTO
17765
+ */
17766
+ inviteLinkId?: string;
16848
17767
  /**
16849
17768
  *
16850
17769
  * @type {string}
@@ -16954,13 +17873,44 @@ export interface UserOutputWithRolesDTO {
16954
17873
  * @type {PlayerOutputWithRolesDTO}
16955
17874
  * @memberof UserOutputWithRolesDTO
16956
17875
  */
16957
- player: PlayerOutputWithRolesDTO;
17876
+ player?: PlayerOutputWithRolesDTO;
16958
17877
  /**
16959
17878
  *
16960
17879
  * @type {boolean}
16961
17880
  * @memberof UserOutputWithRolesDTO
16962
17881
  */
16963
17882
  isDashboardUser: boolean;
17883
+ /**
17884
+ *
17885
+ * @type {boolean}
17886
+ * @memberof UserOutputWithRolesDTO
17887
+ */
17888
+ isSupportAccount: boolean;
17889
+ /**
17890
+ *
17891
+ * @type {string}
17892
+ * @memberof UserOutputWithRolesDTO
17893
+ */
17894
+ inviteLinkId?: string;
17895
+ }
17896
+ /**
17897
+ *
17898
+ * @export
17899
+ * @interface UserOutputWithRolesDTOAPI
17900
+ */
17901
+ export interface UserOutputWithRolesDTOAPI {
17902
+ /**
17903
+ *
17904
+ * @type {UserOutputWithRolesDTO}
17905
+ * @memberof UserOutputWithRolesDTOAPI
17906
+ */
17907
+ data: UserOutputWithRolesDTO;
17908
+ /**
17909
+ *
17910
+ * @type {MetadataOutput}
17911
+ * @memberof UserOutputWithRolesDTOAPI
17912
+ */
17913
+ meta: MetadataOutput;
16964
17914
  }
16965
17915
  /**
16966
17916
  *
@@ -17170,6 +18120,31 @@ export interface UserUpdateDTO {
17170
18120
  */
17171
18121
  isDashboardUser?: boolean;
17172
18122
  }
18123
+ /**
18124
+ *
18125
+ * @export
18126
+ * @interface VariableBulkDeleteInputDTO
18127
+ */
18128
+ export interface VariableBulkDeleteInputDTO {
18129
+ /**
18130
+ *
18131
+ * @type {VariableSearchInputDTO}
18132
+ * @memberof VariableBulkDeleteInputDTO
18133
+ */
18134
+ query?: VariableSearchInputDTO;
18135
+ /**
18136
+ *
18137
+ * @type {Array<string>}
18138
+ * @memberof VariableBulkDeleteInputDTO
18139
+ */
18140
+ ids?: Array<string>;
18141
+ /**
18142
+ *
18143
+ * @type {Array<string>}
18144
+ * @memberof VariableBulkDeleteInputDTO
18145
+ */
18146
+ excludedIds?: Array<string>;
18147
+ }
17173
18148
  /**
17174
18149
  *
17175
18150
  * @export
@@ -17379,6 +18354,12 @@ export interface VariableSearchInputAllowedSearch {
17379
18354
  * @memberof VariableSearchInputAllowedSearch
17380
18355
  */
17381
18356
  key?: Array<string>;
18357
+ /**
18358
+ *
18359
+ * @type {Array<string>}
18360
+ * @memberof VariableSearchInputAllowedSearch
18361
+ */
18362
+ value?: Array<string>;
17382
18363
  }
17383
18364
  /**
17384
18365
  *
@@ -17630,7 +18611,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17630
18611
  */
17631
18612
  analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17632
18613
  /**
17633
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18614
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
17634
18615
  * @summary Get module health scores
17635
18616
  * @param {string} [startDate]
17636
18617
  * @param {string} [endDate]
@@ -17863,7 +18844,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
17863
18844
  analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
17864
18845
  /**
17865
18846
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
17866
- * @summary Get top modules by event volume
18847
+ * @summary Get top modules by execution volume
17867
18848
  * @param {string} [startDate]
17868
18849
  * @param {string} [endDate]
17869
18850
  * @param {string} [gameServerId]
@@ -18019,7 +19000,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
18019
19000
  */
18020
19001
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
18021
19002
  /**
18022
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19003
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18023
19004
  * @summary Get module health scores
18024
19005
  * @param {string} [startDate]
18025
19006
  * @param {string} [endDate]
@@ -18252,7 +19233,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
18252
19233
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
18253
19234
  /**
18254
19235
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18255
- * @summary Get top modules by event volume
19236
+ * @summary Get top modules by execution volume
18256
19237
  * @param {string} [startDate]
18257
19238
  * @param {string} [endDate]
18258
19239
  * @param {string} [gameServerId]
@@ -18408,7 +19389,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18408
19389
  */
18409
19390
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
18410
19391
  /**
18411
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19392
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18412
19393
  * @summary Get module health scores
18413
19394
  * @param {string} [startDate]
18414
19395
  * @param {string} [endDate]
@@ -18641,7 +19622,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
18641
19622
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
18642
19623
  /**
18643
19624
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
18644
- * @summary Get top modules by event volume
19625
+ * @summary Get top modules by execution volume
18645
19626
  * @param {string} [startDate]
18646
19627
  * @param {string} [endDate]
18647
19628
  * @param {string} [gameServerId]
@@ -18811,7 +19792,7 @@ export declare class AnalyticsApi extends BaseAPI {
18811
19792
  */
18812
19793
  analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
18813
19794
  /**
18814
- * Normalized 0-1 scores across five dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
19795
+ * Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
18815
19796
  * @summary Get module health scores
18816
19797
  * @param {string} [startDate]
18817
19798
  * @param {string} [endDate]
@@ -19065,7 +20046,7 @@ export declare class AnalyticsApi extends BaseAPI {
19065
20046
  analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
19066
20047
  /**
19067
20048
  * Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
19068
- * @summary Get top modules by event volume
20049
+ * @summary Get top modules by execution volume
19069
20050
  * @param {string} [startDate]
19070
20051
  * @param {string} [endDate]
19071
20052
  * @param {string} [gameServerId]
@@ -20542,6 +21523,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
20542
21523
  * @throws {RequiredError}
20543
21524
  */
20544
21525
  domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21526
+ /**
21527
+ * 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`
21528
+ * @summary Create staff-recovery invite link for a domain
21529
+ * @param {string} id
21530
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21531
+ * @param {*} [options] Override http request option.
21532
+ * @throws {RequiredError}
21533
+ */
21534
+ domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
20545
21535
  /**
20546
21536
  * <br> OperationId: `DomainControllerGetOne`
20547
21537
  * @summary Get one
@@ -20606,6 +21596,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
20606
21596
  * @throws {RequiredError}
20607
21597
  */
20608
21598
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
21599
+ /**
21600
+ * 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`
21601
+ * @summary Create staff-recovery invite link for a domain
21602
+ * @param {string} id
21603
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21604
+ * @param {*} [options] Override http request option.
21605
+ * @throws {RequiredError}
21606
+ */
21607
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
20609
21608
  /**
20610
21609
  * <br> OperationId: `DomainControllerGetOne`
20611
21610
  * @summary Get one
@@ -20670,6 +21669,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
20670
21669
  * @throws {RequiredError}
20671
21670
  */
20672
21671
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
21672
+ /**
21673
+ * 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`
21674
+ * @summary Create staff-recovery invite link for a domain
21675
+ * @param {string} id
21676
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21677
+ * @param {*} [options] Override http request option.
21678
+ * @throws {RequiredError}
21679
+ */
21680
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
20673
21681
  /**
20674
21682
  * <br> OperationId: `DomainControllerGetOne`
20675
21683
  * @summary Get one
@@ -20737,6 +21745,16 @@ export declare class DomainApi extends BaseAPI {
20737
21745
  * @memberof DomainApi
20738
21746
  */
20739
21747
  domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
21748
+ /**
21749
+ * 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`
21750
+ * @summary Create staff-recovery invite link for a domain
21751
+ * @param {string} id
21752
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
21753
+ * @param {*} [options] Override http request option.
21754
+ * @throws {RequiredError}
21755
+ * @memberof DomainApi
21756
+ */
21757
+ domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
20740
21758
  /**
20741
21759
  * <br> OperationId: `DomainControllerGetOne`
20742
21760
  * @summary Get one
@@ -21151,11 +22169,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
21151
22169
  /**
21152
22170
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21153
22171
  * @summary Auth discord
21154
- * @param {string} redirect
22172
+ * @param {string} [redirect]
21155
22173
  * @param {*} [options] Override http request option.
21156
22174
  * @throws {RequiredError}
21157
22175
  */
21158
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22176
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21159
22177
  /**
21160
22178
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21161
22179
  * @summary Auth discord return
@@ -21172,11 +22190,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
21172
22190
  /**
21173
22191
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21174
22192
  * @summary Auth discord
21175
- * @param {string} redirect
22193
+ * @param {string} [redirect]
21176
22194
  * @param {*} [options] Override http request option.
21177
22195
  * @throws {RequiredError}
21178
22196
  */
21179
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
22197
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21180
22198
  /**
21181
22199
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21182
22200
  * @summary Auth discord return
@@ -21193,11 +22211,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
21193
22211
  /**
21194
22212
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21195
22213
  * @summary Auth discord
21196
- * @param {string} redirect
22214
+ * @param {string} [redirect]
21197
22215
  * @param {*} [options] Override http request option.
21198
22216
  * @throws {RequiredError}
21199
22217
  */
21200
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
22218
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21201
22219
  /**
21202
22220
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21203
22221
  * @summary Auth discord return
@@ -21216,12 +22234,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21216
22234
  /**
21217
22235
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21218
22236
  * @summary Auth discord
21219
- * @param {string} redirect
22237
+ * @param {string} [redirect]
21220
22238
  * @param {*} [options] Override http request option.
21221
22239
  * @throws {RequiredError}
21222
22240
  * @memberof ExternalAuthApi
21223
22241
  */
21224
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
22242
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21225
22243
  /**
21226
22244
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21227
22245
  * @summary Auth discord return
@@ -22655,6 +23673,197 @@ export declare class HookApi extends BaseAPI {
22655
23673
  */
22656
23674
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
22657
23675
  }
23676
+ /**
23677
+ * InviteLinkApi - axios parameter creator
23678
+ * @export
23679
+ */
23680
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23681
+ /**
23682
+ * 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`
23683
+ * @summary Create invite link
23684
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23685
+ * @param {*} [options] Override http request option.
23686
+ * @throws {RequiredError}
23687
+ */
23688
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23689
+ /**
23690
+ * <br> OperationId: `InviteLinkControllerPreview`
23691
+ * @summary Preview
23692
+ * @param {string} token
23693
+ * @param {*} [options] Override http request option.
23694
+ * @throws {RequiredError}
23695
+ */
23696
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23697
+ /**
23698
+ * <br> OperationId: `InviteLinkControllerRedeem`
23699
+ * @summary Redeem
23700
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23701
+ * @param {*} [options] Override http request option.
23702
+ * @throws {RequiredError}
23703
+ */
23704
+ inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23705
+ /**
23706
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23707
+ * @summary Revoke
23708
+ * @param {string} id
23709
+ * @param {*} [options] Override http request option.
23710
+ * @throws {RequiredError}
23711
+ */
23712
+ inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23713
+ /**
23714
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23715
+ * @summary Search
23716
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23717
+ * @param {*} [options] Override http request option.
23718
+ * @throws {RequiredError}
23719
+ */
23720
+ inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23721
+ };
23722
+ /**
23723
+ * InviteLinkApi - functional programming interface
23724
+ * @export
23725
+ */
23726
+ export declare const InviteLinkApiFp: (configuration?: Configuration) => {
23727
+ /**
23728
+ * 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`
23729
+ * @summary Create invite link
23730
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23731
+ * @param {*} [options] Override http request option.
23732
+ * @throws {RequiredError}
23733
+ */
23734
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
23735
+ /**
23736
+ * <br> OperationId: `InviteLinkControllerPreview`
23737
+ * @summary Preview
23738
+ * @param {string} token
23739
+ * @param {*} [options] Override http request option.
23740
+ * @throws {RequiredError}
23741
+ */
23742
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
23743
+ /**
23744
+ * <br> OperationId: `InviteLinkControllerRedeem`
23745
+ * @summary Redeem
23746
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23747
+ * @param {*} [options] Override http request option.
23748
+ * @throws {RequiredError}
23749
+ */
23750
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
23751
+ /**
23752
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23753
+ * @summary Revoke
23754
+ * @param {string} id
23755
+ * @param {*} [options] Override http request option.
23756
+ * @throws {RequiredError}
23757
+ */
23758
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23759
+ /**
23760
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23761
+ * @summary Search
23762
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23763
+ * @param {*} [options] Override http request option.
23764
+ * @throws {RequiredError}
23765
+ */
23766
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
23767
+ };
23768
+ /**
23769
+ * InviteLinkApi - factory interface
23770
+ * @export
23771
+ */
23772
+ export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
23773
+ /**
23774
+ * 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`
23775
+ * @summary Create invite link
23776
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23777
+ * @param {*} [options] Override http request option.
23778
+ * @throws {RequiredError}
23779
+ */
23780
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
23781
+ /**
23782
+ * <br> OperationId: `InviteLinkControllerPreview`
23783
+ * @summary Preview
23784
+ * @param {string} token
23785
+ * @param {*} [options] Override http request option.
23786
+ * @throws {RequiredError}
23787
+ */
23788
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
23789
+ /**
23790
+ * <br> OperationId: `InviteLinkControllerRedeem`
23791
+ * @summary Redeem
23792
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23793
+ * @param {*} [options] Override http request option.
23794
+ * @throws {RequiredError}
23795
+ */
23796
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
23797
+ /**
23798
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23799
+ * @summary Revoke
23800
+ * @param {string} id
23801
+ * @param {*} [options] Override http request option.
23802
+ * @throws {RequiredError}
23803
+ */
23804
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23805
+ /**
23806
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23807
+ * @summary Search
23808
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23809
+ * @param {*} [options] Override http request option.
23810
+ * @throws {RequiredError}
23811
+ */
23812
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
23813
+ };
23814
+ /**
23815
+ * InviteLinkApi - object-oriented interface
23816
+ * @export
23817
+ * @class InviteLinkApi
23818
+ * @extends {BaseAPI}
23819
+ */
23820
+ export declare class InviteLinkApi extends BaseAPI {
23821
+ /**
23822
+ * 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`
23823
+ * @summary Create invite link
23824
+ * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
23825
+ * @param {*} [options] Override http request option.
23826
+ * @throws {RequiredError}
23827
+ * @memberof InviteLinkApi
23828
+ */
23829
+ inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
23830
+ /**
23831
+ * <br> OperationId: `InviteLinkControllerPreview`
23832
+ * @summary Preview
23833
+ * @param {string} token
23834
+ * @param {*} [options] Override http request option.
23835
+ * @throws {RequiredError}
23836
+ * @memberof InviteLinkApi
23837
+ */
23838
+ inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
23839
+ /**
23840
+ * <br> OperationId: `InviteLinkControllerRedeem`
23841
+ * @summary Redeem
23842
+ * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
23843
+ * @param {*} [options] Override http request option.
23844
+ * @throws {RequiredError}
23845
+ * @memberof InviteLinkApi
23846
+ */
23847
+ inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
23848
+ /**
23849
+ * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
23850
+ * @summary Revoke
23851
+ * @param {string} id
23852
+ * @param {*} [options] Override http request option.
23853
+ * @throws {RequiredError}
23854
+ * @memberof InviteLinkApi
23855
+ */
23856
+ inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23857
+ /**
23858
+ * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
23859
+ * @summary Search
23860
+ * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
23861
+ * @param {*} [options] Override http request option.
23862
+ * @throws {RequiredError}
23863
+ * @memberof InviteLinkApi
23864
+ */
23865
+ inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
23866
+ }
22658
23867
  /**
22659
23868
  * ItemApi - axios parameter creator
22660
23869
  * @export
@@ -22759,6 +23968,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
22759
23968
  * @throws {RequiredError}
22760
23969
  */
22761
23970
  metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23971
+ /**
23972
+ * <br> OperationId: `MetaGetLiveness`
23973
+ * @summary Get liveness
23974
+ * @param {*} [options] Override http request option.
23975
+ * @throws {RequiredError}
23976
+ */
23977
+ metaGetLiveness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
22762
23978
  /**
22763
23979
  * <br> OperationId: `MetaGetMetrics`
22764
23980
  * @summary Get metrics
@@ -22807,6 +24023,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
22807
24023
  * @throws {RequiredError}
22808
24024
  */
22809
24025
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
24026
+ /**
24027
+ * <br> OperationId: `MetaGetLiveness`
24028
+ * @summary Get liveness
24029
+ * @param {*} [options] Override http request option.
24030
+ * @throws {RequiredError}
24031
+ */
24032
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
22810
24033
  /**
22811
24034
  * <br> OperationId: `MetaGetMetrics`
22812
24035
  * @summary Get metrics
@@ -22855,6 +24078,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
22855
24078
  * @throws {RequiredError}
22856
24079
  */
22857
24080
  metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
24081
+ /**
24082
+ * <br> OperationId: `MetaGetLiveness`
24083
+ * @summary Get liveness
24084
+ * @param {*} [options] Override http request option.
24085
+ * @throws {RequiredError}
24086
+ */
24087
+ metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
22858
24088
  /**
22859
24089
  * <br> OperationId: `MetaGetMetrics`
22860
24090
  * @summary Get metrics
@@ -22906,6 +24136,14 @@ export declare class MetaApi extends BaseAPI {
22906
24136
  * @memberof MetaApi
22907
24137
  */
22908
24138
  metaGetHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
24139
+ /**
24140
+ * <br> OperationId: `MetaGetLiveness`
24141
+ * @summary Get liveness
24142
+ * @param {*} [options] Override http request option.
24143
+ * @throws {RequiredError}
24144
+ * @memberof MetaApi
24145
+ */
24146
+ metaGetLiveness(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
22909
24147
  /**
22910
24148
  * <br> OperationId: `MetaGetMetrics`
22911
24149
  * @summary Get metrics
@@ -23508,7 +24746,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23508
24746
  */
23509
24747
  playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23510
24748
  /**
23511
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24749
+ * 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`
23512
24750
  * @summary Bulk assign role
23513
24751
  * @param {string} roleId
23514
24752
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -23517,7 +24755,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
23517
24755
  */
23518
24756
  playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23519
24757
  /**
23520
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24758
+ * 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`
23521
24759
  * @summary Bulk delete
23522
24760
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23523
24761
  * @param {*} [options] Override http request option.
@@ -23623,7 +24861,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23623
24861
  */
23624
24862
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
23625
24863
  /**
23626
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24864
+ * 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`
23627
24865
  * @summary Bulk assign role
23628
24866
  * @param {string} roleId
23629
24867
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -23632,7 +24870,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
23632
24870
  */
23633
24871
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
23634
24872
  /**
23635
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24873
+ * 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`
23636
24874
  * @summary Bulk delete
23637
24875
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23638
24876
  * @param {*} [options] Override http request option.
@@ -23738,7 +24976,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23738
24976
  */
23739
24977
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
23740
24978
  /**
23741
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
24979
+ * 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`
23742
24980
  * @summary Bulk assign role
23743
24981
  * @param {string} roleId
23744
24982
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -23747,7 +24985,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
23747
24985
  */
23748
24986
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
23749
24987
  /**
23750
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
24988
+ * 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`
23751
24989
  * @summary Bulk delete
23752
24990
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23753
24991
  * @param {*} [options] Override http request option.
@@ -23861,7 +25099,7 @@ export declare class PlayerApi extends BaseAPI {
23861
25099
  */
23862
25100
  playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
23863
25101
  /**
23864
- * Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
25102
+ * 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`
23865
25103
  * @summary Bulk assign role
23866
25104
  * @param {string} roleId
23867
25105
  * @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
@@ -23871,7 +25109,7 @@ export declare class PlayerApi extends BaseAPI {
23871
25109
  */
23872
25110
  playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
23873
25111
  /**
23874
- * Bulk delete players by their IDs. Deletes Player records which cascades to POG records. Required permissions: `MANAGE_PLAYERS`<br> OperationId: `PlayerControllerBulkDelete`
25112
+ * 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`
23875
25113
  * @summary Bulk delete
23876
25114
  * @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
23877
25115
  * @param {*} [options] Override http request option.
@@ -23942,7 +25180,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
23942
25180
  */
23943
25181
  playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23944
25182
  /**
23945
- * 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`
25183
+ * 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`
23946
25184
  * @summary Bulk add currency
23947
25185
  * @param {string} gameServerId
23948
25186
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -24033,7 +25271,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
24033
25271
  */
24034
25272
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
24035
25273
  /**
24036
- * 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`
25274
+ * 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`
24037
25275
  * @summary Bulk add currency
24038
25276
  * @param {string} gameServerId
24039
25277
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -24124,7 +25362,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
24124
25362
  */
24125
25363
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
24126
25364
  /**
24127
- * 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`
25365
+ * 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`
24128
25366
  * @summary Bulk add currency
24129
25367
  * @param {string} gameServerId
24130
25368
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -24218,7 +25456,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
24218
25456
  */
24219
25457
  playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
24220
25458
  /**
24221
- * 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`
25459
+ * 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`
24222
25460
  * @summary Bulk add currency
24223
25461
  * @param {string} gameServerId
24224
25462
  * @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
@@ -25182,7 +26420,7 @@ export declare class ShopActionApi extends BaseAPI {
25182
26420
  */
25183
26421
  export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
25184
26422
  /**
25185
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26423
+ * 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`
25186
26424
  * @summary Bulk assign
25187
26425
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25188
26426
  * @param {*} [options] Override http request option.
@@ -25255,7 +26493,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
25255
26493
  */
25256
26494
  export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25257
26495
  /**
25258
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26496
+ * 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`
25259
26497
  * @summary Bulk assign
25260
26498
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25261
26499
  * @param {*} [options] Override http request option.
@@ -25328,7 +26566,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
25328
26566
  */
25329
26567
  export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
25330
26568
  /**
25331
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26569
+ * 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`
25332
26570
  * @summary Bulk assign
25333
26571
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25334
26572
  * @param {*} [options] Override http request option.
@@ -25403,7 +26641,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
25403
26641
  */
25404
26642
  export declare class ShopCategoryApi extends BaseAPI {
25405
26643
  /**
25406
- * Bulk assign categories to multiple shop listings Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopCategoryControllerBulkAssign`
26644
+ * 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`
25407
26645
  * @summary Bulk assign
25408
26646
  * @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
25409
26647
  * @param {*} [options] Override http request option.
@@ -25483,6 +26721,14 @@ export declare class ShopCategoryApi extends BaseAPI {
25483
26721
  * @export
25484
26722
  */
25485
26723
  export declare const ShopListingApiAxiosParamCreator: (configuration?: Configuration) => {
26724
+ /**
26725
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26726
+ * @summary Bulk
26727
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26728
+ * @param {*} [options] Override http request option.
26729
+ * @throws {RequiredError}
26730
+ */
26731
+ shopListingControllerBulk: (shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
25486
26732
  /**
25487
26733
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25488
26734
  * @summary Create
@@ -25537,6 +26783,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
25537
26783
  * @export
25538
26784
  */
25539
26785
  export declare const ShopListingApiFp: (configuration?: Configuration) => {
26786
+ /**
26787
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26788
+ * @summary Bulk
26789
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26790
+ * @param {*} [options] Override http request option.
26791
+ * @throws {RequiredError}
26792
+ */
26793
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
25540
26794
  /**
25541
26795
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25542
26796
  * @summary Create
@@ -25567,7 +26821,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25567
26821
  * @param {*} [options] Override http request option.
25568
26822
  * @throws {RequiredError}
25569
26823
  */
25570
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
26824
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
25571
26825
  /**
25572
26826
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25573
26827
  * @summary Search
@@ -25591,6 +26845,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
25591
26845
  * @export
25592
26846
  */
25593
26847
  export declare const ShopListingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
26848
+ /**
26849
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26850
+ * @summary Bulk
26851
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26852
+ * @param {*} [options] Override http request option.
26853
+ * @throws {RequiredError}
26854
+ */
26855
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
25594
26856
  /**
25595
26857
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25596
26858
  * @summary Create
@@ -25621,7 +26883,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25621
26883
  * @param {*} [options] Override http request option.
25622
26884
  * @throws {RequiredError}
25623
26885
  */
25624
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
26886
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
25625
26887
  /**
25626
26888
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25627
26889
  * @summary Search
@@ -25647,6 +26909,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
25647
26909
  * @extends {BaseAPI}
25648
26910
  */
25649
26911
  export declare class ShopListingApi extends BaseAPI {
26912
+ /**
26913
+ * Bulk delete/publish/unpublish shop listings, targeted by ids or by a search query. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerBulk`
26914
+ * @summary Bulk
26915
+ * @param {ShopListingBulkInputDTO} [shopListingBulkInputDTO] ShopListingBulkInputDTO
26916
+ * @param {*} [options] Override http request option.
26917
+ * @throws {RequiredError}
26918
+ * @memberof ShopListingApi
26919
+ */
26920
+ shopListingControllerBulk(shopListingBulkInputDTO?: ShopListingBulkInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
25650
26921
  /**
25651
26922
  * Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
25652
26923
  * @summary Create
@@ -25681,7 +26952,7 @@ export declare class ShopListingApi extends BaseAPI {
25681
26952
  * @throws {RequiredError}
25682
26953
  * @memberof ShopListingApi
25683
26954
  */
25684
- shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
26955
+ shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
25685
26956
  /**
25686
26957
  * Search shop listings<br> OperationId: `ShopListingControllerSearch`
25687
26958
  * @summary Search
@@ -26224,6 +27495,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
26224
27495
  * @throws {RequiredError}
26225
27496
  */
26226
27497
  userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27498
+ /**
27499
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27500
+ * @summary Count billable dashboard users
27501
+ * @param {*} [options] Override http request option.
27502
+ * @throws {RequiredError}
27503
+ */
27504
+ userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26227
27505
  /**
26228
27506
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26229
27507
  * @summary Create
@@ -26252,6 +27530,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
26252
27530
  * @summary Invite
26253
27531
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26254
27532
  * @param {*} [options] Override http request option.
27533
+ * @deprecated
26255
27534
  * @throws {RequiredError}
26256
27535
  */
26257
27536
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -26343,6 +27622,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26343
27622
  * @throws {RequiredError}
26344
27623
  */
26345
27624
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27625
+ /**
27626
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27627
+ * @summary Count billable dashboard users
27628
+ * @param {*} [options] Override http request option.
27629
+ * @throws {RequiredError}
27630
+ */
27631
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
26346
27632
  /**
26347
27633
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26348
27634
  * @summary Create
@@ -26371,6 +27657,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
26371
27657
  * @summary Invite
26372
27658
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26373
27659
  * @param {*} [options] Override http request option.
27660
+ * @deprecated
26374
27661
  * @throws {RequiredError}
26375
27662
  */
26376
27663
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -26462,6 +27749,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26462
27749
  * @throws {RequiredError}
26463
27750
  */
26464
27751
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27752
+ /**
27753
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27754
+ * @summary Count billable dashboard users
27755
+ * @param {*} [options] Override http request option.
27756
+ * @throws {RequiredError}
27757
+ */
27758
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
26465
27759
  /**
26466
27760
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26467
27761
  * @summary Create
@@ -26490,6 +27784,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
26490
27784
  * @summary Invite
26491
27785
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26492
27786
  * @param {*} [options] Override http request option.
27787
+ * @deprecated
26493
27788
  * @throws {RequiredError}
26494
27789
  */
26495
27790
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -26584,6 +27879,14 @@ export declare class UserApi extends BaseAPI {
26584
27879
  * @memberof UserApi
26585
27880
  */
26586
27881
  userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27882
+ /**
27883
+ * Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
27884
+ * @summary Count billable dashboard users
27885
+ * @param {*} [options] Override http request option.
27886
+ * @throws {RequiredError}
27887
+ * @memberof UserApi
27888
+ */
27889
+ userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
26587
27890
  /**
26588
27891
  * Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
26589
27892
  * @summary Create
@@ -26615,6 +27918,7 @@ export declare class UserApi extends BaseAPI {
26615
27918
  * @summary Invite
26616
27919
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26617
27920
  * @param {*} [options] Override http request option.
27921
+ * @deprecated
26618
27922
  * @throws {RequiredError}
26619
27923
  * @memberof UserApi
26620
27924
  */
@@ -26706,6 +28010,14 @@ export declare class UserApi extends BaseAPI {
26706
28010
  * @export
26707
28011
  */
26708
28012
  export declare const VariableApiAxiosParamCreator: (configuration?: Configuration) => {
28013
+ /**
28014
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28015
+ * @summary Bulk delete
28016
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28017
+ * @param {*} [options] Override http request option.
28018
+ * @throws {RequiredError}
28019
+ */
28020
+ variableControllerBulkDelete: (variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
26709
28021
  /**
26710
28022
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26711
28023
  * @summary Create
@@ -26753,6 +28065,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
26753
28065
  * @export
26754
28066
  */
26755
28067
  export declare const VariableApiFp: (configuration?: Configuration) => {
28068
+ /**
28069
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28070
+ * @summary Bulk delete
28071
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28072
+ * @param {*} [options] Override http request option.
28073
+ * @throws {RequiredError}
28074
+ */
28075
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<BulkActionResultDTOAPI>>;
26756
28076
  /**
26757
28077
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26758
28078
  * @summary Create
@@ -26800,6 +28120,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
26800
28120
  * @export
26801
28121
  */
26802
28122
  export declare const VariableApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
28123
+ /**
28124
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28125
+ * @summary Bulk delete
28126
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28127
+ * @param {*} [options] Override http request option.
28128
+ * @throws {RequiredError}
28129
+ */
28130
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<BulkActionResultDTOAPI>;
26803
28131
  /**
26804
28132
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26805
28133
  * @summary Create
@@ -26849,6 +28177,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
26849
28177
  * @extends {BaseAPI}
26850
28178
  */
26851
28179
  export declare class VariableApi extends BaseAPI {
28180
+ /**
28181
+ * Bulk delete variables by ids or by a search query. Reports per-item failures. Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerBulkDelete`
28182
+ * @summary Bulk delete
28183
+ * @param {VariableBulkDeleteInputDTO} [variableBulkDeleteInputDTO] VariableBulkDeleteInputDTO
28184
+ * @param {*} [options] Override http request option.
28185
+ * @throws {RequiredError}
28186
+ * @memberof VariableApi
28187
+ */
28188
+ variableControllerBulkDelete(variableBulkDeleteInputDTO?: VariableBulkDeleteInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BulkActionResultDTOAPI, any>>;
26852
28189
  /**
26853
28190
  * Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
26854
28191
  * @summary Create