@takaro/apiclient 0.0.0-dev.99991d4 → 0.0.0-dev.99cff2b
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.
- package/dist/generated/api.d.ts +856 -324
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +4884 -4586
- package/dist/generated/api.js.map +1 -1
- package/dist/lib/adminClient.d.ts +1 -1
- package/dist/lib/adminClient.d.ts.map +1 -1
- package/dist/lib/adminClient.js +2 -1
- package/dist/lib/adminClient.js.map +1 -1
- package/dist/lib/baseClient.d.ts +15 -1
- package/dist/lib/baseClient.d.ts.map +1 -1
- package/dist/lib/baseClient.js +17 -3
- package/dist/lib/baseClient.js.map +1 -1
- package/dist/lib/client.d.ts +1 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +4 -3
- package/dist/lib/client.js.map +1 -1
- package/dist/main.d.ts +1 -1
- package/dist/main.d.ts.map +1 -1
- package/generated.manifest.json +27 -0
- package/openapi.json +28249 -0
- package/package.json +1 -1
- package/src/generated/api.ts +1371 -573
- package/src/lib/__tests__/baseClient.unit.test.ts +17 -0
- package/src/lib/adminClient.ts +5 -3
- package/src/lib/baseClient.ts +22 -4
- package/src/lib/client.ts +5 -4
- package/src/main.ts +1 -1
package/dist/generated/api.d.ts
CHANGED
|
@@ -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
|
|
3156
|
+
code?: string;
|
|
3027
3157
|
/**
|
|
3028
3158
|
*
|
|
3029
3159
|
* @type {string}
|
|
3030
3160
|
* @memberof ErrorOutput
|
|
3031
3161
|
*/
|
|
3032
|
-
message
|
|
3162
|
+
message?: string;
|
|
3033
3163
|
/**
|
|
3034
3164
|
*
|
|
3035
3165
|
* @type {string}
|
|
3036
3166
|
* @memberof ErrorOutput
|
|
3037
3167
|
*/
|
|
3038
|
-
details
|
|
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
|
|
3181
|
+
player?: IGamePlayer;
|
|
3052
3182
|
/**
|
|
3053
3183
|
*
|
|
3054
3184
|
* @type {string}
|
|
@@ -3176,6 +3306,7 @@ export declare const EventCreateDTOEventNameEnum: {
|
|
|
3176
3306
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3177
3307
|
readonly EventRateLimited: "event-rate-limited";
|
|
3178
3308
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3309
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3179
3310
|
readonly PlayerConnected: "player-connected";
|
|
3180
3311
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3181
3312
|
readonly ChatMessage: "chat-message";
|
|
@@ -3390,6 +3521,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
|
|
|
3390
3521
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3391
3522
|
readonly EventRateLimited: "event-rate-limited";
|
|
3392
3523
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3524
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3393
3525
|
readonly PlayerConnected: "player-connected";
|
|
3394
3526
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3395
3527
|
readonly ChatMessage: "chat-message";
|
|
@@ -3756,6 +3888,7 @@ export declare const EventOutputDTOEventNameEnum: {
|
|
|
3756
3888
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3757
3889
|
readonly EventRateLimited: "event-rate-limited";
|
|
3758
3890
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3891
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3759
3892
|
readonly PlayerConnected: "player-connected";
|
|
3760
3893
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3761
3894
|
readonly ChatMessage: "chat-message";
|
|
@@ -3767,7 +3900,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
|
|
|
3767
3900
|
* @type EventOutputDTOMeta
|
|
3768
3901
|
* @export
|
|
3769
3902
|
*/
|
|
3770
|
-
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3903
|
+
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3771
3904
|
/**
|
|
3772
3905
|
*
|
|
3773
3906
|
* @export
|
|
@@ -3944,6 +4077,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
|
|
|
3944
4077
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3945
4078
|
readonly EventRateLimited: "event-rate-limited";
|
|
3946
4079
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
4080
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3947
4081
|
readonly PlayerConnected: "player-connected";
|
|
3948
4082
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3949
4083
|
readonly ChatMessage: "chat-message";
|
|
@@ -5378,6 +5512,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
5378
5512
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5379
5513
|
readonly EventRateLimited: "event-rate-limited";
|
|
5380
5514
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5515
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5381
5516
|
};
|
|
5382
5517
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
5383
5518
|
/**
|
|
@@ -5538,6 +5673,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
5538
5673
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5539
5674
|
readonly EventRateLimited: "event-rate-limited";
|
|
5540
5675
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5676
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5541
5677
|
};
|
|
5542
5678
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
5543
5679
|
/**
|
|
@@ -5643,6 +5779,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
5643
5779
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5644
5780
|
readonly EventRateLimited: "event-rate-limited";
|
|
5645
5781
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5782
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5646
5783
|
};
|
|
5647
5784
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
5648
5785
|
/**
|
|
@@ -5813,6 +5950,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
5813
5950
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5814
5951
|
readonly EventRateLimited: "event-rate-limited";
|
|
5815
5952
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5953
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5816
5954
|
};
|
|
5817
5955
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
5818
5956
|
/**
|
|
@@ -5899,6 +6037,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
5899
6037
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5900
6038
|
readonly EventRateLimited: "event-rate-limited";
|
|
5901
6039
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
6040
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5902
6041
|
};
|
|
5903
6042
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
5904
6043
|
/**
|
|
@@ -6225,6 +6364,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
6225
6364
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
6226
6365
|
readonly EventRateLimited: "event-rate-limited";
|
|
6227
6366
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
6367
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
6228
6368
|
};
|
|
6229
6369
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
6230
6370
|
/**
|
|
@@ -6648,25 +6788,6 @@ export interface InviteCreateDTO {
|
|
|
6648
6788
|
*/
|
|
6649
6789
|
email: string;
|
|
6650
6790
|
}
|
|
6651
|
-
/**
|
|
6652
|
-
*
|
|
6653
|
-
* @export
|
|
6654
|
-
* @interface InviteOutputDTO
|
|
6655
|
-
*/
|
|
6656
|
-
export interface InviteOutputDTO {
|
|
6657
|
-
/**
|
|
6658
|
-
*
|
|
6659
|
-
* @type {string}
|
|
6660
|
-
* @memberof InviteOutputDTO
|
|
6661
|
-
*/
|
|
6662
|
-
botInvite: string;
|
|
6663
|
-
/**
|
|
6664
|
-
*
|
|
6665
|
-
* @type {string}
|
|
6666
|
-
* @memberof InviteOutputDTO
|
|
6667
|
-
*/
|
|
6668
|
-
devServer: string;
|
|
6669
|
-
}
|
|
6670
6791
|
/**
|
|
6671
6792
|
*
|
|
6672
6793
|
* @export
|
|
@@ -6806,27 +6927,28 @@ export interface InviteLinkCreateResultDTOAPI {
|
|
|
6806
6927
|
/**
|
|
6807
6928
|
*
|
|
6808
6929
|
* @export
|
|
6809
|
-
* @interface
|
|
6930
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6810
6931
|
*/
|
|
6811
|
-
export interface
|
|
6812
|
-
/**
|
|
6813
|
-
*
|
|
6814
|
-
* @type {string}
|
|
6815
|
-
* @memberof InviteLinkOutputDTO
|
|
6816
|
-
*/
|
|
6817
|
-
id: string;
|
|
6932
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6818
6933
|
/**
|
|
6819
6934
|
*
|
|
6820
|
-
* @type {
|
|
6821
|
-
* @memberof
|
|
6935
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6936
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6822
6937
|
*/
|
|
6823
|
-
|
|
6938
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6824
6939
|
/**
|
|
6825
6940
|
*
|
|
6826
|
-
* @type {
|
|
6827
|
-
* @memberof
|
|
6941
|
+
* @type {MetadataOutput}
|
|
6942
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6828
6943
|
*/
|
|
6829
|
-
|
|
6944
|
+
meta: MetadataOutput;
|
|
6945
|
+
}
|
|
6946
|
+
/**
|
|
6947
|
+
*
|
|
6948
|
+
* @export
|
|
6949
|
+
* @interface InviteLinkOutputDTO
|
|
6950
|
+
*/
|
|
6951
|
+
export interface InviteLinkOutputDTO {
|
|
6830
6952
|
/**
|
|
6831
6953
|
*
|
|
6832
6954
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -6875,6 +6997,24 @@ export interface InviteLinkOutputDTO {
|
|
|
6875
6997
|
* @memberof InviteLinkOutputDTO
|
|
6876
6998
|
*/
|
|
6877
6999
|
roles: Array<InviteLinkRoleDTO>;
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {string}
|
|
7003
|
+
* @memberof InviteLinkOutputDTO
|
|
7004
|
+
*/
|
|
7005
|
+
id: string;
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7009
|
+
* @memberof InviteLinkOutputDTO
|
|
7010
|
+
*/
|
|
7011
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7012
|
+
/**
|
|
7013
|
+
*
|
|
7014
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7015
|
+
* @memberof InviteLinkOutputDTO
|
|
7016
|
+
*/
|
|
7017
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6878
7018
|
}
|
|
6879
7019
|
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
6880
7020
|
readonly Active: "ACTIVE";
|
|
@@ -6902,25 +7042,6 @@ export interface InviteLinkOutputDTOAPI {
|
|
|
6902
7042
|
*/
|
|
6903
7043
|
meta: MetadataOutput;
|
|
6904
7044
|
}
|
|
6905
|
-
/**
|
|
6906
|
-
*
|
|
6907
|
-
* @export
|
|
6908
|
-
* @interface InviteLinkOutputArrayDTOAPI
|
|
6909
|
-
*/
|
|
6910
|
-
export interface InviteLinkOutputArrayDTOAPI {
|
|
6911
|
-
/**
|
|
6912
|
-
*
|
|
6913
|
-
* @type {Array<InviteLinkOutputDTO>}
|
|
6914
|
-
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6915
|
-
*/
|
|
6916
|
-
data: Array<InviteLinkOutputDTO>;
|
|
6917
|
-
/**
|
|
6918
|
-
*
|
|
6919
|
-
* @type {MetadataOutput}
|
|
6920
|
-
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6921
|
-
*/
|
|
6922
|
-
meta: MetadataOutput;
|
|
6923
|
-
}
|
|
6924
7045
|
/**
|
|
6925
7046
|
*
|
|
6926
7047
|
* @export
|
|
@@ -7110,15 +7231,21 @@ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearch
|
|
|
7110
7231
|
/**
|
|
7111
7232
|
*
|
|
7112
7233
|
* @export
|
|
7113
|
-
* @interface
|
|
7234
|
+
* @interface InviteOutputDTO
|
|
7114
7235
|
*/
|
|
7115
|
-
export interface
|
|
7236
|
+
export interface InviteOutputDTO {
|
|
7116
7237
|
/**
|
|
7117
7238
|
*
|
|
7118
7239
|
* @type {string}
|
|
7119
|
-
* @memberof
|
|
7240
|
+
* @memberof InviteOutputDTO
|
|
7120
7241
|
*/
|
|
7121
|
-
|
|
7242
|
+
botInvite: string;
|
|
7243
|
+
/**
|
|
7244
|
+
*
|
|
7245
|
+
* @type {string}
|
|
7246
|
+
* @memberof InviteOutputDTO
|
|
7247
|
+
*/
|
|
7248
|
+
devServer: string;
|
|
7122
7249
|
}
|
|
7123
7250
|
/**
|
|
7124
7251
|
*
|
|
@@ -8010,7 +8137,7 @@ export interface MetadataOutput {
|
|
|
8010
8137
|
* @type {ErrorOutput}
|
|
8011
8138
|
* @memberof MetadataOutput
|
|
8012
8139
|
*/
|
|
8013
|
-
error
|
|
8140
|
+
error?: ErrorOutput;
|
|
8014
8141
|
/**
|
|
8015
8142
|
*
|
|
8016
8143
|
* @type {number}
|
|
@@ -10102,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
10102
10229
|
* @type {Array<string>}
|
|
10103
10230
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10104
10231
|
*/
|
|
10105
|
-
playerIds
|
|
10232
|
+
playerIds?: Array<string>;
|
|
10233
|
+
/**
|
|
10234
|
+
*
|
|
10235
|
+
* @type {PlayerSearchInputDTO}
|
|
10236
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10237
|
+
*/
|
|
10238
|
+
query?: PlayerSearchInputDTO;
|
|
10106
10239
|
/**
|
|
10107
10240
|
*
|
|
10108
10241
|
* @type {string}
|
|
@@ -10115,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
10115
10248
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10116
10249
|
*/
|
|
10117
10250
|
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
10251
|
+
/**
|
|
10252
|
+
*
|
|
10253
|
+
* @type {Array<string>}
|
|
10254
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10255
|
+
*/
|
|
10256
|
+
ids?: Array<string>;
|
|
10257
|
+
/**
|
|
10258
|
+
*
|
|
10259
|
+
* @type {Array<string>}
|
|
10260
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10261
|
+
*/
|
|
10262
|
+
excludedIds?: Array<string>;
|
|
10118
10263
|
}
|
|
10119
10264
|
/**
|
|
10120
10265
|
*
|
|
@@ -10190,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
|
|
|
10190
10335
|
* @type {Array<string>}
|
|
10191
10336
|
* @memberof PlayerBulkDeleteInputDTO
|
|
10192
10337
|
*/
|
|
10193
|
-
playerIds
|
|
10338
|
+
playerIds?: Array<string>;
|
|
10339
|
+
/**
|
|
10340
|
+
*
|
|
10341
|
+
* @type {PlayerSearchInputDTO}
|
|
10342
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10343
|
+
*/
|
|
10344
|
+
query?: PlayerSearchInputDTO;
|
|
10345
|
+
/**
|
|
10346
|
+
*
|
|
10347
|
+
* @type {Array<string>}
|
|
10348
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10349
|
+
*/
|
|
10350
|
+
ids?: Array<string>;
|
|
10351
|
+
/**
|
|
10352
|
+
*
|
|
10353
|
+
* @type {Array<string>}
|
|
10354
|
+
* @memberof PlayerBulkDeleteInputDTO
|
|
10355
|
+
*/
|
|
10356
|
+
excludedIds?: Array<string>;
|
|
10194
10357
|
}
|
|
10195
10358
|
/**
|
|
10196
10359
|
*
|
|
@@ -10762,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
|
|
|
10762
10925
|
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10763
10926
|
*/
|
|
10764
10927
|
playtimeSeconds?: number;
|
|
10928
|
+
/**
|
|
10929
|
+
*
|
|
10930
|
+
* @type {number}
|
|
10931
|
+
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10932
|
+
*/
|
|
10933
|
+
currency?: number;
|
|
10765
10934
|
/**
|
|
10766
10935
|
*
|
|
10767
10936
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -11685,26 +11854,49 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
11685
11854
|
roleId?: Array<string>;
|
|
11686
11855
|
/**
|
|
11687
11856
|
*
|
|
11688
|
-
* @type {Array<
|
|
11857
|
+
* @type {Array<boolean>}
|
|
11689
11858
|
* @memberof PlayerSearchInputAllowedFilters
|
|
11690
11859
|
*/
|
|
11691
|
-
|
|
11692
|
-
}
|
|
11693
|
-
/**
|
|
11694
|
-
*
|
|
11695
|
-
* @export
|
|
11696
|
-
* @interface PlayerSearchInputAllowedRangeFilter
|
|
11697
|
-
*/
|
|
11698
|
-
export interface PlayerSearchInputAllowedRangeFilter {
|
|
11860
|
+
online?: Array<boolean>;
|
|
11699
11861
|
/**
|
|
11700
11862
|
*
|
|
11701
|
-
* @type {
|
|
11702
|
-
* @memberof
|
|
11863
|
+
* @type {Array<string>}
|
|
11864
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11703
11865
|
*/
|
|
11704
|
-
|
|
11866
|
+
roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
|
|
11705
11867
|
/**
|
|
11706
11868
|
*
|
|
11707
|
-
* @type {
|
|
11869
|
+
* @type {Array<string>}
|
|
11870
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11871
|
+
*/
|
|
11872
|
+
roleAssignmentGameServerId?: Array<string>;
|
|
11873
|
+
/**
|
|
11874
|
+
*
|
|
11875
|
+
* @type {Array<string>}
|
|
11876
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11877
|
+
*/
|
|
11878
|
+
id?: Array<string>;
|
|
11879
|
+
}
|
|
11880
|
+
export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
|
|
11881
|
+
readonly Global: "global";
|
|
11882
|
+
readonly GameServer: "gameServer";
|
|
11883
|
+
};
|
|
11884
|
+
export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
|
|
11885
|
+
/**
|
|
11886
|
+
*
|
|
11887
|
+
* @export
|
|
11888
|
+
* @interface PlayerSearchInputAllowedRangeFilter
|
|
11889
|
+
*/
|
|
11890
|
+
export interface PlayerSearchInputAllowedRangeFilter {
|
|
11891
|
+
/**
|
|
11892
|
+
*
|
|
11893
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
11894
|
+
* @memberof PlayerSearchInputAllowedRangeFilter
|
|
11895
|
+
*/
|
|
11896
|
+
steamAccountCreated?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
11897
|
+
/**
|
|
11898
|
+
*
|
|
11899
|
+
* @type {number}
|
|
11708
11900
|
* @memberof PlayerSearchInputAllowedRangeFilter
|
|
11709
11901
|
*/
|
|
11710
11902
|
steamsDaysSinceLastBan?: number;
|
|
@@ -11935,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
|
|
|
11935
12127
|
* @type {Array<string>}
|
|
11936
12128
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11937
12129
|
*/
|
|
11938
|
-
playerIds
|
|
12130
|
+
playerIds?: Array<string>;
|
|
12131
|
+
/**
|
|
12132
|
+
*
|
|
12133
|
+
* @type {PlayerOnGameServerSearchInputDTO}
|
|
12134
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12135
|
+
*/
|
|
12136
|
+
query?: PlayerOnGameServerSearchInputDTO;
|
|
11939
12137
|
/**
|
|
11940
12138
|
*
|
|
11941
12139
|
* @type {number}
|
|
11942
12140
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11943
12141
|
*/
|
|
11944
12142
|
amount: number;
|
|
12143
|
+
/**
|
|
12144
|
+
*
|
|
12145
|
+
* @type {Array<string>}
|
|
12146
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12147
|
+
*/
|
|
12148
|
+
ids?: Array<string>;
|
|
12149
|
+
/**
|
|
12150
|
+
*
|
|
12151
|
+
* @type {Array<string>}
|
|
12152
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12153
|
+
*/
|
|
12154
|
+
excludedIds?: Array<string>;
|
|
11945
12155
|
}
|
|
11946
12156
|
/**
|
|
11947
12157
|
*
|
|
@@ -12236,6 +12446,19 @@ export declare const RecentOrderDTOStatusEnum: {
|
|
|
12236
12446
|
readonly Canceled: "CANCELED";
|
|
12237
12447
|
};
|
|
12238
12448
|
export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
|
|
12449
|
+
/**
|
|
12450
|
+
*
|
|
12451
|
+
* @export
|
|
12452
|
+
* @interface RedeemInputDTO
|
|
12453
|
+
*/
|
|
12454
|
+
export interface RedeemInputDTO {
|
|
12455
|
+
/**
|
|
12456
|
+
*
|
|
12457
|
+
* @type {string}
|
|
12458
|
+
* @memberof RedeemInputDTO
|
|
12459
|
+
*/
|
|
12460
|
+
token: string;
|
|
12461
|
+
}
|
|
12239
12462
|
/**
|
|
12240
12463
|
*
|
|
12241
12464
|
* @export
|
|
@@ -12247,7 +12470,7 @@ export interface RedirectQs {
|
|
|
12247
12470
|
* @type {string}
|
|
12248
12471
|
* @memberof RedirectQs
|
|
12249
12472
|
*/
|
|
12250
|
-
redirect
|
|
12473
|
+
redirect?: string;
|
|
12251
12474
|
}
|
|
12252
12475
|
/**
|
|
12253
12476
|
*
|
|
@@ -13042,7 +13265,7 @@ export interface RoleUpdateInputDTO {
|
|
|
13042
13265
|
* @type {string}
|
|
13043
13266
|
* @memberof RoleUpdateInputDTO
|
|
13044
13267
|
*/
|
|
13045
|
-
linkedDiscordRoleId?: string;
|
|
13268
|
+
linkedDiscordRoleId?: string | null;
|
|
13046
13269
|
}
|
|
13047
13270
|
/**
|
|
13048
13271
|
*
|
|
@@ -13775,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13775
13998
|
* @type {Array<string>}
|
|
13776
13999
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13777
14000
|
*/
|
|
13778
|
-
listingIds
|
|
14001
|
+
listingIds?: Array<string>;
|
|
14002
|
+
/**
|
|
14003
|
+
*
|
|
14004
|
+
* @type {ShopListingSearchInputDTO}
|
|
14005
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14006
|
+
*/
|
|
14007
|
+
query?: ShopListingSearchInputDTO;
|
|
13779
14008
|
/**
|
|
13780
14009
|
*
|
|
13781
14010
|
* @type {Array<string>}
|
|
@@ -13788,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13788
14017
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13789
14018
|
*/
|
|
13790
14019
|
removeCategoryIds?: Array<string>;
|
|
14020
|
+
/**
|
|
14021
|
+
*
|
|
14022
|
+
* @type {Array<string>}
|
|
14023
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14024
|
+
*/
|
|
14025
|
+
ids?: Array<string>;
|
|
14026
|
+
/**
|
|
14027
|
+
*
|
|
14028
|
+
* @type {Array<string>}
|
|
14029
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14030
|
+
*/
|
|
14031
|
+
excludedIds?: Array<string>;
|
|
13791
14032
|
}
|
|
13792
14033
|
/**
|
|
13793
14034
|
*
|
|
@@ -14398,6 +14639,56 @@ export interface ShopKpisDTOAPI {
|
|
|
14398
14639
|
*/
|
|
14399
14640
|
meta: MetadataOutput;
|
|
14400
14641
|
}
|
|
14642
|
+
/**
|
|
14643
|
+
*
|
|
14644
|
+
* @export
|
|
14645
|
+
* @interface ShopListingBulkInputDTO
|
|
14646
|
+
*/
|
|
14647
|
+
export interface ShopListingBulkInputDTO {
|
|
14648
|
+
/**
|
|
14649
|
+
*
|
|
14650
|
+
* @type {ShopListingBulkTargetDTO}
|
|
14651
|
+
* @memberof ShopListingBulkInputDTO
|
|
14652
|
+
*/
|
|
14653
|
+
target: ShopListingBulkTargetDTO;
|
|
14654
|
+
/**
|
|
14655
|
+
*
|
|
14656
|
+
* @type {string}
|
|
14657
|
+
* @memberof ShopListingBulkInputDTO
|
|
14658
|
+
*/
|
|
14659
|
+
action: ShopListingBulkInputDTOActionEnum;
|
|
14660
|
+
}
|
|
14661
|
+
export declare const ShopListingBulkInputDTOActionEnum: {
|
|
14662
|
+
readonly Delete: "delete";
|
|
14663
|
+
readonly Publish: "publish";
|
|
14664
|
+
readonly Unpublish: "unpublish";
|
|
14665
|
+
};
|
|
14666
|
+
export type ShopListingBulkInputDTOActionEnum = (typeof ShopListingBulkInputDTOActionEnum)[keyof typeof ShopListingBulkInputDTOActionEnum];
|
|
14667
|
+
/**
|
|
14668
|
+
*
|
|
14669
|
+
* @export
|
|
14670
|
+
* @interface ShopListingBulkTargetDTO
|
|
14671
|
+
*/
|
|
14672
|
+
export interface ShopListingBulkTargetDTO {
|
|
14673
|
+
/**
|
|
14674
|
+
*
|
|
14675
|
+
* @type {ShopListingSearchInputDTO}
|
|
14676
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14677
|
+
*/
|
|
14678
|
+
query?: ShopListingSearchInputDTO;
|
|
14679
|
+
/**
|
|
14680
|
+
*
|
|
14681
|
+
* @type {Array<string>}
|
|
14682
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14683
|
+
*/
|
|
14684
|
+
ids?: Array<string>;
|
|
14685
|
+
/**
|
|
14686
|
+
*
|
|
14687
|
+
* @type {Array<string>}
|
|
14688
|
+
* @memberof ShopListingBulkTargetDTO
|
|
14689
|
+
*/
|
|
14690
|
+
excludedIds?: Array<string>;
|
|
14691
|
+
}
|
|
14401
14692
|
/**
|
|
14402
14693
|
*
|
|
14403
14694
|
* @export
|
|
@@ -15930,6 +16221,49 @@ export interface TakaroEventHookExecuted {
|
|
|
15930
16221
|
*/
|
|
15931
16222
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15932
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
|
+
}
|
|
15933
16267
|
/**
|
|
15934
16268
|
*
|
|
15935
16269
|
* @export
|
|
@@ -17277,6 +17611,37 @@ export interface UserCreateInputDTO {
|
|
|
17277
17611
|
*/
|
|
17278
17612
|
isDashboardUser?: boolean;
|
|
17279
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
|
+
}
|
|
17280
17645
|
/**
|
|
17281
17646
|
*
|
|
17282
17647
|
* @export
|
|
@@ -17380,7 +17745,7 @@ export interface UserOutputDTO {
|
|
|
17380
17745
|
* @type {PlayerOutputWithRolesDTO}
|
|
17381
17746
|
* @memberof UserOutputDTO
|
|
17382
17747
|
*/
|
|
17383
|
-
player
|
|
17748
|
+
player?: PlayerOutputWithRolesDTO;
|
|
17384
17749
|
/**
|
|
17385
17750
|
*
|
|
17386
17751
|
* @type {boolean}
|
|
@@ -17398,25 +17763,25 @@ export interface UserOutputDTO {
|
|
|
17398
17763
|
* @type {string}
|
|
17399
17764
|
* @memberof UserOutputDTO
|
|
17400
17765
|
*/
|
|
17401
|
-
|
|
17766
|
+
inviteLinkId?: string;
|
|
17402
17767
|
/**
|
|
17403
17768
|
*
|
|
17404
|
-
* @type {
|
|
17769
|
+
* @type {string}
|
|
17405
17770
|
* @memberof UserOutputDTO
|
|
17406
17771
|
*/
|
|
17407
|
-
|
|
17772
|
+
id: string;
|
|
17408
17773
|
/**
|
|
17409
17774
|
*
|
|
17410
17775
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17411
17776
|
* @memberof UserOutputDTO
|
|
17412
17777
|
*/
|
|
17413
|
-
|
|
17778
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17414
17779
|
/**
|
|
17415
17780
|
*
|
|
17416
|
-
* @type {
|
|
17781
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17417
17782
|
* @memberof UserOutputDTO
|
|
17418
17783
|
*/
|
|
17419
|
-
|
|
17784
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17420
17785
|
}
|
|
17421
17786
|
/**
|
|
17422
17787
|
*
|
|
@@ -17508,7 +17873,7 @@ export interface UserOutputWithRolesDTO {
|
|
|
17508
17873
|
* @type {PlayerOutputWithRolesDTO}
|
|
17509
17874
|
* @memberof UserOutputWithRolesDTO
|
|
17510
17875
|
*/
|
|
17511
|
-
player
|
|
17876
|
+
player?: PlayerOutputWithRolesDTO;
|
|
17512
17877
|
/**
|
|
17513
17878
|
*
|
|
17514
17879
|
* @type {boolean}
|
|
@@ -17755,6 +18120,31 @@ export interface UserUpdateDTO {
|
|
|
17755
18120
|
*/
|
|
17756
18121
|
isDashboardUser?: boolean;
|
|
17757
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
|
+
}
|
|
17758
18148
|
/**
|
|
17759
18149
|
*
|
|
17760
18150
|
* @export
|
|
@@ -17964,6 +18354,12 @@ export interface VariableSearchInputAllowedSearch {
|
|
|
17964
18354
|
* @memberof VariableSearchInputAllowedSearch
|
|
17965
18355
|
*/
|
|
17966
18356
|
key?: Array<string>;
|
|
18357
|
+
/**
|
|
18358
|
+
*
|
|
18359
|
+
* @type {Array<string>}
|
|
18360
|
+
* @memberof VariableSearchInputAllowedSearch
|
|
18361
|
+
*/
|
|
18362
|
+
value?: Array<string>;
|
|
17967
18363
|
}
|
|
17968
18364
|
/**
|
|
17969
18365
|
*
|
|
@@ -21127,6 +21523,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21127
21523
|
* @throws {RequiredError}
|
|
21128
21524
|
*/
|
|
21129
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>;
|
|
21130
21535
|
/**
|
|
21131
21536
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21132
21537
|
* @summary Get one
|
|
@@ -21191,6 +21596,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
21191
21596
|
* @throws {RequiredError}
|
|
21192
21597
|
*/
|
|
21193
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>>;
|
|
21194
21608
|
/**
|
|
21195
21609
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21196
21610
|
* @summary Get one
|
|
@@ -21255,6 +21669,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
21255
21669
|
* @throws {RequiredError}
|
|
21256
21670
|
*/
|
|
21257
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>;
|
|
21258
21681
|
/**
|
|
21259
21682
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21260
21683
|
* @summary Get one
|
|
@@ -21322,6 +21745,16 @@ export declare class DomainApi extends BaseAPI {
|
|
|
21322
21745
|
* @memberof DomainApi
|
|
21323
21746
|
*/
|
|
21324
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>>;
|
|
21325
21758
|
/**
|
|
21326
21759
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21327
21760
|
* @summary Get one
|
|
@@ -21736,11 +22169,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
|
|
|
21736
22169
|
/**
|
|
21737
22170
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21738
22171
|
* @summary Auth discord
|
|
21739
|
-
* @param {string} redirect
|
|
22172
|
+
* @param {string} [redirect]
|
|
21740
22173
|
* @param {*} [options] Override http request option.
|
|
21741
22174
|
* @throws {RequiredError}
|
|
21742
22175
|
*/
|
|
21743
|
-
externalAuthControllerAuthDiscord: (redirect
|
|
22176
|
+
externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21744
22177
|
/**
|
|
21745
22178
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21746
22179
|
* @summary Auth discord return
|
|
@@ -21757,11 +22190,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
|
|
|
21757
22190
|
/**
|
|
21758
22191
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21759
22192
|
* @summary Auth discord
|
|
21760
|
-
* @param {string} redirect
|
|
22193
|
+
* @param {string} [redirect]
|
|
21761
22194
|
* @param {*} [options] Override http request option.
|
|
21762
22195
|
* @throws {RequiredError}
|
|
21763
22196
|
*/
|
|
21764
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22197
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21765
22198
|
/**
|
|
21766
22199
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21767
22200
|
* @summary Auth discord return
|
|
@@ -21778,11 +22211,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
|
|
|
21778
22211
|
/**
|
|
21779
22212
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21780
22213
|
* @summary Auth discord
|
|
21781
|
-
* @param {string} redirect
|
|
22214
|
+
* @param {string} [redirect]
|
|
21782
22215
|
* @param {*} [options] Override http request option.
|
|
21783
22216
|
* @throws {RequiredError}
|
|
21784
22217
|
*/
|
|
21785
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22218
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
21786
22219
|
/**
|
|
21787
22220
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21788
22221
|
* @summary Auth discord return
|
|
@@ -21801,12 +22234,12 @@ export declare class ExternalAuthApi extends BaseAPI {
|
|
|
21801
22234
|
/**
|
|
21802
22235
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21803
22236
|
* @summary Auth discord
|
|
21804
|
-
* @param {string} redirect
|
|
22237
|
+
* @param {string} [redirect]
|
|
21805
22238
|
* @param {*} [options] Override http request option.
|
|
21806
22239
|
* @throws {RequiredError}
|
|
21807
22240
|
* @memberof ExternalAuthApi
|
|
21808
22241
|
*/
|
|
21809
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22242
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
21810
22243
|
/**
|
|
21811
22244
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21812
22245
|
* @summary Auth discord return
|
|
@@ -23241,40 +23674,231 @@ export declare class HookApi extends BaseAPI {
|
|
|
23241
23674
|
hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
|
|
23242
23675
|
}
|
|
23243
23676
|
/**
|
|
23244
|
-
*
|
|
23677
|
+
* InviteLinkApi - axios parameter creator
|
|
23245
23678
|
* @export
|
|
23246
23679
|
*/
|
|
23247
|
-
export declare const
|
|
23680
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23248
23681
|
/**
|
|
23249
|
-
*
|
|
23250
|
-
* @summary
|
|
23251
|
-
* @param {
|
|
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
|
|
23252
23685
|
* @param {*} [options] Override http request option.
|
|
23253
23686
|
* @throws {RequiredError}
|
|
23254
23687
|
*/
|
|
23255
|
-
|
|
23688
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23256
23689
|
/**
|
|
23257
|
-
*
|
|
23258
|
-
* @summary
|
|
23259
|
-
* @param {
|
|
23690
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23691
|
+
* @summary Preview
|
|
23692
|
+
* @param {string} token
|
|
23260
23693
|
* @param {*} [options] Override http request option.
|
|
23261
23694
|
* @throws {RequiredError}
|
|
23262
23695
|
*/
|
|
23263
|
-
|
|
23264
|
-
};
|
|
23265
|
-
/**
|
|
23266
|
-
* ItemApi - functional programming interface
|
|
23267
|
-
* @export
|
|
23268
|
-
*/
|
|
23269
|
-
export declare const ItemApiFp: (configuration?: Configuration) => {
|
|
23696
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23270
23697
|
/**
|
|
23271
|
-
*
|
|
23272
|
-
* @summary
|
|
23273
|
-
* @param {
|
|
23698
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23699
|
+
* @summary Redeem
|
|
23700
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23274
23701
|
* @param {*} [options] Override http request option.
|
|
23275
23702
|
* @throws {RequiredError}
|
|
23276
23703
|
*/
|
|
23277
|
-
|
|
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
|
+
}
|
|
23867
|
+
/**
|
|
23868
|
+
* ItemApi - axios parameter creator
|
|
23869
|
+
* @export
|
|
23870
|
+
*/
|
|
23871
|
+
export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23872
|
+
/**
|
|
23873
|
+
* Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
|
|
23874
|
+
* @summary Find one
|
|
23875
|
+
* @param {string} id
|
|
23876
|
+
* @param {*} [options] Override http request option.
|
|
23877
|
+
* @throws {RequiredError}
|
|
23878
|
+
*/
|
|
23879
|
+
itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23880
|
+
/**
|
|
23881
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
23882
|
+
* @summary Search
|
|
23883
|
+
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
23884
|
+
* @param {*} [options] Override http request option.
|
|
23885
|
+
* @throws {RequiredError}
|
|
23886
|
+
*/
|
|
23887
|
+
itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23888
|
+
};
|
|
23889
|
+
/**
|
|
23890
|
+
* ItemApi - functional programming interface
|
|
23891
|
+
* @export
|
|
23892
|
+
*/
|
|
23893
|
+
export declare const ItemApiFp: (configuration?: Configuration) => {
|
|
23894
|
+
/**
|
|
23895
|
+
* Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
|
|
23896
|
+
* @summary Find one
|
|
23897
|
+
* @param {string} id
|
|
23898
|
+
* @param {*} [options] Override http request option.
|
|
23899
|
+
* @throws {RequiredError}
|
|
23900
|
+
*/
|
|
23901
|
+
itemControllerFindOne(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ItemOutputDTOAPI>>;
|
|
23278
23902
|
/**
|
|
23279
23903
|
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
23280
23904
|
* @summary Search
|
|
@@ -23344,6 +23968,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
23344
23968
|
* @throws {RequiredError}
|
|
23345
23969
|
*/
|
|
23346
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>;
|
|
23347
23978
|
/**
|
|
23348
23979
|
* <br> OperationId: `MetaGetMetrics`
|
|
23349
23980
|
* @summary Get metrics
|
|
@@ -23392,6 +24023,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
|
|
|
23392
24023
|
* @throws {RequiredError}
|
|
23393
24024
|
*/
|
|
23394
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>>;
|
|
23395
24033
|
/**
|
|
23396
24034
|
* <br> OperationId: `MetaGetMetrics`
|
|
23397
24035
|
* @summary Get metrics
|
|
@@ -23440,6 +24078,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
|
|
|
23440
24078
|
* @throws {RequiredError}
|
|
23441
24079
|
*/
|
|
23442
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>;
|
|
23443
24088
|
/**
|
|
23444
24089
|
* <br> OperationId: `MetaGetMetrics`
|
|
23445
24090
|
* @summary Get metrics
|
|
@@ -23491,6 +24136,14 @@ export declare class MetaApi extends BaseAPI {
|
|
|
23491
24136
|
* @memberof MetaApi
|
|
23492
24137
|
*/
|
|
23493
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>>;
|
|
23494
24147
|
/**
|
|
23495
24148
|
* <br> OperationId: `MetaGetMetrics`
|
|
23496
24149
|
* @summary Get metrics
|
|
@@ -24093,7 +24746,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24093
24746
|
*/
|
|
24094
24747
|
playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24095
24748
|
/**
|
|
24096
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
24097
24750
|
* @summary Bulk assign role
|
|
24098
24751
|
* @param {string} roleId
|
|
24099
24752
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24102,7 +24755,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
24102
24755
|
*/
|
|
24103
24756
|
playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24104
24757
|
/**
|
|
24105
|
-
* Bulk delete players by
|
|
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`
|
|
24106
24759
|
* @summary Bulk delete
|
|
24107
24760
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24108
24761
|
* @param {*} [options] Override http request option.
|
|
@@ -24208,7 +24861,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
24208
24861
|
*/
|
|
24209
24862
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
24210
24863
|
/**
|
|
24211
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
24212
24865
|
* @summary Bulk assign role
|
|
24213
24866
|
* @param {string} roleId
|
|
24214
24867
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24217,7 +24870,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
24217
24870
|
*/
|
|
24218
24871
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
|
|
24219
24872
|
/**
|
|
24220
|
-
* Bulk delete players by
|
|
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`
|
|
24221
24874
|
* @summary Bulk delete
|
|
24222
24875
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24223
24876
|
* @param {*} [options] Override http request option.
|
|
@@ -24323,7 +24976,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
24323
24976
|
*/
|
|
24324
24977
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
24325
24978
|
/**
|
|
24326
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
24327
24980
|
* @summary Bulk assign role
|
|
24328
24981
|
* @param {string} roleId
|
|
24329
24982
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24332,7 +24985,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
24332
24985
|
*/
|
|
24333
24986
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
|
|
24334
24987
|
/**
|
|
24335
|
-
* Bulk delete players by
|
|
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`
|
|
24336
24989
|
* @summary Bulk delete
|
|
24337
24990
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24338
24991
|
* @param {*} [options] Override http request option.
|
|
@@ -24446,7 +25099,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
24446
25099
|
*/
|
|
24447
25100
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
24448
25101
|
/**
|
|
24449
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
24450
25103
|
* @summary Bulk assign role
|
|
24451
25104
|
* @param {string} roleId
|
|
24452
25105
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -24456,7 +25109,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
24456
25109
|
*/
|
|
24457
25110
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
|
|
24458
25111
|
/**
|
|
24459
|
-
* Bulk delete players by
|
|
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`
|
|
24460
25113
|
* @summary Bulk delete
|
|
24461
25114
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
24462
25115
|
* @param {*} [options] Override http request option.
|
|
@@ -24527,7 +25180,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
24527
25180
|
*/
|
|
24528
25181
|
playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
24529
25182
|
/**
|
|
24530
|
-
* Bulk add currency to
|
|
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`
|
|
24531
25184
|
* @summary Bulk add currency
|
|
24532
25185
|
* @param {string} gameServerId
|
|
24533
25186
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -24618,7 +25271,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
24618
25271
|
*/
|
|
24619
25272
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
|
|
24620
25273
|
/**
|
|
24621
|
-
* Bulk add currency to
|
|
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`
|
|
24622
25275
|
* @summary Bulk add currency
|
|
24623
25276
|
* @param {string} gameServerId
|
|
24624
25277
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -24709,7 +25362,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
24709
25362
|
*/
|
|
24710
25363
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
|
|
24711
25364
|
/**
|
|
24712
|
-
* Bulk add currency to
|
|
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`
|
|
24713
25366
|
* @summary Bulk add currency
|
|
24714
25367
|
* @param {string} gameServerId
|
|
24715
25368
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -24803,7 +25456,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
24803
25456
|
*/
|
|
24804
25457
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
24805
25458
|
/**
|
|
24806
|
-
* Bulk add currency to
|
|
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`
|
|
24807
25460
|
* @summary Bulk add currency
|
|
24808
25461
|
* @param {string} gameServerId
|
|
24809
25462
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -25767,7 +26420,7 @@ export declare class ShopActionApi extends BaseAPI {
|
|
|
25767
26420
|
*/
|
|
25768
26421
|
export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
25769
26422
|
/**
|
|
25770
|
-
* Bulk assign categories to
|
|
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`
|
|
25771
26424
|
* @summary Bulk assign
|
|
25772
26425
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
25773
26426
|
* @param {*} [options] Override http request option.
|
|
@@ -25840,7 +26493,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
|
|
|
25840
26493
|
*/
|
|
25841
26494
|
export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
25842
26495
|
/**
|
|
25843
|
-
* Bulk assign categories to
|
|
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`
|
|
25844
26497
|
* @summary Bulk assign
|
|
25845
26498
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
25846
26499
|
* @param {*} [options] Override http request option.
|
|
@@ -25913,7 +26566,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
|
25913
26566
|
*/
|
|
25914
26567
|
export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
25915
26568
|
/**
|
|
25916
|
-
* Bulk assign categories to
|
|
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`
|
|
25917
26570
|
* @summary Bulk assign
|
|
25918
26571
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
25919
26572
|
* @param {*} [options] Override http request option.
|
|
@@ -25988,7 +26641,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
|
|
|
25988
26641
|
*/
|
|
25989
26642
|
export declare class ShopCategoryApi extends BaseAPI {
|
|
25990
26643
|
/**
|
|
25991
|
-
* Bulk assign categories to
|
|
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`
|
|
25992
26645
|
* @summary Bulk assign
|
|
25993
26646
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
25994
26647
|
* @param {*} [options] Override http request option.
|
|
@@ -26068,6 +26721,14 @@ export declare class ShopCategoryApi extends BaseAPI {
|
|
|
26068
26721
|
* @export
|
|
26069
26722
|
*/
|
|
26070
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>;
|
|
26071
26732
|
/**
|
|
26072
26733
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26073
26734
|
* @summary Create
|
|
@@ -26122,6 +26783,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
|
|
|
26122
26783
|
* @export
|
|
26123
26784
|
*/
|
|
26124
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>>;
|
|
26125
26794
|
/**
|
|
26126
26795
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26127
26796
|
* @summary Create
|
|
@@ -26176,6 +26845,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
26176
26845
|
* @export
|
|
26177
26846
|
*/
|
|
26178
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>;
|
|
26179
26856
|
/**
|
|
26180
26857
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26181
26858
|
* @summary Create
|
|
@@ -26232,6 +26909,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
26232
26909
|
* @extends {BaseAPI}
|
|
26233
26910
|
*/
|
|
26234
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>>;
|
|
26235
26921
|
/**
|
|
26236
26922
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
26237
26923
|
* @summary Create
|
|
@@ -26844,6 +27530,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26844
27530
|
* @summary Invite
|
|
26845
27531
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26846
27532
|
* @param {*} [options] Override http request option.
|
|
27533
|
+
* @deprecated
|
|
26847
27534
|
* @throws {RequiredError}
|
|
26848
27535
|
*/
|
|
26849
27536
|
userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -26970,6 +27657,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26970
27657
|
* @summary Invite
|
|
26971
27658
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26972
27659
|
* @param {*} [options] Override http request option.
|
|
27660
|
+
* @deprecated
|
|
26973
27661
|
* @throws {RequiredError}
|
|
26974
27662
|
*/
|
|
26975
27663
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
|
|
@@ -27096,6 +27784,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
27096
27784
|
* @summary Invite
|
|
27097
27785
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27098
27786
|
* @param {*} [options] Override http request option.
|
|
27787
|
+
* @deprecated
|
|
27099
27788
|
* @throws {RequiredError}
|
|
27100
27789
|
*/
|
|
27101
27790
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
|
|
@@ -27229,6 +27918,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
27229
27918
|
* @summary Invite
|
|
27230
27919
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27231
27920
|
* @param {*} [options] Override http request option.
|
|
27921
|
+
* @deprecated
|
|
27232
27922
|
* @throws {RequiredError}
|
|
27233
27923
|
* @memberof UserApi
|
|
27234
27924
|
*/
|
|
@@ -27320,6 +28010,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
27320
28010
|
* @export
|
|
27321
28011
|
*/
|
|
27322
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>;
|
|
27323
28021
|
/**
|
|
27324
28022
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27325
28023
|
* @summary Create
|
|
@@ -27367,6 +28065,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
27367
28065
|
* @export
|
|
27368
28066
|
*/
|
|
27369
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>>;
|
|
27370
28076
|
/**
|
|
27371
28077
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27372
28078
|
* @summary Create
|
|
@@ -27414,6 +28120,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
|
27414
28120
|
* @export
|
|
27415
28121
|
*/
|
|
27416
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>;
|
|
27417
28131
|
/**
|
|
27418
28132
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27419
28133
|
* @summary Create
|
|
@@ -27463,6 +28177,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
|
|
|
27463
28177
|
* @extends {BaseAPI}
|
|
27464
28178
|
*/
|
|
27465
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>>;
|
|
27466
28189
|
/**
|
|
27467
28190
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
27468
28191
|
* @summary Create
|
|
@@ -27510,195 +28233,4 @@ export declare class VariableApi extends BaseAPI {
|
|
|
27510
28233
|
*/
|
|
27511
28234
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
27512
28235
|
}
|
|
27513
|
-
/**
|
|
27514
|
-
* InviteLinkApi - axios parameter creator
|
|
27515
|
-
* @export
|
|
27516
|
-
*/
|
|
27517
|
-
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27518
|
-
/**
|
|
27519
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27520
|
-
* @summary Create invite link
|
|
27521
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27522
|
-
* @param {*} [options] Override http request option.
|
|
27523
|
-
* @throws {RequiredError}
|
|
27524
|
-
*/
|
|
27525
|
-
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27526
|
-
/**
|
|
27527
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27528
|
-
* @summary Preview
|
|
27529
|
-
* @param {string} token
|
|
27530
|
-
* @param {*} [options] Override http request option.
|
|
27531
|
-
* @throws {RequiredError}
|
|
27532
|
-
*/
|
|
27533
|
-
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27534
|
-
/**
|
|
27535
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27536
|
-
* @summary Redeem
|
|
27537
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27538
|
-
* @param {*} [options] Override http request option.
|
|
27539
|
-
* @throws {RequiredError}
|
|
27540
|
-
*/
|
|
27541
|
-
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27542
|
-
/**
|
|
27543
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27544
|
-
* @summary Revoke
|
|
27545
|
-
* @param {string} id
|
|
27546
|
-
* @param {*} [options] Override http request option.
|
|
27547
|
-
* @throws {RequiredError}
|
|
27548
|
-
*/
|
|
27549
|
-
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27550
|
-
/**
|
|
27551
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27552
|
-
* @summary Search
|
|
27553
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27554
|
-
* @param {*} [options] Override http request option.
|
|
27555
|
-
* @throws {RequiredError}
|
|
27556
|
-
*/
|
|
27557
|
-
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27558
|
-
};
|
|
27559
|
-
/**
|
|
27560
|
-
* InviteLinkApi - functional programming interface
|
|
27561
|
-
* @export
|
|
27562
|
-
*/
|
|
27563
|
-
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
27564
|
-
/**
|
|
27565
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27566
|
-
* @summary Create invite link
|
|
27567
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27568
|
-
* @param {*} [options] Override http request option.
|
|
27569
|
-
* @throws {RequiredError}
|
|
27570
|
-
*/
|
|
27571
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
27572
|
-
/**
|
|
27573
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27574
|
-
* @summary Preview
|
|
27575
|
-
* @param {string} token
|
|
27576
|
-
* @param {*} [options] Override http request option.
|
|
27577
|
-
* @throws {RequiredError}
|
|
27578
|
-
*/
|
|
27579
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
27580
|
-
/**
|
|
27581
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27582
|
-
* @summary Redeem
|
|
27583
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27584
|
-
* @param {*} [options] Override http request option.
|
|
27585
|
-
* @throws {RequiredError}
|
|
27586
|
-
*/
|
|
27587
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
27588
|
-
/**
|
|
27589
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27590
|
-
* @summary Revoke
|
|
27591
|
-
* @param {string} id
|
|
27592
|
-
* @param {*} [options] Override http request option.
|
|
27593
|
-
* @throws {RequiredError}
|
|
27594
|
-
*/
|
|
27595
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27596
|
-
/**
|
|
27597
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27598
|
-
* @summary Search
|
|
27599
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27600
|
-
* @param {*} [options] Override http request option.
|
|
27601
|
-
* @throws {RequiredError}
|
|
27602
|
-
*/
|
|
27603
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
27604
|
-
};
|
|
27605
|
-
/**
|
|
27606
|
-
* InviteLinkApi - factory interface
|
|
27607
|
-
* @export
|
|
27608
|
-
*/
|
|
27609
|
-
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27610
|
-
/**
|
|
27611
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27612
|
-
* @summary Create invite link
|
|
27613
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27614
|
-
* @param {*} [options] Override http request option.
|
|
27615
|
-
* @throws {RequiredError}
|
|
27616
|
-
*/
|
|
27617
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
27618
|
-
/**
|
|
27619
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27620
|
-
* @summary Preview
|
|
27621
|
-
* @param {string} token
|
|
27622
|
-
* @param {*} [options] Override http request option.
|
|
27623
|
-
* @throws {RequiredError}
|
|
27624
|
-
*/
|
|
27625
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
27626
|
-
/**
|
|
27627
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27628
|
-
* @summary Redeem
|
|
27629
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27630
|
-
* @param {*} [options] Override http request option.
|
|
27631
|
-
* @throws {RequiredError}
|
|
27632
|
-
*/
|
|
27633
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
27634
|
-
/**
|
|
27635
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27636
|
-
* @summary Revoke
|
|
27637
|
-
* @param {string} id
|
|
27638
|
-
* @param {*} [options] Override http request option.
|
|
27639
|
-
* @throws {RequiredError}
|
|
27640
|
-
*/
|
|
27641
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27642
|
-
/**
|
|
27643
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27644
|
-
* @summary Search
|
|
27645
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27646
|
-
* @param {*} [options] Override http request option.
|
|
27647
|
-
* @throws {RequiredError}
|
|
27648
|
-
*/
|
|
27649
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
27650
|
-
};
|
|
27651
|
-
/**
|
|
27652
|
-
* InviteLinkApi - object-oriented interface
|
|
27653
|
-
* @export
|
|
27654
|
-
* @class InviteLinkApi
|
|
27655
|
-
* @extends {BaseAPI}
|
|
27656
|
-
*/
|
|
27657
|
-
export declare class InviteLinkApi extends BaseAPI {
|
|
27658
|
-
/**
|
|
27659
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27660
|
-
* @summary Create invite link
|
|
27661
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27662
|
-
* @param {*} [options] Override http request option.
|
|
27663
|
-
* @throws {RequiredError}
|
|
27664
|
-
* @memberof InviteLinkApi
|
|
27665
|
-
*/
|
|
27666
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
27667
|
-
/**
|
|
27668
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27669
|
-
* @summary Preview
|
|
27670
|
-
* @param {string} token
|
|
27671
|
-
* @param {*} [options] Override http request option.
|
|
27672
|
-
* @throws {RequiredError}
|
|
27673
|
-
* @memberof InviteLinkApi
|
|
27674
|
-
*/
|
|
27675
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
27676
|
-
/**
|
|
27677
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27678
|
-
* @summary Redeem
|
|
27679
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27680
|
-
* @param {*} [options] Override http request option.
|
|
27681
|
-
* @throws {RequiredError}
|
|
27682
|
-
* @memberof InviteLinkApi
|
|
27683
|
-
*/
|
|
27684
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
27685
|
-
/**
|
|
27686
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27687
|
-
* @summary Revoke
|
|
27688
|
-
* @param {string} id
|
|
27689
|
-
* @param {*} [options] Override http request option.
|
|
27690
|
-
* @throws {RequiredError}
|
|
27691
|
-
* @memberof InviteLinkApi
|
|
27692
|
-
*/
|
|
27693
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27694
|
-
/**
|
|
27695
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27696
|
-
* @summary Search
|
|
27697
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27698
|
-
* @param {*} [options] Override http request option.
|
|
27699
|
-
* @throws {RequiredError}
|
|
27700
|
-
* @memberof InviteLinkApi
|
|
27701
|
-
*/
|
|
27702
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
27703
|
-
}
|
|
27704
28236
|
//# sourceMappingURL=api.d.ts.map
|