@takaro/apiclient 0.0.0-dev.9f02005 → 0.0.0-dev.a1e25ba
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 +2148 -150
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +1962 -601
- 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 +3 -2
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +10 -4
- 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 +2 -2
- package/src/generated/api.ts +3329 -227
- 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 +16 -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";
|
|
@@ -2599,6 +2729,50 @@ export declare const DomainUpdateInputDTOStateEnum: {
|
|
|
2599
2729
|
readonly Maintenance: "MAINTENANCE";
|
|
2600
2730
|
};
|
|
2601
2731
|
export type DomainUpdateInputDTOStateEnum = (typeof DomainUpdateInputDTOStateEnum)[keyof typeof DomainUpdateInputDTOStateEnum];
|
|
2732
|
+
/**
|
|
2733
|
+
*
|
|
2734
|
+
* @export
|
|
2735
|
+
* @interface EffectiveStorefrontConfigDTO
|
|
2736
|
+
*/
|
|
2737
|
+
export interface EffectiveStorefrontConfigDTO {
|
|
2738
|
+
/**
|
|
2739
|
+
*
|
|
2740
|
+
* @type {string}
|
|
2741
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2742
|
+
*/
|
|
2743
|
+
templateId: string;
|
|
2744
|
+
/**
|
|
2745
|
+
*
|
|
2746
|
+
* @type {object}
|
|
2747
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2748
|
+
*/
|
|
2749
|
+
values: object;
|
|
2750
|
+
/**
|
|
2751
|
+
*
|
|
2752
|
+
* @type {object}
|
|
2753
|
+
* @memberof EffectiveStorefrontConfigDTO
|
|
2754
|
+
*/
|
|
2755
|
+
schema: object;
|
|
2756
|
+
}
|
|
2757
|
+
/**
|
|
2758
|
+
*
|
|
2759
|
+
* @export
|
|
2760
|
+
* @interface EffectiveStorefrontConfigOutputDTOAPI
|
|
2761
|
+
*/
|
|
2762
|
+
export interface EffectiveStorefrontConfigOutputDTOAPI {
|
|
2763
|
+
/**
|
|
2764
|
+
*
|
|
2765
|
+
* @type {EffectiveStorefrontConfigDTO}
|
|
2766
|
+
* @memberof EffectiveStorefrontConfigOutputDTOAPI
|
|
2767
|
+
*/
|
|
2768
|
+
data: EffectiveStorefrontConfigDTO;
|
|
2769
|
+
/**
|
|
2770
|
+
*
|
|
2771
|
+
* @type {MetadataOutput}
|
|
2772
|
+
* @memberof EffectiveStorefrontConfigOutputDTOAPI
|
|
2773
|
+
*/
|
|
2774
|
+
meta: MetadataOutput;
|
|
2775
|
+
}
|
|
2602
2776
|
/**
|
|
2603
2777
|
*
|
|
2604
2778
|
* @export
|
|
@@ -2979,19 +3153,19 @@ export interface ErrorOutput {
|
|
|
2979
3153
|
* @type {string}
|
|
2980
3154
|
* @memberof ErrorOutput
|
|
2981
3155
|
*/
|
|
2982
|
-
code
|
|
3156
|
+
code?: string;
|
|
2983
3157
|
/**
|
|
2984
3158
|
*
|
|
2985
3159
|
* @type {string}
|
|
2986
3160
|
* @memberof ErrorOutput
|
|
2987
3161
|
*/
|
|
2988
|
-
message
|
|
3162
|
+
message?: string;
|
|
2989
3163
|
/**
|
|
2990
3164
|
*
|
|
2991
3165
|
* @type {string}
|
|
2992
3166
|
* @memberof ErrorOutput
|
|
2993
3167
|
*/
|
|
2994
|
-
details
|
|
3168
|
+
details?: string;
|
|
2995
3169
|
}
|
|
2996
3170
|
/**
|
|
2997
3171
|
*
|
|
@@ -3004,7 +3178,7 @@ export interface EventChatMessage {
|
|
|
3004
3178
|
* @type {IGamePlayer}
|
|
3005
3179
|
* @memberof EventChatMessage
|
|
3006
3180
|
*/
|
|
3007
|
-
player
|
|
3181
|
+
player?: IGamePlayer;
|
|
3008
3182
|
/**
|
|
3009
3183
|
*
|
|
3010
3184
|
* @type {string}
|
|
@@ -3132,6 +3306,7 @@ export declare const EventCreateDTOEventNameEnum: {
|
|
|
3132
3306
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3133
3307
|
readonly EventRateLimited: "event-rate-limited";
|
|
3134
3308
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3309
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3135
3310
|
readonly PlayerConnected: "player-connected";
|
|
3136
3311
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3137
3312
|
readonly ChatMessage: "chat-message";
|
|
@@ -3346,6 +3521,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
|
|
|
3346
3521
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3347
3522
|
readonly EventRateLimited: "event-rate-limited";
|
|
3348
3523
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3524
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3349
3525
|
readonly PlayerConnected: "player-connected";
|
|
3350
3526
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3351
3527
|
readonly ChatMessage: "chat-message";
|
|
@@ -3712,6 +3888,7 @@ export declare const EventOutputDTOEventNameEnum: {
|
|
|
3712
3888
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3713
3889
|
readonly EventRateLimited: "event-rate-limited";
|
|
3714
3890
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3891
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3715
3892
|
readonly PlayerConnected: "player-connected";
|
|
3716
3893
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3717
3894
|
readonly ChatMessage: "chat-message";
|
|
@@ -3723,7 +3900,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
|
|
|
3723
3900
|
* @type EventOutputDTOMeta
|
|
3724
3901
|
* @export
|
|
3725
3902
|
*/
|
|
3726
|
-
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3903
|
+
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3727
3904
|
/**
|
|
3728
3905
|
*
|
|
3729
3906
|
* @export
|
|
@@ -3900,6 +4077,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
|
|
|
3900
4077
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3901
4078
|
readonly EventRateLimited: "event-rate-limited";
|
|
3902
4079
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
4080
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3903
4081
|
readonly PlayerConnected: "player-connected";
|
|
3904
4082
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3905
4083
|
readonly ChatMessage: "chat-message";
|
|
@@ -5334,6 +5512,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
5334
5512
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5335
5513
|
readonly EventRateLimited: "event-rate-limited";
|
|
5336
5514
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5515
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5337
5516
|
};
|
|
5338
5517
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
5339
5518
|
/**
|
|
@@ -5494,6 +5673,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
5494
5673
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5495
5674
|
readonly EventRateLimited: "event-rate-limited";
|
|
5496
5675
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5676
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5497
5677
|
};
|
|
5498
5678
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
5499
5679
|
/**
|
|
@@ -5599,6 +5779,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
5599
5779
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5600
5780
|
readonly EventRateLimited: "event-rate-limited";
|
|
5601
5781
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5782
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5602
5783
|
};
|
|
5603
5784
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
5604
5785
|
/**
|
|
@@ -5769,6 +5950,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
5769
5950
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5770
5951
|
readonly EventRateLimited: "event-rate-limited";
|
|
5771
5952
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5953
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5772
5954
|
};
|
|
5773
5955
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
5774
5956
|
/**
|
|
@@ -5855,6 +6037,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
5855
6037
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5856
6038
|
readonly EventRateLimited: "event-rate-limited";
|
|
5857
6039
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
6040
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5858
6041
|
};
|
|
5859
6042
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
5860
6043
|
/**
|
|
@@ -6181,6 +6364,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
6181
6364
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
6182
6365
|
readonly EventRateLimited: "event-rate-limited";
|
|
6183
6366
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
6367
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
6184
6368
|
};
|
|
6185
6369
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
6186
6370
|
/**
|
|
@@ -6607,193 +6791,633 @@ export interface InviteCreateDTO {
|
|
|
6607
6791
|
/**
|
|
6608
6792
|
*
|
|
6609
6793
|
* @export
|
|
6610
|
-
* @interface
|
|
6794
|
+
* @interface InviteLinkCreateInputDTO
|
|
6611
6795
|
*/
|
|
6612
|
-
export interface
|
|
6796
|
+
export interface InviteLinkCreateInputDTO {
|
|
6613
6797
|
/**
|
|
6614
6798
|
*
|
|
6615
|
-
* @type {string}
|
|
6616
|
-
* @memberof
|
|
6799
|
+
* @type {Array<string>}
|
|
6800
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6617
6801
|
*/
|
|
6618
|
-
|
|
6802
|
+
roleIds?: Array<string>;
|
|
6619
6803
|
/**
|
|
6620
6804
|
*
|
|
6621
|
-
* @type {
|
|
6622
|
-
* @memberof
|
|
6805
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6806
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6623
6807
|
*/
|
|
6624
|
-
|
|
6808
|
+
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6809
|
+
/**
|
|
6810
|
+
*
|
|
6811
|
+
* @type {number}
|
|
6812
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6813
|
+
*/
|
|
6814
|
+
maxUses?: number;
|
|
6625
6815
|
}
|
|
6626
6816
|
/**
|
|
6627
6817
|
*
|
|
6628
6818
|
* @export
|
|
6629
|
-
* @interface
|
|
6819
|
+
* @interface InviteLinkCreateResultDTO
|
|
6630
6820
|
*/
|
|
6631
|
-
export interface
|
|
6821
|
+
export interface InviteLinkCreateResultDTO {
|
|
6632
6822
|
/**
|
|
6633
6823
|
*
|
|
6634
|
-
* @type {
|
|
6635
|
-
* @memberof
|
|
6824
|
+
* @type {string}
|
|
6825
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6636
6826
|
*/
|
|
6637
|
-
|
|
6827
|
+
inviteUrl: string;
|
|
6638
6828
|
/**
|
|
6639
6829
|
*
|
|
6640
6830
|
* @type {string}
|
|
6641
|
-
* @memberof
|
|
6831
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6642
6832
|
*/
|
|
6643
|
-
|
|
6833
|
+
token: string;
|
|
6644
6834
|
/**
|
|
6645
6835
|
*
|
|
6646
6836
|
* @type {string}
|
|
6647
|
-
* @memberof
|
|
6837
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6648
6838
|
*/
|
|
6649
|
-
|
|
6839
|
+
id: string;
|
|
6650
6840
|
/**
|
|
6651
6841
|
*
|
|
6652
|
-
* @type {
|
|
6653
|
-
* @memberof
|
|
6842
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6843
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6654
6844
|
*/
|
|
6655
|
-
|
|
6845
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6656
6846
|
/**
|
|
6657
6847
|
*
|
|
6658
|
-
* @type {
|
|
6659
|
-
* @memberof
|
|
6848
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6849
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6660
6850
|
*/
|
|
6661
|
-
|
|
6851
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6662
6852
|
/**
|
|
6663
6853
|
*
|
|
6664
|
-
* @type {
|
|
6665
|
-
* @memberof
|
|
6854
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6855
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6666
6856
|
*/
|
|
6667
|
-
|
|
6668
|
-
}
|
|
6669
|
-
/**
|
|
6670
|
-
*
|
|
6671
|
-
* @export
|
|
6672
|
-
* @interface ItemCreateDTO
|
|
6673
|
-
*/
|
|
6674
|
-
export interface ItemCreateDTO {
|
|
6857
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6675
6858
|
/**
|
|
6676
6859
|
*
|
|
6677
|
-
* @type {
|
|
6678
|
-
* @memberof
|
|
6860
|
+
* @type {number}
|
|
6861
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6679
6862
|
*/
|
|
6680
|
-
|
|
6863
|
+
maxUses?: number;
|
|
6681
6864
|
/**
|
|
6682
6865
|
*
|
|
6683
|
-
* @type {
|
|
6684
|
-
* @memberof
|
|
6866
|
+
* @type {number}
|
|
6867
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6685
6868
|
*/
|
|
6686
|
-
|
|
6869
|
+
uses: number;
|
|
6687
6870
|
/**
|
|
6688
6871
|
*
|
|
6689
|
-
* @type {
|
|
6690
|
-
* @memberof
|
|
6872
|
+
* @type {number}
|
|
6873
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6691
6874
|
*/
|
|
6692
|
-
|
|
6875
|
+
remaining?: number;
|
|
6693
6876
|
/**
|
|
6694
6877
|
*
|
|
6695
6878
|
* @type {string}
|
|
6696
|
-
* @memberof
|
|
6879
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6697
6880
|
*/
|
|
6698
|
-
|
|
6881
|
+
status: InviteLinkCreateResultDTOStatusEnum;
|
|
6882
|
+
/**
|
|
6883
|
+
*
|
|
6884
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6885
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6886
|
+
*/
|
|
6887
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6699
6888
|
/**
|
|
6700
6889
|
*
|
|
6701
6890
|
* @type {string}
|
|
6702
|
-
* @memberof
|
|
6891
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6703
6892
|
*/
|
|
6704
|
-
|
|
6893
|
+
createdBy?: string;
|
|
6894
|
+
/**
|
|
6895
|
+
*
|
|
6896
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6897
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6898
|
+
*/
|
|
6899
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6705
6900
|
}
|
|
6901
|
+
export declare const InviteLinkCreateResultDTOStatusEnum: {
|
|
6902
|
+
readonly Active: "ACTIVE";
|
|
6903
|
+
readonly Revoked: "REVOKED";
|
|
6904
|
+
readonly Expired: "EXPIRED";
|
|
6905
|
+
readonly Depleted: "DEPLETED";
|
|
6906
|
+
};
|
|
6907
|
+
export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
|
|
6706
6908
|
/**
|
|
6707
6909
|
*
|
|
6708
6910
|
* @export
|
|
6709
|
-
* @interface
|
|
6911
|
+
* @interface InviteLinkCreateResultDTOAPI
|
|
6710
6912
|
*/
|
|
6711
|
-
export interface
|
|
6913
|
+
export interface InviteLinkCreateResultDTOAPI {
|
|
6712
6914
|
/**
|
|
6713
6915
|
*
|
|
6714
|
-
* @type {
|
|
6715
|
-
* @memberof
|
|
6916
|
+
* @type {InviteLinkCreateResultDTO}
|
|
6917
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6716
6918
|
*/
|
|
6717
|
-
data:
|
|
6919
|
+
data: InviteLinkCreateResultDTO;
|
|
6718
6920
|
/**
|
|
6719
6921
|
*
|
|
6720
6922
|
* @type {MetadataOutput}
|
|
6721
|
-
* @memberof
|
|
6923
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6722
6924
|
*/
|
|
6723
6925
|
meta: MetadataOutput;
|
|
6724
6926
|
}
|
|
6725
6927
|
/**
|
|
6726
6928
|
*
|
|
6727
6929
|
* @export
|
|
6728
|
-
* @interface
|
|
6930
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6729
6931
|
*/
|
|
6730
|
-
export interface
|
|
6932
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6731
6933
|
/**
|
|
6732
6934
|
*
|
|
6733
|
-
* @type {
|
|
6734
|
-
* @memberof
|
|
6935
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6936
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6735
6937
|
*/
|
|
6736
|
-
data:
|
|
6938
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6737
6939
|
/**
|
|
6738
6940
|
*
|
|
6739
6941
|
* @type {MetadataOutput}
|
|
6740
|
-
* @memberof
|
|
6942
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6741
6943
|
*/
|
|
6742
6944
|
meta: MetadataOutput;
|
|
6743
6945
|
}
|
|
6744
6946
|
/**
|
|
6745
6947
|
*
|
|
6746
6948
|
* @export
|
|
6747
|
-
* @interface
|
|
6949
|
+
* @interface InviteLinkOutputDTO
|
|
6748
6950
|
*/
|
|
6749
|
-
export interface
|
|
6951
|
+
export interface InviteLinkOutputDTO {
|
|
6750
6952
|
/**
|
|
6751
6953
|
*
|
|
6752
|
-
* @type {
|
|
6753
|
-
* @memberof
|
|
6954
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6955
|
+
* @memberof InviteLinkOutputDTO
|
|
6754
6956
|
*/
|
|
6755
|
-
|
|
6957
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6756
6958
|
/**
|
|
6757
6959
|
*
|
|
6758
|
-
* @type {
|
|
6759
|
-
* @memberof
|
|
6960
|
+
* @type {number}
|
|
6961
|
+
* @memberof InviteLinkOutputDTO
|
|
6760
6962
|
*/
|
|
6761
|
-
|
|
6963
|
+
maxUses?: number;
|
|
6762
6964
|
/**
|
|
6763
6965
|
*
|
|
6764
|
-
* @type {
|
|
6765
|
-
* @memberof
|
|
6966
|
+
* @type {number}
|
|
6967
|
+
* @memberof InviteLinkOutputDTO
|
|
6766
6968
|
*/
|
|
6767
|
-
|
|
6969
|
+
uses: number;
|
|
6768
6970
|
/**
|
|
6769
6971
|
*
|
|
6770
|
-
* @type {
|
|
6771
|
-
* @memberof
|
|
6972
|
+
* @type {number}
|
|
6973
|
+
* @memberof InviteLinkOutputDTO
|
|
6772
6974
|
*/
|
|
6773
|
-
|
|
6774
|
-
}
|
|
6775
|
-
/**
|
|
6776
|
-
*
|
|
6777
|
-
* @export
|
|
6778
|
-
* @interface ItemSearchInputAllowedSearch
|
|
6779
|
-
*/
|
|
6780
|
-
export interface ItemSearchInputAllowedSearch {
|
|
6975
|
+
remaining?: number;
|
|
6781
6976
|
/**
|
|
6782
6977
|
*
|
|
6783
|
-
* @type {
|
|
6784
|
-
* @memberof
|
|
6978
|
+
* @type {string}
|
|
6979
|
+
* @memberof InviteLinkOutputDTO
|
|
6785
6980
|
*/
|
|
6786
|
-
|
|
6981
|
+
status: InviteLinkOutputDTOStatusEnum;
|
|
6787
6982
|
/**
|
|
6788
6983
|
*
|
|
6789
|
-
* @type {
|
|
6790
|
-
* @memberof
|
|
6984
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6985
|
+
* @memberof InviteLinkOutputDTO
|
|
6791
6986
|
*/
|
|
6792
|
-
|
|
6793
|
-
|
|
6794
|
-
|
|
6795
|
-
|
|
6796
|
-
|
|
6987
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6988
|
+
/**
|
|
6989
|
+
*
|
|
6990
|
+
* @type {string}
|
|
6991
|
+
* @memberof InviteLinkOutputDTO
|
|
6992
|
+
*/
|
|
6993
|
+
createdBy?: string;
|
|
6994
|
+
/**
|
|
6995
|
+
*
|
|
6996
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6997
|
+
* @memberof InviteLinkOutputDTO
|
|
6998
|
+
*/
|
|
6999
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
7000
|
+
/**
|
|
7001
|
+
*
|
|
7002
|
+
* @type {string}
|
|
7003
|
+
* @memberof InviteLinkOutputDTO
|
|
7004
|
+
*/
|
|
7005
|
+
id: string;
|
|
7006
|
+
/**
|
|
7007
|
+
*
|
|
7008
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7009
|
+
* @memberof InviteLinkOutputDTO
|
|
7010
|
+
*/
|
|
7011
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7012
|
+
/**
|
|
7013
|
+
*
|
|
7014
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7015
|
+
* @memberof InviteLinkOutputDTO
|
|
7016
|
+
*/
|
|
7017
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7018
|
+
}
|
|
7019
|
+
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
7020
|
+
readonly Active: "ACTIVE";
|
|
7021
|
+
readonly Revoked: "REVOKED";
|
|
7022
|
+
readonly Expired: "EXPIRED";
|
|
7023
|
+
readonly Depleted: "DEPLETED";
|
|
7024
|
+
};
|
|
7025
|
+
export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
|
|
7026
|
+
/**
|
|
7027
|
+
*
|
|
7028
|
+
* @export
|
|
7029
|
+
* @interface InviteLinkOutputDTOAPI
|
|
7030
|
+
*/
|
|
7031
|
+
export interface InviteLinkOutputDTOAPI {
|
|
7032
|
+
/**
|
|
7033
|
+
*
|
|
7034
|
+
* @type {InviteLinkOutputDTO}
|
|
7035
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
7036
|
+
*/
|
|
7037
|
+
data: InviteLinkOutputDTO;
|
|
7038
|
+
/**
|
|
7039
|
+
*
|
|
7040
|
+
* @type {MetadataOutput}
|
|
7041
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
7042
|
+
*/
|
|
7043
|
+
meta: MetadataOutput;
|
|
7044
|
+
}
|
|
7045
|
+
/**
|
|
7046
|
+
*
|
|
7047
|
+
* @export
|
|
7048
|
+
* @interface InviteLinkPreviewDTO
|
|
7049
|
+
*/
|
|
7050
|
+
export interface InviteLinkPreviewDTO {
|
|
7051
|
+
/**
|
|
7052
|
+
*
|
|
7053
|
+
* @type {InviteLinkPreviewDomainDTO}
|
|
7054
|
+
* @memberof InviteLinkPreviewDTO
|
|
7055
|
+
*/
|
|
7056
|
+
domain: InviteLinkPreviewDomainDTO;
|
|
7057
|
+
/**
|
|
7058
|
+
*
|
|
7059
|
+
* @type {Array<InviteLinkPreviewRoleDTO>}
|
|
7060
|
+
* @memberof InviteLinkPreviewDTO
|
|
7061
|
+
*/
|
|
7062
|
+
roles: Array<InviteLinkPreviewRoleDTO>;
|
|
7063
|
+
/**
|
|
7064
|
+
*
|
|
7065
|
+
* @type {string}
|
|
7066
|
+
* @memberof InviteLinkPreviewDTO
|
|
7067
|
+
*/
|
|
7068
|
+
status: InviteLinkPreviewDTOStatusEnum;
|
|
7069
|
+
/**
|
|
7070
|
+
*
|
|
7071
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7072
|
+
* @memberof InviteLinkPreviewDTO
|
|
7073
|
+
*/
|
|
7074
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7075
|
+
/**
|
|
7076
|
+
*
|
|
7077
|
+
* @type {number}
|
|
7078
|
+
* @memberof InviteLinkPreviewDTO
|
|
7079
|
+
*/
|
|
7080
|
+
remaining?: number;
|
|
7081
|
+
}
|
|
7082
|
+
export declare const InviteLinkPreviewDTOStatusEnum: {
|
|
7083
|
+
readonly Active: "ACTIVE";
|
|
7084
|
+
readonly Revoked: "REVOKED";
|
|
7085
|
+
readonly Expired: "EXPIRED";
|
|
7086
|
+
readonly Depleted: "DEPLETED";
|
|
7087
|
+
};
|
|
7088
|
+
export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
|
|
7089
|
+
/**
|
|
7090
|
+
*
|
|
7091
|
+
* @export
|
|
7092
|
+
* @interface InviteLinkPreviewDTOAPI
|
|
7093
|
+
*/
|
|
7094
|
+
export interface InviteLinkPreviewDTOAPI {
|
|
7095
|
+
/**
|
|
7096
|
+
*
|
|
7097
|
+
* @type {InviteLinkPreviewDTO}
|
|
7098
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7099
|
+
*/
|
|
7100
|
+
data: InviteLinkPreviewDTO;
|
|
7101
|
+
/**
|
|
7102
|
+
*
|
|
7103
|
+
* @type {MetadataOutput}
|
|
7104
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7105
|
+
*/
|
|
7106
|
+
meta: MetadataOutput;
|
|
7107
|
+
}
|
|
7108
|
+
/**
|
|
7109
|
+
*
|
|
7110
|
+
* @export
|
|
7111
|
+
* @interface InviteLinkPreviewDomainDTO
|
|
7112
|
+
*/
|
|
7113
|
+
export interface InviteLinkPreviewDomainDTO {
|
|
7114
|
+
/**
|
|
7115
|
+
*
|
|
7116
|
+
* @type {string}
|
|
7117
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7118
|
+
*/
|
|
7119
|
+
id: string;
|
|
7120
|
+
/**
|
|
7121
|
+
*
|
|
7122
|
+
* @type {string}
|
|
7123
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7124
|
+
*/
|
|
7125
|
+
name: string;
|
|
7126
|
+
}
|
|
7127
|
+
/**
|
|
7128
|
+
*
|
|
7129
|
+
* @export
|
|
7130
|
+
* @interface InviteLinkPreviewRoleDTO
|
|
7131
|
+
*/
|
|
7132
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
7133
|
+
/**
|
|
7134
|
+
*
|
|
7135
|
+
* @type {string}
|
|
7136
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7137
|
+
*/
|
|
7138
|
+
id: string;
|
|
7139
|
+
/**
|
|
7140
|
+
*
|
|
7141
|
+
* @type {string}
|
|
7142
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7143
|
+
*/
|
|
7144
|
+
name: string;
|
|
7145
|
+
}
|
|
7146
|
+
/**
|
|
7147
|
+
*
|
|
7148
|
+
* @export
|
|
7149
|
+
* @interface InviteLinkRoleDTO
|
|
7150
|
+
*/
|
|
7151
|
+
export interface InviteLinkRoleDTO {
|
|
7152
|
+
/**
|
|
7153
|
+
*
|
|
7154
|
+
* @type {string}
|
|
7155
|
+
* @memberof InviteLinkRoleDTO
|
|
7156
|
+
*/
|
|
7157
|
+
roleId: string;
|
|
7158
|
+
/**
|
|
7159
|
+
*
|
|
7160
|
+
* @type {string}
|
|
7161
|
+
* @memberof InviteLinkRoleDTO
|
|
7162
|
+
*/
|
|
7163
|
+
name: string;
|
|
7164
|
+
}
|
|
7165
|
+
/**
|
|
7166
|
+
*
|
|
7167
|
+
* @export
|
|
7168
|
+
* @interface InviteLinkSearchInputDTO
|
|
7169
|
+
*/
|
|
7170
|
+
export interface InviteLinkSearchInputDTO {
|
|
7171
|
+
/**
|
|
7172
|
+
*
|
|
7173
|
+
* @type {string}
|
|
7174
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7175
|
+
*/
|
|
7176
|
+
sortBy?: string;
|
|
7177
|
+
/**
|
|
7178
|
+
*
|
|
7179
|
+
* @type {any}
|
|
7180
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7181
|
+
*/
|
|
7182
|
+
filters?: any;
|
|
7183
|
+
/**
|
|
7184
|
+
*
|
|
7185
|
+
* @type {any}
|
|
7186
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7187
|
+
*/
|
|
7188
|
+
search?: any;
|
|
7189
|
+
/**
|
|
7190
|
+
*
|
|
7191
|
+
* @type {any}
|
|
7192
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7193
|
+
*/
|
|
7194
|
+
greaterThan?: any;
|
|
7195
|
+
/**
|
|
7196
|
+
*
|
|
7197
|
+
* @type {any}
|
|
7198
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7199
|
+
*/
|
|
7200
|
+
lessThan?: any;
|
|
7201
|
+
/**
|
|
7202
|
+
*
|
|
7203
|
+
* @type {number}
|
|
7204
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7205
|
+
*/
|
|
7206
|
+
page?: number;
|
|
7207
|
+
/**
|
|
7208
|
+
*
|
|
7209
|
+
* @type {number}
|
|
7210
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7211
|
+
*/
|
|
7212
|
+
limit?: number;
|
|
7213
|
+
/**
|
|
7214
|
+
*
|
|
7215
|
+
* @type {string}
|
|
7216
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7217
|
+
*/
|
|
7218
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
7219
|
+
/**
|
|
7220
|
+
*
|
|
7221
|
+
* @type {Array<string>}
|
|
7222
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7223
|
+
*/
|
|
7224
|
+
extend?: Array<string>;
|
|
7225
|
+
}
|
|
7226
|
+
export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
|
|
7227
|
+
readonly Asc: "asc";
|
|
7228
|
+
readonly Desc: "desc";
|
|
7229
|
+
};
|
|
7230
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
7231
|
+
/**
|
|
7232
|
+
*
|
|
7233
|
+
* @export
|
|
7234
|
+
* @interface InviteOutputDTO
|
|
7235
|
+
*/
|
|
7236
|
+
export interface InviteOutputDTO {
|
|
7237
|
+
/**
|
|
7238
|
+
*
|
|
7239
|
+
* @type {string}
|
|
7240
|
+
* @memberof InviteOutputDTO
|
|
7241
|
+
*/
|
|
7242
|
+
botInvite: string;
|
|
7243
|
+
/**
|
|
7244
|
+
*
|
|
7245
|
+
* @type {string}
|
|
7246
|
+
* @memberof InviteOutputDTO
|
|
7247
|
+
*/
|
|
7248
|
+
devServer: string;
|
|
7249
|
+
}
|
|
7250
|
+
/**
|
|
7251
|
+
*
|
|
7252
|
+
* @export
|
|
7253
|
+
* @interface IpHistoryOutputDTO
|
|
7254
|
+
*/
|
|
7255
|
+
export interface IpHistoryOutputDTO {
|
|
7256
|
+
/**
|
|
7257
|
+
*
|
|
7258
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
7259
|
+
* @memberof IpHistoryOutputDTO
|
|
7260
|
+
*/
|
|
7261
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
7262
|
+
/**
|
|
7263
|
+
*
|
|
7264
|
+
* @type {string}
|
|
7265
|
+
* @memberof IpHistoryOutputDTO
|
|
7266
|
+
*/
|
|
7267
|
+
ip: string;
|
|
7268
|
+
/**
|
|
7269
|
+
*
|
|
7270
|
+
* @type {string}
|
|
7271
|
+
* @memberof IpHistoryOutputDTO
|
|
7272
|
+
*/
|
|
7273
|
+
country?: string;
|
|
7274
|
+
/**
|
|
7275
|
+
*
|
|
7276
|
+
* @type {string}
|
|
7277
|
+
* @memberof IpHistoryOutputDTO
|
|
7278
|
+
*/
|
|
7279
|
+
city?: string;
|
|
7280
|
+
/**
|
|
7281
|
+
*
|
|
7282
|
+
* @type {string}
|
|
7283
|
+
* @memberof IpHistoryOutputDTO
|
|
7284
|
+
*/
|
|
7285
|
+
latitude?: string;
|
|
7286
|
+
/**
|
|
7287
|
+
*
|
|
7288
|
+
* @type {string}
|
|
7289
|
+
* @memberof IpHistoryOutputDTO
|
|
7290
|
+
*/
|
|
7291
|
+
longitude?: string;
|
|
7292
|
+
}
|
|
7293
|
+
/**
|
|
7294
|
+
*
|
|
7295
|
+
* @export
|
|
7296
|
+
* @interface ItemCreateDTO
|
|
7297
|
+
*/
|
|
7298
|
+
export interface ItemCreateDTO {
|
|
7299
|
+
/**
|
|
7300
|
+
*
|
|
7301
|
+
* @type {string}
|
|
7302
|
+
* @memberof ItemCreateDTO
|
|
7303
|
+
*/
|
|
7304
|
+
name: string;
|
|
7305
|
+
/**
|
|
7306
|
+
*
|
|
7307
|
+
* @type {string}
|
|
7308
|
+
* @memberof ItemCreateDTO
|
|
7309
|
+
*/
|
|
7310
|
+
code: string;
|
|
7311
|
+
/**
|
|
7312
|
+
*
|
|
7313
|
+
* @type {string}
|
|
7314
|
+
* @memberof ItemCreateDTO
|
|
7315
|
+
*/
|
|
7316
|
+
description?: string;
|
|
7317
|
+
/**
|
|
7318
|
+
*
|
|
7319
|
+
* @type {string}
|
|
7320
|
+
* @memberof ItemCreateDTO
|
|
7321
|
+
*/
|
|
7322
|
+
icon?: string;
|
|
7323
|
+
/**
|
|
7324
|
+
*
|
|
7325
|
+
* @type {string}
|
|
7326
|
+
* @memberof ItemCreateDTO
|
|
7327
|
+
*/
|
|
7328
|
+
gameserverId: string;
|
|
7329
|
+
}
|
|
7330
|
+
/**
|
|
7331
|
+
*
|
|
7332
|
+
* @export
|
|
7333
|
+
* @interface ItemOutputArrayDTOAPI
|
|
7334
|
+
*/
|
|
7335
|
+
export interface ItemOutputArrayDTOAPI {
|
|
7336
|
+
/**
|
|
7337
|
+
*
|
|
7338
|
+
* @type {Array<ItemsOutputDTO>}
|
|
7339
|
+
* @memberof ItemOutputArrayDTOAPI
|
|
7340
|
+
*/
|
|
7341
|
+
data: Array<ItemsOutputDTO>;
|
|
7342
|
+
/**
|
|
7343
|
+
*
|
|
7344
|
+
* @type {MetadataOutput}
|
|
7345
|
+
* @memberof ItemOutputArrayDTOAPI
|
|
7346
|
+
*/
|
|
7347
|
+
meta: MetadataOutput;
|
|
7348
|
+
}
|
|
7349
|
+
/**
|
|
7350
|
+
*
|
|
7351
|
+
* @export
|
|
7352
|
+
* @interface ItemOutputDTOAPI
|
|
7353
|
+
*/
|
|
7354
|
+
export interface ItemOutputDTOAPI {
|
|
7355
|
+
/**
|
|
7356
|
+
*
|
|
7357
|
+
* @type {ItemsOutputDTO}
|
|
7358
|
+
* @memberof ItemOutputDTOAPI
|
|
7359
|
+
*/
|
|
7360
|
+
data: ItemsOutputDTO;
|
|
7361
|
+
/**
|
|
7362
|
+
*
|
|
7363
|
+
* @type {MetadataOutput}
|
|
7364
|
+
* @memberof ItemOutputDTOAPI
|
|
7365
|
+
*/
|
|
7366
|
+
meta: MetadataOutput;
|
|
7367
|
+
}
|
|
7368
|
+
/**
|
|
7369
|
+
*
|
|
7370
|
+
* @export
|
|
7371
|
+
* @interface ItemSearchInputAllowedFilters
|
|
7372
|
+
*/
|
|
7373
|
+
export interface ItemSearchInputAllowedFilters {
|
|
7374
|
+
/**
|
|
7375
|
+
*
|
|
7376
|
+
* @type {Array<string>}
|
|
7377
|
+
* @memberof ItemSearchInputAllowedFilters
|
|
7378
|
+
*/
|
|
7379
|
+
name?: Array<string>;
|
|
7380
|
+
/**
|
|
7381
|
+
*
|
|
7382
|
+
* @type {Array<string>}
|
|
7383
|
+
* @memberof ItemSearchInputAllowedFilters
|
|
7384
|
+
*/
|
|
7385
|
+
code?: Array<string>;
|
|
7386
|
+
/**
|
|
7387
|
+
*
|
|
7388
|
+
* @type {Array<string>}
|
|
7389
|
+
* @memberof ItemSearchInputAllowedFilters
|
|
7390
|
+
*/
|
|
7391
|
+
gameserverId?: Array<string>;
|
|
7392
|
+
/**
|
|
7393
|
+
*
|
|
7394
|
+
* @type {Array<string>}
|
|
7395
|
+
* @memberof ItemSearchInputAllowedFilters
|
|
7396
|
+
*/
|
|
7397
|
+
id?: Array<string>;
|
|
7398
|
+
}
|
|
7399
|
+
/**
|
|
7400
|
+
*
|
|
7401
|
+
* @export
|
|
7402
|
+
* @interface ItemSearchInputAllowedSearch
|
|
7403
|
+
*/
|
|
7404
|
+
export interface ItemSearchInputAllowedSearch {
|
|
7405
|
+
/**
|
|
7406
|
+
*
|
|
7407
|
+
* @type {Array<string>}
|
|
7408
|
+
* @memberof ItemSearchInputAllowedSearch
|
|
7409
|
+
*/
|
|
7410
|
+
name?: Array<string>;
|
|
7411
|
+
/**
|
|
7412
|
+
*
|
|
7413
|
+
* @type {Array<string>}
|
|
7414
|
+
* @memberof ItemSearchInputAllowedSearch
|
|
7415
|
+
*/
|
|
7416
|
+
code?: Array<string>;
|
|
7417
|
+
}
|
|
7418
|
+
/**
|
|
7419
|
+
*
|
|
7420
|
+
* @export
|
|
6797
7421
|
* @interface ItemSearchInputDTO
|
|
6798
7422
|
*/
|
|
6799
7423
|
export interface ItemSearchInputDTO {
|
|
@@ -7196,6 +7820,32 @@ export interface LoginOutputDTOAPI {
|
|
|
7196
7820
|
*/
|
|
7197
7821
|
meta: MetadataOutput;
|
|
7198
7822
|
}
|
|
7823
|
+
/**
|
|
7824
|
+
*
|
|
7825
|
+
* @export
|
|
7826
|
+
* @interface LoginQueryParams
|
|
7827
|
+
*/
|
|
7828
|
+
export interface LoginQueryParams {
|
|
7829
|
+
/**
|
|
7830
|
+
*
|
|
7831
|
+
* @type {string}
|
|
7832
|
+
* @memberof LoginQueryParams
|
|
7833
|
+
*/
|
|
7834
|
+
redirect?: string;
|
|
7835
|
+
}
|
|
7836
|
+
/**
|
|
7837
|
+
*
|
|
7838
|
+
* @export
|
|
7839
|
+
* @interface LogoutQueryParams
|
|
7840
|
+
*/
|
|
7841
|
+
export interface LogoutQueryParams {
|
|
7842
|
+
/**
|
|
7843
|
+
*
|
|
7844
|
+
* @type {string}
|
|
7845
|
+
* @memberof LogoutQueryParams
|
|
7846
|
+
*/
|
|
7847
|
+
redirect?: string;
|
|
7848
|
+
}
|
|
7199
7849
|
/**
|
|
7200
7850
|
*
|
|
7201
7851
|
* @export
|
|
@@ -7319,7 +7969,7 @@ export interface MeOutputDTO {
|
|
|
7319
7969
|
* @type {UserOutputWithRolesDTO}
|
|
7320
7970
|
* @memberof MeOutputDTO
|
|
7321
7971
|
*/
|
|
7322
|
-
user
|
|
7972
|
+
user?: UserOutputWithRolesDTO;
|
|
7323
7973
|
/**
|
|
7324
7974
|
*
|
|
7325
7975
|
* @type {Array<DomainOutputDTO>}
|
|
@@ -7331,7 +7981,7 @@ export interface MeOutputDTO {
|
|
|
7331
7981
|
* @type {string}
|
|
7332
7982
|
* @memberof MeOutputDTO
|
|
7333
7983
|
*/
|
|
7334
|
-
domain
|
|
7984
|
+
domain?: string;
|
|
7335
7985
|
/**
|
|
7336
7986
|
*
|
|
7337
7987
|
* @type {PlayerOutputWithRolesDTO}
|
|
@@ -7487,7 +8137,7 @@ export interface MetadataOutput {
|
|
|
7487
8137
|
* @type {ErrorOutput}
|
|
7488
8138
|
* @memberof MetadataOutput
|
|
7489
8139
|
*/
|
|
7490
|
-
error
|
|
8140
|
+
error?: ErrorOutput;
|
|
7491
8141
|
/**
|
|
7492
8142
|
*
|
|
7493
8143
|
* @type {number}
|
|
@@ -7819,6 +8469,94 @@ export interface ModuleInstallParamId {
|
|
|
7819
8469
|
*/
|
|
7820
8470
|
gameServerId: string;
|
|
7821
8471
|
}
|
|
8472
|
+
/**
|
|
8473
|
+
*
|
|
8474
|
+
* @export
|
|
8475
|
+
* @interface ModuleInstallationKpisDTO
|
|
8476
|
+
*/
|
|
8477
|
+
export interface ModuleInstallationKpisDTO {
|
|
8478
|
+
/**
|
|
8479
|
+
*
|
|
8480
|
+
* @type {number}
|
|
8481
|
+
* @memberof ModuleInstallationKpisDTO
|
|
8482
|
+
*/
|
|
8483
|
+
runs: number;
|
|
8484
|
+
/**
|
|
8485
|
+
*
|
|
8486
|
+
* @type {number}
|
|
8487
|
+
* @memberof ModuleInstallationKpisDTO
|
|
8488
|
+
*/
|
|
8489
|
+
failures: number;
|
|
8490
|
+
/**
|
|
8491
|
+
*
|
|
8492
|
+
* @type {number}
|
|
8493
|
+
* @memberof ModuleInstallationKpisDTO
|
|
8494
|
+
*/
|
|
8495
|
+
successRate: number;
|
|
8496
|
+
}
|
|
8497
|
+
/**
|
|
8498
|
+
*
|
|
8499
|
+
* @export
|
|
8500
|
+
* @interface ModuleInstallationKpisDTOAPI
|
|
8501
|
+
*/
|
|
8502
|
+
export interface ModuleInstallationKpisDTOAPI {
|
|
8503
|
+
/**
|
|
8504
|
+
*
|
|
8505
|
+
* @type {ModuleInstallationKpisDTO}
|
|
8506
|
+
* @memberof ModuleInstallationKpisDTOAPI
|
|
8507
|
+
*/
|
|
8508
|
+
data: ModuleInstallationKpisDTO;
|
|
8509
|
+
/**
|
|
8510
|
+
*
|
|
8511
|
+
* @type {MetadataOutput}
|
|
8512
|
+
* @memberof ModuleInstallationKpisDTOAPI
|
|
8513
|
+
*/
|
|
8514
|
+
meta: MetadataOutput;
|
|
8515
|
+
}
|
|
8516
|
+
/**
|
|
8517
|
+
*
|
|
8518
|
+
* @export
|
|
8519
|
+
* @interface ModuleInstallationKpisQueryDTO
|
|
8520
|
+
*/
|
|
8521
|
+
export interface ModuleInstallationKpisQueryDTO {
|
|
8522
|
+
/**
|
|
8523
|
+
*
|
|
8524
|
+
* @type {string}
|
|
8525
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
8526
|
+
*/
|
|
8527
|
+
startDate?: string;
|
|
8528
|
+
/**
|
|
8529
|
+
*
|
|
8530
|
+
* @type {string}
|
|
8531
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
8532
|
+
*/
|
|
8533
|
+
endDate?: string;
|
|
8534
|
+
/**
|
|
8535
|
+
*
|
|
8536
|
+
* @type {string}
|
|
8537
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
8538
|
+
*/
|
|
8539
|
+
gameServerId: string;
|
|
8540
|
+
/**
|
|
8541
|
+
*
|
|
8542
|
+
* @type {string}
|
|
8543
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
8544
|
+
*/
|
|
8545
|
+
moduleId: string;
|
|
8546
|
+
/**
|
|
8547
|
+
*
|
|
8548
|
+
* @type {string}
|
|
8549
|
+
* @memberof ModuleInstallationKpisQueryDTO
|
|
8550
|
+
*/
|
|
8551
|
+
period?: ModuleInstallationKpisQueryDTOPeriodEnum;
|
|
8552
|
+
}
|
|
8553
|
+
export declare const ModuleInstallationKpisQueryDTOPeriodEnum: {
|
|
8554
|
+
readonly _24h: "24h";
|
|
8555
|
+
readonly _7d: "7d";
|
|
8556
|
+
readonly _30d: "30d";
|
|
8557
|
+
readonly _90d: "90d";
|
|
8558
|
+
};
|
|
8559
|
+
export type ModuleInstallationKpisQueryDTOPeriodEnum = (typeof ModuleInstallationKpisQueryDTOPeriodEnum)[keyof typeof ModuleInstallationKpisQueryDTOPeriodEnum];
|
|
7822
8560
|
/**
|
|
7823
8561
|
*
|
|
7824
8562
|
* @export
|
|
@@ -9491,7 +10229,13 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
9491
10229
|
* @type {Array<string>}
|
|
9492
10230
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
9493
10231
|
*/
|
|
9494
|
-
playerIds
|
|
10232
|
+
playerIds?: Array<string>;
|
|
10233
|
+
/**
|
|
10234
|
+
*
|
|
10235
|
+
* @type {PlayerSearchInputDTO}
|
|
10236
|
+
* @memberof PlayerBulkAssignRoleInputDTO
|
|
10237
|
+
*/
|
|
10238
|
+
query?: PlayerSearchInputDTO;
|
|
9495
10239
|
/**
|
|
9496
10240
|
*
|
|
9497
10241
|
* @type {string}
|
|
@@ -9504,6 +10248,18 @@ export interface PlayerBulkAssignRoleInputDTO {
|
|
|
9504
10248
|
* @memberof PlayerBulkAssignRoleInputDTO
|
|
9505
10249
|
*/
|
|
9506
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>;
|
|
9507
10263
|
}
|
|
9508
10264
|
/**
|
|
9509
10265
|
*
|
|
@@ -9579,7 +10335,25 @@ export interface PlayerBulkDeleteInputDTO {
|
|
|
9579
10335
|
* @type {Array<string>}
|
|
9580
10336
|
* @memberof PlayerBulkDeleteInputDTO
|
|
9581
10337
|
*/
|
|
9582
|
-
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>;
|
|
9583
10357
|
}
|
|
9584
10358
|
/**
|
|
9585
10359
|
*
|
|
@@ -10151,6 +10925,12 @@ export interface PlayerOnGameServerSearchInputAllowedRangeFilter {
|
|
|
10151
10925
|
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10152
10926
|
*/
|
|
10153
10927
|
playtimeSeconds?: number;
|
|
10928
|
+
/**
|
|
10929
|
+
*
|
|
10930
|
+
* @type {number}
|
|
10931
|
+
* @memberof PlayerOnGameServerSearchInputAllowedRangeFilter
|
|
10932
|
+
*/
|
|
10933
|
+
currency?: number;
|
|
10154
10934
|
/**
|
|
10155
10935
|
*
|
|
10156
10936
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -11072,6 +11852,24 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
11072
11852
|
* @memberof PlayerSearchInputAllowedFilters
|
|
11073
11853
|
*/
|
|
11074
11854
|
roleId?: Array<string>;
|
|
11855
|
+
/**
|
|
11856
|
+
*
|
|
11857
|
+
* @type {Array<boolean>}
|
|
11858
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11859
|
+
*/
|
|
11860
|
+
online?: Array<boolean>;
|
|
11861
|
+
/**
|
|
11862
|
+
*
|
|
11863
|
+
* @type {Array<string>}
|
|
11864
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11865
|
+
*/
|
|
11866
|
+
roleAssignmentScope?: Array<PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum>;
|
|
11867
|
+
/**
|
|
11868
|
+
*
|
|
11869
|
+
* @type {Array<string>}
|
|
11870
|
+
* @memberof PlayerSearchInputAllowedFilters
|
|
11871
|
+
*/
|
|
11872
|
+
roleAssignmentGameServerId?: Array<string>;
|
|
11075
11873
|
/**
|
|
11076
11874
|
*
|
|
11077
11875
|
* @type {Array<string>}
|
|
@@ -11079,6 +11877,11 @@ export interface PlayerSearchInputAllowedFilters {
|
|
|
11079
11877
|
*/
|
|
11080
11878
|
id?: Array<string>;
|
|
11081
11879
|
}
|
|
11880
|
+
export declare const PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum: {
|
|
11881
|
+
readonly Global: "global";
|
|
11882
|
+
readonly GameServer: "gameServer";
|
|
11883
|
+
};
|
|
11884
|
+
export type PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum = (typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum)[keyof typeof PlayerSearchInputAllowedFiltersRoleAssignmentScopeEnum];
|
|
11082
11885
|
/**
|
|
11083
11886
|
*
|
|
11084
11887
|
* @export
|
|
@@ -11324,13 +12127,31 @@ export interface PogBulkAddCurrencyInputDTO {
|
|
|
11324
12127
|
* @type {Array<string>}
|
|
11325
12128
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11326
12129
|
*/
|
|
11327
|
-
playerIds
|
|
12130
|
+
playerIds?: Array<string>;
|
|
12131
|
+
/**
|
|
12132
|
+
*
|
|
12133
|
+
* @type {PlayerOnGameServerSearchInputDTO}
|
|
12134
|
+
* @memberof PogBulkAddCurrencyInputDTO
|
|
12135
|
+
*/
|
|
12136
|
+
query?: PlayerOnGameServerSearchInputDTO;
|
|
11328
12137
|
/**
|
|
11329
12138
|
*
|
|
11330
12139
|
* @type {number}
|
|
11331
12140
|
* @memberof PogBulkAddCurrencyInputDTO
|
|
11332
12141
|
*/
|
|
11333
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>;
|
|
11334
12155
|
}
|
|
11335
12156
|
/**
|
|
11336
12157
|
*
|
|
@@ -11625,6 +12446,19 @@ export declare const RecentOrderDTOStatusEnum: {
|
|
|
11625
12446
|
readonly Canceled: "CANCELED";
|
|
11626
12447
|
};
|
|
11627
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
|
+
}
|
|
11628
12462
|
/**
|
|
11629
12463
|
*
|
|
11630
12464
|
* @export
|
|
@@ -11636,7 +12470,7 @@ export interface RedirectQs {
|
|
|
11636
12470
|
* @type {string}
|
|
11637
12471
|
* @memberof RedirectQs
|
|
11638
12472
|
*/
|
|
11639
|
-
redirect
|
|
12473
|
+
redirect?: string;
|
|
11640
12474
|
}
|
|
11641
12475
|
/**
|
|
11642
12476
|
*
|
|
@@ -12431,7 +13265,7 @@ export interface RoleUpdateInputDTO {
|
|
|
12431
13265
|
* @type {string}
|
|
12432
13266
|
* @memberof RoleUpdateInputDTO
|
|
12433
13267
|
*/
|
|
12434
|
-
linkedDiscordRoleId?: string;
|
|
13268
|
+
linkedDiscordRoleId?: string | null;
|
|
12435
13269
|
}
|
|
12436
13270
|
/**
|
|
12437
13271
|
*
|
|
@@ -13164,7 +13998,13 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13164
13998
|
* @type {Array<string>}
|
|
13165
13999
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13166
14000
|
*/
|
|
13167
|
-
listingIds
|
|
14001
|
+
listingIds?: Array<string>;
|
|
14002
|
+
/**
|
|
14003
|
+
*
|
|
14004
|
+
* @type {ShopListingSearchInputDTO}
|
|
14005
|
+
* @memberof ShopCategoryBulkAssignDTO
|
|
14006
|
+
*/
|
|
14007
|
+
query?: ShopListingSearchInputDTO;
|
|
13168
14008
|
/**
|
|
13169
14009
|
*
|
|
13170
14010
|
* @type {Array<string>}
|
|
@@ -13177,6 +14017,18 @@ export interface ShopCategoryBulkAssignDTO {
|
|
|
13177
14017
|
* @memberof ShopCategoryBulkAssignDTO
|
|
13178
14018
|
*/
|
|
13179
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>;
|
|
13180
14032
|
}
|
|
13181
14033
|
/**
|
|
13182
14034
|
*
|
|
@@ -13625,6 +14477,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
13625
14477
|
*/
|
|
13626
14478
|
daysSinceLastSale?: number;
|
|
13627
14479
|
}
|
|
14480
|
+
/**
|
|
14481
|
+
*
|
|
14482
|
+
* @export
|
|
14483
|
+
* @interface ShopImportFailureDTO
|
|
14484
|
+
*/
|
|
14485
|
+
export interface ShopImportFailureDTO {
|
|
14486
|
+
/**
|
|
14487
|
+
*
|
|
14488
|
+
* @type {string}
|
|
14489
|
+
* @memberof ShopImportFailureDTO
|
|
14490
|
+
*/
|
|
14491
|
+
name: string;
|
|
14492
|
+
/**
|
|
14493
|
+
*
|
|
14494
|
+
* @type {string}
|
|
14495
|
+
* @memberof ShopImportFailureDTO
|
|
14496
|
+
*/
|
|
14497
|
+
reason: string;
|
|
14498
|
+
}
|
|
13628
14499
|
/**
|
|
13629
14500
|
*
|
|
13630
14501
|
* @export
|
|
@@ -13650,6 +14521,44 @@ export interface ShopImportOptions {
|
|
|
13650
14521
|
*/
|
|
13651
14522
|
gameServerId: string;
|
|
13652
14523
|
}
|
|
14524
|
+
/**
|
|
14525
|
+
*
|
|
14526
|
+
* @export
|
|
14527
|
+
* @interface ShopImportResultDTO
|
|
14528
|
+
*/
|
|
14529
|
+
export interface ShopImportResultDTO {
|
|
14530
|
+
/**
|
|
14531
|
+
*
|
|
14532
|
+
* @type {number}
|
|
14533
|
+
* @memberof ShopImportResultDTO
|
|
14534
|
+
*/
|
|
14535
|
+
imported: number;
|
|
14536
|
+
/**
|
|
14537
|
+
*
|
|
14538
|
+
* @type {Array<ShopImportFailureDTO>}
|
|
14539
|
+
* @memberof ShopImportResultDTO
|
|
14540
|
+
*/
|
|
14541
|
+
failed: Array<ShopImportFailureDTO>;
|
|
14542
|
+
}
|
|
14543
|
+
/**
|
|
14544
|
+
*
|
|
14545
|
+
* @export
|
|
14546
|
+
* @interface ShopImportResultDTOAPI
|
|
14547
|
+
*/
|
|
14548
|
+
export interface ShopImportResultDTOAPI {
|
|
14549
|
+
/**
|
|
14550
|
+
*
|
|
14551
|
+
* @type {ShopImportResultDTO}
|
|
14552
|
+
* @memberof ShopImportResultDTOAPI
|
|
14553
|
+
*/
|
|
14554
|
+
data: ShopImportResultDTO;
|
|
14555
|
+
/**
|
|
14556
|
+
*
|
|
14557
|
+
* @type {MetadataOutput}
|
|
14558
|
+
* @memberof ShopImportResultDTOAPI
|
|
14559
|
+
*/
|
|
14560
|
+
meta: MetadataOutput;
|
|
14561
|
+
}
|
|
13653
14562
|
/**
|
|
13654
14563
|
*
|
|
13655
14564
|
* @export
|
|
@@ -13730,6 +14639,56 @@ export interface ShopKpisDTOAPI {
|
|
|
13730
14639
|
*/
|
|
13731
14640
|
meta: MetadataOutput;
|
|
13732
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
|
+
}
|
|
13733
14692
|
/**
|
|
13734
14693
|
*
|
|
13735
14694
|
* @export
|
|
@@ -14772,6 +15731,175 @@ export interface SmallModuleVersionOutputDTO {
|
|
|
14772
15731
|
*/
|
|
14773
15732
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
14774
15733
|
}
|
|
15734
|
+
/**
|
|
15735
|
+
*
|
|
15736
|
+
* @export
|
|
15737
|
+
* @interface StorefrontConfigCreateDTO
|
|
15738
|
+
*/
|
|
15739
|
+
export interface StorefrontConfigCreateDTO {
|
|
15740
|
+
/**
|
|
15741
|
+
*
|
|
15742
|
+
* @type {string}
|
|
15743
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15744
|
+
*/
|
|
15745
|
+
gameServerId: string;
|
|
15746
|
+
/**
|
|
15747
|
+
*
|
|
15748
|
+
* @type {string}
|
|
15749
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15750
|
+
*/
|
|
15751
|
+
templateId: string;
|
|
15752
|
+
/**
|
|
15753
|
+
*
|
|
15754
|
+
* @type {object}
|
|
15755
|
+
* @memberof StorefrontConfigCreateDTO
|
|
15756
|
+
*/
|
|
15757
|
+
values?: object;
|
|
15758
|
+
}
|
|
15759
|
+
/**
|
|
15760
|
+
*
|
|
15761
|
+
* @export
|
|
15762
|
+
* @interface StorefrontConfigOutputDTO
|
|
15763
|
+
*/
|
|
15764
|
+
export interface StorefrontConfigOutputDTO {
|
|
15765
|
+
/**
|
|
15766
|
+
*
|
|
15767
|
+
* @type {string}
|
|
15768
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15769
|
+
*/
|
|
15770
|
+
gameServerId: string;
|
|
15771
|
+
/**
|
|
15772
|
+
*
|
|
15773
|
+
* @type {string}
|
|
15774
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15775
|
+
*/
|
|
15776
|
+
templateId: string;
|
|
15777
|
+
/**
|
|
15778
|
+
*
|
|
15779
|
+
* @type {object}
|
|
15780
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15781
|
+
*/
|
|
15782
|
+
values: object;
|
|
15783
|
+
/**
|
|
15784
|
+
*
|
|
15785
|
+
* @type {string}
|
|
15786
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15787
|
+
*/
|
|
15788
|
+
id: string;
|
|
15789
|
+
/**
|
|
15790
|
+
*
|
|
15791
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
15792
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15793
|
+
*/
|
|
15794
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15795
|
+
/**
|
|
15796
|
+
*
|
|
15797
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
15798
|
+
* @memberof StorefrontConfigOutputDTO
|
|
15799
|
+
*/
|
|
15800
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15801
|
+
}
|
|
15802
|
+
/**
|
|
15803
|
+
*
|
|
15804
|
+
* @export
|
|
15805
|
+
* @interface StorefrontConfigUpdateDTO
|
|
15806
|
+
*/
|
|
15807
|
+
export interface StorefrontConfigUpdateDTO {
|
|
15808
|
+
/**
|
|
15809
|
+
*
|
|
15810
|
+
* @type {string}
|
|
15811
|
+
* @memberof StorefrontConfigUpdateDTO
|
|
15812
|
+
*/
|
|
15813
|
+
templateId?: string;
|
|
15814
|
+
/**
|
|
15815
|
+
*
|
|
15816
|
+
* @type {object}
|
|
15817
|
+
* @memberof StorefrontConfigUpdateDTO
|
|
15818
|
+
*/
|
|
15819
|
+
values?: object;
|
|
15820
|
+
}
|
|
15821
|
+
/**
|
|
15822
|
+
*
|
|
15823
|
+
* @export
|
|
15824
|
+
* @interface StorefrontConfigUpsertBody
|
|
15825
|
+
*/
|
|
15826
|
+
export interface StorefrontConfigUpsertBody {
|
|
15827
|
+
/**
|
|
15828
|
+
*
|
|
15829
|
+
* @type {string}
|
|
15830
|
+
* @memberof StorefrontConfigUpsertBody
|
|
15831
|
+
*/
|
|
15832
|
+
templateId: string;
|
|
15833
|
+
/**
|
|
15834
|
+
*
|
|
15835
|
+
* @type {object}
|
|
15836
|
+
* @memberof StorefrontConfigUpsertBody
|
|
15837
|
+
*/
|
|
15838
|
+
values: object;
|
|
15839
|
+
}
|
|
15840
|
+
/**
|
|
15841
|
+
*
|
|
15842
|
+
* @export
|
|
15843
|
+
* @interface StorefrontConfigUpsertDTO
|
|
15844
|
+
*/
|
|
15845
|
+
export interface StorefrontConfigUpsertDTO {
|
|
15846
|
+
/**
|
|
15847
|
+
*
|
|
15848
|
+
* @type {string}
|
|
15849
|
+
* @memberof StorefrontConfigUpsertDTO
|
|
15850
|
+
*/
|
|
15851
|
+
templateId: string;
|
|
15852
|
+
/**
|
|
15853
|
+
*
|
|
15854
|
+
* @type {object}
|
|
15855
|
+
* @memberof StorefrontConfigUpsertDTO
|
|
15856
|
+
*/
|
|
15857
|
+
values: object;
|
|
15858
|
+
}
|
|
15859
|
+
/**
|
|
15860
|
+
*
|
|
15861
|
+
* @export
|
|
15862
|
+
* @interface StorefrontTemplateDTO
|
|
15863
|
+
*/
|
|
15864
|
+
export interface StorefrontTemplateDTO {
|
|
15865
|
+
/**
|
|
15866
|
+
*
|
|
15867
|
+
* @type {string}
|
|
15868
|
+
* @memberof StorefrontTemplateDTO
|
|
15869
|
+
*/
|
|
15870
|
+
id: string;
|
|
15871
|
+
/**
|
|
15872
|
+
*
|
|
15873
|
+
* @type {string}
|
|
15874
|
+
* @memberof StorefrontTemplateDTO
|
|
15875
|
+
*/
|
|
15876
|
+
name: string;
|
|
15877
|
+
/**
|
|
15878
|
+
*
|
|
15879
|
+
* @type {object}
|
|
15880
|
+
* @memberof StorefrontTemplateDTO
|
|
15881
|
+
*/
|
|
15882
|
+
schema: object;
|
|
15883
|
+
}
|
|
15884
|
+
/**
|
|
15885
|
+
*
|
|
15886
|
+
* @export
|
|
15887
|
+
* @interface StorefrontTemplateOutputArrayDTOAPI
|
|
15888
|
+
*/
|
|
15889
|
+
export interface StorefrontTemplateOutputArrayDTOAPI {
|
|
15890
|
+
/**
|
|
15891
|
+
*
|
|
15892
|
+
* @type {Array<StorefrontTemplateDTO>}
|
|
15893
|
+
* @memberof StorefrontTemplateOutputArrayDTOAPI
|
|
15894
|
+
*/
|
|
15895
|
+
data: Array<StorefrontTemplateDTO>;
|
|
15896
|
+
/**
|
|
15897
|
+
*
|
|
15898
|
+
* @type {MetadataOutput}
|
|
15899
|
+
* @memberof StorefrontTemplateOutputArrayDTOAPI
|
|
15900
|
+
*/
|
|
15901
|
+
meta: MetadataOutput;
|
|
15902
|
+
}
|
|
14775
15903
|
/**
|
|
14776
15904
|
*
|
|
14777
15905
|
* @export
|
|
@@ -15093,6 +16221,49 @@ export interface TakaroEventHookExecuted {
|
|
|
15093
16221
|
*/
|
|
15094
16222
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15095
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
|
+
}
|
|
15096
16267
|
/**
|
|
15097
16268
|
*
|
|
15098
16269
|
* @export
|
|
@@ -16354,22 +17525,54 @@ export interface UserAssignmentOutputDTO {
|
|
|
16354
17525
|
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16355
17526
|
/**
|
|
16356
17527
|
*
|
|
16357
|
-
* @type {string}
|
|
16358
|
-
* @memberof UserAssignmentOutputDTO
|
|
17528
|
+
* @type {string}
|
|
17529
|
+
* @memberof UserAssignmentOutputDTO
|
|
17530
|
+
*/
|
|
17531
|
+
id: string;
|
|
17532
|
+
/**
|
|
17533
|
+
*
|
|
17534
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17535
|
+
* @memberof UserAssignmentOutputDTO
|
|
17536
|
+
*/
|
|
17537
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17538
|
+
/**
|
|
17539
|
+
*
|
|
17540
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17541
|
+
* @memberof UserAssignmentOutputDTO
|
|
17542
|
+
*/
|
|
17543
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17544
|
+
}
|
|
17545
|
+
/**
|
|
17546
|
+
*
|
|
17547
|
+
* @export
|
|
17548
|
+
* @interface UserCountOutputDTO
|
|
17549
|
+
*/
|
|
17550
|
+
export interface UserCountOutputDTO {
|
|
17551
|
+
/**
|
|
17552
|
+
*
|
|
17553
|
+
* @type {number}
|
|
17554
|
+
* @memberof UserCountOutputDTO
|
|
16359
17555
|
*/
|
|
16360
|
-
|
|
17556
|
+
count: number;
|
|
17557
|
+
}
|
|
17558
|
+
/**
|
|
17559
|
+
*
|
|
17560
|
+
* @export
|
|
17561
|
+
* @interface UserCountOutputDTOAPI
|
|
17562
|
+
*/
|
|
17563
|
+
export interface UserCountOutputDTOAPI {
|
|
16361
17564
|
/**
|
|
16362
17565
|
*
|
|
16363
|
-
* @type {
|
|
16364
|
-
* @memberof
|
|
17566
|
+
* @type {UserCountOutputDTO}
|
|
17567
|
+
* @memberof UserCountOutputDTOAPI
|
|
16365
17568
|
*/
|
|
16366
|
-
|
|
17569
|
+
data: UserCountOutputDTO;
|
|
16367
17570
|
/**
|
|
16368
17571
|
*
|
|
16369
|
-
* @type {
|
|
16370
|
-
* @memberof
|
|
17572
|
+
* @type {MetadataOutput}
|
|
17573
|
+
* @memberof UserCountOutputDTOAPI
|
|
16371
17574
|
*/
|
|
16372
|
-
|
|
17575
|
+
meta: MetadataOutput;
|
|
16373
17576
|
}
|
|
16374
17577
|
/**
|
|
16375
17578
|
*
|
|
@@ -16408,6 +17611,37 @@ export interface UserCreateInputDTO {
|
|
|
16408
17611
|
*/
|
|
16409
17612
|
isDashboardUser?: boolean;
|
|
16410
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
|
+
}
|
|
16411
17645
|
/**
|
|
16412
17646
|
*
|
|
16413
17647
|
* @export
|
|
@@ -16511,13 +17745,25 @@ export interface UserOutputDTO {
|
|
|
16511
17745
|
* @type {PlayerOutputWithRolesDTO}
|
|
16512
17746
|
* @memberof UserOutputDTO
|
|
16513
17747
|
*/
|
|
16514
|
-
player
|
|
17748
|
+
player?: PlayerOutputWithRolesDTO;
|
|
16515
17749
|
/**
|
|
16516
17750
|
*
|
|
16517
17751
|
* @type {boolean}
|
|
16518
17752
|
* @memberof UserOutputDTO
|
|
16519
17753
|
*/
|
|
16520
17754
|
isDashboardUser: boolean;
|
|
17755
|
+
/**
|
|
17756
|
+
*
|
|
17757
|
+
* @type {boolean}
|
|
17758
|
+
* @memberof UserOutputDTO
|
|
17759
|
+
*/
|
|
17760
|
+
isSupportAccount: boolean;
|
|
17761
|
+
/**
|
|
17762
|
+
*
|
|
17763
|
+
* @type {string}
|
|
17764
|
+
* @memberof UserOutputDTO
|
|
17765
|
+
*/
|
|
17766
|
+
inviteLinkId?: string;
|
|
16521
17767
|
/**
|
|
16522
17768
|
*
|
|
16523
17769
|
* @type {string}
|
|
@@ -16627,13 +17873,44 @@ export interface UserOutputWithRolesDTO {
|
|
|
16627
17873
|
* @type {PlayerOutputWithRolesDTO}
|
|
16628
17874
|
* @memberof UserOutputWithRolesDTO
|
|
16629
17875
|
*/
|
|
16630
|
-
player
|
|
17876
|
+
player?: PlayerOutputWithRolesDTO;
|
|
16631
17877
|
/**
|
|
16632
17878
|
*
|
|
16633
17879
|
* @type {boolean}
|
|
16634
17880
|
* @memberof UserOutputWithRolesDTO
|
|
16635
17881
|
*/
|
|
16636
17882
|
isDashboardUser: boolean;
|
|
17883
|
+
/**
|
|
17884
|
+
*
|
|
17885
|
+
* @type {boolean}
|
|
17886
|
+
* @memberof UserOutputWithRolesDTO
|
|
17887
|
+
*/
|
|
17888
|
+
isSupportAccount: boolean;
|
|
17889
|
+
/**
|
|
17890
|
+
*
|
|
17891
|
+
* @type {string}
|
|
17892
|
+
* @memberof UserOutputWithRolesDTO
|
|
17893
|
+
*/
|
|
17894
|
+
inviteLinkId?: string;
|
|
17895
|
+
}
|
|
17896
|
+
/**
|
|
17897
|
+
*
|
|
17898
|
+
* @export
|
|
17899
|
+
* @interface UserOutputWithRolesDTOAPI
|
|
17900
|
+
*/
|
|
17901
|
+
export interface UserOutputWithRolesDTOAPI {
|
|
17902
|
+
/**
|
|
17903
|
+
*
|
|
17904
|
+
* @type {UserOutputWithRolesDTO}
|
|
17905
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17906
|
+
*/
|
|
17907
|
+
data: UserOutputWithRolesDTO;
|
|
17908
|
+
/**
|
|
17909
|
+
*
|
|
17910
|
+
* @type {MetadataOutput}
|
|
17911
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17912
|
+
*/
|
|
17913
|
+
meta: MetadataOutput;
|
|
16637
17914
|
}
|
|
16638
17915
|
/**
|
|
16639
17916
|
*
|
|
@@ -16843,6 +18120,31 @@ export interface UserUpdateDTO {
|
|
|
16843
18120
|
*/
|
|
16844
18121
|
isDashboardUser?: boolean;
|
|
16845
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
|
+
}
|
|
16846
18148
|
/**
|
|
16847
18149
|
*
|
|
16848
18150
|
* @export
|
|
@@ -17052,6 +18354,12 @@ export interface VariableSearchInputAllowedSearch {
|
|
|
17052
18354
|
* @memberof VariableSearchInputAllowedSearch
|
|
17053
18355
|
*/
|
|
17054
18356
|
key?: Array<string>;
|
|
18357
|
+
/**
|
|
18358
|
+
*
|
|
18359
|
+
* @type {Array<string>}
|
|
18360
|
+
* @memberof VariableSearchInputAllowedSearch
|
|
18361
|
+
*/
|
|
18362
|
+
value?: Array<string>;
|
|
17055
18363
|
}
|
|
17056
18364
|
/**
|
|
17057
18365
|
*
|
|
@@ -17303,7 +18611,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17303
18611
|
*/
|
|
17304
18612
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17305
18613
|
/**
|
|
17306
|
-
* Normalized 0-1 scores across
|
|
18614
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
17307
18615
|
* @summary Get module health scores
|
|
17308
18616
|
* @param {string} [startDate]
|
|
17309
18617
|
* @param {string} [endDate]
|
|
@@ -17313,6 +18621,18 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17313
18621
|
* @throws {RequiredError}
|
|
17314
18622
|
*/
|
|
17315
18623
|
analyticsControllerGetModuleHealth: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18624
|
+
/**
|
|
18625
|
+
* Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
|
|
18626
|
+
* @summary Get per-installation module KPIs
|
|
18627
|
+
* @param {string} gameServerId
|
|
18628
|
+
* @param {string} moduleId
|
|
18629
|
+
* @param {string} [startDate]
|
|
18630
|
+
* @param {string} [endDate]
|
|
18631
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
18632
|
+
* @param {*} [options] Override http request option.
|
|
18633
|
+
* @throws {RequiredError}
|
|
18634
|
+
*/
|
|
18635
|
+
analyticsControllerGetModuleInstallationKpis: (gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17316
18636
|
/**
|
|
17317
18637
|
* Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
|
|
17318
18638
|
* @summary Get module item failure aggregate
|
|
@@ -17524,7 +18844,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17524
18844
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17525
18845
|
/**
|
|
17526
18846
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
17527
|
-
* @summary Get top modules by
|
|
18847
|
+
* @summary Get top modules by execution volume
|
|
17528
18848
|
* @param {string} [startDate]
|
|
17529
18849
|
* @param {string} [endDate]
|
|
17530
18850
|
* @param {string} [gameServerId]
|
|
@@ -17680,7 +19000,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
17680
19000
|
*/
|
|
17681
19001
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
17682
19002
|
/**
|
|
17683
|
-
* Normalized 0-1 scores across
|
|
19003
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
17684
19004
|
* @summary Get module health scores
|
|
17685
19005
|
* @param {string} [startDate]
|
|
17686
19006
|
* @param {string} [endDate]
|
|
@@ -17690,6 +19010,18 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
17690
19010
|
* @throws {RequiredError}
|
|
17691
19011
|
*/
|
|
17692
19012
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleHealthEntryDTOAPI>>;
|
|
19013
|
+
/**
|
|
19014
|
+
* Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
|
|
19015
|
+
* @summary Get per-installation module KPIs
|
|
19016
|
+
* @param {string} gameServerId
|
|
19017
|
+
* @param {string} moduleId
|
|
19018
|
+
* @param {string} [startDate]
|
|
19019
|
+
* @param {string} [endDate]
|
|
19020
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
19021
|
+
* @param {*} [options] Override http request option.
|
|
19022
|
+
* @throws {RequiredError}
|
|
19023
|
+
*/
|
|
19024
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModuleInstallationKpisDTOAPI>>;
|
|
17693
19025
|
/**
|
|
17694
19026
|
* Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
|
|
17695
19027
|
* @summary Get module item failure aggregate
|
|
@@ -17901,7 +19233,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
17901
19233
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
17902
19234
|
/**
|
|
17903
19235
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
17904
|
-
* @summary Get top modules by
|
|
19236
|
+
* @summary Get top modules by execution volume
|
|
17905
19237
|
* @param {string} [startDate]
|
|
17906
19238
|
* @param {string} [endDate]
|
|
17907
19239
|
* @param {string} [gameServerId]
|
|
@@ -18057,7 +19389,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18057
19389
|
*/
|
|
18058
19390
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18059
19391
|
/**
|
|
18060
|
-
* Normalized 0-1 scores across
|
|
19392
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18061
19393
|
* @summary Get module health scores
|
|
18062
19394
|
* @param {string} [startDate]
|
|
18063
19395
|
* @param {string} [endDate]
|
|
@@ -18067,6 +19399,18 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18067
19399
|
* @throws {RequiredError}
|
|
18068
19400
|
*/
|
|
18069
19401
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleHealthEntryDTOAPI>;
|
|
19402
|
+
/**
|
|
19403
|
+
* Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
|
|
19404
|
+
* @summary Get per-installation module KPIs
|
|
19405
|
+
* @param {string} gameServerId
|
|
19406
|
+
* @param {string} moduleId
|
|
19407
|
+
* @param {string} [startDate]
|
|
19408
|
+
* @param {string} [endDate]
|
|
19409
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
19410
|
+
* @param {*} [options] Override http request option.
|
|
19411
|
+
* @throws {RequiredError}
|
|
19412
|
+
*/
|
|
19413
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModuleInstallationKpisDTOAPI>;
|
|
18070
19414
|
/**
|
|
18071
19415
|
* Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
|
|
18072
19416
|
* @summary Get module item failure aggregate
|
|
@@ -18278,7 +19622,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18278
19622
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
18279
19623
|
/**
|
|
18280
19624
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18281
|
-
* @summary Get top modules by
|
|
19625
|
+
* @summary Get top modules by execution volume
|
|
18282
19626
|
* @param {string} [startDate]
|
|
18283
19627
|
* @param {string} [endDate]
|
|
18284
19628
|
* @param {string} [gameServerId]
|
|
@@ -18448,7 +19792,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18448
19792
|
*/
|
|
18449
19793
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
18450
19794
|
/**
|
|
18451
|
-
* Normalized 0-1 scores across
|
|
19795
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18452
19796
|
* @summary Get module health scores
|
|
18453
19797
|
* @param {string} [startDate]
|
|
18454
19798
|
* @param {string} [endDate]
|
|
@@ -18459,6 +19803,19 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18459
19803
|
* @memberof AnalyticsApi
|
|
18460
19804
|
*/
|
|
18461
19805
|
analyticsControllerGetModuleHealth(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModuleHealthPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleHealthEntryDTOAPI, any>>;
|
|
19806
|
+
/**
|
|
19807
|
+
* Runs, failures and success rate for one module on one game server. Both gameServerId and moduleId are required. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleInstallationKpis`
|
|
19808
|
+
* @summary Get per-installation module KPIs
|
|
19809
|
+
* @param {string} gameServerId
|
|
19810
|
+
* @param {string} moduleId
|
|
19811
|
+
* @param {string} [startDate]
|
|
19812
|
+
* @param {string} [endDate]
|
|
19813
|
+
* @param {AnalyticsControllerGetModuleInstallationKpisPeriodEnum} [period]
|
|
19814
|
+
* @param {*} [options] Override http request option.
|
|
19815
|
+
* @throws {RequiredError}
|
|
19816
|
+
* @memberof AnalyticsApi
|
|
19817
|
+
*/
|
|
19818
|
+
analyticsControllerGetModuleInstallationKpis(gameServerId: string, moduleId: string, startDate?: string, endDate?: string, period?: AnalyticsControllerGetModuleInstallationKpisPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModuleInstallationKpisDTOAPI, any>>;
|
|
18462
19819
|
/**
|
|
18463
19820
|
* Unified failure leaderboard across all module-item types (hooks, crons, commands, shop actions). Each row carries a `type` discriminator alongside runs, failures, and failure rate. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleItemFailureLeaderboard`
|
|
18464
19821
|
* @summary Get module item failure aggregate
|
|
@@ -18689,7 +20046,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18689
20046
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
18690
20047
|
/**
|
|
18691
20048
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18692
|
-
* @summary Get top modules by
|
|
20049
|
+
* @summary Get top modules by execution volume
|
|
18693
20050
|
* @param {string} [startDate]
|
|
18694
20051
|
* @param {string} [endDate]
|
|
18695
20052
|
* @param {string} [gameServerId]
|
|
@@ -18832,6 +20189,16 @@ export declare const AnalyticsControllerGetModuleHealthPeriodEnum: {
|
|
|
18832
20189
|
readonly _90d: "90d";
|
|
18833
20190
|
};
|
|
18834
20191
|
export type AnalyticsControllerGetModuleHealthPeriodEnum = (typeof AnalyticsControllerGetModuleHealthPeriodEnum)[keyof typeof AnalyticsControllerGetModuleHealthPeriodEnum];
|
|
20192
|
+
/**
|
|
20193
|
+
* @export
|
|
20194
|
+
*/
|
|
20195
|
+
export declare const AnalyticsControllerGetModuleInstallationKpisPeriodEnum: {
|
|
20196
|
+
readonly _24h: "24h";
|
|
20197
|
+
readonly _7d: "7d";
|
|
20198
|
+
readonly _30d: "30d";
|
|
20199
|
+
readonly _90d: "90d";
|
|
20200
|
+
};
|
|
20201
|
+
export type AnalyticsControllerGetModuleInstallationKpisPeriodEnum = (typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum)[keyof typeof AnalyticsControllerGetModuleInstallationKpisPeriodEnum];
|
|
18835
20202
|
/**
|
|
18836
20203
|
* @export
|
|
18837
20204
|
*/
|
|
@@ -19042,6 +20409,156 @@ export declare const AnalyticsControllerGetTopServersPeriodEnum: {
|
|
|
19042
20409
|
readonly _90d: "90d";
|
|
19043
20410
|
};
|
|
19044
20411
|
export type AnalyticsControllerGetTopServersPeriodEnum = (typeof AnalyticsControllerGetTopServersPeriodEnum)[keyof typeof AnalyticsControllerGetTopServersPeriodEnum];
|
|
20412
|
+
/**
|
|
20413
|
+
* AuthApi - axios parameter creator
|
|
20414
|
+
* @export
|
|
20415
|
+
*/
|
|
20416
|
+
export declare const AuthApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
20417
|
+
/**
|
|
20418
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
20419
|
+
* @summary Account
|
|
20420
|
+
* @param {*} [options] Override http request option.
|
|
20421
|
+
* @throws {RequiredError}
|
|
20422
|
+
*/
|
|
20423
|
+
authControllerAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20424
|
+
/**
|
|
20425
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
20426
|
+
* @summary Callback
|
|
20427
|
+
* @param {*} [options] Override http request option.
|
|
20428
|
+
* @throws {RequiredError}
|
|
20429
|
+
*/
|
|
20430
|
+
authControllerCallback: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20431
|
+
/**
|
|
20432
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
20433
|
+
* @summary Login
|
|
20434
|
+
* @param {string} [redirect]
|
|
20435
|
+
* @param {*} [options] Override http request option.
|
|
20436
|
+
* @throws {RequiredError}
|
|
20437
|
+
*/
|
|
20438
|
+
authControllerLogin: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20439
|
+
/**
|
|
20440
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
20441
|
+
* @summary Logout
|
|
20442
|
+
* @param {string} [redirect]
|
|
20443
|
+
* @param {*} [options] Override http request option.
|
|
20444
|
+
* @throws {RequiredError}
|
|
20445
|
+
*/
|
|
20446
|
+
authControllerLogout: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20447
|
+
};
|
|
20448
|
+
/**
|
|
20449
|
+
* AuthApi - functional programming interface
|
|
20450
|
+
* @export
|
|
20451
|
+
*/
|
|
20452
|
+
export declare const AuthApiFp: (configuration?: Configuration) => {
|
|
20453
|
+
/**
|
|
20454
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
20455
|
+
* @summary Account
|
|
20456
|
+
* @param {*} [options] Override http request option.
|
|
20457
|
+
* @throws {RequiredError}
|
|
20458
|
+
*/
|
|
20459
|
+
authControllerAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
20460
|
+
/**
|
|
20461
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
20462
|
+
* @summary Callback
|
|
20463
|
+
* @param {*} [options] Override http request option.
|
|
20464
|
+
* @throws {RequiredError}
|
|
20465
|
+
*/
|
|
20466
|
+
authControllerCallback(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
20467
|
+
/**
|
|
20468
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
20469
|
+
* @summary Login
|
|
20470
|
+
* @param {string} [redirect]
|
|
20471
|
+
* @param {*} [options] Override http request option.
|
|
20472
|
+
* @throws {RequiredError}
|
|
20473
|
+
*/
|
|
20474
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
20475
|
+
/**
|
|
20476
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
20477
|
+
* @summary Logout
|
|
20478
|
+
* @param {string} [redirect]
|
|
20479
|
+
* @param {*} [options] Override http request option.
|
|
20480
|
+
* @throws {RequiredError}
|
|
20481
|
+
*/
|
|
20482
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
20483
|
+
};
|
|
20484
|
+
/**
|
|
20485
|
+
* AuthApi - factory interface
|
|
20486
|
+
* @export
|
|
20487
|
+
*/
|
|
20488
|
+
export declare const AuthApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
20489
|
+
/**
|
|
20490
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
20491
|
+
* @summary Account
|
|
20492
|
+
* @param {*} [options] Override http request option.
|
|
20493
|
+
* @throws {RequiredError}
|
|
20494
|
+
*/
|
|
20495
|
+
authControllerAccount(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
20496
|
+
/**
|
|
20497
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
20498
|
+
* @summary Callback
|
|
20499
|
+
* @param {*} [options] Override http request option.
|
|
20500
|
+
* @throws {RequiredError}
|
|
20501
|
+
*/
|
|
20502
|
+
authControllerCallback(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
20503
|
+
/**
|
|
20504
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
20505
|
+
* @summary Login
|
|
20506
|
+
* @param {string} [redirect]
|
|
20507
|
+
* @param {*} [options] Override http request option.
|
|
20508
|
+
* @throws {RequiredError}
|
|
20509
|
+
*/
|
|
20510
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
20511
|
+
/**
|
|
20512
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
20513
|
+
* @summary Logout
|
|
20514
|
+
* @param {string} [redirect]
|
|
20515
|
+
* @param {*} [options] Override http request option.
|
|
20516
|
+
* @throws {RequiredError}
|
|
20517
|
+
*/
|
|
20518
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
20519
|
+
};
|
|
20520
|
+
/**
|
|
20521
|
+
* AuthApi - object-oriented interface
|
|
20522
|
+
* @export
|
|
20523
|
+
* @class AuthApi
|
|
20524
|
+
* @extends {BaseAPI}
|
|
20525
|
+
*/
|
|
20526
|
+
export declare class AuthApi extends BaseAPI {
|
|
20527
|
+
/**
|
|
20528
|
+
* <br> OperationId: `AuthControllerAccount`
|
|
20529
|
+
* @summary Account
|
|
20530
|
+
* @param {*} [options] Override http request option.
|
|
20531
|
+
* @throws {RequiredError}
|
|
20532
|
+
* @memberof AuthApi
|
|
20533
|
+
*/
|
|
20534
|
+
authControllerAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
20535
|
+
/**
|
|
20536
|
+
* <br> OperationId: `AuthControllerCallback`
|
|
20537
|
+
* @summary Callback
|
|
20538
|
+
* @param {*} [options] Override http request option.
|
|
20539
|
+
* @throws {RequiredError}
|
|
20540
|
+
* @memberof AuthApi
|
|
20541
|
+
*/
|
|
20542
|
+
authControllerCallback(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
20543
|
+
/**
|
|
20544
|
+
* <br> OperationId: `AuthControllerLogin`
|
|
20545
|
+
* @summary Login
|
|
20546
|
+
* @param {string} [redirect]
|
|
20547
|
+
* @param {*} [options] Override http request option.
|
|
20548
|
+
* @throws {RequiredError}
|
|
20549
|
+
* @memberof AuthApi
|
|
20550
|
+
*/
|
|
20551
|
+
authControllerLogin(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
20552
|
+
/**
|
|
20553
|
+
* <br> OperationId: `AuthControllerLogout`
|
|
20554
|
+
* @summary Logout
|
|
20555
|
+
* @param {string} [redirect]
|
|
20556
|
+
* @param {*} [options] Override http request option.
|
|
20557
|
+
* @throws {RequiredError}
|
|
20558
|
+
* @memberof AuthApi
|
|
20559
|
+
*/
|
|
20560
|
+
authControllerLogout(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
20561
|
+
}
|
|
19045
20562
|
/**
|
|
19046
20563
|
* CommandApi - axios parameter creator
|
|
19047
20564
|
* @export
|
|
@@ -20006,6 +21523,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
20006
21523
|
* @throws {RequiredError}
|
|
20007
21524
|
*/
|
|
20008
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>;
|
|
20009
21535
|
/**
|
|
20010
21536
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20011
21537
|
* @summary Get one
|
|
@@ -20070,6 +21596,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
20070
21596
|
* @throws {RequiredError}
|
|
20071
21597
|
*/
|
|
20072
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>>;
|
|
20073
21608
|
/**
|
|
20074
21609
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20075
21610
|
* @summary Get one
|
|
@@ -20134,6 +21669,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
20134
21669
|
* @throws {RequiredError}
|
|
20135
21670
|
*/
|
|
20136
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>;
|
|
20137
21681
|
/**
|
|
20138
21682
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20139
21683
|
* @summary Get one
|
|
@@ -20200,7 +21744,17 @@ export declare class DomainApi extends BaseAPI {
|
|
|
20200
21744
|
* @throws {RequiredError}
|
|
20201
21745
|
* @memberof DomainApi
|
|
20202
21746
|
*/
|
|
20203
|
-
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
|
|
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>>;
|
|
20204
21758
|
/**
|
|
20205
21759
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20206
21760
|
* @summary Get one
|
|
@@ -20615,11 +22169,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
|
|
|
20615
22169
|
/**
|
|
20616
22170
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
20617
22171
|
* @summary Auth discord
|
|
20618
|
-
* @param {string} redirect
|
|
22172
|
+
* @param {string} [redirect]
|
|
20619
22173
|
* @param {*} [options] Override http request option.
|
|
20620
22174
|
* @throws {RequiredError}
|
|
20621
22175
|
*/
|
|
20622
|
-
externalAuthControllerAuthDiscord: (redirect
|
|
22176
|
+
externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20623
22177
|
/**
|
|
20624
22178
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
20625
22179
|
* @summary Auth discord return
|
|
@@ -20636,11 +22190,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
|
|
|
20636
22190
|
/**
|
|
20637
22191
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
20638
22192
|
* @summary Auth discord
|
|
20639
|
-
* @param {string} redirect
|
|
22193
|
+
* @param {string} [redirect]
|
|
20640
22194
|
* @param {*} [options] Override http request option.
|
|
20641
22195
|
* @throws {RequiredError}
|
|
20642
22196
|
*/
|
|
20643
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22197
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
20644
22198
|
/**
|
|
20645
22199
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
20646
22200
|
* @summary Auth discord return
|
|
@@ -20657,11 +22211,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
|
|
|
20657
22211
|
/**
|
|
20658
22212
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
20659
22213
|
* @summary Auth discord
|
|
20660
|
-
* @param {string} redirect
|
|
22214
|
+
* @param {string} [redirect]
|
|
20661
22215
|
* @param {*} [options] Override http request option.
|
|
20662
22216
|
* @throws {RequiredError}
|
|
20663
22217
|
*/
|
|
20664
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22218
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
20665
22219
|
/**
|
|
20666
22220
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
20667
22221
|
* @summary Auth discord return
|
|
@@ -20680,12 +22234,12 @@ export declare class ExternalAuthApi extends BaseAPI {
|
|
|
20680
22234
|
/**
|
|
20681
22235
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
20682
22236
|
* @summary Auth discord
|
|
20683
|
-
* @param {string} redirect
|
|
22237
|
+
* @param {string} [redirect]
|
|
20684
22238
|
* @param {*} [options] Override http request option.
|
|
20685
22239
|
* @throws {RequiredError}
|
|
20686
22240
|
* @memberof ExternalAuthApi
|
|
20687
22241
|
*/
|
|
20688
|
-
externalAuthControllerAuthDiscord(redirect
|
|
22242
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
20689
22243
|
/**
|
|
20690
22244
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
20691
22245
|
* @summary Auth discord return
|
|
@@ -22119,6 +23673,197 @@ export declare class HookApi extends BaseAPI {
|
|
|
22119
23673
|
*/
|
|
22120
23674
|
hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
|
|
22121
23675
|
}
|
|
23676
|
+
/**
|
|
23677
|
+
* InviteLinkApi - axios parameter creator
|
|
23678
|
+
* @export
|
|
23679
|
+
*/
|
|
23680
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23681
|
+
/**
|
|
23682
|
+
* Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
23683
|
+
* @summary Create invite link
|
|
23684
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23685
|
+
* @param {*} [options] Override http request option.
|
|
23686
|
+
* @throws {RequiredError}
|
|
23687
|
+
*/
|
|
23688
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23689
|
+
/**
|
|
23690
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23691
|
+
* @summary Preview
|
|
23692
|
+
* @param {string} token
|
|
23693
|
+
* @param {*} [options] Override http request option.
|
|
23694
|
+
* @throws {RequiredError}
|
|
23695
|
+
*/
|
|
23696
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23697
|
+
/**
|
|
23698
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23699
|
+
* @summary Redeem
|
|
23700
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23701
|
+
* @param {*} [options] Override http request option.
|
|
23702
|
+
* @throws {RequiredError}
|
|
23703
|
+
*/
|
|
23704
|
+
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23705
|
+
/**
|
|
23706
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23707
|
+
* @summary Revoke
|
|
23708
|
+
* @param {string} id
|
|
23709
|
+
* @param {*} [options] Override http request option.
|
|
23710
|
+
* @throws {RequiredError}
|
|
23711
|
+
*/
|
|
23712
|
+
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23713
|
+
/**
|
|
23714
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23715
|
+
* @summary Search
|
|
23716
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23717
|
+
* @param {*} [options] Override http request option.
|
|
23718
|
+
* @throws {RequiredError}
|
|
23719
|
+
*/
|
|
23720
|
+
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23721
|
+
};
|
|
23722
|
+
/**
|
|
23723
|
+
* InviteLinkApi - functional programming interface
|
|
23724
|
+
* @export
|
|
23725
|
+
*/
|
|
23726
|
+
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
23727
|
+
/**
|
|
23728
|
+
* Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
23729
|
+
* @summary Create invite link
|
|
23730
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23731
|
+
* @param {*} [options] Override http request option.
|
|
23732
|
+
* @throws {RequiredError}
|
|
23733
|
+
*/
|
|
23734
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
23735
|
+
/**
|
|
23736
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23737
|
+
* @summary Preview
|
|
23738
|
+
* @param {string} token
|
|
23739
|
+
* @param {*} [options] Override http request option.
|
|
23740
|
+
* @throws {RequiredError}
|
|
23741
|
+
*/
|
|
23742
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
23743
|
+
/**
|
|
23744
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23745
|
+
* @summary Redeem
|
|
23746
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23747
|
+
* @param {*} [options] Override http request option.
|
|
23748
|
+
* @throws {RequiredError}
|
|
23749
|
+
*/
|
|
23750
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
23751
|
+
/**
|
|
23752
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23753
|
+
* @summary Revoke
|
|
23754
|
+
* @param {string} id
|
|
23755
|
+
* @param {*} [options] Override http request option.
|
|
23756
|
+
* @throws {RequiredError}
|
|
23757
|
+
*/
|
|
23758
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
23759
|
+
/**
|
|
23760
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23761
|
+
* @summary Search
|
|
23762
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23763
|
+
* @param {*} [options] Override http request option.
|
|
23764
|
+
* @throws {RequiredError}
|
|
23765
|
+
*/
|
|
23766
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
23767
|
+
};
|
|
23768
|
+
/**
|
|
23769
|
+
* InviteLinkApi - factory interface
|
|
23770
|
+
* @export
|
|
23771
|
+
*/
|
|
23772
|
+
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
23773
|
+
/**
|
|
23774
|
+
* Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
23775
|
+
* @summary Create invite link
|
|
23776
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23777
|
+
* @param {*} [options] Override http request option.
|
|
23778
|
+
* @throws {RequiredError}
|
|
23779
|
+
*/
|
|
23780
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
23781
|
+
/**
|
|
23782
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23783
|
+
* @summary Preview
|
|
23784
|
+
* @param {string} token
|
|
23785
|
+
* @param {*} [options] Override http request option.
|
|
23786
|
+
* @throws {RequiredError}
|
|
23787
|
+
*/
|
|
23788
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
23789
|
+
/**
|
|
23790
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23791
|
+
* @summary Redeem
|
|
23792
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23793
|
+
* @param {*} [options] Override http request option.
|
|
23794
|
+
* @throws {RequiredError}
|
|
23795
|
+
*/
|
|
23796
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
23797
|
+
/**
|
|
23798
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23799
|
+
* @summary Revoke
|
|
23800
|
+
* @param {string} id
|
|
23801
|
+
* @param {*} [options] Override http request option.
|
|
23802
|
+
* @throws {RequiredError}
|
|
23803
|
+
*/
|
|
23804
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
23805
|
+
/**
|
|
23806
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23807
|
+
* @summary Search
|
|
23808
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23809
|
+
* @param {*} [options] Override http request option.
|
|
23810
|
+
* @throws {RequiredError}
|
|
23811
|
+
*/
|
|
23812
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
23813
|
+
};
|
|
23814
|
+
/**
|
|
23815
|
+
* InviteLinkApi - object-oriented interface
|
|
23816
|
+
* @export
|
|
23817
|
+
* @class InviteLinkApi
|
|
23818
|
+
* @extends {BaseAPI}
|
|
23819
|
+
*/
|
|
23820
|
+
export declare class InviteLinkApi extends BaseAPI {
|
|
23821
|
+
/**
|
|
23822
|
+
* Creates a new shareable invite link. The `token` and `inviteUrl` fields are returned ONCE and are not stored on the server — copy the URL and distribute it securely. Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
23823
|
+
* @summary Create invite link
|
|
23824
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23825
|
+
* @param {*} [options] Override http request option.
|
|
23826
|
+
* @throws {RequiredError}
|
|
23827
|
+
* @memberof InviteLinkApi
|
|
23828
|
+
*/
|
|
23829
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
23830
|
+
/**
|
|
23831
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23832
|
+
* @summary Preview
|
|
23833
|
+
* @param {string} token
|
|
23834
|
+
* @param {*} [options] Override http request option.
|
|
23835
|
+
* @throws {RequiredError}
|
|
23836
|
+
* @memberof InviteLinkApi
|
|
23837
|
+
*/
|
|
23838
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
23839
|
+
/**
|
|
23840
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23841
|
+
* @summary Redeem
|
|
23842
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23843
|
+
* @param {*} [options] Override http request option.
|
|
23844
|
+
* @throws {RequiredError}
|
|
23845
|
+
* @memberof InviteLinkApi
|
|
23846
|
+
*/
|
|
23847
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
23848
|
+
/**
|
|
23849
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23850
|
+
* @summary Revoke
|
|
23851
|
+
* @param {string} id
|
|
23852
|
+
* @param {*} [options] Override http request option.
|
|
23853
|
+
* @throws {RequiredError}
|
|
23854
|
+
* @memberof InviteLinkApi
|
|
23855
|
+
*/
|
|
23856
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
23857
|
+
/**
|
|
23858
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23859
|
+
* @summary Search
|
|
23860
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23861
|
+
* @param {*} [options] Override http request option.
|
|
23862
|
+
* @throws {RequiredError}
|
|
23863
|
+
* @memberof InviteLinkApi
|
|
23864
|
+
*/
|
|
23865
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
23866
|
+
}
|
|
22122
23867
|
/**
|
|
22123
23868
|
* ItemApi - axios parameter creator
|
|
22124
23869
|
* @export
|
|
@@ -22223,6 +23968,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
22223
23968
|
* @throws {RequiredError}
|
|
22224
23969
|
*/
|
|
22225
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>;
|
|
22226
23978
|
/**
|
|
22227
23979
|
* <br> OperationId: `MetaGetMetrics`
|
|
22228
23980
|
* @summary Get metrics
|
|
@@ -22271,6 +24023,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
|
|
|
22271
24023
|
* @throws {RequiredError}
|
|
22272
24024
|
*/
|
|
22273
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>>;
|
|
22274
24033
|
/**
|
|
22275
24034
|
* <br> OperationId: `MetaGetMetrics`
|
|
22276
24035
|
* @summary Get metrics
|
|
@@ -22319,6 +24078,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22319
24078
|
* @throws {RequiredError}
|
|
22320
24079
|
*/
|
|
22321
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>;
|
|
22322
24088
|
/**
|
|
22323
24089
|
* <br> OperationId: `MetaGetMetrics`
|
|
22324
24090
|
* @summary Get metrics
|
|
@@ -22370,6 +24136,14 @@ export declare class MetaApi extends BaseAPI {
|
|
|
22370
24136
|
* @memberof MetaApi
|
|
22371
24137
|
*/
|
|
22372
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>>;
|
|
22373
24147
|
/**
|
|
22374
24148
|
* <br> OperationId: `MetaGetMetrics`
|
|
22375
24149
|
* @summary Get metrics
|
|
@@ -22972,7 +24746,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22972
24746
|
*/
|
|
22973
24747
|
playerControllerAssignRole: (id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22974
24748
|
/**
|
|
22975
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
22976
24750
|
* @summary Bulk assign role
|
|
22977
24751
|
* @param {string} roleId
|
|
22978
24752
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -22981,7 +24755,7 @@ export declare const PlayerApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
22981
24755
|
*/
|
|
22982
24756
|
playerControllerBulkAssignRole: (roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22983
24757
|
/**
|
|
22984
|
-
* 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`
|
|
22985
24759
|
* @summary Bulk delete
|
|
22986
24760
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
22987
24761
|
* @param {*} [options] Override http request option.
|
|
@@ -23087,7 +24861,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
23087
24861
|
*/
|
|
23088
24862
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
23089
24863
|
/**
|
|
23090
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
23091
24865
|
* @summary Bulk assign role
|
|
23092
24866
|
* @param {string} roleId
|
|
23093
24867
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -23096,7 +24870,7 @@ export declare const PlayerApiFp: (configuration?: Configuration) => {
|
|
|
23096
24870
|
*/
|
|
23097
24871
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>>;
|
|
23098
24872
|
/**
|
|
23099
|
-
* 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`
|
|
23100
24874
|
* @summary Bulk delete
|
|
23101
24875
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
23102
24876
|
* @param {*} [options] Override http request option.
|
|
@@ -23202,7 +24976,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
23202
24976
|
*/
|
|
23203
24977
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
23204
24978
|
/**
|
|
23205
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
23206
24980
|
* @summary Bulk assign role
|
|
23207
24981
|
* @param {string} roleId
|
|
23208
24982
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -23211,7 +24985,7 @@ export declare const PlayerApiFactory: (configuration?: Configuration, basePath?
|
|
|
23211
24985
|
*/
|
|
23212
24986
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerBulkAssignRoleOutputDTOAPI>;
|
|
23213
24987
|
/**
|
|
23214
|
-
* 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`
|
|
23215
24989
|
* @summary Bulk delete
|
|
23216
24990
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
23217
24991
|
* @param {*} [options] Override http request option.
|
|
@@ -23325,7 +25099,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
23325
25099
|
*/
|
|
23326
25100
|
playerControllerAssignRole(id: string, roleId: string, playerRoleAssignChangeDTO?: PlayerRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
23327
25101
|
/**
|
|
23328
|
-
* Bulk assign a role to multiple players. Processes each player individually and reports partial failures. Required permissions: `MANAGE_PLAYERS`, `MANAGE_ROLES`<br> OperationId: `PlayerControllerBulkAssignRole`
|
|
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`
|
|
23329
25103
|
* @summary Bulk assign role
|
|
23330
25104
|
* @param {string} roleId
|
|
23331
25105
|
* @param {PlayerBulkAssignRoleInputDTO} [playerBulkAssignRoleInputDTO] PlayerBulkAssignRoleInputDTO
|
|
@@ -23335,7 +25109,7 @@ export declare class PlayerApi extends BaseAPI {
|
|
|
23335
25109
|
*/
|
|
23336
25110
|
playerControllerBulkAssignRole(roleId: string, playerBulkAssignRoleInputDTO?: PlayerBulkAssignRoleInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerBulkAssignRoleOutputDTOAPI, any>>;
|
|
23337
25111
|
/**
|
|
23338
|
-
* 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`
|
|
23339
25113
|
* @summary Bulk delete
|
|
23340
25114
|
* @param {PlayerBulkDeleteInputDTO} [playerBulkDeleteInputDTO] PlayerBulkDeleteInputDTO
|
|
23341
25115
|
* @param {*} [options] Override http request option.
|
|
@@ -23406,7 +25180,7 @@ export declare const PlayerOnGameServerApiAxiosParamCreator: (configuration?: Co
|
|
|
23406
25180
|
*/
|
|
23407
25181
|
playerOnGameServerControllerAddCurrency: (gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23408
25182
|
/**
|
|
23409
|
-
* 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`
|
|
23410
25184
|
* @summary Bulk add currency
|
|
23411
25185
|
* @param {string} gameServerId
|
|
23412
25186
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -23497,7 +25271,7 @@ export declare const PlayerOnGameServerApiFp: (configuration?: Configuration) =>
|
|
|
23497
25271
|
*/
|
|
23498
25272
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PlayerOnGameserverOutputDTOAPI>>;
|
|
23499
25273
|
/**
|
|
23500
|
-
* 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`
|
|
23501
25275
|
* @summary Bulk add currency
|
|
23502
25276
|
* @param {string} gameServerId
|
|
23503
25277
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -23588,7 +25362,7 @@ export declare const PlayerOnGameServerApiFactory: (configuration?: Configuratio
|
|
|
23588
25362
|
*/
|
|
23589
25363
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<PlayerOnGameserverOutputDTOAPI>;
|
|
23590
25364
|
/**
|
|
23591
|
-
* 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`
|
|
23592
25366
|
* @summary Bulk add currency
|
|
23593
25367
|
* @param {string} gameServerId
|
|
23594
25368
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -23682,7 +25456,7 @@ export declare class PlayerOnGameServerApi extends BaseAPI {
|
|
|
23682
25456
|
*/
|
|
23683
25457
|
playerOnGameServerControllerAddCurrency(gameServerId: string, playerId: string, playerOnGameServerSetCurrencyInputDTO?: PlayerOnGameServerSetCurrencyInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PlayerOnGameserverOutputDTOAPI, any>>;
|
|
23684
25458
|
/**
|
|
23685
|
-
* 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`
|
|
23686
25460
|
* @summary Bulk add currency
|
|
23687
25461
|
* @param {string} gameServerId
|
|
23688
25462
|
* @param {PogBulkAddCurrencyInputDTO} [pogBulkAddCurrencyInputDTO] PogBulkAddCurrencyInputDTO
|
|
@@ -24646,7 +26420,7 @@ export declare class ShopActionApi extends BaseAPI {
|
|
|
24646
26420
|
*/
|
|
24647
26421
|
export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
24648
26422
|
/**
|
|
24649
|
-
* 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`
|
|
24650
26424
|
* @summary Bulk assign
|
|
24651
26425
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
24652
26426
|
* @param {*} [options] Override http request option.
|
|
@@ -24719,7 +26493,7 @@ export declare const ShopCategoryApiAxiosParamCreator: (configuration?: Configur
|
|
|
24719
26493
|
*/
|
|
24720
26494
|
export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
24721
26495
|
/**
|
|
24722
|
-
* 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`
|
|
24723
26497
|
* @summary Bulk assign
|
|
24724
26498
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
24725
26499
|
* @param {*} [options] Override http request option.
|
|
@@ -24792,7 +26566,7 @@ export declare const ShopCategoryApiFp: (configuration?: Configuration) => {
|
|
|
24792
26566
|
*/
|
|
24793
26567
|
export declare const ShopCategoryApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
24794
26568
|
/**
|
|
24795
|
-
* 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`
|
|
24796
26570
|
* @summary Bulk assign
|
|
24797
26571
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
24798
26572
|
* @param {*} [options] Override http request option.
|
|
@@ -24867,7 +26641,7 @@ export declare const ShopCategoryApiFactory: (configuration?: Configuration, bas
|
|
|
24867
26641
|
*/
|
|
24868
26642
|
export declare class ShopCategoryApi extends BaseAPI {
|
|
24869
26643
|
/**
|
|
24870
|
-
* 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`
|
|
24871
26645
|
* @summary Bulk assign
|
|
24872
26646
|
* @param {ShopCategoryBulkAssignDTO} [shopCategoryBulkAssignDTO] ShopCategoryBulkAssignDTO
|
|
24873
26647
|
* @param {*} [options] Override http request option.
|
|
@@ -24947,6 +26721,14 @@ export declare class ShopCategoryApi extends BaseAPI {
|
|
|
24947
26721
|
* @export
|
|
24948
26722
|
*/
|
|
24949
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>;
|
|
24950
26732
|
/**
|
|
24951
26733
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
24952
26734
|
* @summary Create
|
|
@@ -25001,6 +26783,14 @@ export declare const ShopListingApiAxiosParamCreator: (configuration?: Configura
|
|
|
25001
26783
|
* @export
|
|
25002
26784
|
*/
|
|
25003
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>>;
|
|
25004
26794
|
/**
|
|
25005
26795
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
25006
26796
|
* @summary Create
|
|
@@ -25031,7 +26821,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25031
26821
|
* @param {*} [options] Override http request option.
|
|
25032
26822
|
* @throws {RequiredError}
|
|
25033
26823
|
*/
|
|
25034
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26824
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
|
|
25035
26825
|
/**
|
|
25036
26826
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25037
26827
|
* @summary Search
|
|
@@ -25055,6 +26845,14 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25055
26845
|
* @export
|
|
25056
26846
|
*/
|
|
25057
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>;
|
|
25058
26856
|
/**
|
|
25059
26857
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
25060
26858
|
* @summary Create
|
|
@@ -25085,7 +26883,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25085
26883
|
* @param {*} [options] Override http request option.
|
|
25086
26884
|
* @throws {RequiredError}
|
|
25087
26885
|
*/
|
|
25088
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26886
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
|
|
25089
26887
|
/**
|
|
25090
26888
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25091
26889
|
* @summary Search
|
|
@@ -25111,6 +26909,15 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25111
26909
|
* @extends {BaseAPI}
|
|
25112
26910
|
*/
|
|
25113
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>>;
|
|
25114
26921
|
/**
|
|
25115
26922
|
* Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `ShopListingControllerCreate`
|
|
25116
26923
|
* @summary Create
|
|
@@ -25145,7 +26952,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
25145
26952
|
* @throws {RequiredError}
|
|
25146
26953
|
* @memberof ShopListingApi
|
|
25147
26954
|
*/
|
|
25148
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26955
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
|
|
25149
26956
|
/**
|
|
25150
26957
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25151
26958
|
* @summary Search
|
|
@@ -25357,6 +27164,131 @@ export declare class ShopOrderApi extends BaseAPI {
|
|
|
25357
27164
|
*/
|
|
25358
27165
|
shopOrderControllerSearch(shopOrderSearchInputDTO?: ShopOrderSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopOrderOutputArrayDTOAPI, any>>;
|
|
25359
27166
|
}
|
|
27167
|
+
/**
|
|
27168
|
+
* StorefrontConfigApi - axios parameter creator
|
|
27169
|
+
* @export
|
|
27170
|
+
*/
|
|
27171
|
+
export declare const StorefrontConfigApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27172
|
+
/**
|
|
27173
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
27174
|
+
* @summary Get effective config
|
|
27175
|
+
* @param {string} gameServerId
|
|
27176
|
+
* @param {*} [options] Override http request option.
|
|
27177
|
+
* @throws {RequiredError}
|
|
27178
|
+
*/
|
|
27179
|
+
storefrontConfigControllerGetEffectiveConfig: (gameServerId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27180
|
+
/**
|
|
27181
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
27182
|
+
* @summary List templates
|
|
27183
|
+
* @param {*} [options] Override http request option.
|
|
27184
|
+
* @throws {RequiredError}
|
|
27185
|
+
*/
|
|
27186
|
+
storefrontConfigControllerListTemplates: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27187
|
+
/**
|
|
27188
|
+
* Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
|
|
27189
|
+
* @summary Set config
|
|
27190
|
+
* @param {string} gameServerId
|
|
27191
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
27192
|
+
* @param {*} [options] Override http request option.
|
|
27193
|
+
* @throws {RequiredError}
|
|
27194
|
+
*/
|
|
27195
|
+
storefrontConfigControllerSetConfig: (gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27196
|
+
};
|
|
27197
|
+
/**
|
|
27198
|
+
* StorefrontConfigApi - functional programming interface
|
|
27199
|
+
* @export
|
|
27200
|
+
*/
|
|
27201
|
+
export declare const StorefrontConfigApiFp: (configuration?: Configuration) => {
|
|
27202
|
+
/**
|
|
27203
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
27204
|
+
* @summary Get effective config
|
|
27205
|
+
* @param {string} gameServerId
|
|
27206
|
+
* @param {*} [options] Override http request option.
|
|
27207
|
+
* @throws {RequiredError}
|
|
27208
|
+
*/
|
|
27209
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
|
|
27210
|
+
/**
|
|
27211
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
27212
|
+
* @summary List templates
|
|
27213
|
+
* @param {*} [options] Override http request option.
|
|
27214
|
+
* @throws {RequiredError}
|
|
27215
|
+
*/
|
|
27216
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>>;
|
|
27217
|
+
/**
|
|
27218
|
+
* Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
|
|
27219
|
+
* @summary Set config
|
|
27220
|
+
* @param {string} gameServerId
|
|
27221
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
27222
|
+
* @param {*} [options] Override http request option.
|
|
27223
|
+
* @throws {RequiredError}
|
|
27224
|
+
*/
|
|
27225
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>>;
|
|
27226
|
+
};
|
|
27227
|
+
/**
|
|
27228
|
+
* StorefrontConfigApi - factory interface
|
|
27229
|
+
* @export
|
|
27230
|
+
*/
|
|
27231
|
+
export declare const StorefrontConfigApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27232
|
+
/**
|
|
27233
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
27234
|
+
* @summary Get effective config
|
|
27235
|
+
* @param {string} gameServerId
|
|
27236
|
+
* @param {*} [options] Override http request option.
|
|
27237
|
+
* @throws {RequiredError}
|
|
27238
|
+
*/
|
|
27239
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
|
|
27240
|
+
/**
|
|
27241
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
27242
|
+
* @summary List templates
|
|
27243
|
+
* @param {*} [options] Override http request option.
|
|
27244
|
+
* @throws {RequiredError}
|
|
27245
|
+
*/
|
|
27246
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): AxiosPromise<StorefrontTemplateOutputArrayDTOAPI>;
|
|
27247
|
+
/**
|
|
27248
|
+
* Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
|
|
27249
|
+
* @summary Set config
|
|
27250
|
+
* @param {string} gameServerId
|
|
27251
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
27252
|
+
* @param {*} [options] Override http request option.
|
|
27253
|
+
* @throws {RequiredError}
|
|
27254
|
+
*/
|
|
27255
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): AxiosPromise<EffectiveStorefrontConfigOutputDTOAPI>;
|
|
27256
|
+
};
|
|
27257
|
+
/**
|
|
27258
|
+
* StorefrontConfigApi - object-oriented interface
|
|
27259
|
+
* @export
|
|
27260
|
+
* @class StorefrontConfigApi
|
|
27261
|
+
* @extends {BaseAPI}
|
|
27262
|
+
*/
|
|
27263
|
+
export declare class StorefrontConfigApi extends BaseAPI {
|
|
27264
|
+
/**
|
|
27265
|
+
* Get the effective storefront configuration for a game server. Returns defaults when no config row exists. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerGetEffectiveConfig`
|
|
27266
|
+
* @summary Get effective config
|
|
27267
|
+
* @param {string} gameServerId
|
|
27268
|
+
* @param {*} [options] Override http request option.
|
|
27269
|
+
* @throws {RequiredError}
|
|
27270
|
+
* @memberof StorefrontConfigApi
|
|
27271
|
+
*/
|
|
27272
|
+
storefrontConfigControllerGetEffectiveConfig(gameServerId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
|
|
27273
|
+
/**
|
|
27274
|
+
* List all available storefront templates with their variable schemas. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerListTemplates`
|
|
27275
|
+
* @summary List templates
|
|
27276
|
+
* @param {*} [options] Override http request option.
|
|
27277
|
+
* @throws {RequiredError}
|
|
27278
|
+
* @memberof StorefrontConfigApi
|
|
27279
|
+
*/
|
|
27280
|
+
storefrontConfigControllerListTemplates(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<StorefrontTemplateOutputArrayDTOAPI, any>>;
|
|
27281
|
+
/**
|
|
27282
|
+
* Set the storefront configuration for a game server. Validates the template id and values against the template schema. Required permissions: `MANAGE_SHOP_LISTINGS`<br> OperationId: `StorefrontConfigControllerSetConfig`
|
|
27283
|
+
* @summary Set config
|
|
27284
|
+
* @param {string} gameServerId
|
|
27285
|
+
* @param {StorefrontConfigUpsertBody} [storefrontConfigUpsertBody] StorefrontConfigUpsertBody
|
|
27286
|
+
* @param {*} [options] Override http request option.
|
|
27287
|
+
* @throws {RequiredError}
|
|
27288
|
+
* @memberof StorefrontConfigApi
|
|
27289
|
+
*/
|
|
27290
|
+
storefrontConfigControllerSetConfig(gameServerId: string, storefrontConfigUpsertBody?: StorefrontConfigUpsertBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<EffectiveStorefrontConfigOutputDTOAPI, any>>;
|
|
27291
|
+
}
|
|
25360
27292
|
/**
|
|
25361
27293
|
* TrackingApi - axios parameter creator
|
|
25362
27294
|
* @export
|
|
@@ -25563,6 +27495,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
25563
27495
|
* @throws {RequiredError}
|
|
25564
27496
|
*/
|
|
25565
27497
|
userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27498
|
+
/**
|
|
27499
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27500
|
+
* @summary Count billable dashboard users
|
|
27501
|
+
* @param {*} [options] Override http request option.
|
|
27502
|
+
* @throws {RequiredError}
|
|
27503
|
+
*/
|
|
27504
|
+
userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
25566
27505
|
/**
|
|
25567
27506
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
25568
27507
|
* @summary Create
|
|
@@ -25591,6 +27530,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
25591
27530
|
* @summary Invite
|
|
25592
27531
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
25593
27532
|
* @param {*} [options] Override http request option.
|
|
27533
|
+
* @deprecated
|
|
25594
27534
|
* @throws {RequiredError}
|
|
25595
27535
|
*/
|
|
25596
27536
|
userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -25682,6 +27622,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
25682
27622
|
* @throws {RequiredError}
|
|
25683
27623
|
*/
|
|
25684
27624
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27625
|
+
/**
|
|
27626
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27627
|
+
* @summary Count billable dashboard users
|
|
27628
|
+
* @param {*} [options] Override http request option.
|
|
27629
|
+
* @throws {RequiredError}
|
|
27630
|
+
*/
|
|
27631
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
|
|
25685
27632
|
/**
|
|
25686
27633
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
25687
27634
|
* @summary Create
|
|
@@ -25710,6 +27657,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
25710
27657
|
* @summary Invite
|
|
25711
27658
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
25712
27659
|
* @param {*} [options] Override http request option.
|
|
27660
|
+
* @deprecated
|
|
25713
27661
|
* @throws {RequiredError}
|
|
25714
27662
|
*/
|
|
25715
27663
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
|
|
@@ -25801,6 +27749,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
25801
27749
|
* @throws {RequiredError}
|
|
25802
27750
|
*/
|
|
25803
27751
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27752
|
+
/**
|
|
27753
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27754
|
+
* @summary Count billable dashboard users
|
|
27755
|
+
* @param {*} [options] Override http request option.
|
|
27756
|
+
* @throws {RequiredError}
|
|
27757
|
+
*/
|
|
27758
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
|
|
25804
27759
|
/**
|
|
25805
27760
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
25806
27761
|
* @summary Create
|
|
@@ -25829,6 +27784,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
25829
27784
|
* @summary Invite
|
|
25830
27785
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
25831
27786
|
* @param {*} [options] Override http request option.
|
|
27787
|
+
* @deprecated
|
|
25832
27788
|
* @throws {RequiredError}
|
|
25833
27789
|
*/
|
|
25834
27790
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
|
|
@@ -25923,6 +27879,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
25923
27879
|
* @memberof UserApi
|
|
25924
27880
|
*/
|
|
25925
27881
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27882
|
+
/**
|
|
27883
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27884
|
+
* @summary Count billable dashboard users
|
|
27885
|
+
* @param {*} [options] Override http request option.
|
|
27886
|
+
* @throws {RequiredError}
|
|
27887
|
+
* @memberof UserApi
|
|
27888
|
+
*/
|
|
27889
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
|
|
25926
27890
|
/**
|
|
25927
27891
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
25928
27892
|
* @summary Create
|
|
@@ -25954,6 +27918,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
25954
27918
|
* @summary Invite
|
|
25955
27919
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
25956
27920
|
* @param {*} [options] Override http request option.
|
|
27921
|
+
* @deprecated
|
|
25957
27922
|
* @throws {RequiredError}
|
|
25958
27923
|
* @memberof UserApi
|
|
25959
27924
|
*/
|
|
@@ -26045,6 +28010,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
26045
28010
|
* @export
|
|
26046
28011
|
*/
|
|
26047
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>;
|
|
26048
28021
|
/**
|
|
26049
28022
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
26050
28023
|
* @summary Create
|
|
@@ -26092,6 +28065,14 @@ export declare const VariableApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
26092
28065
|
* @export
|
|
26093
28066
|
*/
|
|
26094
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>>;
|
|
26095
28076
|
/**
|
|
26096
28077
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
26097
28078
|
* @summary Create
|
|
@@ -26139,6 +28120,14 @@ export declare const VariableApiFp: (configuration?: Configuration) => {
|
|
|
26139
28120
|
* @export
|
|
26140
28121
|
*/
|
|
26141
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>;
|
|
26142
28131
|
/**
|
|
26143
28132
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
26144
28133
|
* @summary Create
|
|
@@ -26188,6 +28177,15 @@ export declare const VariableApiFactory: (configuration?: Configuration, basePat
|
|
|
26188
28177
|
* @extends {BaseAPI}
|
|
26189
28178
|
*/
|
|
26190
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>>;
|
|
26191
28189
|
/**
|
|
26192
28190
|
* Required permissions: `MANAGE_VARIABLES`<br> OperationId: `VariableControllerCreate`
|
|
26193
28191
|
* @summary Create
|