@takaro/apiclient 0.0.0-dev.e05670d → 0.0.0-dev.e07aa80

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.
@@ -2230,6 +2230,18 @@ export interface DomainCreateInputDTO {
2230
2230
  * @memberof DomainCreateInputDTO
2231
2231
  */
2232
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;
2233
2245
  }
2234
2246
  export declare const DomainCreateInputDTOStateEnum: {
2235
2247
  readonly Active: "ACTIVE";
@@ -3059,19 +3071,19 @@ export interface ErrorOutput {
3059
3071
  * @type {string}
3060
3072
  * @memberof ErrorOutput
3061
3073
  */
3062
- code: string;
3074
+ code?: string;
3063
3075
  /**
3064
3076
  *
3065
3077
  * @type {string}
3066
3078
  * @memberof ErrorOutput
3067
3079
  */
3068
- message: string;
3080
+ message?: string;
3069
3081
  /**
3070
3082
  *
3071
3083
  * @type {string}
3072
3084
  * @memberof ErrorOutput
3073
3085
  */
3074
- details: string;
3086
+ details?: string;
3075
3087
  }
3076
3088
  /**
3077
3089
  *
@@ -3084,7 +3096,7 @@ export interface EventChatMessage {
3084
3096
  * @type {IGamePlayer}
3085
3097
  * @memberof EventChatMessage
3086
3098
  */
3087
- player: IGamePlayer;
3099
+ player?: IGamePlayer;
3088
3100
  /**
3089
3101
  *
3090
3102
  * @type {string}
@@ -3212,6 +3224,7 @@ export declare const EventCreateDTOEventNameEnum: {
3212
3224
  readonly PlayerInventoryChanged: "player-inventory-changed";
3213
3225
  readonly EventRateLimited: "event-rate-limited";
3214
3226
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3227
+ readonly InviteLinkCreated: "invite-link-created";
3215
3228
  readonly PlayerConnected: "player-connected";
3216
3229
  readonly PlayerDisconnected: "player-disconnected";
3217
3230
  readonly ChatMessage: "chat-message";
@@ -3426,6 +3439,7 @@ export declare const EventExploreFiltersDTOEventNameEnum: {
3426
3439
  readonly PlayerInventoryChanged: "player-inventory-changed";
3427
3440
  readonly EventRateLimited: "event-rate-limited";
3428
3441
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3442
+ readonly InviteLinkCreated: "invite-link-created";
3429
3443
  readonly PlayerConnected: "player-connected";
3430
3444
  readonly PlayerDisconnected: "player-disconnected";
3431
3445
  readonly ChatMessage: "chat-message";
@@ -3792,6 +3806,7 @@ export declare const EventOutputDTOEventNameEnum: {
3792
3806
  readonly PlayerInventoryChanged: "player-inventory-changed";
3793
3807
  readonly EventRateLimited: "event-rate-limited";
3794
3808
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3809
+ readonly InviteLinkCreated: "invite-link-created";
3795
3810
  readonly PlayerConnected: "player-connected";
3796
3811
  readonly PlayerDisconnected: "player-disconnected";
3797
3812
  readonly ChatMessage: "chat-message";
@@ -3803,7 +3818,7 @@ export type EventOutputDTOEventNameEnum = (typeof EventOutputDTOEventNameEnum)[k
3803
3818
  * @type EventOutputDTOMeta
3804
3819
  * @export
3805
3820
  */
3806
- 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;
3807
3822
  /**
3808
3823
  *
3809
3824
  * @export
@@ -3980,6 +3995,7 @@ export declare const EventSearchInputAllowedFiltersEventNameEnum: {
3980
3995
  readonly PlayerInventoryChanged: "player-inventory-changed";
3981
3996
  readonly EventRateLimited: "event-rate-limited";
3982
3997
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
3998
+ readonly InviteLinkCreated: "invite-link-created";
3983
3999
  readonly PlayerConnected: "player-connected";
3984
4000
  readonly PlayerDisconnected: "player-disconnected";
3985
4001
  readonly ChatMessage: "chat-message";
@@ -5414,6 +5430,7 @@ export declare const HookCreateDTOEventTypeEnum: {
5414
5430
  readonly PlayerInventoryChanged: "player-inventory-changed";
5415
5431
  readonly EventRateLimited: "event-rate-limited";
5416
5432
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5433
+ readonly InviteLinkCreated: "invite-link-created";
5417
5434
  };
5418
5435
  export type HookCreateDTOEventTypeEnum = (typeof HookCreateDTOEventTypeEnum)[keyof typeof HookCreateDTOEventTypeEnum];
5419
5436
  /**
@@ -5574,6 +5591,7 @@ export declare const HookOutputDTOEventTypeEnum: {
5574
5591
  readonly PlayerInventoryChanged: "player-inventory-changed";
5575
5592
  readonly EventRateLimited: "event-rate-limited";
5576
5593
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5594
+ readonly InviteLinkCreated: "invite-link-created";
5577
5595
  };
5578
5596
  export type HookOutputDTOEventTypeEnum = (typeof HookOutputDTOEventTypeEnum)[keyof typeof HookOutputDTOEventTypeEnum];
5579
5597
  /**
@@ -5679,6 +5697,7 @@ export declare const HookSearchInputAllowedFiltersEventTypeEnum: {
5679
5697
  readonly PlayerInventoryChanged: "player-inventory-changed";
5680
5698
  readonly EventRateLimited: "event-rate-limited";
5681
5699
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5700
+ readonly InviteLinkCreated: "invite-link-created";
5682
5701
  };
5683
5702
  export type HookSearchInputAllowedFiltersEventTypeEnum = (typeof HookSearchInputAllowedFiltersEventTypeEnum)[keyof typeof HookSearchInputAllowedFiltersEventTypeEnum];
5684
5703
  /**
@@ -5849,6 +5868,7 @@ export declare const HookTriggerDTOEventTypeEnum: {
5849
5868
  readonly PlayerInventoryChanged: "player-inventory-changed";
5850
5869
  readonly EventRateLimited: "event-rate-limited";
5851
5870
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5871
+ readonly InviteLinkCreated: "invite-link-created";
5852
5872
  };
5853
5873
  export type HookTriggerDTOEventTypeEnum = (typeof HookTriggerDTOEventTypeEnum)[keyof typeof HookTriggerDTOEventTypeEnum];
5854
5874
  /**
@@ -5935,6 +5955,7 @@ export declare const HookUpdateDTOEventTypeEnum: {
5935
5955
  readonly PlayerInventoryChanged: "player-inventory-changed";
5936
5956
  readonly EventRateLimited: "event-rate-limited";
5937
5957
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
5958
+ readonly InviteLinkCreated: "invite-link-created";
5938
5959
  };
5939
5960
  export type HookUpdateDTOEventTypeEnum = (typeof HookUpdateDTOEventTypeEnum)[keyof typeof HookUpdateDTOEventTypeEnum];
5940
5961
  /**
@@ -6261,6 +6282,7 @@ export declare const IHookEventTypeEnum: {
6261
6282
  readonly PlayerInventoryChanged: "player-inventory-changed";
6262
6283
  readonly EventRateLimited: "event-rate-limited";
6263
6284
  readonly PlayerSyncSnapshot: "player-sync-snapshot";
6285
+ readonly InviteLinkCreated: "invite-link-created";
6264
6286
  };
6265
6287
  export type IHookEventTypeEnum = (typeof IHookEventTypeEnum)[keyof typeof IHookEventTypeEnum];
6266
6288
  /**
@@ -6684,25 +6706,6 @@ export interface InviteCreateDTO {
6684
6706
  */
6685
6707
  email: string;
6686
6708
  }
6687
- /**
6688
- *
6689
- * @export
6690
- * @interface InviteOutputDTO
6691
- */
6692
- export interface InviteOutputDTO {
6693
- /**
6694
- *
6695
- * @type {string}
6696
- * @memberof InviteOutputDTO
6697
- */
6698
- botInvite: string;
6699
- /**
6700
- *
6701
- * @type {string}
6702
- * @memberof InviteOutputDTO
6703
- */
6704
- devServer: string;
6705
- }
6706
6709
  /**
6707
6710
  *
6708
6711
  * @export
@@ -6842,27 +6845,28 @@ export interface InviteLinkCreateResultDTOAPI {
6842
6845
  /**
6843
6846
  *
6844
6847
  * @export
6845
- * @interface InviteLinkOutputDTO
6848
+ * @interface InviteLinkOutputArrayDTOAPI
6846
6849
  */
6847
- export interface InviteLinkOutputDTO {
6848
- /**
6849
- *
6850
- * @type {string}
6851
- * @memberof InviteLinkOutputDTO
6852
- */
6853
- id: string;
6850
+ export interface InviteLinkOutputArrayDTOAPI {
6854
6851
  /**
6855
6852
  *
6856
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6857
- * @memberof InviteLinkOutputDTO
6853
+ * @type {Array<InviteLinkOutputDTO>}
6854
+ * @memberof InviteLinkOutputArrayDTOAPI
6858
6855
  */
6859
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6856
+ data: Array<InviteLinkOutputDTO>;
6860
6857
  /**
6861
6858
  *
6862
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
6863
- * @memberof InviteLinkOutputDTO
6859
+ * @type {MetadataOutput}
6860
+ * @memberof InviteLinkOutputArrayDTOAPI
6864
6861
  */
6865
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
6862
+ meta: MetadataOutput;
6863
+ }
6864
+ /**
6865
+ *
6866
+ * @export
6867
+ * @interface InviteLinkOutputDTO
6868
+ */
6869
+ export interface InviteLinkOutputDTO {
6866
6870
  /**
6867
6871
  *
6868
6872
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
@@ -6911,6 +6915,24 @@ export interface InviteLinkOutputDTO {
6911
6915
  * @memberof InviteLinkOutputDTO
6912
6916
  */
6913
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;
6914
6936
  }
6915
6937
  export declare const InviteLinkOutputDTOStatusEnum: {
6916
6938
  readonly Active: "ACTIVE";
@@ -6938,25 +6960,6 @@ export interface InviteLinkOutputDTOAPI {
6938
6960
  */
6939
6961
  meta: MetadataOutput;
6940
6962
  }
6941
- /**
6942
- *
6943
- * @export
6944
- * @interface InviteLinkOutputArrayDTOAPI
6945
- */
6946
- export interface InviteLinkOutputArrayDTOAPI {
6947
- /**
6948
- *
6949
- * @type {Array<InviteLinkOutputDTO>}
6950
- * @memberof InviteLinkOutputArrayDTOAPI
6951
- */
6952
- data: Array<InviteLinkOutputDTO>;
6953
- /**
6954
- *
6955
- * @type {MetadataOutput}
6956
- * @memberof InviteLinkOutputArrayDTOAPI
6957
- */
6958
- meta: MetadataOutput;
6959
- }
6960
6963
  /**
6961
6964
  *
6962
6965
  * @export
@@ -7146,15 +7149,21 @@ export type InviteLinkSearchInputDTOSortDirectionEnum = (typeof InviteLinkSearch
7146
7149
  /**
7147
7150
  *
7148
7151
  * @export
7149
- * @interface RedeemInputDTO
7152
+ * @interface InviteOutputDTO
7150
7153
  */
7151
- export interface RedeemInputDTO {
7154
+ export interface InviteOutputDTO {
7152
7155
  /**
7153
7156
  *
7154
7157
  * @type {string}
7155
- * @memberof RedeemInputDTO
7158
+ * @memberof InviteOutputDTO
7156
7159
  */
7157
- token: string;
7160
+ botInvite: string;
7161
+ /**
7162
+ *
7163
+ * @type {string}
7164
+ * @memberof InviteOutputDTO
7165
+ */
7166
+ devServer: string;
7158
7167
  }
7159
7168
  /**
7160
7169
  *
@@ -8046,7 +8055,7 @@ export interface MetadataOutput {
8046
8055
  * @type {ErrorOutput}
8047
8056
  * @memberof MetadataOutput
8048
8057
  */
8049
- error: ErrorOutput;
8058
+ error?: ErrorOutput;
8050
8059
  /**
8051
8060
  *
8052
8061
  * @type {number}
@@ -12272,6 +12281,19 @@ export declare const RecentOrderDTOStatusEnum: {
12272
12281
  readonly Canceled: "CANCELED";
12273
12282
  };
12274
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
+ }
12275
12297
  /**
12276
12298
  *
12277
12299
  * @export
@@ -12283,7 +12305,7 @@ export interface RedirectQs {
12283
12305
  * @type {string}
12284
12306
  * @memberof RedirectQs
12285
12307
  */
12286
- redirect: string;
12308
+ redirect?: string;
12287
12309
  }
12288
12310
  /**
12289
12311
  *
@@ -15966,6 +15988,49 @@ export interface TakaroEventHookExecuted {
15966
15988
  */
15967
15989
  timestamp: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
15968
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
+ }
15969
16034
  /**
15970
16035
  *
15971
16036
  * @export
@@ -17313,6 +17378,37 @@ export interface UserCreateInputDTO {
17313
17378
  */
17314
17379
  isDashboardUser?: boolean;
17315
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
+ }
17316
17412
  /**
17317
17413
  *
17318
17414
  * @export
@@ -17416,7 +17512,7 @@ export interface UserOutputDTO {
17416
17512
  * @type {PlayerOutputWithRolesDTO}
17417
17513
  * @memberof UserOutputDTO
17418
17514
  */
17419
- player: PlayerOutputWithRolesDTO;
17515
+ player?: PlayerOutputWithRolesDTO;
17420
17516
  /**
17421
17517
  *
17422
17518
  * @type {boolean}
@@ -17434,25 +17530,25 @@ export interface UserOutputDTO {
17434
17530
  * @type {string}
17435
17531
  * @memberof UserOutputDTO
17436
17532
  */
17437
- id: string;
17533
+ inviteLinkId?: string;
17438
17534
  /**
17439
17535
  *
17440
- * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17536
+ * @type {string}
17441
17537
  * @memberof UserOutputDTO
17442
17538
  */
17443
- createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17539
+ id: string;
17444
17540
  /**
17445
17541
  *
17446
17542
  * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17447
17543
  * @memberof UserOutputDTO
17448
17544
  */
17449
- updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17545
+ createdAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17450
17546
  /**
17451
17547
  *
17452
- * @type {string}
17548
+ * @type {NOTDOMAINSCOPEDTakaroModelDTOCreatedAt}
17453
17549
  * @memberof UserOutputDTO
17454
17550
  */
17455
- inviteLinkId?: string;
17551
+ updatedAt: NOTDOMAINSCOPEDTakaroModelDTOCreatedAt;
17456
17552
  }
17457
17553
  /**
17458
17554
  *
@@ -17544,7 +17640,7 @@ export interface UserOutputWithRolesDTO {
17544
17640
  * @type {PlayerOutputWithRolesDTO}
17545
17641
  * @memberof UserOutputWithRolesDTO
17546
17642
  */
17547
- player: PlayerOutputWithRolesDTO;
17643
+ player?: PlayerOutputWithRolesDTO;
17548
17644
  /**
17549
17645
  *
17550
17646
  * @type {boolean}
@@ -21163,6 +21259,15 @@ export declare const DomainApiAxiosParamCreator: (configuration?: Configuration)
21163
21259
  * @throws {RequiredError}
21164
21260
  */
21165
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>;
21166
21271
  /**
21167
21272
  * <br> OperationId: `DomainControllerGetOne`
21168
21273
  * @summary Get one
@@ -21227,6 +21332,15 @@ export declare const DomainApiFp: (configuration?: Configuration) => {
21227
21332
  * @throws {RequiredError}
21228
21333
  */
21229
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>>;
21230
21344
  /**
21231
21345
  * <br> OperationId: `DomainControllerGetOne`
21232
21346
  * @summary Get one
@@ -21291,6 +21405,15 @@ export declare const DomainApiFactory: (configuration?: Configuration, basePath?
21291
21405
  * @throws {RequiredError}
21292
21406
  */
21293
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>;
21294
21417
  /**
21295
21418
  * <br> OperationId: `DomainControllerGetOne`
21296
21419
  * @summary Get one
@@ -21358,6 +21481,16 @@ export declare class DomainApi extends BaseAPI {
21358
21481
  * @memberof DomainApi
21359
21482
  */
21360
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>>;
21361
21494
  /**
21362
21495
  * <br> OperationId: `DomainControllerGetOne`
21363
21496
  * @summary Get one
@@ -21772,11 +21905,11 @@ export declare const ExternalAuthApiAxiosParamCreator: (configuration?: Configur
21772
21905
  /**
21773
21906
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21774
21907
  * @summary Auth discord
21775
- * @param {string} redirect
21908
+ * @param {string} [redirect]
21776
21909
  * @param {*} [options] Override http request option.
21777
21910
  * @throws {RequiredError}
21778
21911
  */
21779
- externalAuthControllerAuthDiscord: (redirect: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21912
+ externalAuthControllerAuthDiscord: (redirect?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
21780
21913
  /**
21781
21914
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21782
21915
  * @summary Auth discord return
@@ -21793,11 +21926,11 @@ export declare const ExternalAuthApiFp: (configuration?: Configuration) => {
21793
21926
  /**
21794
21927
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21795
21928
  * @summary Auth discord
21796
- * @param {string} redirect
21929
+ * @param {string} [redirect]
21797
21930
  * @param {*} [options] Override http request option.
21798
21931
  * @throws {RequiredError}
21799
21932
  */
21800
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21933
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
21801
21934
  /**
21802
21935
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21803
21936
  * @summary Auth discord return
@@ -21814,11 +21947,11 @@ export declare const ExternalAuthApiFactory: (configuration?: Configuration, bas
21814
21947
  /**
21815
21948
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21816
21949
  * @summary Auth discord
21817
- * @param {string} redirect
21950
+ * @param {string} [redirect]
21818
21951
  * @param {*} [options] Override http request option.
21819
21952
  * @throws {RequiredError}
21820
21953
  */
21821
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21954
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
21822
21955
  /**
21823
21956
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21824
21957
  * @summary Auth discord return
@@ -21837,12 +21970,12 @@ export declare class ExternalAuthApi extends BaseAPI {
21837
21970
  /**
21838
21971
  * <br> OperationId: `ExternalAuthControllerAuthDiscord`
21839
21972
  * @summary Auth discord
21840
- * @param {string} redirect
21973
+ * @param {string} [redirect]
21841
21974
  * @param {*} [options] Override http request option.
21842
21975
  * @throws {RequiredError}
21843
21976
  * @memberof ExternalAuthApi
21844
21977
  */
21845
- externalAuthControllerAuthDiscord(redirect: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21978
+ externalAuthControllerAuthDiscord(redirect?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
21846
21979
  /**
21847
21980
  * <br> OperationId: `ExternalAuthControllerAuthDiscordReturn`
21848
21981
  * @summary Auth discord return
@@ -23277,34 +23410,225 @@ export declare class HookApi extends BaseAPI {
23277
23410
  hookControllerUpdate(id: string, hookUpdateDTO?: HookUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<HookOutputDTOAPI, any>>;
23278
23411
  }
23279
23412
  /**
23280
- * ItemApi - axios parameter creator
23413
+ * InviteLinkApi - axios parameter creator
23281
23414
  * @export
23282
23415
  */
23283
- export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
23416
+ export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
23284
23417
  /**
23285
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23286
- * @summary Find one
23287
- * @param {string} id
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
23288
23421
  * @param {*} [options] Override http request option.
23289
23422
  * @throws {RequiredError}
23290
23423
  */
23291
- itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23424
+ inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23292
23425
  /**
23293
- * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23294
- * @summary Search
23295
- * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23426
+ * <br> OperationId: `InviteLinkControllerPreview`
23427
+ * @summary Preview
23428
+ * @param {string} token
23296
23429
  * @param {*} [options] Override http request option.
23297
23430
  * @throws {RequiredError}
23298
23431
  */
23299
- itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23300
- };
23301
- /**
23302
- * ItemApi - functional programming interface
23303
- * @export
23304
- */
23305
- export declare const ItemApiFp: (configuration?: Configuration) => {
23432
+ inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23306
23433
  /**
23307
- * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
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
+ }
23603
+ /**
23604
+ * ItemApi - axios parameter creator
23605
+ * @export
23606
+ */
23607
+ export declare const ItemApiAxiosParamCreator: (configuration?: Configuration) => {
23608
+ /**
23609
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23610
+ * @summary Find one
23611
+ * @param {string} id
23612
+ * @param {*} [options] Override http request option.
23613
+ * @throws {RequiredError}
23614
+ */
23615
+ itemControllerFindOne: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23616
+ /**
23617
+ * Search items Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerSearch`
23618
+ * @summary Search
23619
+ * @param {ItemSearchInputDTO} [itemSearchInputDTO] ItemSearchInputDTO
23620
+ * @param {*} [options] Override http request option.
23621
+ * @throws {RequiredError}
23622
+ */
23623
+ itemControllerSearch: (itemSearchInputDTO?: ItemSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
23624
+ };
23625
+ /**
23626
+ * ItemApi - functional programming interface
23627
+ * @export
23628
+ */
23629
+ export declare const ItemApiFp: (configuration?: Configuration) => {
23630
+ /**
23631
+ * Required permissions: `READ_ITEMS`<br> OperationId: `ItemControllerFindOne`
23308
23632
  * @summary Find one
23309
23633
  * @param {string} id
23310
23634
  * @param {*} [options] Override http request option.
@@ -23380,6 +23704,13 @@ export declare const MetaApiAxiosParamCreator: (configuration?: Configuration) =
23380
23704
  * @throws {RequiredError}
23381
23705
  */
23382
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>;
23383
23714
  /**
23384
23715
  * <br> OperationId: `MetaGetMetrics`
23385
23716
  * @summary Get metrics
@@ -23428,6 +23759,13 @@ export declare const MetaApiFp: (configuration?: Configuration) => {
23428
23759
  * @throws {RequiredError}
23429
23760
  */
23430
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>>;
23431
23769
  /**
23432
23770
  * <br> OperationId: `MetaGetMetrics`
23433
23771
  * @summary Get metrics
@@ -23476,6 +23814,13 @@ export declare const MetaApiFactory: (configuration?: Configuration, basePath?:
23476
23814
  * @throws {RequiredError}
23477
23815
  */
23478
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>;
23479
23824
  /**
23480
23825
  * <br> OperationId: `MetaGetMetrics`
23481
23826
  * @summary Get metrics
@@ -23527,6 +23872,14 @@ export declare class MetaApi extends BaseAPI {
23527
23872
  * @memberof MetaApi
23528
23873
  */
23529
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>>;
23530
23883
  /**
23531
23884
  * <br> OperationId: `MetaGetMetrics`
23532
23885
  * @summary Get metrics
@@ -26880,6 +27233,7 @@ export declare const UserApiAxiosParamCreator: (configuration?: Configuration) =
26880
27233
  * @summary Invite
26881
27234
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
26882
27235
  * @param {*} [options] Override http request option.
27236
+ * @deprecated
26883
27237
  * @throws {RequiredError}
26884
27238
  */
26885
27239
  userControllerInvite: (inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
@@ -27006,6 +27360,7 @@ export declare const UserApiFp: (configuration?: Configuration) => {
27006
27360
  * @summary Invite
27007
27361
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
27008
27362
  * @param {*} [options] Override http request option.
27363
+ * @deprecated
27009
27364
  * @throws {RequiredError}
27010
27365
  */
27011
27366
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputDTOAPI>>;
@@ -27132,6 +27487,7 @@ export declare const UserApiFactory: (configuration?: Configuration, basePath?:
27132
27487
  * @summary Invite
27133
27488
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
27134
27489
  * @param {*} [options] Override http request option.
27490
+ * @deprecated
27135
27491
  * @throws {RequiredError}
27136
27492
  */
27137
27493
  userControllerInvite(inviteCreateDTO?: InviteCreateDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputDTOAPI>;
@@ -27265,6 +27621,7 @@ export declare class UserApi extends BaseAPI {
27265
27621
  * @summary Invite
27266
27622
  * @param {InviteCreateDTO} [inviteCreateDTO] InviteCreateDTO
27267
27623
  * @param {*} [options] Override http request option.
27624
+ * @deprecated
27268
27625
  * @throws {RequiredError}
27269
27626
  * @memberof UserApi
27270
27627
  */
@@ -27546,195 +27903,4 @@ export declare class VariableApi extends BaseAPI {
27546
27903
  */
27547
27904
  variableControllerUpdate(id: string, variableUpdateDTO?: VariableUpdateDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<VariableOutputDTOAPI, any>>;
27548
27905
  }
27549
- /**
27550
- * InviteLinkApi - axios parameter creator
27551
- * @export
27552
- */
27553
- export declare const InviteLinkApiAxiosParamCreator: (configuration?: Configuration) => {
27554
- /**
27555
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27556
- * @summary Create invite link
27557
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27558
- * @param {*} [options] Override http request option.
27559
- * @throws {RequiredError}
27560
- */
27561
- inviteLinkControllerCreate: (inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27562
- /**
27563
- * <br> OperationId: `InviteLinkControllerPreview`
27564
- * @summary Preview
27565
- * @param {string} token
27566
- * @param {*} [options] Override http request option.
27567
- * @throws {RequiredError}
27568
- */
27569
- inviteLinkControllerPreview: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27570
- /**
27571
- * <br> OperationId: `InviteLinkControllerRedeem`
27572
- * @summary Redeem
27573
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27574
- * @param {*} [options] Override http request option.
27575
- * @throws {RequiredError}
27576
- */
27577
- inviteLinkControllerRedeem: (redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27578
- /**
27579
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27580
- * @summary Revoke
27581
- * @param {string} id
27582
- * @param {*} [options] Override http request option.
27583
- * @throws {RequiredError}
27584
- */
27585
- inviteLinkControllerRevoke: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27586
- /**
27587
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27588
- * @summary Search
27589
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27590
- * @param {*} [options] Override http request option.
27591
- * @throws {RequiredError}
27592
- */
27593
- inviteLinkControllerSearch: (inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
27594
- };
27595
- /**
27596
- * InviteLinkApi - functional programming interface
27597
- * @export
27598
- */
27599
- export declare const InviteLinkApiFp: (configuration?: Configuration) => {
27600
- /**
27601
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27602
- * @summary Create invite link
27603
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27604
- * @param {*} [options] Override http request option.
27605
- * @throws {RequiredError}
27606
- */
27607
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkCreateResultDTOAPI>>;
27608
- /**
27609
- * <br> OperationId: `InviteLinkControllerPreview`
27610
- * @summary Preview
27611
- * @param {string} token
27612
- * @param {*} [options] Override http request option.
27613
- * @throws {RequiredError}
27614
- */
27615
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkPreviewDTOAPI>>;
27616
- /**
27617
- * <br> OperationId: `InviteLinkControllerRedeem`
27618
- * @summary Redeem
27619
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27620
- * @param {*} [options] Override http request option.
27621
- * @throws {RequiredError}
27622
- */
27623
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserOutputWithRolesDTOAPI>>;
27624
- /**
27625
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27626
- * @summary Revoke
27627
- * @param {string} id
27628
- * @param {*} [options] Override http request option.
27629
- * @throws {RequiredError}
27630
- */
27631
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<APIOutput>>;
27632
- /**
27633
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27634
- * @summary Search
27635
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27636
- * @param {*} [options] Override http request option.
27637
- * @throws {RequiredError}
27638
- */
27639
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<InviteLinkOutputArrayDTOAPI>>;
27640
- };
27641
- /**
27642
- * InviteLinkApi - factory interface
27643
- * @export
27644
- */
27645
- export declare const InviteLinkApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
27646
- /**
27647
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27648
- * @summary Create invite link
27649
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27650
- * @param {*} [options] Override http request option.
27651
- * @throws {RequiredError}
27652
- */
27653
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkCreateResultDTOAPI>;
27654
- /**
27655
- * <br> OperationId: `InviteLinkControllerPreview`
27656
- * @summary Preview
27657
- * @param {string} token
27658
- * @param {*} [options] Override http request option.
27659
- * @throws {RequiredError}
27660
- */
27661
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkPreviewDTOAPI>;
27662
- /**
27663
- * <br> OperationId: `InviteLinkControllerRedeem`
27664
- * @summary Redeem
27665
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27666
- * @param {*} [options] Override http request option.
27667
- * @throws {RequiredError}
27668
- */
27669
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<UserOutputWithRolesDTOAPI>;
27670
- /**
27671
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27672
- * @summary Revoke
27673
- * @param {string} id
27674
- * @param {*} [options] Override http request option.
27675
- * @throws {RequiredError}
27676
- */
27677
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): AxiosPromise<APIOutput>;
27678
- /**
27679
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27680
- * @summary Search
27681
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27682
- * @param {*} [options] Override http request option.
27683
- * @throws {RequiredError}
27684
- */
27685
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): AxiosPromise<InviteLinkOutputArrayDTOAPI>;
27686
- };
27687
- /**
27688
- * InviteLinkApi - object-oriented interface
27689
- * @export
27690
- * @class InviteLinkApi
27691
- * @extends {BaseAPI}
27692
- */
27693
- export declare class InviteLinkApi extends BaseAPI {
27694
- /**
27695
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerCreate`
27696
- * @summary Create invite link
27697
- * @param {InviteLinkCreateInputDTO} [inviteLinkCreateInputDTO] InviteLinkCreateInputDTO
27698
- * @param {*} [options] Override http request option.
27699
- * @throws {RequiredError}
27700
- * @memberof InviteLinkApi
27701
- */
27702
- inviteLinkControllerCreate(inviteLinkCreateInputDTO?: InviteLinkCreateInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkCreateResultDTOAPI, any>>;
27703
- /**
27704
- * <br> OperationId: `InviteLinkControllerPreview`
27705
- * @summary Preview
27706
- * @param {string} token
27707
- * @param {*} [options] Override http request option.
27708
- * @throws {RequiredError}
27709
- * @memberof InviteLinkApi
27710
- */
27711
- inviteLinkControllerPreview(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkPreviewDTOAPI, any>>;
27712
- /**
27713
- * <br> OperationId: `InviteLinkControllerRedeem`
27714
- * @summary Redeem
27715
- * @param {RedeemInputDTO} [redeemInputDTO] RedeemInputDTO
27716
- * @param {*} [options] Override http request option.
27717
- * @throws {RequiredError}
27718
- * @memberof InviteLinkApi
27719
- */
27720
- inviteLinkControllerRedeem(redeemInputDTO?: RedeemInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UserOutputWithRolesDTOAPI, any>>;
27721
- /**
27722
- * Required permissions: `MANAGE_USERS`, `MANAGE_ROLES`<br> OperationId: `InviteLinkControllerRevoke`
27723
- * @summary Revoke
27724
- * @param {string} id
27725
- * @param {*} [options] Override http request option.
27726
- * @throws {RequiredError}
27727
- * @memberof InviteLinkApi
27728
- */
27729
- inviteLinkControllerRevoke(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<APIOutput, any>>;
27730
- /**
27731
- * Required permissions: `MANAGE_USERS`<br> OperationId: `InviteLinkControllerSearch`
27732
- * @summary Search
27733
- * @param {InviteLinkSearchInputDTO} [inviteLinkSearchInputDTO] InviteLinkSearchInputDTO
27734
- * @param {*} [options] Override http request option.
27735
- * @throws {RequiredError}
27736
- * @memberof InviteLinkApi
27737
- */
27738
- inviteLinkControllerSearch(inviteLinkSearchInputDTO?: InviteLinkSearchInputDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<InviteLinkOutputArrayDTOAPI, any>>;
27739
- }
27740
27906
  //# sourceMappingURL=api.d.ts.map