@goauthentik/api 2025.8.0-rc1-1755012279 → 2025.8.0-rc1-1755026430
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/package.json
CHANGED
package/src/apis/CoreApi.ts
CHANGED
|
@@ -3461,7 +3461,7 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
3461
3461
|
}
|
|
3462
3462
|
|
|
3463
3463
|
/**
|
|
3464
|
-
* Create a temporary link that a user can use to recover their
|
|
3464
|
+
* Create a temporary link that a user can use to recover their account
|
|
3465
3465
|
*/
|
|
3466
3466
|
async coreUsersRecoveryCreateRaw(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Link>> {
|
|
3467
3467
|
if (requestParameters['id'] == null) {
|
|
@@ -3494,7 +3494,7 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
3494
3494
|
}
|
|
3495
3495
|
|
|
3496
3496
|
/**
|
|
3497
|
-
* Create a temporary link that a user can use to recover their
|
|
3497
|
+
* Create a temporary link that a user can use to recover their account
|
|
3498
3498
|
*/
|
|
3499
3499
|
async coreUsersRecoveryCreate(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Link> {
|
|
3500
3500
|
const response = await this.coreUsersRecoveryCreateRaw(requestParameters, initOverrides);
|
|
@@ -3502,7 +3502,7 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
3502
3502
|
}
|
|
3503
3503
|
|
|
3504
3504
|
/**
|
|
3505
|
-
*
|
|
3505
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
3506
3506
|
*/
|
|
3507
3507
|
async coreUsersRecoveryEmailCreateRaw(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>> {
|
|
3508
3508
|
if (requestParameters['emailStage'] == null) {
|
|
@@ -3546,7 +3546,7 @@ export class CoreApi extends runtime.BaseAPI {
|
|
|
3546
3546
|
}
|
|
3547
3547
|
|
|
3548
3548
|
/**
|
|
3549
|
-
*
|
|
3549
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
3550
3550
|
*/
|
|
3551
3551
|
async coreUsersRecoveryEmailCreate(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void> {
|
|
3552
3552
|
await this.coreUsersRecoveryEmailCreateRaw(requestParameters, initOverrides);
|