@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/dist/apis/CoreApi.d.ts
CHANGED
|
@@ -801,19 +801,19 @@ export declare class CoreApi extends runtime.BaseAPI {
|
|
|
801
801
|
*/
|
|
802
802
|
coreUsersPathsRetrieve(requestParameters?: CoreUsersPathsRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserPath>;
|
|
803
803
|
/**
|
|
804
|
-
* Create a temporary link that a user can use to recover their
|
|
804
|
+
* Create a temporary link that a user can use to recover their account
|
|
805
805
|
*/
|
|
806
806
|
coreUsersRecoveryCreateRaw(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Link>>;
|
|
807
807
|
/**
|
|
808
|
-
* Create a temporary link that a user can use to recover their
|
|
808
|
+
* Create a temporary link that a user can use to recover their account
|
|
809
809
|
*/
|
|
810
810
|
coreUsersRecoveryCreate(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Link>;
|
|
811
811
|
/**
|
|
812
|
-
*
|
|
812
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
813
813
|
*/
|
|
814
814
|
coreUsersRecoveryEmailCreateRaw(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
815
815
|
/**
|
|
816
|
-
*
|
|
816
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
817
817
|
*/
|
|
818
818
|
coreUsersRecoveryEmailCreate(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
819
819
|
/**
|
package/dist/apis/CoreApi.js
CHANGED
|
@@ -2264,7 +2264,7 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2264
2264
|
return await response.value();
|
|
2265
2265
|
}
|
|
2266
2266
|
/**
|
|
2267
|
-
* Create a temporary link that a user can use to recover their
|
|
2267
|
+
* Create a temporary link that a user can use to recover their account
|
|
2268
2268
|
*/
|
|
2269
2269
|
async coreUsersRecoveryCreateRaw(requestParameters, initOverrides) {
|
|
2270
2270
|
if (requestParameters['id'] == null) {
|
|
@@ -2288,14 +2288,14 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2288
2288
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.LinkFromJSON)(jsonValue));
|
|
2289
2289
|
}
|
|
2290
2290
|
/**
|
|
2291
|
-
* Create a temporary link that a user can use to recover their
|
|
2291
|
+
* Create a temporary link that a user can use to recover their account
|
|
2292
2292
|
*/
|
|
2293
2293
|
async coreUsersRecoveryCreate(requestParameters, initOverrides) {
|
|
2294
2294
|
const response = await this.coreUsersRecoveryCreateRaw(requestParameters, initOverrides);
|
|
2295
2295
|
return await response.value();
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
|
-
*
|
|
2298
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
2299
2299
|
*/
|
|
2300
2300
|
async coreUsersRecoveryEmailCreateRaw(requestParameters, initOverrides) {
|
|
2301
2301
|
if (requestParameters['emailStage'] == null) {
|
|
@@ -2325,7 +2325,7 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2325
2325
|
return new runtime.VoidApiResponse(response);
|
|
2326
2326
|
}
|
|
2327
2327
|
/**
|
|
2328
|
-
*
|
|
2328
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
2329
2329
|
*/
|
|
2330
2330
|
async coreUsersRecoveryEmailCreate(requestParameters, initOverrides) {
|
|
2331
2331
|
await this.coreUsersRecoveryEmailCreateRaw(requestParameters, initOverrides);
|
|
@@ -801,19 +801,19 @@ export declare class CoreApi extends runtime.BaseAPI {
|
|
|
801
801
|
*/
|
|
802
802
|
coreUsersPathsRetrieve(requestParameters?: CoreUsersPathsRetrieveRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<UserPath>;
|
|
803
803
|
/**
|
|
804
|
-
* Create a temporary link that a user can use to recover their
|
|
804
|
+
* Create a temporary link that a user can use to recover their account
|
|
805
805
|
*/
|
|
806
806
|
coreUsersRecoveryCreateRaw(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<Link>>;
|
|
807
807
|
/**
|
|
808
|
-
* Create a temporary link that a user can use to recover their
|
|
808
|
+
* Create a temporary link that a user can use to recover their account
|
|
809
809
|
*/
|
|
810
810
|
coreUsersRecoveryCreate(requestParameters: CoreUsersRecoveryCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<Link>;
|
|
811
811
|
/**
|
|
812
|
-
*
|
|
812
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
813
813
|
*/
|
|
814
814
|
coreUsersRecoveryEmailCreateRaw(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<void>>;
|
|
815
815
|
/**
|
|
816
|
-
*
|
|
816
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
817
817
|
*/
|
|
818
818
|
coreUsersRecoveryEmailCreate(requestParameters: CoreUsersRecoveryEmailCreateRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<void>;
|
|
819
819
|
/**
|
package/dist/esm/apis/CoreApi.js
CHANGED
|
@@ -2264,7 +2264,7 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2264
2264
|
return await response.value();
|
|
2265
2265
|
}
|
|
2266
2266
|
/**
|
|
2267
|
-
* Create a temporary link that a user can use to recover their
|
|
2267
|
+
* Create a temporary link that a user can use to recover their account
|
|
2268
2268
|
*/
|
|
2269
2269
|
async coreUsersRecoveryCreateRaw(requestParameters, initOverrides) {
|
|
2270
2270
|
if (requestParameters['id'] == null) {
|
|
@@ -2288,14 +2288,14 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2288
2288
|
return new runtime.JSONApiResponse(response, (jsonValue) => (0, index_1.LinkFromJSON)(jsonValue));
|
|
2289
2289
|
}
|
|
2290
2290
|
/**
|
|
2291
|
-
* Create a temporary link that a user can use to recover their
|
|
2291
|
+
* Create a temporary link that a user can use to recover their account
|
|
2292
2292
|
*/
|
|
2293
2293
|
async coreUsersRecoveryCreate(requestParameters, initOverrides) {
|
|
2294
2294
|
const response = await this.coreUsersRecoveryCreateRaw(requestParameters, initOverrides);
|
|
2295
2295
|
return await response.value();
|
|
2296
2296
|
}
|
|
2297
2297
|
/**
|
|
2298
|
-
*
|
|
2298
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
2299
2299
|
*/
|
|
2300
2300
|
async coreUsersRecoveryEmailCreateRaw(requestParameters, initOverrides) {
|
|
2301
2301
|
if (requestParameters['emailStage'] == null) {
|
|
@@ -2325,7 +2325,7 @@ class CoreApi extends runtime.BaseAPI {
|
|
|
2325
2325
|
return new runtime.VoidApiResponse(response);
|
|
2326
2326
|
}
|
|
2327
2327
|
/**
|
|
2328
|
-
*
|
|
2328
|
+
* Send an email with a temporary link that a user can use to recover their account
|
|
2329
2329
|
*/
|
|
2330
2330
|
async coreUsersRecoveryEmailCreate(requestParameters, initOverrides) {
|
|
2331
2331
|
await this.coreUsersRecoveryEmailCreateRaw(requestParameters, initOverrides);
|