@takaro/apiclient 0.0.0-dev.d1df02e → 0.0.0-dev.d3b14aa
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 +462 -277
- package/dist/generated/api.d.ts.map +1 -1
- package/dist/generated/api.js +4894 -4738
- package/dist/generated/api.js.map +1 -1
- package/dist/lib/baseClient.d.ts +14 -0
- package/dist/lib/baseClient.d.ts.map +1 -1
- package/dist/lib/baseClient.js +13 -0
- package/dist/lib/baseClient.js.map +1 -1
- package/package.json +1 -1
- package/src/generated/api.ts +857 -542
- package/src/lib/__tests__/baseClient.unit.test.ts +17 -0
- package/src/lib/baseClient.ts +16 -0
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 {string}
|
|
2236
|
+
* @memberof DomainCreateInputDTO
|
|
2237
|
+
*/
|
|
2238
|
+
serverRegistrationToken?: string;
|
|
2239
|
+
/**
|
|
2240
|
+
*
|
|
2241
|
+
* @type {boolean}
|
|
2242
|
+
* @memberof DomainCreateInputDTO
|
|
2243
|
+
*/
|
|
2244
|
+
skipBuiltinSeeding?: boolean;
|
|
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";
|
|
@@ -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
|
*
|
|
@@ -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
|
|
@@ -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,19 @@ 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 {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
16000
|
+
* @memberof TakaroEventInviteLinkCreated
|
|
16001
|
+
*/
|
|
16002
|
+
timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
16003
|
+
}
|
|
15933
16004
|
/**
|
|
15934
16005
|
*
|
|
15935
16006
|
* @export
|
|
@@ -17208,6 +17279,38 @@ export interface UserAssignmentOutputDTO {
|
|
|
17208
17279
|
*/
|
|
17209
17280
|
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17210
17281
|
}
|
|
17282
|
+
/**
|
|
17283
|
+
*
|
|
17284
|
+
* @export
|
|
17285
|
+
* @interface UserCountOutputDTO
|
|
17286
|
+
*/
|
|
17287
|
+
export interface UserCountOutputDTO {
|
|
17288
|
+
/**
|
|
17289
|
+
*
|
|
17290
|
+
* @type {number}
|
|
17291
|
+
* @memberof UserCountOutputDTO
|
|
17292
|
+
*/
|
|
17293
|
+
count: number;
|
|
17294
|
+
}
|
|
17295
|
+
/**
|
|
17296
|
+
*
|
|
17297
|
+
* @export
|
|
17298
|
+
* @interface UserCountOutputDTOAPI
|
|
17299
|
+
*/
|
|
17300
|
+
export interface UserCountOutputDTOAPI {
|
|
17301
|
+
/**
|
|
17302
|
+
*
|
|
17303
|
+
* @type {UserCountOutputDTO}
|
|
17304
|
+
* @memberof UserCountOutputDTOAPI
|
|
17305
|
+
*/
|
|
17306
|
+
data: UserCountOutputDTO;
|
|
17307
|
+
/**
|
|
17308
|
+
*
|
|
17309
|
+
* @type {MetadataOutput}
|
|
17310
|
+
* @memberof UserCountOutputDTOAPI
|
|
17311
|
+
*/
|
|
17312
|
+
meta: MetadataOutput;
|
|
17313
|
+
}
|
|
17211
17314
|
/**
|
|
17212
17315
|
*
|
|
17213
17316
|
* @export
|
|
@@ -17355,30 +17458,36 @@ export interface UserOutputDTO {
|
|
|
17355
17458
|
* @memberof UserOutputDTO
|
|
17356
17459
|
*/
|
|
17357
17460
|
isDashboardUser: boolean;
|
|
17461
|
+
/**
|
|
17462
|
+
*
|
|
17463
|
+
* @type {boolean}
|
|
17464
|
+
* @memberof UserOutputDTO
|
|
17465
|
+
*/
|
|
17466
|
+
isSupportAccount: boolean;
|
|
17358
17467
|
/**
|
|
17359
17468
|
*
|
|
17360
17469
|
* @type {string}
|
|
17361
17470
|
* @memberof UserOutputDTO
|
|
17362
17471
|
*/
|
|
17363
|
-
|
|
17472
|
+
inviteLinkId?: string;
|
|
17364
17473
|
/**
|
|
17365
17474
|
*
|
|
17366
|
-
* @type {
|
|
17475
|
+
* @type {string}
|
|
17367
17476
|
* @memberof UserOutputDTO
|
|
17368
17477
|
*/
|
|
17369
|
-
|
|
17478
|
+
id: string;
|
|
17370
17479
|
/**
|
|
17371
17480
|
*
|
|
17372
17481
|
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17373
17482
|
* @memberof UserOutputDTO
|
|
17374
17483
|
*/
|
|
17375
|
-
|
|
17484
|
+
createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17376
17485
|
/**
|
|
17377
17486
|
*
|
|
17378
|
-
* @type {
|
|
17487
|
+
* @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
|
|
17379
17488
|
* @memberof UserOutputDTO
|
|
17380
17489
|
*/
|
|
17381
|
-
|
|
17490
|
+
updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
|
|
17382
17491
|
}
|
|
17383
17492
|
/**
|
|
17384
17493
|
*
|
|
@@ -17477,6 +17586,12 @@ export interface UserOutputWithRolesDTO {
|
|
|
17477
17586
|
* @memberof UserOutputWithRolesDTO
|
|
17478
17587
|
*/
|
|
17479
17588
|
isDashboardUser: boolean;
|
|
17589
|
+
/**
|
|
17590
|
+
*
|
|
17591
|
+
* @type {boolean}
|
|
17592
|
+
* @memberof UserOutputWithRolesDTO
|
|
17593
|
+
*/
|
|
17594
|
+
isSupportAccount: boolean;
|
|
17480
17595
|
/**
|
|
17481
17596
|
*
|
|
17482
17597
|
* @type {string}
|
|
@@ -18171,7 +18286,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18171
18286
|
*/
|
|
18172
18287
|
analyticsControllerGetModerationTimeseries: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18173
18288
|
/**
|
|
18174
|
-
* Normalized 0-1 scores across
|
|
18289
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18175
18290
|
* @summary Get module health scores
|
|
18176
18291
|
* @param {string} [startDate]
|
|
18177
18292
|
* @param {string} [endDate]
|
|
@@ -18404,7 +18519,7 @@ export declare const AnalyticsApiAxiosParamCreator: (configuration?: Configurati
|
|
|
18404
18519
|
analyticsControllerGetTopListings: (startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
18405
18520
|
/**
|
|
18406
18521
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18407
|
-
* @summary Get top modules by
|
|
18522
|
+
* @summary Get top modules by execution volume
|
|
18408
18523
|
* @param {string} [startDate]
|
|
18409
18524
|
* @param {string} [endDate]
|
|
18410
18525
|
* @param {string} [gameServerId]
|
|
@@ -18560,7 +18675,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18560
18675
|
*/
|
|
18561
18676
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ModerationDailyPointDTOAPI>>;
|
|
18562
18677
|
/**
|
|
18563
|
-
* Normalized 0-1 scores across
|
|
18678
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18564
18679
|
* @summary Get module health scores
|
|
18565
18680
|
* @param {string} [startDate]
|
|
18566
18681
|
* @param {string} [endDate]
|
|
@@ -18793,7 +18908,7 @@ export declare const AnalyticsApiFp: (configuration?: Configuration) => {
|
|
|
18793
18908
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShopTopListingDTOAPI>>;
|
|
18794
18909
|
/**
|
|
18795
18910
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
18796
|
-
* @summary Get top modules by
|
|
18911
|
+
* @summary Get top modules by execution volume
|
|
18797
18912
|
* @param {string} [startDate]
|
|
18798
18913
|
* @param {string} [endDate]
|
|
18799
18914
|
* @param {string} [gameServerId]
|
|
@@ -18949,7 +19064,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
18949
19064
|
*/
|
|
18950
19065
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ModerationDailyPointDTOAPI>;
|
|
18951
19066
|
/**
|
|
18952
|
-
* Normalized 0-1 scores across
|
|
19067
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
18953
19068
|
* @summary Get module health scores
|
|
18954
19069
|
* @param {string} [startDate]
|
|
18955
19070
|
* @param {string} [endDate]
|
|
@@ -19182,7 +19297,7 @@ export declare const AnalyticsApiFactory: (configuration?: Configuration, basePa
|
|
|
19182
19297
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): AxiosPromise<ShopTopListingDTOAPI>;
|
|
19183
19298
|
/**
|
|
19184
19299
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19185
|
-
* @summary Get top modules by
|
|
19300
|
+
* @summary Get top modules by execution volume
|
|
19186
19301
|
* @param {string} [startDate]
|
|
19187
19302
|
* @param {string} [endDate]
|
|
19188
19303
|
* @param {string} [gameServerId]
|
|
@@ -19352,7 +19467,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19352
19467
|
*/
|
|
19353
19468
|
analyticsControllerGetModerationTimeseries(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetModerationTimeseriesPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ModerationDailyPointDTOAPI, any>>;
|
|
19354
19469
|
/**
|
|
19355
|
-
* Normalized 0-1 scores across
|
|
19470
|
+
* Normalized 0-1 scores across six dimensions per top module for radar visualization. Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetModuleHealth`
|
|
19356
19471
|
* @summary Get module health scores
|
|
19357
19472
|
* @param {string} [startDate]
|
|
19358
19473
|
* @param {string} [endDate]
|
|
@@ -19606,7 +19721,7 @@ export declare class AnalyticsApi extends BaseAPI {
|
|
|
19606
19721
|
analyticsControllerGetTopListings(startDate?: string, endDate?: string, gameServerId?: string, period?: AnalyticsControllerGetTopListingsPeriodEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShopTopListingDTOAPI, any>>;
|
|
19607
19722
|
/**
|
|
19608
19723
|
* Required permissions: `READ_EVENTS`<br> OperationId: `AnalyticsControllerGetTopModulesByVolume`
|
|
19609
|
-
* @summary Get top modules by
|
|
19724
|
+
* @summary Get top modules by execution volume
|
|
19610
19725
|
* @param {string} [startDate]
|
|
19611
19726
|
* @param {string} [endDate]
|
|
19612
19727
|
* @param {string} [gameServerId]
|
|
@@ -21083,6 +21198,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
21083
21198
|
* @throws {RequiredError}
|
|
21084
21199
|
*/
|
|
21085
21200
|
domainControllerCreate: (domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21201
|
+
/**
|
|
21202
|
+
* 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`
|
|
21203
|
+
* @summary Create admin invite link for a domain
|
|
21204
|
+
* @param {string} id
|
|
21205
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21206
|
+
* @param {*} [options] Override http request option.
|
|
21207
|
+
* @throws {RequiredError}
|
|
21208
|
+
*/
|
|
21209
|
+
domainControllerCreateInviteLink: (id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
21086
21210
|
/**
|
|
21087
21211
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21088
21212
|
* @summary Get one
|
|
@@ -21147,6 +21271,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
|
|
|
21147
21271
|
* @throws {RequiredError}
|
|
21148
21272
|
*/
|
|
21149
21273
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DomainCreateOutputDTOAPI>>;
|
|
21274
|
+
/**
|
|
21275
|
+
* 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`
|
|
21276
|
+
* @summary Create admin invite link for a domain
|
|
21277
|
+
* @param {string} id
|
|
21278
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21279
|
+
* @param {*} [options] Override http request option.
|
|
21280
|
+
* @throws {RequiredError}
|
|
21281
|
+
*/
|
|
21282
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
21150
21283
|
/**
|
|
21151
21284
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21152
21285
|
* @summary Get one
|
|
@@ -21211,6 +21344,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
|
|
|
21211
21344
|
* @throws {RequiredError}
|
|
21212
21345
|
*/
|
|
21213
21346
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<DomainCreateOutputDTOAPI>;
|
|
21347
|
+
/**
|
|
21348
|
+
* 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`
|
|
21349
|
+
* @summary Create admin invite link for a domain
|
|
21350
|
+
* @param {string} id
|
|
21351
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21352
|
+
* @param {*} [options] Override http request option.
|
|
21353
|
+
* @throws {RequiredError}
|
|
21354
|
+
*/
|
|
21355
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
21214
21356
|
/**
|
|
21215
21357
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21216
21358
|
* @summary Get one
|
|
@@ -21278,6 +21420,16 @@ export declare class DomainApi extends BaseAPI {
|
|
|
21278
21420
|
* @memberof DomainApi
|
|
21279
21421
|
*/
|
|
21280
21422
|
domainControllerCreate(domainCreateInputDTO?: DomainCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DomainCreateOutputDTOAPI, any>>;
|
|
21423
|
+
/**
|
|
21424
|
+
* 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`
|
|
21425
|
+
* @summary Create admin invite link for a domain
|
|
21426
|
+
* @param {string} id
|
|
21427
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
21428
|
+
* @param {*} [options] Override http request option.
|
|
21429
|
+
* @throws {RequiredError}
|
|
21430
|
+
* @memberof DomainApi
|
|
21431
|
+
*/
|
|
21432
|
+
domainControllerCreateInviteLink(id: string, inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
21281
21433
|
/**
|
|
21282
21434
|
* <br> OperationId: `DomainControllerGetOne`
|
|
21283
21435
|
* @summary Get one
|
|
@@ -23197,30 +23349,221 @@ export declare class HookApi extends BaseAPI {
|
|
|
23197
23349
|
hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
|
|
23198
23350
|
}
|
|
23199
23351
|
/**
|
|
23200
|
-
*
|
|
23352
|
+
* InviteLinkApi - axios parameter creator
|
|
23201
23353
|
* @export
|
|
23202
23354
|
*/
|
|
23203
|
-
export declare const
|
|
23355
|
+
export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23204
23356
|
/**
|
|
23205
|
-
*
|
|
23206
|
-
* @summary
|
|
23207
|
-
* @param {
|
|
23357
|
+
* 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`
|
|
23358
|
+
* @summary Create invite link
|
|
23359
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23208
23360
|
* @param {*} [options] Override http request option.
|
|
23209
23361
|
* @throws {RequiredError}
|
|
23210
23362
|
*/
|
|
23211
|
-
|
|
23363
|
+
inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23212
23364
|
/**
|
|
23213
|
-
*
|
|
23214
|
-
* @summary
|
|
23215
|
-
* @param {
|
|
23365
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23366
|
+
* @summary Preview
|
|
23367
|
+
* @param {string} token
|
|
23216
23368
|
* @param {*} [options] Override http request option.
|
|
23217
23369
|
* @throws {RequiredError}
|
|
23218
23370
|
*/
|
|
23219
|
-
|
|
23220
|
-
|
|
23221
|
-
|
|
23222
|
-
|
|
23223
|
-
|
|
23371
|
+
inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23372
|
+
/**
|
|
23373
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23374
|
+
* @summary Redeem
|
|
23375
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23376
|
+
* @param {*} [options] Override http request option.
|
|
23377
|
+
* @throws {RequiredError}
|
|
23378
|
+
*/
|
|
23379
|
+
inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23380
|
+
/**
|
|
23381
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23382
|
+
* @summary Revoke
|
|
23383
|
+
* @param {string} id
|
|
23384
|
+
* @param {*} [options] Override http request option.
|
|
23385
|
+
* @throws {RequiredError}
|
|
23386
|
+
*/
|
|
23387
|
+
inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23388
|
+
/**
|
|
23389
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23390
|
+
* @summary Search
|
|
23391
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23392
|
+
* @param {*} [options] Override http request option.
|
|
23393
|
+
* @throws {RequiredError}
|
|
23394
|
+
*/
|
|
23395
|
+
inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23396
|
+
};
|
|
23397
|
+
/**
|
|
23398
|
+
* InviteLinkApi - functional programming interface
|
|
23399
|
+
* @export
|
|
23400
|
+
*/
|
|
23401
|
+
export declare const InviteLinkApiFp: (configuration?: Configuration) => {
|
|
23402
|
+
/**
|
|
23403
|
+
* 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`
|
|
23404
|
+
* @summary Create invite link
|
|
23405
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23406
|
+
* @param {*} [options] Override http request option.
|
|
23407
|
+
* @throws {RequiredError}
|
|
23408
|
+
*/
|
|
23409
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
|
|
23410
|
+
/**
|
|
23411
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23412
|
+
* @summary Preview
|
|
23413
|
+
* @param {string} token
|
|
23414
|
+
* @param {*} [options] Override http request option.
|
|
23415
|
+
* @throws {RequiredError}
|
|
23416
|
+
*/
|
|
23417
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
|
|
23418
|
+
/**
|
|
23419
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23420
|
+
* @summary Redeem
|
|
23421
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23422
|
+
* @param {*} [options] Override http request option.
|
|
23423
|
+
* @throws {RequiredError}
|
|
23424
|
+
*/
|
|
23425
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
|
|
23426
|
+
/**
|
|
23427
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23428
|
+
* @summary Revoke
|
|
23429
|
+
* @param {string} id
|
|
23430
|
+
* @param {*} [options] Override http request option.
|
|
23431
|
+
* @throws {RequiredError}
|
|
23432
|
+
*/
|
|
23433
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
23434
|
+
/**
|
|
23435
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23436
|
+
* @summary Search
|
|
23437
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23438
|
+
* @param {*} [options] Override http request option.
|
|
23439
|
+
* @throws {RequiredError}
|
|
23440
|
+
*/
|
|
23441
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
|
|
23442
|
+
};
|
|
23443
|
+
/**
|
|
23444
|
+
* InviteLinkApi - factory interface
|
|
23445
|
+
* @export
|
|
23446
|
+
*/
|
|
23447
|
+
export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
23448
|
+
/**
|
|
23449
|
+
* 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`
|
|
23450
|
+
* @summary Create invite link
|
|
23451
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23452
|
+
* @param {*} [options] Override http request option.
|
|
23453
|
+
* @throws {RequiredError}
|
|
23454
|
+
*/
|
|
23455
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
|
|
23456
|
+
/**
|
|
23457
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23458
|
+
* @summary Preview
|
|
23459
|
+
* @param {string} token
|
|
23460
|
+
* @param {*} [options] Override http request option.
|
|
23461
|
+
* @throws {RequiredError}
|
|
23462
|
+
*/
|
|
23463
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
|
|
23464
|
+
/**
|
|
23465
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23466
|
+
* @summary Redeem
|
|
23467
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23468
|
+
* @param {*} [options] Override http request option.
|
|
23469
|
+
* @throws {RequiredError}
|
|
23470
|
+
*/
|
|
23471
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
|
|
23472
|
+
/**
|
|
23473
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23474
|
+
* @summary Revoke
|
|
23475
|
+
* @param {string} id
|
|
23476
|
+
* @param {*} [options] Override http request option.
|
|
23477
|
+
* @throws {RequiredError}
|
|
23478
|
+
*/
|
|
23479
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
23480
|
+
/**
|
|
23481
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23482
|
+
* @summary Search
|
|
23483
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23484
|
+
* @param {*} [options] Override http request option.
|
|
23485
|
+
* @throws {RequiredError}
|
|
23486
|
+
*/
|
|
23487
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
|
|
23488
|
+
};
|
|
23489
|
+
/**
|
|
23490
|
+
* InviteLinkApi - object-oriented interface
|
|
23491
|
+
* @export
|
|
23492
|
+
* @class InviteLinkApi
|
|
23493
|
+
* @extends {BaseAPI}
|
|
23494
|
+
*/
|
|
23495
|
+
export declare class InviteLinkApi extends BaseAPI {
|
|
23496
|
+
/**
|
|
23497
|
+
* 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`
|
|
23498
|
+
* @summary Create invite link
|
|
23499
|
+
* @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
|
|
23500
|
+
* @param {*} [options] Override http request option.
|
|
23501
|
+
* @throws {RequiredError}
|
|
23502
|
+
* @memberof InviteLinkApi
|
|
23503
|
+
*/
|
|
23504
|
+
inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
|
|
23505
|
+
/**
|
|
23506
|
+
* <br> OperationId: `InviteLinkControllerPreview`
|
|
23507
|
+
* @summary Preview
|
|
23508
|
+
* @param {string} token
|
|
23509
|
+
* @param {*} [options] Override http request option.
|
|
23510
|
+
* @throws {RequiredError}
|
|
23511
|
+
* @memberof InviteLinkApi
|
|
23512
|
+
*/
|
|
23513
|
+
inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
|
|
23514
|
+
/**
|
|
23515
|
+
* <br> OperationId: `InviteLinkControllerRedeem`
|
|
23516
|
+
* @summary Redeem
|
|
23517
|
+
* @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
|
|
23518
|
+
* @param {*} [options] Override http request option.
|
|
23519
|
+
* @throws {RequiredError}
|
|
23520
|
+
* @memberof InviteLinkApi
|
|
23521
|
+
*/
|
|
23522
|
+
inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
|
|
23523
|
+
/**
|
|
23524
|
+
* Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
|
|
23525
|
+
* @summary Revoke
|
|
23526
|
+
* @param {string} id
|
|
23527
|
+
* @param {*} [options] Override http request option.
|
|
23528
|
+
* @throws {RequiredError}
|
|
23529
|
+
* @memberof InviteLinkApi
|
|
23530
|
+
*/
|
|
23531
|
+
inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
23532
|
+
/**
|
|
23533
|
+
* Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
|
|
23534
|
+
* @summary Search
|
|
23535
|
+
* @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
|
|
23536
|
+
* @param {*} [options] Override http request option.
|
|
23537
|
+
* @throws {RequiredError}
|
|
23538
|
+
* @memberof InviteLinkApi
|
|
23539
|
+
*/
|
|
23540
|
+
inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
|
|
23541
|
+
}
|
|
23542
|
+
/**
|
|
23543
|
+
* ItemApi - axios parameter creator
|
|
23544
|
+
* @export
|
|
23545
|
+
*/
|
|
23546
|
+
export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
23547
|
+
/**
|
|
23548
|
+
* Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
|
|
23549
|
+
* @summary Find one
|
|
23550
|
+
* @param {string} id
|
|
23551
|
+
* @param {*} [options] Override http request option.
|
|
23552
|
+
* @throws {RequiredError}
|
|
23553
|
+
*/
|
|
23554
|
+
itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23555
|
+
/**
|
|
23556
|
+
* Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
|
|
23557
|
+
* @summary Search
|
|
23558
|
+
* @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
|
|
23559
|
+
* @param {*} [options] Override http request option.
|
|
23560
|
+
* @throws {RequiredError}
|
|
23561
|
+
*/
|
|
23562
|
+
itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
23563
|
+
};
|
|
23564
|
+
/**
|
|
23565
|
+
* ItemApi - functional programming interface
|
|
23566
|
+
* @export
|
|
23224
23567
|
*/
|
|
23225
23568
|
export declare const ItemApiFp: (configuration?: Configuration) => {
|
|
23226
23569
|
/**
|
|
@@ -26765,6 +27108,13 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26765
27108
|
* @throws {RequiredError}
|
|
26766
27109
|
*/
|
|
26767
27110
|
userControllerAssignRole: (id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
27111
|
+
/**
|
|
27112
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27113
|
+
* @summary Count billable dashboard users
|
|
27114
|
+
* @param {*} [options] Override http request option.
|
|
27115
|
+
* @throws {RequiredError}
|
|
27116
|
+
*/
|
|
27117
|
+
userControllerCountBillableDashboardUsers: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
26768
27118
|
/**
|
|
26769
27119
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26770
27120
|
* @summary Create
|
|
@@ -26793,6 +27143,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
|
|
|
26793
27143
|
* @summary Invite
|
|
26794
27144
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26795
27145
|
* @param {*} [options] Override http request option.
|
|
27146
|
+
* @deprecated
|
|
26796
27147
|
* @throws {RequiredError}
|
|
26797
27148
|
*/
|
|
26798
27149
|
userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
@@ -26884,6 +27235,13 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26884
27235
|
* @throws {RequiredError}
|
|
26885
27236
|
*/
|
|
26886
27237
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
|
|
27238
|
+
/**
|
|
27239
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27240
|
+
* @summary Count billable dashboard users
|
|
27241
|
+
* @param {*} [options] Override http request option.
|
|
27242
|
+
* @throws {RequiredError}
|
|
27243
|
+
*/
|
|
27244
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserCountOutputDTOAPI>>;
|
|
26887
27245
|
/**
|
|
26888
27246
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
26889
27247
|
* @summary Create
|
|
@@ -26912,6 +27270,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
|
|
|
26912
27270
|
* @summary Invite
|
|
26913
27271
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
26914
27272
|
* @param {*} [options] Override http request option.
|
|
27273
|
+
* @deprecated
|
|
26915
27274
|
* @throws {RequiredError}
|
|
26916
27275
|
*/
|
|
26917
27276
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
|
|
@@ -27003,6 +27362,13 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
27003
27362
|
* @throws {RequiredError}
|
|
27004
27363
|
*/
|
|
27005
27364
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
|
|
27365
|
+
/**
|
|
27366
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27367
|
+
* @summary Count billable dashboard users
|
|
27368
|
+
* @param {*} [options] Override http request option.
|
|
27369
|
+
* @throws {RequiredError}
|
|
27370
|
+
*/
|
|
27371
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): AxiosPromise<UserCountOutputDTOAPI>;
|
|
27006
27372
|
/**
|
|
27007
27373
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
27008
27374
|
* @summary Create
|
|
@@ -27031,6 +27397,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
|
|
|
27031
27397
|
* @summary Invite
|
|
27032
27398
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27033
27399
|
* @param {*} [options] Override http request option.
|
|
27400
|
+
* @deprecated
|
|
27034
27401
|
* @throws {RequiredError}
|
|
27035
27402
|
*/
|
|
27036
27403
|
userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
|
|
@@ -27125,6 +27492,14 @@ export declare class UserApi extends BaseAPI {
|
|
|
27125
27492
|
* @memberof UserApi
|
|
27126
27493
|
*/
|
|
27127
27494
|
userControllerAssignRole(id: string, roleId: string, userRoleAssignChangeDTO?: UserRoleAssignChangeDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
|
|
27495
|
+
/**
|
|
27496
|
+
* Required permissions: `READ_USERS`<br> OperationId: `UserControllerCountBillableDashboardUsers`
|
|
27497
|
+
* @summary Count billable dashboard users
|
|
27498
|
+
* @param {*} [options] Override http request option.
|
|
27499
|
+
* @throws {RequiredError}
|
|
27500
|
+
* @memberof UserApi
|
|
27501
|
+
*/
|
|
27502
|
+
userControllerCountBillableDashboardUsers(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserCountOutputDTOAPI, any>>;
|
|
27128
27503
|
/**
|
|
27129
27504
|
* Required permissions: `MANAGE_USERS`<br> OperationId: `UserControllerCreate`
|
|
27130
27505
|
* @summary Create
|
|
@@ -27156,6 +27531,7 @@ export declare class UserApi extends BaseAPI {
|
|
|
27156
27531
|
* @summary Invite
|
|
27157
27532
|
* @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
|
|
27158
27533
|
* @param {*} [options] Override http request option.
|
|
27534
|
+
* @deprecated
|
|
27159
27535
|
* @throws {RequiredError}
|
|
27160
27536
|
* @memberof UserApi
|
|
27161
27537
|
*/
|
|
@@ -27437,195 +27813,4 @@ export declare class VariableApi extends BaseAPI {
|
|
|
27437
27813
|
*/
|
|
27438
27814
|
variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
|
|
27439
27815
|
}
|
|
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
27816
|
//# sourceMappingURL=api.d.ts.map
|