@takaro/apiclient 0.0.0-dev.cb9985c → 0.0.0-dev.ce27140
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 +554 -279
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +4946 -4734
- package/dist/generated/api.js.map +1 -1
- package/dist/lib/adminClient.d.ts +1 -1
- package/dist/lib/adminClient.d.ts.map +1 -1
- package/dist/lib/adminClient.js +2 -1
- package/dist/lib/adminClient.js.map +1 -1
- package/dist/lib/baseClient.d.ts +15 -1
- package/dist/lib/baseClient.d.ts.map +1 -1
- package/dist/lib/baseClient.js +17 -3
- package/dist/lib/baseClient.js.map +1 -1
- package/dist/lib/client.d.ts +1 -1
- package/dist/lib/client.d.ts.map +1 -1
- package/dist/lib/client.js +4 -3
- package/dist/lib/client.js.map +1 -1
- package/dist/main.d.ts +1 -1
- package/dist/main.d.ts.map +1 -1
- package/generated.manifest.json +27 -0
- package/openapi.json +27938 -0
- package/package.json +1 -1
- package/src/generated/api.ts +1005 -560
- package/src/lib/__tests__/baseClient.unit.test.ts +17 -0
- package/src/lib/adminClient.ts +5 -3
- package/src/lib/baseClient.ts +22 -4
- package/src/lib/client.ts +5 -4
- package/src/main.ts +1 -1
package/dist/generated/api.d.ts
CHANGED
|
@@ -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,25 +6706,6 @@ export interface InviteCreateDTO {
|
|
|
6648
6706
|
*/
|
|
6649
6707
|
email: string;
|
|
6650
6708
|
}
|
|
6651
|
-
/**
|
|
6652
|
-
*
|
|
6653
|
-
* @export
|
|
6654
|
-
* @interface InviteOutputDTO
|
|
6655
|
-
*/
|
|
6656
|
-
export interface InviteOutputDTO {
|
|
6657
|
-
/**
|
|
6658
|
-
*
|
|
6659
|
-
* @type {string}
|
|
6660
|
-
* @memberof InviteOutputDTO
|
|
6661
|
-
*/
|
|
6662
|
-
botInvite: string;
|
|
6663
|
-
/**
|
|
6664
|
-
*
|
|
6665
|
-
* @type {string}
|
|
6666
|
-
* @memberof InviteOutputDTO
|
|
6667
|
-
*/
|
|
6668
|
-
devServer: string;
|
|
6669
|
-
}
|
|
6670
6709
|
/**
|
|
6671
6710
|
*
|
|
6672
6711
|
* @export
|
|
@@ -6806,27 +6845,28 @@ export interface InviteLinkCreateResultDTOAPI {
|
|
|
6806
6845
|
/**
|
|
6807
6846
|
*
|
|
6808
6847
|
* @export
|
|
6809
|
-
* @interface
|
|
6848
|
+
* @interface InviteLinkOutputArrayDTOAPI
|
|
6810
6849
|
*/
|
|
6811
|
-
export interface
|
|
6812
|
-
/**
|
|
6813
|
-
*
|
|
6814
|
-
* @type {string}
|
|
6815
|
-
* @memberof InviteLinkOutputDTO
|
|
6816
|
-
*/
|
|
6817
|
-
id: string;
|
|
6850
|
+
export interface InviteLinkOutputArrayDTOAPI {
|
|
6818
6851
|
/**
|
|
6819
6852
|
*
|
|
6820
|
-
* @type {
|
|
6821
|
-
* @memberof
|
|
6853
|
+
* @type {Array<InviteLinkOutputDTO>}
|
|
6854
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6822
6855
|
*/
|
|
6823
|
-
|
|
6856
|
+
data: Array<InviteLinkOutputDTO>;
|
|
6824
6857
|
/**
|
|
6825
6858
|
*
|
|
6826
|
-
* @type {
|
|
6827
|
-
* @memberof
|
|
6859
|
+
* @type {MetadataOutput}
|
|
6860
|
+
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6828
6861
|
*/
|
|
6829
|
-
|
|
6862
|
+
meta: MetadataOutput;
|
|
6863
|
+
}
|
|
6864
|
+
/**
|
|
6865
|
+
*
|
|
6866
|
+
* @export
|
|
6867
|
+
* @interface InviteLinkOutputDTO
|
|
6868
|
+
*/
|
|
6869
|
+
export interface InviteLinkOutputDTO {
|
|
6830
6870
|
/**
|
|
6831
6871
|
*
|
|
6832
6872
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
@@ -6875,6 +6915,24 @@ export interface InviteLinkOutputDTO {
|
|
|
6875
6915
|
* @memberof InviteLinkOutputDTO
|
|
6876
6916
|
*/
|
|
6877
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;
|
|
6878
6936
|
}
|
|
6879
6937
|
export declare const InviteLinkOutputDTOStatusEnum: {
|
|
6880
6938
|
readonly Active: "ACTIVE";
|
|
@@ -6902,25 +6960,6 @@ export interface InviteLinkOutputDTOAPI {
|
|
|
6902
6960
|
*/
|
|
6903
6961
|
meta: MetadataOutput;
|
|
6904
6962
|
}
|
|
6905
|
-
/**
|
|
6906
|
-
*
|
|
6907
|
-
* @export
|
|
6908
|
-
* @interface InviteLinkOutputArrayDTOAPI
|
|
6909
|
-
*/
|
|
6910
|
-
export interface InviteLinkOutputArrayDTOAPI {
|
|
6911
|
-
/**
|
|
6912
|
-
*
|
|
6913
|
-
* @type {Array<InviteLinkOutputDTO>}
|
|
6914
|
-
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6915
|
-
*/
|
|
6916
|
-
data: Array<InviteLinkOutputDTO>;
|
|
6917
|
-
/**
|
|
6918
|
-
*
|
|
6919
|
-
* @type {MetadataOutput}
|
|
6920
|
-
* @memberof InviteLinkOutputArrayDTOAPI
|
|
6921
|
-
*/
|
|
6922
|
-
meta: MetadataOutput;
|
|
6923
|
-
}
|
|
6924
6963
|
/**
|
|
6925
6964
|
*
|
|
6926
6965
|
* @export
|
|
@@ -7110,15 +7149,21 @@ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearch
|
|
|
7110
7149
|
/**
|
|
7111
7150
|
*
|
|
7112
7151
|
* @export
|
|
7113
|
-
* @interface
|
|
7152
|
+
* @interface InviteOutputDTO
|
|
7114
7153
|
*/
|
|
7115
|
-
export interface
|
|
7154
|
+
export interface InviteOutputDTO {
|
|
7116
7155
|
/**
|
|
7117
7156
|
*
|
|
7118
7157
|
* @type {string}
|
|
7119
|
-
* @memberof
|
|
7158
|
+
* @memberof InviteOutputDTO
|
|
7120
7159
|
*/
|
|
7121
|
-
|
|
7160
|
+
botInvite: string;
|
|
7161
|
+
/**
|
|
7162
|
+
*
|
|
7163
|
+
* @type {string}
|
|
7164
|
+
* @memberof InviteOutputDTO
|
|
7165
|
+
*/
|
|
7166
|
+
devServer: string;
|
|
7122
7167
|
}
|
|
7123
7168
|
/**
|
|
7124
7169
|
*
|
|
@@ -8010,7 +8055,7 @@ export interface MetadataOutput {
|
|
|
8010
8055
|
* @type {ErrorOutput}
|
|
8011
8056
|
* @memberof MetadataOutput
|
|
8012
8057
|
*/
|
|
8013
|
-
error
|
|
8058
|
+
error?: ErrorOutput;
|
|
8014
8059
|
/**
|
|
8015
8060
|
*
|
|
8016
8061
|
* @type {number}
|
|
@@ -12236,6 +12281,19 @@ export declare const RecentOrderDTOStatusEnum: {
|
|
|
12236
12281
|
readonly Canceled: "CANCELED";
|
|
12237
12282
|
};
|
|
12238
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
|
+
}
|
|
12239
12297
|
/**
|
|
12240
12298
|
*
|
|
12241
12299
|
* @export
|
|
@@ -12247,7 +12305,7 @@ export interface RedirectQs {
|
|
|
12247
12305
|
* @type {string}
|
|
12248
12306
|
* @memberof RedirectQs
|
|
12249
12307
|
*/
|
|
12250
|
-
redirect
|
|
12308
|
+
redirect?: string;
|
|
12251
12309
|
}
|
|
12252
12310
|
/**
|
|
12253
12311
|
*
|
|
@@ -13042,7 +13100,7 @@ export interface RoleUpdateInputDTO {
|
|
|
13042
13100
|
* @type {string}
|
|
13043
13101
|
* @memberof RoleUpdateInputDTO
|
|
13044
13102
|
*/
|
|
13045
|
-
linkedDiscordRoleId?: string;
|
|
13103
|
+
linkedDiscordRoleId?: string | null;
|
|
13046
13104
|
}
|
|
13047
13105
|
/**
|
|
13048
13106
|
*
|
|
@@ -15930,6 +15988,49 @@ export interface TakaroEventHookExecuted {
|
|
|
15930
15988
|
*/
|
|
15931
15989
|
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
15932
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
|
|
16031
|
+
*/
|
|
16032
|
+
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16033
|
+
}
|
|
15933
16034
|
/**
|
|
15934
16035
|
*
|
|
15935
16036
|
* @export
|
|
@@ -17208,6 +17309,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
17208
17309
|
*/
|
|
17209
17310
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17210
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
|
+
}
|
|
17211
17344
|
/**
|
|
17212
17345
|
*
|
|
17213
17346
|
* @export
|
|
@@ -17245,6 +17378,37 @@ export interface UserCreateInputDTO {
|
|
|
17245
17378
|
*/
|
|
17246
17379
|
isDashboardUser?: boolean;
|
|
17247
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
|
+
}
|
|
17248
17412
|
/**
|
|
17249
17413
|
*
|
|
17250
17414
|
* @export
|
|
@@ -17348,37 +17512,43 @@ export interface UserOutputDTO {
|
|
|
17348
17512
|
* @type {PlayerOutputWithRolesDTO}
|
|
17349
17513
|
* @memberof UserOutputDTO
|
|
17350
17514
|
*/
|
|
17351
|
-
player
|
|
17515
|
+
player?: PlayerOutputWithRolesDTO;
|
|
17352
17516
|
/**
|
|
17353
17517
|
*
|
|
17354
17518
|
* @type {boolean}
|
|
17355
17519
|
* @memberof UserOutputDTO
|
|
17356
17520
|
*/
|
|
17357
17521
|
isDashboardUser: boolean;
|
|
17522
|
+
/**
|
|
17523
|
+
*
|
|
17524
|
+
* @type {boolean}
|
|
17525
|
+
* @memberof UserOutputDTO
|
|
17526
|
+
*/
|
|
17527
|
+
isSupportAccount: boolean;
|
|
17358
17528
|
/**
|
|
17359
17529
|
*
|
|
17360
17530
|
* @type {string}
|
|
17361
17531
|
* @memberof UserOutputDTO
|
|
17362
17532
|
*/
|
|
17363
|
-
|
|
17533
|
+
inviteLinkId?: string;
|
|
17364
17534
|
/**
|
|
17365
17535
|
*
|
|
17366
|
-
* @type {
|
|
17536
|
+
* @type {string}
|
|
17367
17537
|
* @memberof UserOutputDTO
|
|
17368
17538
|
*/
|
|
17369
|
-
|
|
17539
|
+
id: string;
|
|
17370
17540
|
/**
|
|
17371
17541
|
*
|
|
17372
17542
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17373
17543
|
* @memberof UserOutputDTO
|
|
17374
17544
|
*/
|
|
17375
|
-
|
|
17545
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17376
17546
|
/**
|
|
17377
17547
|
*
|
|
17378
|
-
* @type {
|
|
17548
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17379
17549
|
* @memberof UserOutputDTO
|
|
17380
17550
|
*/
|
|
17381
|
-
|
|
17551
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17382
17552
|
}
|
|
17383
17553
|
/**
|
|
17384
17554
|
*
|
|
@@ -17470,13 +17640,19 @@ export interface UserOutputWithRolesDTO {
|
|
|
17470
17640
|
* @type {PlayerOutputWithRolesDTO}
|
|
17471
17641
|
* @memberof UserOutputWithRolesDTO
|
|
17472
17642
|
*/
|
|
17473
|
-
player
|
|
17643
|
+
player?: PlayerOutputWithRolesDTO;
|
|
17474
17644
|
/**
|
|
17475
17645
|
*
|
|
17476
17646
|
* @type {boolean}
|
|
17477
17647
|
* @memberof UserOutputWithRolesDTO
|
|
17478
17648
|
*/
|
|
17479
17649
|
isDashboardUser: boolean;
|
|
17650
|
+
/**
|
|
17651
|
+
*
|
|
17652
|
+
* @type {boolean}
|
|
17653
|
+
* @memberof UserOutputWithRolesDTO
|
|
17654
|
+
*/
|
|
17655
|
+
isSupportAccount: boolean;
|
|
17480
17656
|
/**
|
|
17481
17657
|
*
|
|
17482
17658
|
* @type {string}
|
|
@@ -18171,7 +18347,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18171
18347
|
*/
|
|
18172
18348
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18173
18349
|
/**
|
|
18174
|
-
* 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`
|
|
18175
18351
|
* @summary Get module health scores
|
|
18176
18352
|
* @param {string} [startDate]
|
|
18177
18353
|
* @param {string} [endDate]
|
|
@@ -18404,7 +18580,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18404
18580
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18405
18581
|
/**
|
|
18406
18582
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18407
|
-
* @summary Get top modules by
|
|
18583
|
+
* @summary Get top modules by execution volume
|
|
18408
18584
|
* @param {string} [startDate]
|
|
18409
18585
|
* @param {string} [endDate]
|
|
18410
18586
|
* @param {string} [gameServerId]
|
|
@@ -18560,7 +18736,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18560
18736
|
*/
|
|
18561
18737
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
18562
18738
|
/**
|
|
18563
|
-
* 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`
|
|
18564
18740
|
* @summary Get module health scores
|
|
18565
18741
|
* @param {string} [startDate]
|
|
18566
18742
|
* @param {string} [endDate]
|
|
@@ -18793,7 +18969,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18793
18969
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
18794
18970
|
/**
|
|
18795
18971
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18796
|
-
* @summary Get top modules by
|
|
18972
|
+
* @summary Get top modules by execution volume
|
|
18797
18973
|
* @param {string} [startDate]
|
|
18798
18974
|
* @param {string} [endDate]
|
|
18799
18975
|
* @param {string} [gameServerId]
|
|
@@ -18949,7 +19125,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18949
19125
|
*/
|
|
18950
19126
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18951
19127
|
/**
|
|
18952
|
-
* 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`
|
|
18953
19129
|
* @summary Get module health scores
|
|
18954
19130
|
* @param {string} [startDate]
|
|
18955
19131
|
* @param {string} [endDate]
|
|
@@ -19182,7 +19358,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19182
19358
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
19183
19359
|
/**
|
|
19184
19360
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19185
|
-
* @summary Get top modules by
|
|
19361
|
+
* @summary Get top modules by execution volume
|
|
19186
19362
|
* @param {string} [startDate]
|
|
19187
19363
|
* @param {string} [endDate]
|
|
19188
19364
|
* @param {string} [gameServerId]
|
|
@@ -19352,7 +19528,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19352
19528
|
*/
|
|
19353
19529
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
19354
19530
|
/**
|
|
19355
|
-
* 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`
|
|
19356
19532
|
* @summary Get module health scores
|
|
19357
19533
|
* @param {string} [startDate]
|
|
19358
19534
|
* @param {string} [endDate]
|
|
@@ -19606,7 +19782,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19606
19782
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
19607
19783
|
/**
|
|
19608
19784
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19609
|
-
* @summary Get top modules by
|
|
19785
|
+
* @summary Get top modules by execution volume
|
|
19610
19786
|
* @param {string} [startDate]
|
|
19611
19787
|
* @param {string} [endDate]
|
|
19612
19788
|
* @param {string} [gameServerId]
|
|
@@ -21083,6 +21259,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21083
21259
|
* @throws {RequiredError}
|
|
21084
21260
|
*/
|
|
21085
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>;
|
|
21086
21271
|
/**
|
|
21087
21272
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21088
21273
|
* @summary Get one
|
|
@@ -21147,6 +21332,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
21147
21332
|
* @throws {RequiredError}
|
|
21148
21333
|
*/
|
|
21149
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>>;
|
|
21150
21344
|
/**
|
|
21151
21345
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21152
21346
|
* @summary Get one
|
|
@@ -21211,6 +21405,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
21211
21405
|
* @throws {RequiredError}
|
|
21212
21406
|
*/
|
|
21213
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>;
|
|
21214
21417
|
/**
|
|
21215
21418
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21216
21419
|
* @summary Get one
|
|
@@ -21278,6 +21481,16 @@ export declare class DomainApi extends BaseAPI {
|
|
|
21278
21481
|
* @memberof DomainApi
|
|
21279
21482
|
*/
|
|
21280
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>>;
|
|
21281
21494
|
/**
|
|
21282
21495
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21283
21496
|
* @summary Get one
|
|
@@ -21692,11 +21905,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
|
|
|
21692
21905
|
/**
|
|
21693
21906
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21694
21907
|
* @summary Auth discord
|
|
21695
|
-
* @param {string} redirect
|
|
21908
|
+
* @param {string} [redirect]
|
|
21696
21909
|
* @param {*} [options] Override http request option.
|
|
21697
21910
|
* @throws {RequiredError}
|
|
21698
21911
|
*/
|
|
21699
|
-
externalAuthControllerAuthDiscord: (redirect
|
|
21912
|
+
externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21700
21913
|
/**
|
|
21701
21914
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21702
21915
|
* @summary Auth discord return
|
|
@@ -21713,11 +21926,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
|
|
|
21713
21926
|
/**
|
|
21714
21927
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21715
21928
|
* @summary Auth discord
|
|
21716
|
-
* @param {string} redirect
|
|
21929
|
+
* @param {string} [redirect]
|
|
21717
21930
|
* @param {*} [options] Override http request option.
|
|
21718
21931
|
* @throws {RequiredError}
|
|
21719
21932
|
*/
|
|
21720
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21933
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
21721
21934
|
/**
|
|
21722
21935
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21723
21936
|
* @summary Auth discord return
|
|
@@ -21734,11 +21947,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
|
|
|
21734
21947
|
/**
|
|
21735
21948
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21736
21949
|
* @summary Auth discord
|
|
21737
|
-
* @param {string} redirect
|
|
21950
|
+
* @param {string} [redirect]
|
|
21738
21951
|
* @param {*} [options] Override http request option.
|
|
21739
21952
|
* @throws {RequiredError}
|
|
21740
21953
|
*/
|
|
21741
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21954
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
21742
21955
|
/**
|
|
21743
21956
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21744
21957
|
* @summary Auth discord return
|
|
@@ -21757,12 +21970,12 @@ export declare class ExternalAuthApi extends BaseAPI {
|
|
|
21757
21970
|
/**
|
|
21758
21971
|
* <br> OperationId: `ExternalAuthControllerAuthDiscord`
|
|
21759
21972
|
* @summary Auth discord
|
|
21760
|
-
* @param {string} redirect
|
|
21973
|
+
* @param {string} [redirect]
|
|
21761
21974
|
* @param {*} [options] Override http request option.
|
|
21762
21975
|
* @throws {RequiredError}
|
|
21763
21976
|
* @memberof ExternalAuthApi
|
|
21764
21977
|
*/
|
|
21765
|
-
externalAuthControllerAuthDiscord(redirect
|
|
21978
|
+
externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
21766
21979
|
/**
|
|
21767
21980
|
* <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
|
|
21768
21981
|
* @summary Auth discord return
|
|
@@ -23196,6 +23409,197 @@ export declare class HookApi extends BaseAPI {
|
|
|
23196
23409
|
*/
|
|
23197
23410
|
hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
|
|
23198
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
|
+
}
|
|
23199
23603
|
/**
|
|
23200
23604
|
* ItemApi - axios parameter creator
|
|
23201
23605
|
* @export
|
|
@@ -23300,6 +23704,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
23300
23704
|
* @throws {RequiredError}
|
|
23301
23705
|
*/
|
|
23302
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>;
|
|
23303
23714
|
/**
|
|
23304
23715
|
* <br> OperationId: `MetaGetMetrics`
|
|
23305
23716
|
* @summary Get metrics
|
|
@@ -23348,6 +23759,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
|
|
|
23348
23759
|
* @throws {RequiredError}
|
|
23349
23760
|
*/
|
|
23350
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>>;
|
|
23351
23769
|
/**
|
|
23352
23770
|
* <br> OperationId: `MetaGetMetrics`
|
|
23353
23771
|
* @summary Get metrics
|
|
@@ -23396,6 +23814,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
|
|
|
23396
23814
|
* @throws {RequiredError}
|
|
23397
23815
|
*/
|
|
23398
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>;
|
|
23399
23824
|
/**
|
|
23400
23825
|
* <br> OperationId: `MetaGetMetrics`
|
|
23401
23826
|
* @summary Get metrics
|
|
@@ -23447,6 +23872,14 @@ export declare class MetaApi extends BaseAPI {
|
|
|
23447
23872
|
* @memberof MetaApi
|
|
23448
23873
|
*/
|
|
23449
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>>;
|
|
23450
23883
|
/**
|
|
23451
23884
|
* <br> OperationId: `MetaGetMetrics`
|
|
23452
23885
|
* @summary Get metrics
|
|
@@ -26765,6 +27198,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26765
27198
|
* @throws {RequiredError}
|
|
26766
27199
|
*/
|
|
26767
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>;
|
|
26768
27208
|
/**
|
|
26769
27209
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26770
27210
|
* @summary Create
|
|
@@ -26793,6 +27233,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26793
27233
|
* @summary Invite
|
|
26794
27234
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26795
27235
|
* @param {*} [options] Override http request option.
|
|
27236
|
+
* @deprecated
|
|
26796
27237
|
* @throws {RequiredError}
|
|
26797
27238
|
*/
|
|
26798
27239
|
userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -26884,6 +27325,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26884
27325
|
* @throws {RequiredError}
|
|
26885
27326
|
*/
|
|
26886
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>>;
|
|
26887
27335
|
/**
|
|
26888
27336
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26889
27337
|
* @summary Create
|
|
@@ -26912,6 +27360,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26912
27360
|
* @summary Invite
|
|
26913
27361
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26914
27362
|
* @param {*} [options] Override http request option.
|
|
27363
|
+
* @deprecated
|
|
26915
27364
|
* @throws {RequiredError}
|
|
26916
27365
|
*/
|
|
26917
27366
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
|
|
@@ -27003,6 +27452,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
27003
27452
|
* @throws {RequiredError}
|
|
27004
27453
|
*/
|
|
27005
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>;
|
|
27006
27462
|
/**
|
|
27007
27463
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
27008
27464
|
* @summary Create
|
|
@@ -27031,6 +27487,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
27031
27487
|
* @summary Invite
|
|
27032
27488
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27033
27489
|
* @param {*} [options] Override http request option.
|
|
27490
|
+
* @deprecated
|
|
27034
27491
|
* @throws {RequiredError}
|
|
27035
27492
|
*/
|
|
27036
27493
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
|
|
@@ -27125,6 +27582,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
27125
27582
|
* @memberof UserApi
|
|
27126
27583
|
*/
|
|
27127
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>>;
|
|
27128
27593
|
/**
|
|
27129
27594
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
27130
27595
|
* @summary Create
|
|
@@ -27156,6 +27621,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
27156
27621
|
* @summary Invite
|
|
27157
27622
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27158
27623
|
* @param {*} [options] Override http request option.
|
|
27624
|
+
* @deprecated
|
|
27159
27625
|
* @throws {RequiredError}
|
|
27160
27626
|
* @memberof UserApi
|
|
27161
27627
|
*/
|
|
@@ -27437,195 +27903,4 @@ export declare class VariableApi extends BaseAPI {
|
|
|
27437
27903
|
*/
|
|
27438
27904
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
27439
27905
|
}
|
|
27440
|
-
/**
|
|
27441
|
-
* InviteLinkApi - axios parameter creator
|
|
27442
|
-
* @export
|
|
27443
|
-
*/
|
|
27444
|
-
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
27445
|
-
/**
|
|
27446
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27447
|
-
* @summary Create invite link
|
|
27448
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27449
|
-
* @param {*} [options] Override http request option.
|
|
27450
|
-
* @throws {RequiredError}
|
|
27451
|
-
*/
|
|
27452
|
-
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27453
|
-
/**
|
|
27454
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27455
|
-
* @summary Preview
|
|
27456
|
-
* @param {string} token
|
|
27457
|
-
* @param {*} [options] Override http request option.
|
|
27458
|
-
* @throws {RequiredError}
|
|
27459
|
-
*/
|
|
27460
|
-
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27461
|
-
/**
|
|
27462
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27463
|
-
* @summary Redeem
|
|
27464
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27465
|
-
* @param {*} [options] Override http request option.
|
|
27466
|
-
* @throws {RequiredError}
|
|
27467
|
-
*/
|
|
27468
|
-
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27469
|
-
/**
|
|
27470
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27471
|
-
* @summary Revoke
|
|
27472
|
-
* @param {string} id
|
|
27473
|
-
* @param {*} [options] Override http request option.
|
|
27474
|
-
* @throws {RequiredError}
|
|
27475
|
-
*/
|
|
27476
|
-
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27477
|
-
/**
|
|
27478
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27479
|
-
* @summary Search
|
|
27480
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27481
|
-
* @param {*} [options] Override http request option.
|
|
27482
|
-
* @throws {RequiredError}
|
|
27483
|
-
*/
|
|
27484
|
-
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27485
|
-
};
|
|
27486
|
-
/**
|
|
27487
|
-
* InviteLinkApi - functional programming interface
|
|
27488
|
-
* @export
|
|
27489
|
-
*/
|
|
27490
|
-
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
27491
|
-
/**
|
|
27492
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27493
|
-
* @summary Create invite link
|
|
27494
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27495
|
-
* @param {*} [options] Override http request option.
|
|
27496
|
-
* @throws {RequiredError}
|
|
27497
|
-
*/
|
|
27498
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
27499
|
-
/**
|
|
27500
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27501
|
-
* @summary Preview
|
|
27502
|
-
* @param {string} token
|
|
27503
|
-
* @param {*} [options] Override http request option.
|
|
27504
|
-
* @throws {RequiredError}
|
|
27505
|
-
*/
|
|
27506
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
27507
|
-
/**
|
|
27508
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27509
|
-
* @summary Redeem
|
|
27510
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27511
|
-
* @param {*} [options] Override http request option.
|
|
27512
|
-
* @throws {RequiredError}
|
|
27513
|
-
*/
|
|
27514
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
27515
|
-
/**
|
|
27516
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27517
|
-
* @summary Revoke
|
|
27518
|
-
* @param {string} id
|
|
27519
|
-
* @param {*} [options] Override http request option.
|
|
27520
|
-
* @throws {RequiredError}
|
|
27521
|
-
*/
|
|
27522
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27523
|
-
/**
|
|
27524
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27525
|
-
* @summary Search
|
|
27526
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27527
|
-
* @param {*} [options] Override http request option.
|
|
27528
|
-
* @throws {RequiredError}
|
|
27529
|
-
*/
|
|
27530
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
27531
|
-
};
|
|
27532
|
-
/**
|
|
27533
|
-
* InviteLinkApi - factory interface
|
|
27534
|
-
* @export
|
|
27535
|
-
*/
|
|
27536
|
-
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
27537
|
-
/**
|
|
27538
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27539
|
-
* @summary Create invite link
|
|
27540
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27541
|
-
* @param {*} [options] Override http request option.
|
|
27542
|
-
* @throws {RequiredError}
|
|
27543
|
-
*/
|
|
27544
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
27545
|
-
/**
|
|
27546
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27547
|
-
* @summary Preview
|
|
27548
|
-
* @param {string} token
|
|
27549
|
-
* @param {*} [options] Override http request option.
|
|
27550
|
-
* @throws {RequiredError}
|
|
27551
|
-
*/
|
|
27552
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
27553
|
-
/**
|
|
27554
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27555
|
-
* @summary Redeem
|
|
27556
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27557
|
-
* @param {*} [options] Override http request option.
|
|
27558
|
-
* @throws {RequiredError}
|
|
27559
|
-
*/
|
|
27560
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
27561
|
-
/**
|
|
27562
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27563
|
-
* @summary Revoke
|
|
27564
|
-
* @param {string} id
|
|
27565
|
-
* @param {*} [options] Override http request option.
|
|
27566
|
-
* @throws {RequiredError}
|
|
27567
|
-
*/
|
|
27568
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27569
|
-
/**
|
|
27570
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27571
|
-
* @summary Search
|
|
27572
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27573
|
-
* @param {*} [options] Override http request option.
|
|
27574
|
-
* @throws {RequiredError}
|
|
27575
|
-
*/
|
|
27576
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
27577
|
-
};
|
|
27578
|
-
/**
|
|
27579
|
-
* InviteLinkApi - object-oriented interface
|
|
27580
|
-
* @export
|
|
27581
|
-
* @class InviteLinkApi
|
|
27582
|
-
* @extends {BaseAPI}
|
|
27583
|
-
*/
|
|
27584
|
-
export declare class InviteLinkApi extends BaseAPI {
|
|
27585
|
-
/**
|
|
27586
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
|
|
27587
|
-
* @summary Create invite link
|
|
27588
|
-
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
27589
|
-
* @param {*} [options] Override http request option.
|
|
27590
|
-
* @throws {RequiredError}
|
|
27591
|
-
* @memberof InviteLinkApi
|
|
27592
|
-
*/
|
|
27593
|
-
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
27594
|
-
/**
|
|
27595
|
-
* <br> OperationId: `InviteLinkControllerPreview`
|
|
27596
|
-
* @summary Preview
|
|
27597
|
-
* @param {string} token
|
|
27598
|
-
* @param {*} [options] Override http request option.
|
|
27599
|
-
* @throws {RequiredError}
|
|
27600
|
-
* @memberof InviteLinkApi
|
|
27601
|
-
*/
|
|
27602
|
-
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
27603
|
-
/**
|
|
27604
|
-
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
27605
|
-
* @summary Redeem
|
|
27606
|
-
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
27607
|
-
* @param {*} [options] Override http request option.
|
|
27608
|
-
* @throws {RequiredError}
|
|
27609
|
-
* @memberof InviteLinkApi
|
|
27610
|
-
*/
|
|
27611
|
-
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
27612
|
-
/**
|
|
27613
|
-
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
27614
|
-
* @summary Revoke
|
|
27615
|
-
* @param {string} id
|
|
27616
|
-
* @param {*} [options] Override http request option.
|
|
27617
|
-
* @throws {RequiredError}
|
|
27618
|
-
* @memberof InviteLinkApi
|
|
27619
|
-
*/
|
|
27620
|
-
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27621
|
-
/**
|
|
27622
|
-
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
27623
|
-
* @summary Search
|
|
27624
|
-
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
27625
|
-
* @param {*} [options] Override http request option.
|
|
27626
|
-
* @throws {RequiredError}
|
|
27627
|
-
* @memberof InviteLinkApi
|
|
27628
|
-
*/
|
|
27629
|
-
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
27630
|
-
}
|
|
27631
27906
|
//# sourceMappingURL=api.d.ts.map
|