@takaro/apiclient 0.0.0-dev.f67f37d → 0.0.0-dev.f68f0a8
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 +1037 -30
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +602 -14
- 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 +27938 -0
- package/package.json +1 -1
- package/src/generated/api.ts +1502 -29
- 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
|
@@ -2218,6 +2218,30 @@ export interface DomainCreateInputDTO {
|
|
|
2218
2218
|
* @memberof DomainCreateInputDTO
|
|
2219
2219
|
*/
|
|
2220
2220
|
maxFunctionsInModule?: number;
|
|
2221
|
+
/**
|
|
2222
|
+
*
|
|
2223
|
+
* @type {number}
|
|
2224
|
+
* @memberof DomainCreateInputDTO
|
|
2225
|
+
*/
|
|
2226
|
+
maxCustomRoles?: number;
|
|
2227
|
+
/**
|
|
2228
|
+
*
|
|
2229
|
+
* @type {number}
|
|
2230
|
+
* @memberof DomainCreateInputDTO
|
|
2231
|
+
*/
|
|
2232
|
+
maxDiscordLinkedRoles?: number;
|
|
2233
|
+
/**
|
|
2234
|
+
*
|
|
2235
|
+
* @type {boolean}
|
|
2236
|
+
* @memberof DomainCreateInputDTO
|
|
2237
|
+
*/
|
|
2238
|
+
skipBuiltinSeeding?: boolean;
|
|
2239
|
+
/**
|
|
2240
|
+
*
|
|
2241
|
+
* @type {string}
|
|
2242
|
+
* @memberof DomainCreateInputDTO
|
|
2243
|
+
*/
|
|
2244
|
+
serverRegistrationToken?: string;
|
|
2221
2245
|
}
|
|
2222
2246
|
export declare const DomainCreateInputDTOStateEnum: {
|
|
2223
2247
|
readonly Active: "ACTIVE";
|
|
@@ -2372,6 +2396,18 @@ export interface DomainOutputDTO {
|
|
|
2372
2396
|
* @memberof DomainOutputDTO
|
|
2373
2397
|
*/
|
|
2374
2398
|
maxFunctionsInModule: number;
|
|
2399
|
+
/**
|
|
2400
|
+
*
|
|
2401
|
+
* @type {number}
|
|
2402
|
+
* @memberof DomainOutputDTO
|
|
2403
|
+
*/
|
|
2404
|
+
maxCustomRoles: number;
|
|
2405
|
+
/**
|
|
2406
|
+
*
|
|
2407
|
+
* @type {number}
|
|
2408
|
+
* @memberof DomainOutputDTO
|
|
2409
|
+
*/
|
|
2410
|
+
maxDiscordLinkedRoles: number;
|
|
2375
2411
|
/**
|
|
2376
2412
|
*
|
|
2377
2413
|
* @type {string}
|
|
@@ -2592,6 +2628,18 @@ export interface DomainUpdateInputDTO {
|
|
|
2592
2628
|
* @memberof DomainUpdateInputDTO
|
|
2593
2629
|
*/
|
|
2594
2630
|
maxFunctionsInModule?: number;
|
|
2631
|
+
/**
|
|
2632
|
+
*
|
|
2633
|
+
* @type {number}
|
|
2634
|
+
* @memberof DomainUpdateInputDTO
|
|
2635
|
+
*/
|
|
2636
|
+
maxCustomRoles?: number;
|
|
2637
|
+
/**
|
|
2638
|
+
*
|
|
2639
|
+
* @type {number}
|
|
2640
|
+
* @memberof DomainUpdateInputDTO
|
|
2641
|
+
*/
|
|
2642
|
+
maxDiscordLinkedRoles?: number;
|
|
2595
2643
|
}
|
|
2596
2644
|
export declare const DomainUpdateInputDTOStateEnum: {
|
|
2597
2645
|
readonly Active: "ACTIVE";
|
|
@@ -3023,19 +3071,19 @@ export interface ErrorOutput {
|
|
|
3023
3071
|
* @type {string}
|
|
3024
3072
|
* @memberof ErrorOutput
|
|
3025
3073
|
*/
|
|
3026
|
-
code
|
|
3074
|
+
code?: string;
|
|
3027
3075
|
/**
|
|
3028
3076
|
*
|
|
3029
3077
|
* @type {string}
|
|
3030
3078
|
* @memberof ErrorOutput
|
|
3031
3079
|
*/
|
|
3032
|
-
message
|
|
3080
|
+
message?: string;
|
|
3033
3081
|
/**
|
|
3034
3082
|
*
|
|
3035
3083
|
* @type {string}
|
|
3036
3084
|
* @memberof ErrorOutput
|
|
3037
3085
|
*/
|
|
3038
|
-
details
|
|
3086
|
+
details?: string;
|
|
3039
3087
|
}
|
|
3040
3088
|
/**
|
|
3041
3089
|
*
|
|
@@ -3048,7 +3096,7 @@ export interface EventChatMessage {
|
|
|
3048
3096
|
* @type {IGamePlayer}
|
|
3049
3097
|
* @memberof EventChatMessage
|
|
3050
3098
|
*/
|
|
3051
|
-
player
|
|
3099
|
+
player?: IGamePlayer;
|
|
3052
3100
|
/**
|
|
3053
3101
|
*
|
|
3054
3102
|
* @type {string}
|
|
@@ -3176,6 +3224,7 @@ export declare const EventCreateDTOEventNameEnum: {
|
|
|
3176
3224
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3177
3225
|
readonly EventRateLimited: "event-rate-limited";
|
|
3178
3226
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3227
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3179
3228
|
readonly PlayerConnected: "player-connected";
|
|
3180
3229
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3181
3230
|
readonly ChatMessage: "chat-message";
|
|
@@ -3390,6 +3439,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
|
|
|
3390
3439
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3391
3440
|
readonly EventRateLimited: "event-rate-limited";
|
|
3392
3441
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3442
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3393
3443
|
readonly PlayerConnected: "player-connected";
|
|
3394
3444
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3395
3445
|
readonly ChatMessage: "chat-message";
|
|
@@ -3756,6 +3806,7 @@ export declare const EventOutputDTOEventNameEnum: {
|
|
|
3756
3806
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3757
3807
|
readonly EventRateLimited: "event-rate-limited";
|
|
3758
3808
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3809
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3759
3810
|
readonly PlayerConnected: "player-connected";
|
|
3760
3811
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3761
3812
|
readonly ChatMessage: "chat-message";
|
|
@@ -3767,7 +3818,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
|
|
|
3767
3818
|
* @type EventOutputDTOMeta
|
|
3768
3819
|
* @export
|
|
3769
3820
|
*/
|
|
3770
|
-
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3821
|
+
export type EventOutputDTOMeta = EventChatMessage | EventEntityKilled | EventLogLine | EventPlayerConnected | EventPlayerDeath | EventPlayerDisconnected | HookEventDiscordMessage | TakaroEventCommandExecuted | TakaroEventCommandExecutionDenied | TakaroEventCronjobExecuted | TakaroEventCurrencyAdded | TakaroEventCurrencyDeducted | TakaroEventCurrencyResetAll | TakaroEventGameserverCreated | TakaroEventGameserverDeleted | TakaroEventGameserverUpdated | TakaroEventHookExecuted | TakaroEventInviteLinkCreated | TakaroEventModuleCreated | TakaroEventModuleDeleted | TakaroEventModuleInstalled | TakaroEventModuleUninstalled | TakaroEventModuleUpdated | TakaroEventPlayerBanned | TakaroEventPlayerCreated | TakaroEventPlayerDeleted | TakaroEventPlayerInventoryChanged | TakaroEventPlayerLinked | TakaroEventPlayerNewIpDetected | TakaroEventPlayerNewNameDetected | TakaroEventPlayerSyncSnapshot | TakaroEventPlayerUnbanned | TakaroEventRateLimited | TakaroEventRoleAssigned | TakaroEventRoleCreated | TakaroEventRoleDeleted | TakaroEventRoleRemoved | TakaroEventRoleUpdated | TakaroEventServerStatusChanged | TakaroEventSettingsSet | TakaroEventShopActionExecuted | TakaroEventShopListingCreated | TakaroEventShopListingDeleted | TakaroEventShopListingUpdated | TakaroEventShopOrderCreated | TakaroEventShopOrderDeliveryFailed | TakaroEventShopOrderStatusChanged;
|
|
3771
3822
|
/**
|
|
3772
3823
|
*
|
|
3773
3824
|
* @export
|
|
@@ -3944,6 +3995,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
|
|
|
3944
3995
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
3945
3996
|
readonly EventRateLimited: "event-rate-limited";
|
|
3946
3997
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
3998
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
3947
3999
|
readonly PlayerConnected: "player-connected";
|
|
3948
4000
|
readonly PlayerDisconnected: "player-disconnected";
|
|
3949
4001
|
readonly ChatMessage: "chat-message";
|
|
@@ -5378,6 +5430,7 @@ export declare const HookCreateDTOEventTypeEnum: {
|
|
|
5378
5430
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5379
5431
|
readonly EventRateLimited: "event-rate-limited";
|
|
5380
5432
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5433
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5381
5434
|
};
|
|
5382
5435
|
export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
|
|
5383
5436
|
/**
|
|
@@ -5538,6 +5591,7 @@ export declare const HookOutputDTOEventTypeEnum: {
|
|
|
5538
5591
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5539
5592
|
readonly EventRateLimited: "event-rate-limited";
|
|
5540
5593
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5594
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5541
5595
|
};
|
|
5542
5596
|
export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
|
|
5543
5597
|
/**
|
|
@@ -5643,6 +5697,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
|
|
|
5643
5697
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5644
5698
|
readonly EventRateLimited: "event-rate-limited";
|
|
5645
5699
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5700
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5646
5701
|
};
|
|
5647
5702
|
export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
|
|
5648
5703
|
/**
|
|
@@ -5813,6 +5868,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
|
|
|
5813
5868
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5814
5869
|
readonly EventRateLimited: "event-rate-limited";
|
|
5815
5870
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5871
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5816
5872
|
};
|
|
5817
5873
|
export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
|
|
5818
5874
|
/**
|
|
@@ -5899,6 +5955,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
|
|
|
5899
5955
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
5900
5956
|
readonly EventRateLimited: "event-rate-limited";
|
|
5901
5957
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
5958
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
5902
5959
|
};
|
|
5903
5960
|
export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
|
|
5904
5961
|
/**
|
|
@@ -6225,6 +6282,7 @@ export declare const IHookEventTypeEnum: {
|
|
|
6225
6282
|
readonly PlayerInventoryChanged: "player-inventory-changed";
|
|
6226
6283
|
readonly EventRateLimited: "event-rate-limited";
|
|
6227
6284
|
readonly PlayerSyncSnapshot: "player-sync-snapshot";
|
|
6285
|
+
readonly InviteLinkCreated: "invite-link-created";
|
|
6228
6286
|
};
|
|
6229
6287
|
export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
|
|
6230
6288
|
/**
|
|
@@ -6648,6 +6706,446 @@ export interface InviteCreateDTO {
|
|
|
6648
6706
|
*/
|
|
6649
6707
|
email: string;
|
|
6650
6708
|
}
|
|
6709
|
+
/**
|
|
6710
|
+
*
|
|
6711
|
+
* @export
|
|
6712
|
+
* @interface InviteLinkCreateInputDTO
|
|
6713
|
+
*/
|
|
6714
|
+
export interface InviteLinkCreateInputDTO {
|
|
6715
|
+
/**
|
|
6716
|
+
*
|
|
6717
|
+
* @type {Array<string>}
|
|
6718
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6719
|
+
*/
|
|
6720
|
+
roleIds?: Array<string>;
|
|
6721
|
+
/**
|
|
6722
|
+
*
|
|
6723
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6724
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6725
|
+
*/
|
|
6726
|
+
expiresAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6727
|
+
/**
|
|
6728
|
+
*
|
|
6729
|
+
* @type {number}
|
|
6730
|
+
* @memberof InviteLinkCreateInputDTO
|
|
6731
|
+
*/
|
|
6732
|
+
maxUses?: number;
|
|
6733
|
+
}
|
|
6734
|
+
/**
|
|
6735
|
+
*
|
|
6736
|
+
* @export
|
|
6737
|
+
* @interface InviteLinkCreateResultDTO
|
|
6738
|
+
*/
|
|
6739
|
+
export interface InviteLinkCreateResultDTO {
|
|
6740
|
+
/**
|
|
6741
|
+
*
|
|
6742
|
+
* @type {string}
|
|
6743
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6744
|
+
*/
|
|
6745
|
+
inviteUrl: string;
|
|
6746
|
+
/**
|
|
6747
|
+
*
|
|
6748
|
+
* @type {string}
|
|
6749
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6750
|
+
*/
|
|
6751
|
+
token: string;
|
|
6752
|
+
/**
|
|
6753
|
+
*
|
|
6754
|
+
* @type {string}
|
|
6755
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6756
|
+
*/
|
|
6757
|
+
id: string;
|
|
6758
|
+
/**
|
|
6759
|
+
*
|
|
6760
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6761
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6762
|
+
*/
|
|
6763
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6764
|
+
/**
|
|
6765
|
+
*
|
|
6766
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6767
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6768
|
+
*/
|
|
6769
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6770
|
+
/**
|
|
6771
|
+
*
|
|
6772
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6773
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6774
|
+
*/
|
|
6775
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6776
|
+
/**
|
|
6777
|
+
*
|
|
6778
|
+
* @type {number}
|
|
6779
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6780
|
+
*/
|
|
6781
|
+
maxUses?: number;
|
|
6782
|
+
/**
|
|
6783
|
+
*
|
|
6784
|
+
* @type {number}
|
|
6785
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6786
|
+
*/
|
|
6787
|
+
uses: number;
|
|
6788
|
+
/**
|
|
6789
|
+
*
|
|
6790
|
+
* @type {number}
|
|
6791
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6792
|
+
*/
|
|
6793
|
+
remaining?: number;
|
|
6794
|
+
/**
|
|
6795
|
+
*
|
|
6796
|
+
* @type {string}
|
|
6797
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6798
|
+
*/
|
|
6799
|
+
status: InviteLinkCreateResultDTOStatusEnum;
|
|
6800
|
+
/**
|
|
6801
|
+
*
|
|
6802
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6803
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6804
|
+
*/
|
|
6805
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6806
|
+
/**
|
|
6807
|
+
*
|
|
6808
|
+
* @type {string}
|
|
6809
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6810
|
+
*/
|
|
6811
|
+
createdBy?: string;
|
|
6812
|
+
/**
|
|
6813
|
+
*
|
|
6814
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6815
|
+
* @memberof InviteLinkCreateResultDTO
|
|
6816
|
+
*/
|
|
6817
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6818
|
+
}
|
|
6819
|
+
export declare const InviteLinkCreateResultDTOStatusEnum: {
|
|
6820
|
+
readonly Active: "ACTIVE";
|
|
6821
|
+
readonly Revoked: "REVOKED";
|
|
6822
|
+
readonly Expired: "EXPIRED";
|
|
6823
|
+
readonly Depleted: "DEPLETED";
|
|
6824
|
+
};
|
|
6825
|
+
export type InviteLinkCreateResultDTOStatusEnum = (typeof InviteLinkCreateResultDTOStatusEnum)[keyof typeof InviteLinkCreateResultDTOStatusEnum];
|
|
6826
|
+
/**
|
|
6827
|
+
*
|
|
6828
|
+
* @export
|
|
6829
|
+
* @interface InviteLinkCreateResultDTOAPI
|
|
6830
|
+
*/
|
|
6831
|
+
export interface InviteLinkCreateResultDTOAPI {
|
|
6832
|
+
/**
|
|
6833
|
+
*
|
|
6834
|
+
* @type {InviteLinkCreateResultDTO}
|
|
6835
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6836
|
+
*/
|
|
6837
|
+
data: InviteLinkCreateResultDTO;
|
|
6838
|
+
/**
|
|
6839
|
+
*
|
|
6840
|
+
* @type {MetadataOutput}
|
|
6841
|
+
* @memberof InviteLinkCreateResultDTOAPI
|
|
6842
|
+
*/
|
|
6843
|
+
meta: MetadataOutput;
|
|
6844
|
+
}
|
|
6845
|
+
/**
|
|
6846
|
+
*
|
|
6847
|
+
* @export
|
|
6848
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6849
|
+
*/
|
|
6850
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6851
|
+
/**
|
|
6852
|
+
*
|
|
6853
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6854
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6855
|
+
*/
|
|
6856
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6857
|
+
/**
|
|
6858
|
+
*
|
|
6859
|
+
* @type {MetadataOutput}
|
|
6860
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6861
|
+
*/
|
|
6862
|
+
meta: MetadataOutput;
|
|
6863
|
+
}
|
|
6864
|
+
/**
|
|
6865
|
+
*
|
|
6866
|
+
* @export
|
|
6867
|
+
* @interface InviteLinkOutputDTO
|
|
6868
|
+
*/
|
|
6869
|
+
export interface InviteLinkOutputDTO {
|
|
6870
|
+
/**
|
|
6871
|
+
*
|
|
6872
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6873
|
+
* @memberof InviteLinkOutputDTO
|
|
6874
|
+
*/
|
|
6875
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6876
|
+
/**
|
|
6877
|
+
*
|
|
6878
|
+
* @type {number}
|
|
6879
|
+
* @memberof InviteLinkOutputDTO
|
|
6880
|
+
*/
|
|
6881
|
+
maxUses?: number;
|
|
6882
|
+
/**
|
|
6883
|
+
*
|
|
6884
|
+
* @type {number}
|
|
6885
|
+
* @memberof InviteLinkOutputDTO
|
|
6886
|
+
*/
|
|
6887
|
+
uses: number;
|
|
6888
|
+
/**
|
|
6889
|
+
*
|
|
6890
|
+
* @type {number}
|
|
6891
|
+
* @memberof InviteLinkOutputDTO
|
|
6892
|
+
*/
|
|
6893
|
+
remaining?: number;
|
|
6894
|
+
/**
|
|
6895
|
+
*
|
|
6896
|
+
* @type {string}
|
|
6897
|
+
* @memberof InviteLinkOutputDTO
|
|
6898
|
+
*/
|
|
6899
|
+
status: InviteLinkOutputDTOStatusEnum;
|
|
6900
|
+
/**
|
|
6901
|
+
*
|
|
6902
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6903
|
+
* @memberof InviteLinkOutputDTO
|
|
6904
|
+
*/
|
|
6905
|
+
revokedAt?: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6906
|
+
/**
|
|
6907
|
+
*
|
|
6908
|
+
* @type {string}
|
|
6909
|
+
* @memberof InviteLinkOutputDTO
|
|
6910
|
+
*/
|
|
6911
|
+
createdBy?: string;
|
|
6912
|
+
/**
|
|
6913
|
+
*
|
|
6914
|
+
* @type {Array<InviteLinkRoleDTO>}
|
|
6915
|
+
* @memberof InviteLinkOutputDTO
|
|
6916
|
+
*/
|
|
6917
|
+
roles: Array<InviteLinkRoleDTO>;
|
|
6918
|
+
/**
|
|
6919
|
+
*
|
|
6920
|
+
* @type {string}
|
|
6921
|
+
* @memberof InviteLinkOutputDTO
|
|
6922
|
+
*/
|
|
6923
|
+
id: string;
|
|
6924
|
+
/**
|
|
6925
|
+
*
|
|
6926
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6927
|
+
* @memberof InviteLinkOutputDTO
|
|
6928
|
+
*/
|
|
6929
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6930
|
+
/**
|
|
6931
|
+
*
|
|
6932
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6933
|
+
* @memberof InviteLinkOutputDTO
|
|
6934
|
+
*/
|
|
6935
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6936
|
+
}
|
|
6937
|
+
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
6938
|
+
readonly Active: "ACTIVE";
|
|
6939
|
+
readonly Revoked: "REVOKED";
|
|
6940
|
+
readonly Expired: "EXPIRED";
|
|
6941
|
+
readonly Depleted: "DEPLETED";
|
|
6942
|
+
};
|
|
6943
|
+
export type InviteLinkOutputDTOStatusEnum = (typeof InviteLinkOutputDTOStatusEnum)[keyof typeof InviteLinkOutputDTOStatusEnum];
|
|
6944
|
+
/**
|
|
6945
|
+
*
|
|
6946
|
+
* @export
|
|
6947
|
+
* @interface InviteLinkOutputDTOAPI
|
|
6948
|
+
*/
|
|
6949
|
+
export interface InviteLinkOutputDTOAPI {
|
|
6950
|
+
/**
|
|
6951
|
+
*
|
|
6952
|
+
* @type {InviteLinkOutputDTO}
|
|
6953
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6954
|
+
*/
|
|
6955
|
+
data: InviteLinkOutputDTO;
|
|
6956
|
+
/**
|
|
6957
|
+
*
|
|
6958
|
+
* @type {MetadataOutput}
|
|
6959
|
+
* @memberof InviteLinkOutputDTOAPI
|
|
6960
|
+
*/
|
|
6961
|
+
meta: MetadataOutput;
|
|
6962
|
+
}
|
|
6963
|
+
/**
|
|
6964
|
+
*
|
|
6965
|
+
* @export
|
|
6966
|
+
* @interface InviteLinkPreviewDTO
|
|
6967
|
+
*/
|
|
6968
|
+
export interface InviteLinkPreviewDTO {
|
|
6969
|
+
/**
|
|
6970
|
+
*
|
|
6971
|
+
* @type {InviteLinkPreviewDomainDTO}
|
|
6972
|
+
* @memberof InviteLinkPreviewDTO
|
|
6973
|
+
*/
|
|
6974
|
+
domain: InviteLinkPreviewDomainDTO;
|
|
6975
|
+
/**
|
|
6976
|
+
*
|
|
6977
|
+
* @type {Array<InviteLinkPreviewRoleDTO>}
|
|
6978
|
+
* @memberof InviteLinkPreviewDTO
|
|
6979
|
+
*/
|
|
6980
|
+
roles: Array<InviteLinkPreviewRoleDTO>;
|
|
6981
|
+
/**
|
|
6982
|
+
*
|
|
6983
|
+
* @type {string}
|
|
6984
|
+
* @memberof InviteLinkPreviewDTO
|
|
6985
|
+
*/
|
|
6986
|
+
status: InviteLinkPreviewDTOStatusEnum;
|
|
6987
|
+
/**
|
|
6988
|
+
*
|
|
6989
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
6990
|
+
* @memberof InviteLinkPreviewDTO
|
|
6991
|
+
*/
|
|
6992
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
6993
|
+
/**
|
|
6994
|
+
*
|
|
6995
|
+
* @type {number}
|
|
6996
|
+
* @memberof InviteLinkPreviewDTO
|
|
6997
|
+
*/
|
|
6998
|
+
remaining?: number;
|
|
6999
|
+
}
|
|
7000
|
+
export declare const InviteLinkPreviewDTOStatusEnum: {
|
|
7001
|
+
readonly Active: "ACTIVE";
|
|
7002
|
+
readonly Revoked: "REVOKED";
|
|
7003
|
+
readonly Expired: "EXPIRED";
|
|
7004
|
+
readonly Depleted: "DEPLETED";
|
|
7005
|
+
};
|
|
7006
|
+
export type InviteLinkPreviewDTOStatusEnum = (typeof InviteLinkPreviewDTOStatusEnum)[keyof typeof InviteLinkPreviewDTOStatusEnum];
|
|
7007
|
+
/**
|
|
7008
|
+
*
|
|
7009
|
+
* @export
|
|
7010
|
+
* @interface InviteLinkPreviewDTOAPI
|
|
7011
|
+
*/
|
|
7012
|
+
export interface InviteLinkPreviewDTOAPI {
|
|
7013
|
+
/**
|
|
7014
|
+
*
|
|
7015
|
+
* @type {InviteLinkPreviewDTO}
|
|
7016
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7017
|
+
*/
|
|
7018
|
+
data: InviteLinkPreviewDTO;
|
|
7019
|
+
/**
|
|
7020
|
+
*
|
|
7021
|
+
* @type {MetadataOutput}
|
|
7022
|
+
* @memberof InviteLinkPreviewDTOAPI
|
|
7023
|
+
*/
|
|
7024
|
+
meta: MetadataOutput;
|
|
7025
|
+
}
|
|
7026
|
+
/**
|
|
7027
|
+
*
|
|
7028
|
+
* @export
|
|
7029
|
+
* @interface InviteLinkPreviewDomainDTO
|
|
7030
|
+
*/
|
|
7031
|
+
export interface InviteLinkPreviewDomainDTO {
|
|
7032
|
+
/**
|
|
7033
|
+
*
|
|
7034
|
+
* @type {string}
|
|
7035
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7036
|
+
*/
|
|
7037
|
+
id: string;
|
|
7038
|
+
/**
|
|
7039
|
+
*
|
|
7040
|
+
* @type {string}
|
|
7041
|
+
* @memberof InviteLinkPreviewDomainDTO
|
|
7042
|
+
*/
|
|
7043
|
+
name: string;
|
|
7044
|
+
}
|
|
7045
|
+
/**
|
|
7046
|
+
*
|
|
7047
|
+
* @export
|
|
7048
|
+
* @interface InviteLinkPreviewRoleDTO
|
|
7049
|
+
*/
|
|
7050
|
+
export interface InviteLinkPreviewRoleDTO {
|
|
7051
|
+
/**
|
|
7052
|
+
*
|
|
7053
|
+
* @type {string}
|
|
7054
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7055
|
+
*/
|
|
7056
|
+
id: string;
|
|
7057
|
+
/**
|
|
7058
|
+
*
|
|
7059
|
+
* @type {string}
|
|
7060
|
+
* @memberof InviteLinkPreviewRoleDTO
|
|
7061
|
+
*/
|
|
7062
|
+
name: string;
|
|
7063
|
+
}
|
|
7064
|
+
/**
|
|
7065
|
+
*
|
|
7066
|
+
* @export
|
|
7067
|
+
* @interface InviteLinkRoleDTO
|
|
7068
|
+
*/
|
|
7069
|
+
export interface InviteLinkRoleDTO {
|
|
7070
|
+
/**
|
|
7071
|
+
*
|
|
7072
|
+
* @type {string}
|
|
7073
|
+
* @memberof InviteLinkRoleDTO
|
|
7074
|
+
*/
|
|
7075
|
+
roleId: string;
|
|
7076
|
+
/**
|
|
7077
|
+
*
|
|
7078
|
+
* @type {string}
|
|
7079
|
+
* @memberof InviteLinkRoleDTO
|
|
7080
|
+
*/
|
|
7081
|
+
name: string;
|
|
7082
|
+
}
|
|
7083
|
+
/**
|
|
7084
|
+
*
|
|
7085
|
+
* @export
|
|
7086
|
+
* @interface InviteLinkSearchInputDTO
|
|
7087
|
+
*/
|
|
7088
|
+
export interface InviteLinkSearchInputDTO {
|
|
7089
|
+
/**
|
|
7090
|
+
*
|
|
7091
|
+
* @type {string}
|
|
7092
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7093
|
+
*/
|
|
7094
|
+
sortBy?: string;
|
|
7095
|
+
/**
|
|
7096
|
+
*
|
|
7097
|
+
* @type {any}
|
|
7098
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7099
|
+
*/
|
|
7100
|
+
filters?: any;
|
|
7101
|
+
/**
|
|
7102
|
+
*
|
|
7103
|
+
* @type {any}
|
|
7104
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7105
|
+
*/
|
|
7106
|
+
search?: any;
|
|
7107
|
+
/**
|
|
7108
|
+
*
|
|
7109
|
+
* @type {any}
|
|
7110
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7111
|
+
*/
|
|
7112
|
+
greaterThan?: any;
|
|
7113
|
+
/**
|
|
7114
|
+
*
|
|
7115
|
+
* @type {any}
|
|
7116
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7117
|
+
*/
|
|
7118
|
+
lessThan?: any;
|
|
7119
|
+
/**
|
|
7120
|
+
*
|
|
7121
|
+
* @type {number}
|
|
7122
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7123
|
+
*/
|
|
7124
|
+
page?: number;
|
|
7125
|
+
/**
|
|
7126
|
+
*
|
|
7127
|
+
* @type {number}
|
|
7128
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7129
|
+
*/
|
|
7130
|
+
limit?: number;
|
|
7131
|
+
/**
|
|
7132
|
+
*
|
|
7133
|
+
* @type {string}
|
|
7134
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7135
|
+
*/
|
|
7136
|
+
sortDirection?: InviteLinkSearchInputDTOSortDirectionEnum;
|
|
7137
|
+
/**
|
|
7138
|
+
*
|
|
7139
|
+
* @type {Array<string>}
|
|
7140
|
+
* @memberof InviteLinkSearchInputDTO
|
|
7141
|
+
*/
|
|
7142
|
+
extend?: Array<string>;
|
|
7143
|
+
}
|
|
7144
|
+
export declare const InviteLinkSearchInputDTOSortDirectionEnum: {
|
|
7145
|
+
readonly Asc: "asc";
|
|
7146
|
+
readonly Desc: "desc";
|
|
7147
|
+
};
|
|
7148
|
+
export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearchInputDTOSortDirectionEnum)[keyof typeof InviteLinkSearchInputDTOSortDirectionEnum];
|
|
6651
7149
|
/**
|
|
6652
7150
|
*
|
|
6653
7151
|
* @export
|
|
@@ -7557,7 +8055,7 @@ export interface MetadataOutput {
|
|
|
7557
8055
|
* @type {ErrorOutput}
|
|
7558
8056
|
* @memberof MetadataOutput
|
|
7559
8057
|
*/
|
|
7560
|
-
error
|
|
8058
|
+
error?: ErrorOutput;
|
|
7561
8059
|
/**
|
|
7562
8060
|
*
|
|
7563
8061
|
* @type {number}
|
|
@@ -11783,6 +12281,19 @@ export declare const RecentOrderDTOStatusEnum: {
|
|
|
11783
12281
|
readonly Canceled: "CANCELED";
|
|
11784
12282
|
};
|
|
11785
12283
|
export type RecentOrderDTOStatusEnum = (typeof RecentOrderDTOStatusEnum)[keyof typeof RecentOrderDTOStatusEnum];
|
|
12284
|
+
/**
|
|
12285
|
+
*
|
|
12286
|
+
* @export
|
|
12287
|
+
* @interface RedeemInputDTO
|
|
12288
|
+
*/
|
|
12289
|
+
export interface RedeemInputDTO {
|
|
12290
|
+
/**
|
|
12291
|
+
*
|
|
12292
|
+
* @type {string}
|
|
12293
|
+
* @memberof RedeemInputDTO
|
|
12294
|
+
*/
|
|
12295
|
+
token: string;
|
|
12296
|
+
}
|
|
11786
12297
|
/**
|
|
11787
12298
|
*
|
|
11788
12299
|
* @export
|
|
@@ -11794,7 +12305,7 @@ export interface RedirectQs {
|
|
|
11794
12305
|
* @type {string}
|
|
11795
12306
|
* @memberof RedirectQs
|
|
11796
12307
|
*/
|
|
11797
|
-
redirect
|
|
12308
|
+
redirect?: string;
|
|
11798
12309
|
}
|
|
11799
12310
|
/**
|
|
11800
12311
|
*
|
|
@@ -12589,7 +13100,7 @@ export interface RoleUpdateInputDTO {
|
|
|
12589
13100
|
* @type {string}
|
|
12590
13101
|
* @memberof RoleUpdateInputDTO
|
|
12591
13102
|
*/
|
|
12592
|
-
linkedDiscordRoleId?: string;
|
|
13103
|
+
linkedDiscordRoleId?: string | null;
|
|
12593
13104
|
}
|
|
12594
13105
|
/**
|
|
12595
13106
|
*
|
|
@@ -13783,6 +14294,25 @@ export interface ShopDeadStockItemDTO {
|
|
|
13783
14294
|
*/
|
|
13784
14295
|
daysSinceLastSale?: number;
|
|
13785
14296
|
}
|
|
14297
|
+
/**
|
|
14298
|
+
*
|
|
14299
|
+
* @export
|
|
14300
|
+
* @interface ShopImportFailureDTO
|
|
14301
|
+
*/
|
|
14302
|
+
export interface ShopImportFailureDTO {
|
|
14303
|
+
/**
|
|
14304
|
+
*
|
|
14305
|
+
* @type {string}
|
|
14306
|
+
* @memberof ShopImportFailureDTO
|
|
14307
|
+
*/
|
|
14308
|
+
name: string;
|
|
14309
|
+
/**
|
|
14310
|
+
*
|
|
14311
|
+
* @type {string}
|
|
14312
|
+
* @memberof ShopImportFailureDTO
|
|
14313
|
+
*/
|
|
14314
|
+
reason: string;
|
|
14315
|
+
}
|
|
13786
14316
|
/**
|
|
13787
14317
|
*
|
|
13788
14318
|
* @export
|
|
@@ -13808,6 +14338,44 @@ export interface ShopImportOptions {
|
|
|
13808
14338
|
*/
|
|
13809
14339
|
gameServerId: string;
|
|
13810
14340
|
}
|
|
14341
|
+
/**
|
|
14342
|
+
*
|
|
14343
|
+
* @export
|
|
14344
|
+
* @interface ShopImportResultDTO
|
|
14345
|
+
*/
|
|
14346
|
+
export interface ShopImportResultDTO {
|
|
14347
|
+
/**
|
|
14348
|
+
*
|
|
14349
|
+
* @type {number}
|
|
14350
|
+
* @memberof ShopImportResultDTO
|
|
14351
|
+
*/
|
|
14352
|
+
imported: number;
|
|
14353
|
+
/**
|
|
14354
|
+
*
|
|
14355
|
+
* @type {Array<ShopImportFailureDTO>}
|
|
14356
|
+
* @memberof ShopImportResultDTO
|
|
14357
|
+
*/
|
|
14358
|
+
failed: Array<ShopImportFailureDTO>;
|
|
14359
|
+
}
|
|
14360
|
+
/**
|
|
14361
|
+
*
|
|
14362
|
+
* @export
|
|
14363
|
+
* @interface ShopImportResultDTOAPI
|
|
14364
|
+
*/
|
|
14365
|
+
export interface ShopImportResultDTOAPI {
|
|
14366
|
+
/**
|
|
14367
|
+
*
|
|
14368
|
+
* @type {ShopImportResultDTO}
|
|
14369
|
+
* @memberof ShopImportResultDTOAPI
|
|
14370
|
+
*/
|
|
14371
|
+
data: ShopImportResultDTO;
|
|
14372
|
+
/**
|
|
14373
|
+
*
|
|
14374
|
+
* @type {MetadataOutput}
|
|
14375
|
+
* @memberof ShopImportResultDTOAPI
|
|
14376
|
+
*/
|
|
14377
|
+
meta: MetadataOutput;
|
|
14378
|
+
}
|
|
13811
14379
|
/**
|
|
13812
14380
|
*
|
|
13813
14381
|
* @export
|
|
@@ -15416,7 +15984,50 @@ export interface TakaroEventHookExecuted {
|
|
|
15416
15984
|
/**
|
|
15417
15985
|
*
|
|
15418
15986
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
15419
|
-
* @memberof TakaroEventHookExecuted
|
|
15987
|
+
* @memberof TakaroEventHookExecuted
|
|
15988
|
+
*/
|
|
15989
|
+
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15990
|
+
}
|
|
15991
|
+
/**
|
|
15992
|
+
*
|
|
15993
|
+
* @export
|
|
15994
|
+
* @interface TakaroEventInviteLinkCreated
|
|
15995
|
+
*/
|
|
15996
|
+
export interface TakaroEventInviteLinkCreated {
|
|
15997
|
+
/**
|
|
15998
|
+
*
|
|
15999
|
+
* @type {string}
|
|
16000
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16001
|
+
*/
|
|
16002
|
+
inviteLinkId: string;
|
|
16003
|
+
/**
|
|
16004
|
+
*
|
|
16005
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
16006
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16007
|
+
*/
|
|
16008
|
+
expiresAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16009
|
+
/**
|
|
16010
|
+
*
|
|
16011
|
+
* @type {number}
|
|
16012
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16013
|
+
*/
|
|
16014
|
+
maxUses: number;
|
|
16015
|
+
/**
|
|
16016
|
+
*
|
|
16017
|
+
* @type {Array<string>}
|
|
16018
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16019
|
+
*/
|
|
16020
|
+
roleIds: Array<string>;
|
|
16021
|
+
/**
|
|
16022
|
+
*
|
|
16023
|
+
* @type {boolean}
|
|
16024
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16025
|
+
*/
|
|
16026
|
+
staffOrigin: boolean;
|
|
16027
|
+
/**
|
|
16028
|
+
*
|
|
16029
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
16030
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
15420
16031
|
*/
|
|
15421
16032
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15422
16033
|
}
|
|
@@ -16698,6 +17309,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
16698
17309
|
*/
|
|
16699
17310
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16700
17311
|
}
|
|
17312
|
+
/**
|
|
17313
|
+
*
|
|
17314
|
+
* @export
|
|
17315
|
+
* @interface UserCountOutputDTO
|
|
17316
|
+
*/
|
|
17317
|
+
export interface UserCountOutputDTO {
|
|
17318
|
+
/**
|
|
17319
|
+
*
|
|
17320
|
+
* @type {number}
|
|
17321
|
+
* @memberof UserCountOutputDTO
|
|
17322
|
+
*/
|
|
17323
|
+
count: number;
|
|
17324
|
+
}
|
|
17325
|
+
/**
|
|
17326
|
+
*
|
|
17327
|
+
* @export
|
|
17328
|
+
* @interface UserCountOutputDTOAPI
|
|
17329
|
+
*/
|
|
17330
|
+
export interface UserCountOutputDTOAPI {
|
|
17331
|
+
/**
|
|
17332
|
+
*
|
|
17333
|
+
* @type {UserCountOutputDTO}
|
|
17334
|
+
* @memberof UserCountOutputDTOAPI
|
|
17335
|
+
*/
|
|
17336
|
+
data: UserCountOutputDTO;
|
|
17337
|
+
/**
|
|
17338
|
+
*
|
|
17339
|
+
* @type {MetadataOutput}
|
|
17340
|
+
* @memberof UserCountOutputDTOAPI
|
|
17341
|
+
*/
|
|
17342
|
+
meta: MetadataOutput;
|
|
17343
|
+
}
|
|
16701
17344
|
/**
|
|
16702
17345
|
*
|
|
16703
17346
|
* @export
|
|
@@ -16735,6 +17378,37 @@ export interface UserCreateInputDTO {
|
|
|
16735
17378
|
*/
|
|
16736
17379
|
isDashboardUser?: boolean;
|
|
16737
17380
|
}
|
|
17381
|
+
/**
|
|
17382
|
+
*
|
|
17383
|
+
* @export
|
|
17384
|
+
* @interface UserCreateInviteDTO
|
|
17385
|
+
*/
|
|
17386
|
+
export interface UserCreateInviteDTO {
|
|
17387
|
+
/**
|
|
17388
|
+
*
|
|
17389
|
+
* @type {string}
|
|
17390
|
+
* @memberof UserCreateInviteDTO
|
|
17391
|
+
*/
|
|
17392
|
+
name: string;
|
|
17393
|
+
/**
|
|
17394
|
+
*
|
|
17395
|
+
* @type {string}
|
|
17396
|
+
* @memberof UserCreateInviteDTO
|
|
17397
|
+
*/
|
|
17398
|
+
email: string;
|
|
17399
|
+
/**
|
|
17400
|
+
*
|
|
17401
|
+
* @type {string}
|
|
17402
|
+
* @memberof UserCreateInviteDTO
|
|
17403
|
+
*/
|
|
17404
|
+
idpId?: string;
|
|
17405
|
+
/**
|
|
17406
|
+
*
|
|
17407
|
+
* @type {boolean}
|
|
17408
|
+
* @memberof UserCreateInviteDTO
|
|
17409
|
+
*/
|
|
17410
|
+
isDashboardUser?: boolean;
|
|
17411
|
+
}
|
|
16738
17412
|
/**
|
|
16739
17413
|
*
|
|
16740
17414
|
* @export
|
|
@@ -16838,13 +17512,25 @@ export interface UserOutputDTO {
|
|
|
16838
17512
|
* @type {PlayerOutputWithRolesDTO}
|
|
16839
17513
|
* @memberof UserOutputDTO
|
|
16840
17514
|
*/
|
|
16841
|
-
player
|
|
17515
|
+
player?: PlayerOutputWithRolesDTO;
|
|
16842
17516
|
/**
|
|
16843
17517
|
*
|
|
16844
17518
|
* @type {boolean}
|
|
16845
17519
|
* @memberof UserOutputDTO
|
|
16846
17520
|
*/
|
|
16847
17521
|
isDashboardUser: boolean;
|
|
17522
|
+
/**
|
|
17523
|
+
*
|
|
17524
|
+
* @type {boolean}
|
|
17525
|
+
* @memberof UserOutputDTO
|
|
17526
|
+
*/
|
|
17527
|
+
isSupportAccount: boolean;
|
|
17528
|
+
/**
|
|
17529
|
+
*
|
|
17530
|
+
* @type {string}
|
|
17531
|
+
* @memberof UserOutputDTO
|
|
17532
|
+
*/
|
|
17533
|
+
inviteLinkId?: string;
|
|
16848
17534
|
/**
|
|
16849
17535
|
*
|
|
16850
17536
|
* @type {string}
|
|
@@ -16954,13 +17640,44 @@ export interface UserOutputWithRolesDTO {
|
|
|
16954
17640
|
* @type {PlayerOutputWithRolesDTO}
|
|
16955
17641
|
* @memberof UserOutputWithRolesDTO
|
|
16956
17642
|
*/
|
|
16957
|
-
player
|
|
17643
|
+
player?: PlayerOutputWithRolesDTO;
|
|
16958
17644
|
/**
|
|
16959
17645
|
*
|
|
16960
17646
|
* @type {boolean}
|
|
16961
17647
|
* @memberof UserOutputWithRolesDTO
|
|
16962
17648
|
*/
|
|
16963
17649
|
isDashboardUser: boolean;
|
|
17650
|
+
/**
|
|
17651
|
+
*
|
|
17652
|
+
* @type {boolean}
|
|
17653
|
+
* @memberof UserOutputWithRolesDTO
|
|
17654
|
+
*/
|
|
17655
|
+
isSupportAccount: boolean;
|
|
17656
|
+
/**
|
|
17657
|
+
*
|
|
17658
|
+
* @type {string}
|
|
17659
|
+
* @memberof UserOutputWithRolesDTO
|
|
17660
|
+
*/
|
|
17661
|
+
inviteLinkId?: string;
|
|
17662
|
+
}
|
|
17663
|
+
/**
|
|
17664
|
+
*
|
|
17665
|
+
* @export
|
|
17666
|
+
* @interface UserOutputWithRolesDTOAPI
|
|
17667
|
+
*/
|
|
17668
|
+
export interface UserOutputWithRolesDTOAPI {
|
|
17669
|
+
/**
|
|
17670
|
+
*
|
|
17671
|
+
* @type {UserOutputWithRolesDTO}
|
|
17672
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17673
|
+
*/
|
|
17674
|
+
data: UserOutputWithRolesDTO;
|
|
17675
|
+
/**
|
|
17676
|
+
*
|
|
17677
|
+
* @type {MetadataOutput}
|
|
17678
|
+
* @memberof UserOutputWithRolesDTOAPI
|
|
17679
|
+
*/
|
|
17680
|
+
meta: MetadataOutput;
|
|
16964
17681
|
}
|
|
16965
17682
|
/**
|
|
16966
17683
|
*
|
|
@@ -17630,7 +18347,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17630
18347
|
*/
|
|
17631
18348
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17632
18349
|
/**
|
|
17633
|
-
* Normalized 0-1 scores across
|
|
18350
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
17634
18351
|
* @summary Get module health scores
|
|
17635
18352
|
* @param {string} [startDate]
|
|
17636
18353
|
* @param {string} [endDate]
|
|
@@ -17863,7 +18580,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
17863
18580
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17864
18581
|
/**
|
|
17865
18582
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
17866
|
-
* @summary Get top modules by
|
|
18583
|
+
* @summary Get top modules by execution volume
|
|
17867
18584
|
* @param {string} [startDate]
|
|
17868
18585
|
* @param {string} [endDate]
|
|
17869
18586
|
* @param {string} [gameServerId]
|
|
@@ -18019,7 +18736,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18019
18736
|
*/
|
|
18020
18737
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
18021
18738
|
/**
|
|
18022
|
-
* Normalized 0-1 scores across
|
|
18739
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18023
18740
|
* @summary Get module health scores
|
|
18024
18741
|
* @param {string} [startDate]
|
|
18025
18742
|
* @param {string} [endDate]
|
|
@@ -18252,7 +18969,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18252
18969
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
18253
18970
|
/**
|
|
18254
18971
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18255
|
-
* @summary Get top modules by
|
|
18972
|
+
* @summary Get top modules by execution volume
|
|
18256
18973
|
* @param {string} [startDate]
|
|
18257
18974
|
* @param {string} [endDate]
|
|
18258
18975
|
* @param {string} [gameServerId]
|
|
@@ -18408,7 +19125,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18408
19125
|
*/
|
|
18409
19126
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18410
19127
|
/**
|
|
18411
|
-
* Normalized 0-1 scores across
|
|
19128
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18412
19129
|
* @summary Get module health scores
|
|
18413
19130
|
* @param {string} [startDate]
|
|
18414
19131
|
* @param {string} [endDate]
|
|
@@ -18641,7 +19358,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18641
19358
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
18642
19359
|
/**
|
|
18643
19360
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18644
|
-
* @summary Get top modules by
|
|
19361
|
+
* @summary Get top modules by execution volume
|
|
18645
19362
|
* @param {string} [startDate]
|
|
18646
19363
|
* @param {string} [endDate]
|
|
18647
19364
|
* @param {string} [gameServerId]
|
|
@@ -18811,7 +19528,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
18811
19528
|
*/
|
|
18812
19529
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
18813
19530
|
/**
|
|
18814
|
-
* Normalized 0-1 scores across
|
|
19531
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18815
19532
|
* @summary Get module health scores
|
|
18816
19533
|
* @param {string} [startDate]
|
|
18817
19534
|
* @param {string} [endDate]
|
|
@@ -19065,7 +19782,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19065
19782
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
19066
19783
|
/**
|
|
19067
19784
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19068
|
-
* @summary Get top modules by
|
|
19785
|
+
* @summary Get top modules by execution volume
|
|
19069
19786
|
* @param {string} [startDate]
|
|
19070
19787
|
* @param {string} [endDate]
|
|
19071
19788
|
* @param {string} [gameServerId]
|
|
@@ -20542,6 +21259,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
20542
21259
|
* @throws {RequiredError}
|
|
20543
21260
|
*/
|
|
20544
21261
|
domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21262
|
+
/**
|
|
21263
|
+
* 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`
|
|
21264
|
+
* @summary Create staff-recovery invite link for a domain
|
|
21265
|
+
* @param {string} id
|
|
21266
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21267
|
+
* @param {*} [options] Override http request option.
|
|
21268
|
+
* @throws {RequiredError}
|
|
21269
|
+
*/
|
|
21270
|
+
domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20545
21271
|
/**
|
|
20546
21272
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20547
21273
|
* @summary Get one
|
|
@@ -20606,6 +21332,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
20606
21332
|
* @throws {RequiredError}
|
|
20607
21333
|
*/
|
|
20608
21334
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
|
|
21335
|
+
/**
|
|
21336
|
+
* 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`
|
|
21337
|
+
* @summary Create staff-recovery invite link for a domain
|
|
21338
|
+
* @param {string} id
|
|
21339
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21340
|
+
* @param {*} [options] Override http request option.
|
|
21341
|
+
* @throws {RequiredError}
|
|
21342
|
+
*/
|
|
21343
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
20609
21344
|
/**
|
|
20610
21345
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20611
21346
|
* @summary Get one
|
|
@@ -20670,6 +21405,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
20670
21405
|
* @throws {RequiredError}
|
|
20671
21406
|
*/
|
|
20672
21407
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
|
|
21408
|
+
/**
|
|
21409
|
+
* 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`
|
|
21410
|
+
* @summary Create staff-recovery invite link for a domain
|
|
21411
|
+
* @param {string} id
|
|
21412
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21413
|
+
* @param {*} [options] Override http request option.
|
|
21414
|
+
* @throws {RequiredError}
|
|
21415
|
+
*/
|
|
21416
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
20673
21417
|
/**
|
|
20674
21418
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20675
21419
|
* @summary Get one
|
|
@@ -20737,6 +21481,16 @@ export declare class DomainApi extends BaseAPI {
|
|
|
20737
21481
|
* @memberof DomainApi
|
|
20738
21482
|
*/
|
|
20739
21483
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
|
|
21484
|
+
/**
|
|
21485
|
+
* 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`
|
|
21486
|
+
* @summary Create staff-recovery invite link for a domain
|
|
21487
|
+
* @param {string} id
|
|
21488
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21489
|
+
* @param {*} [options] Override http request option.
|
|
21490
|
+
* @throws {RequiredError}
|
|
21491
|
+
* @memberof DomainApi
|
|
21492
|
+
*/
|
|
21493
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
20740
21494
|
/**
|
|
20741
21495
|
* <br> OperationId: `DomainControllerGetOne`
|
|
20742
21496
|
* @summary Get one
|
|
@@ -21151,11 +21905,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
|
|
|
21151
21905
|
/**
|
|
21152
21906
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21153
21907
|
* @summary Auth discord
|
|
21154
|
-
* @param {string} redirect
|
|
21908
|
+
* @param {string} [redirect]
|
|
21155
21909
|
* @param {*} [options] Override http request option.
|
|
21156
21910
|
* @throws {RequiredError}
|
|
21157
21911
|
*/
|
|
21158
|
-
externalAuthControllerAuthDiscord: (redirect
|
|
21912
|
+
externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21159
21913
|
/**
|
|
21160
21914
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21161
21915
|
* @summary Auth discord return
|
|
@@ -21172,11 +21926,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
|
|
|
21172
21926
|
/**
|
|
21173
21927
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21174
21928
|
* @summary Auth discord
|
|
21175
|
-
* @param {string} redirect
|
|
21929
|
+
* @param {string} [redirect]
|
|
21176
21930
|
* @param {*} [options] Override http request option.
|
|
21177
21931
|
* @throws {RequiredError}
|
|
21178
21932
|
*/
|
|
21179
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21933
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21180
21934
|
/**
|
|
21181
21935
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21182
21936
|
* @summary Auth discord return
|
|
@@ -21193,11 +21947,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
|
|
|
21193
21947
|
/**
|
|
21194
21948
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21195
21949
|
* @summary Auth discord
|
|
21196
|
-
* @param {string} redirect
|
|
21950
|
+
* @param {string} [redirect]
|
|
21197
21951
|
* @param {*} [options] Override http request option.
|
|
21198
21952
|
* @throws {RequiredError}
|
|
21199
21953
|
*/
|
|
21200
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21954
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
21201
21955
|
/**
|
|
21202
21956
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21203
21957
|
* @summary Auth discord return
|
|
@@ -21216,12 +21970,12 @@ export declare class ExternalAuthApi extends BaseAPI {
|
|
|
21216
21970
|
/**
|
|
21217
21971
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21218
21972
|
* @summary Auth discord
|
|
21219
|
-
* @param {string} redirect
|
|
21973
|
+
* @param {string} [redirect]
|
|
21220
21974
|
* @param {*} [options] Override http request option.
|
|
21221
21975
|
* @throws {RequiredError}
|
|
21222
21976
|
* @memberof ExternalAuthApi
|
|
21223
21977
|
*/
|
|
21224
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21978
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
21225
21979
|
/**
|
|
21226
21980
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21227
21981
|
* @summary Auth discord return
|
|
@@ -22655,6 +23409,197 @@ export declare class HookApi extends BaseAPI {
|
|
|
22655
23409
|
*/
|
|
22656
23410
|
hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
|
|
22657
23411
|
}
|
|
23412
|
+
/**
|
|
23413
|
+
* InviteLinkApi - axios parameter creator
|
|
23414
|
+
* @export
|
|
23415
|
+
*/
|
|
23416
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23417
|
+
/**
|
|
23418
|
+
* 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`
|
|
23419
|
+
* @summary Create invite link
|
|
23420
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23421
|
+
* @param {*} [options] Override http request option.
|
|
23422
|
+
* @throws {RequiredError}
|
|
23423
|
+
*/
|
|
23424
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23425
|
+
/**
|
|
23426
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23427
|
+
* @summary Preview
|
|
23428
|
+
* @param {string} token
|
|
23429
|
+
* @param {*} [options] Override http request option.
|
|
23430
|
+
* @throws {RequiredError}
|
|
23431
|
+
*/
|
|
23432
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23433
|
+
/**
|
|
23434
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23435
|
+
* @summary Redeem
|
|
23436
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23437
|
+
* @param {*} [options] Override http request option.
|
|
23438
|
+
* @throws {RequiredError}
|
|
23439
|
+
*/
|
|
23440
|
+
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23441
|
+
/**
|
|
23442
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23443
|
+
* @summary Revoke
|
|
23444
|
+
* @param {string} id
|
|
23445
|
+
* @param {*} [options] Override http request option.
|
|
23446
|
+
* @throws {RequiredError}
|
|
23447
|
+
*/
|
|
23448
|
+
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23449
|
+
/**
|
|
23450
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23451
|
+
* @summary Search
|
|
23452
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23453
|
+
* @param {*} [options] Override http request option.
|
|
23454
|
+
* @throws {RequiredError}
|
|
23455
|
+
*/
|
|
23456
|
+
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23457
|
+
};
|
|
23458
|
+
/**
|
|
23459
|
+
* InviteLinkApi - functional programming interface
|
|
23460
|
+
* @export
|
|
23461
|
+
*/
|
|
23462
|
+
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
23463
|
+
/**
|
|
23464
|
+
* 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`
|
|
23465
|
+
* @summary Create invite link
|
|
23466
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23467
|
+
* @param {*} [options] Override http request option.
|
|
23468
|
+
* @throws {RequiredError}
|
|
23469
|
+
*/
|
|
23470
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
23471
|
+
/**
|
|
23472
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23473
|
+
* @summary Preview
|
|
23474
|
+
* @param {string} token
|
|
23475
|
+
* @param {*} [options] Override http request option.
|
|
23476
|
+
* @throws {RequiredError}
|
|
23477
|
+
*/
|
|
23478
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
23479
|
+
/**
|
|
23480
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23481
|
+
* @summary Redeem
|
|
23482
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23483
|
+
* @param {*} [options] Override http request option.
|
|
23484
|
+
* @throws {RequiredError}
|
|
23485
|
+
*/
|
|
23486
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
23487
|
+
/**
|
|
23488
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23489
|
+
* @summary Revoke
|
|
23490
|
+
* @param {string} id
|
|
23491
|
+
* @param {*} [options] Override http request option.
|
|
23492
|
+
* @throws {RequiredError}
|
|
23493
|
+
*/
|
|
23494
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
23495
|
+
/**
|
|
23496
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23497
|
+
* @summary Search
|
|
23498
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23499
|
+
* @param {*} [options] Override http request option.
|
|
23500
|
+
* @throws {RequiredError}
|
|
23501
|
+
*/
|
|
23502
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
23503
|
+
};
|
|
23504
|
+
/**
|
|
23505
|
+
* InviteLinkApi - factory interface
|
|
23506
|
+
* @export
|
|
23507
|
+
*/
|
|
23508
|
+
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
23509
|
+
/**
|
|
23510
|
+
* 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`
|
|
23511
|
+
* @summary Create invite link
|
|
23512
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23513
|
+
* @param {*} [options] Override http request option.
|
|
23514
|
+
* @throws {RequiredError}
|
|
23515
|
+
*/
|
|
23516
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
23517
|
+
/**
|
|
23518
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23519
|
+
* @summary Preview
|
|
23520
|
+
* @param {string} token
|
|
23521
|
+
* @param {*} [options] Override http request option.
|
|
23522
|
+
* @throws {RequiredError}
|
|
23523
|
+
*/
|
|
23524
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
23525
|
+
/**
|
|
23526
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23527
|
+
* @summary Redeem
|
|
23528
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23529
|
+
* @param {*} [options] Override http request option.
|
|
23530
|
+
* @throws {RequiredError}
|
|
23531
|
+
*/
|
|
23532
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
23533
|
+
/**
|
|
23534
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23535
|
+
* @summary Revoke
|
|
23536
|
+
* @param {string} id
|
|
23537
|
+
* @param {*} [options] Override http request option.
|
|
23538
|
+
* @throws {RequiredError}
|
|
23539
|
+
*/
|
|
23540
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
23541
|
+
/**
|
|
23542
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23543
|
+
* @summary Search
|
|
23544
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23545
|
+
* @param {*} [options] Override http request option.
|
|
23546
|
+
* @throws {RequiredError}
|
|
23547
|
+
*/
|
|
23548
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
23549
|
+
};
|
|
23550
|
+
/**
|
|
23551
|
+
* InviteLinkApi - object-oriented interface
|
|
23552
|
+
* @export
|
|
23553
|
+
* @class InviteLinkApi
|
|
23554
|
+
* @extends {BaseAPI}
|
|
23555
|
+
*/
|
|
23556
|
+
export declare class InviteLinkApi extends BaseAPI {
|
|
23557
|
+
/**
|
|
23558
|
+
* 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`
|
|
23559
|
+
* @summary Create invite link
|
|
23560
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23561
|
+
* @param {*} [options] Override http request option.
|
|
23562
|
+
* @throws {RequiredError}
|
|
23563
|
+
* @memberof InviteLinkApi
|
|
23564
|
+
*/
|
|
23565
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
23566
|
+
/**
|
|
23567
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23568
|
+
* @summary Preview
|
|
23569
|
+
* @param {string} token
|
|
23570
|
+
* @param {*} [options] Override http request option.
|
|
23571
|
+
* @throws {RequiredError}
|
|
23572
|
+
* @memberof InviteLinkApi
|
|
23573
|
+
*/
|
|
23574
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
23575
|
+
/**
|
|
23576
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23577
|
+
* @summary Redeem
|
|
23578
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23579
|
+
* @param {*} [options] Override http request option.
|
|
23580
|
+
* @throws {RequiredError}
|
|
23581
|
+
* @memberof InviteLinkApi
|
|
23582
|
+
*/
|
|
23583
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
23584
|
+
/**
|
|
23585
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23586
|
+
* @summary Revoke
|
|
23587
|
+
* @param {string} id
|
|
23588
|
+
* @param {*} [options] Override http request option.
|
|
23589
|
+
* @throws {RequiredError}
|
|
23590
|
+
* @memberof InviteLinkApi
|
|
23591
|
+
*/
|
|
23592
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
23593
|
+
/**
|
|
23594
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23595
|
+
* @summary Search
|
|
23596
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23597
|
+
* @param {*} [options] Override http request option.
|
|
23598
|
+
* @throws {RequiredError}
|
|
23599
|
+
* @memberof InviteLinkApi
|
|
23600
|
+
*/
|
|
23601
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
23602
|
+
}
|
|
22658
23603
|
/**
|
|
22659
23604
|
* ItemApi - axios parameter creator
|
|
22660
23605
|
* @export
|
|
@@ -22759,6 +23704,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
22759
23704
|
* @throws {RequiredError}
|
|
22760
23705
|
*/
|
|
22761
23706
|
metaGetHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23707
|
+
/**
|
|
23708
|
+
* <br> OperationId: `MetaGetLiveness`
|
|
23709
|
+
* @summary Get liveness
|
|
23710
|
+
* @param {*} [options] Override http request option.
|
|
23711
|
+
* @throws {RequiredError}
|
|
23712
|
+
*/
|
|
23713
|
+
metaGetLiveness: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
22762
23714
|
/**
|
|
22763
23715
|
* <br> OperationId: `MetaGetMetrics`
|
|
22764
23716
|
* @summary Get metrics
|
|
@@ -22807,6 +23759,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
|
|
|
22807
23759
|
* @throws {RequiredError}
|
|
22808
23760
|
*/
|
|
22809
23761
|
metaGetHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
|
|
23762
|
+
/**
|
|
23763
|
+
* <br> OperationId: `MetaGetLiveness`
|
|
23764
|
+
* @summary Get liveness
|
|
23765
|
+
* @param {*} [options] Override http request option.
|
|
23766
|
+
* @throws {RequiredError}
|
|
23767
|
+
*/
|
|
23768
|
+
metaGetLiveness(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<HealthOutputDTO>>;
|
|
22810
23769
|
/**
|
|
22811
23770
|
* <br> OperationId: `MetaGetMetrics`
|
|
22812
23771
|
* @summary Get metrics
|
|
@@ -22855,6 +23814,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
|
|
|
22855
23814
|
* @throws {RequiredError}
|
|
22856
23815
|
*/
|
|
22857
23816
|
metaGetHealth(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
|
|
23817
|
+
/**
|
|
23818
|
+
* <br> OperationId: `MetaGetLiveness`
|
|
23819
|
+
* @summary Get liveness
|
|
23820
|
+
* @param {*} [options] Override http request option.
|
|
23821
|
+
* @throws {RequiredError}
|
|
23822
|
+
*/
|
|
23823
|
+
metaGetLiveness(options?: RawAxiosRequestConfig): AxiosPromise<HealthOutputDTO>;
|
|
22858
23824
|
/**
|
|
22859
23825
|
* <br> OperationId: `MetaGetMetrics`
|
|
22860
23826
|
* @summary Get metrics
|
|
@@ -22906,6 +23872,14 @@ export declare class MetaApi extends BaseAPI {
|
|
|
22906
23872
|
* @memberof MetaApi
|
|
22907
23873
|
*/
|
|
22908
23874
|
metaGetHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
|
|
23875
|
+
/**
|
|
23876
|
+
* <br> OperationId: `MetaGetLiveness`
|
|
23877
|
+
* @summary Get liveness
|
|
23878
|
+
* @param {*} [options] Override http request option.
|
|
23879
|
+
* @throws {RequiredError}
|
|
23880
|
+
* @memberof MetaApi
|
|
23881
|
+
*/
|
|
23882
|
+
metaGetLiveness(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HealthOutputDTO, any>>;
|
|
22909
23883
|
/**
|
|
22910
23884
|
* <br> OperationId: `MetaGetMetrics`
|
|
22911
23885
|
* @summary Get metrics
|
|
@@ -25567,7 +26541,7 @@ export declare const ShopListingApiFp: (configuration?: Configuration) => {
|
|
|
25567
26541
|
* @param {*} [options] Override http request option.
|
|
25568
26542
|
* @throws {RequiredError}
|
|
25569
26543
|
*/
|
|
25570
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
26544
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopImportResultDTOAPI>>;
|
|
25571
26545
|
/**
|
|
25572
26546
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25573
26547
|
* @summary Search
|
|
@@ -25621,7 +26595,7 @@ export declare const ShopListingApiFactory: (configuration?: Configuration, base
|
|
|
25621
26595
|
* @param {*} [options] Override http request option.
|
|
25622
26596
|
* @throws {RequiredError}
|
|
25623
26597
|
*/
|
|
25624
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<
|
|
26598
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): AxiosPromise<ShopImportResultDTOAPI>;
|
|
25625
26599
|
/**
|
|
25626
26600
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25627
26601
|
* @summary Search
|
|
@@ -25681,7 +26655,7 @@ export declare class ShopListingApi extends BaseAPI {
|
|
|
25681
26655
|
* @throws {RequiredError}
|
|
25682
26656
|
* @memberof ShopListingApi
|
|
25683
26657
|
*/
|
|
25684
|
-
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
26658
|
+
shopListingControllerImportListings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopImportResultDTOAPI, any>>;
|
|
25685
26659
|
/**
|
|
25686
26660
|
* Search shop listings<br> OperationId: `ShopListingControllerSearch`
|
|
25687
26661
|
* @summary Search
|
|
@@ -26224,6 +27198,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26224
27198
|
* @throws {RequiredError}
|
|
26225
27199
|
*/
|
|
26226
27200
|
userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27201
|
+
/**
|
|
27202
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27203
|
+
* @summary Count billable dashboard users
|
|
27204
|
+
* @param {*} [options] Override http request option.
|
|
27205
|
+
* @throws {RequiredError}
|
|
27206
|
+
*/
|
|
27207
|
+
userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26227
27208
|
/**
|
|
26228
27209
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26229
27210
|
* @summary Create
|
|
@@ -26252,6 +27233,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26252
27233
|
* @summary Invite
|
|
26253
27234
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26254
27235
|
* @param {*} [options] Override http request option.
|
|
27236
|
+
* @deprecated
|
|
26255
27237
|
* @throws {RequiredError}
|
|
26256
27238
|
*/
|
|
26257
27239
|
userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -26343,6 +27325,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26343
27325
|
* @throws {RequiredError}
|
|
26344
27326
|
*/
|
|
26345
27327
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27328
|
+
/**
|
|
27329
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27330
|
+
* @summary Count billable dashboard users
|
|
27331
|
+
* @param {*} [options] Override http request option.
|
|
27332
|
+
* @throws {RequiredError}
|
|
27333
|
+
*/
|
|
27334
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
|
|
26346
27335
|
/**
|
|
26347
27336
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26348
27337
|
* @summary Create
|
|
@@ -26371,6 +27360,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26371
27360
|
* @summary Invite
|
|
26372
27361
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26373
27362
|
* @param {*} [options] Override http request option.
|
|
27363
|
+
* @deprecated
|
|
26374
27364
|
* @throws {RequiredError}
|
|
26375
27365
|
*/
|
|
26376
27366
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
|
|
@@ -26462,6 +27452,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26462
27452
|
* @throws {RequiredError}
|
|
26463
27453
|
*/
|
|
26464
27454
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27455
|
+
/**
|
|
27456
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27457
|
+
* @summary Count billable dashboard users
|
|
27458
|
+
* @param {*} [options] Override http request option.
|
|
27459
|
+
* @throws {RequiredError}
|
|
27460
|
+
*/
|
|
27461
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
|
|
26465
27462
|
/**
|
|
26466
27463
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26467
27464
|
* @summary Create
|
|
@@ -26490,6 +27487,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
26490
27487
|
* @summary Invite
|
|
26491
27488
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26492
27489
|
* @param {*} [options] Override http request option.
|
|
27490
|
+
* @deprecated
|
|
26493
27491
|
* @throws {RequiredError}
|
|
26494
27492
|
*/
|
|
26495
27493
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
|
|
@@ -26584,6 +27582,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
26584
27582
|
* @memberof UserApi
|
|
26585
27583
|
*/
|
|
26586
27584
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27585
|
+
/**
|
|
27586
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27587
|
+
* @summary Count billable dashboard users
|
|
27588
|
+
* @param {*} [options] Override http request option.
|
|
27589
|
+
* @throws {RequiredError}
|
|
27590
|
+
* @memberof UserApi
|
|
27591
|
+
*/
|
|
27592
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
|
|
26587
27593
|
/**
|
|
26588
27594
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26589
27595
|
* @summary Create
|
|
@@ -26615,6 +27621,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
26615
27621
|
* @summary Invite
|
|
26616
27622
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26617
27623
|
* @param {*} [options] Override http request option.
|
|
27624
|
+
* @deprecated
|
|
26618
27625
|
* @throws {RequiredError}
|
|
26619
27626
|
* @memberof UserApi
|
|
26620
27627
|
*/
|