@goauthentik/api 2023.10.6-1706113408 → 2023.10.6-1706533149
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.
|
@@ -97,6 +97,7 @@ export interface ProvidersOauth2PartialUpdateRequest {
|
|
|
97
97
|
}
|
|
98
98
|
export interface ProvidersOauth2PreviewUserRetrieveRequest {
|
|
99
99
|
id: number;
|
|
100
|
+
forUser?: number;
|
|
100
101
|
}
|
|
101
102
|
export interface ProvidersOauth2RetrieveRequest {
|
|
102
103
|
id: number;
|
|
@@ -258,6 +259,7 @@ export interface ProvidersSamlPartialUpdateRequest {
|
|
|
258
259
|
}
|
|
259
260
|
export interface ProvidersSamlPreviewUserRetrieveRequest {
|
|
260
261
|
id: number;
|
|
262
|
+
forUser?: number;
|
|
261
263
|
}
|
|
262
264
|
export interface ProvidersSamlRetrieveRequest {
|
|
263
265
|
id: number;
|
|
@@ -649,6 +649,9 @@ class ProvidersApi extends runtime.BaseAPI {
|
|
|
649
649
|
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling providersOauth2PreviewUserRetrieve.');
|
|
650
650
|
}
|
|
651
651
|
const queryParameters = {};
|
|
652
|
+
if (requestParameters.forUser !== undefined) {
|
|
653
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
654
|
+
}
|
|
652
655
|
const headerParameters = {};
|
|
653
656
|
if (this.configuration && this.configuration.apiKey) {
|
|
654
657
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
|
|
@@ -1868,6 +1871,9 @@ class ProvidersApi extends runtime.BaseAPI {
|
|
|
1868
1871
|
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling providersSamlPreviewUserRetrieve.');
|
|
1869
1872
|
}
|
|
1870
1873
|
const queryParameters = {};
|
|
1874
|
+
if (requestParameters.forUser !== undefined) {
|
|
1875
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
1876
|
+
}
|
|
1871
1877
|
const headerParameters = {};
|
|
1872
1878
|
if (this.configuration && this.configuration.apiKey) {
|
|
1873
1879
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
|
|
@@ -97,6 +97,7 @@ export interface ProvidersOauth2PartialUpdateRequest {
|
|
|
97
97
|
}
|
|
98
98
|
export interface ProvidersOauth2PreviewUserRetrieveRequest {
|
|
99
99
|
id: number;
|
|
100
|
+
forUser?: number;
|
|
100
101
|
}
|
|
101
102
|
export interface ProvidersOauth2RetrieveRequest {
|
|
102
103
|
id: number;
|
|
@@ -258,6 +259,7 @@ export interface ProvidersSamlPartialUpdateRequest {
|
|
|
258
259
|
}
|
|
259
260
|
export interface ProvidersSamlPreviewUserRetrieveRequest {
|
|
260
261
|
id: number;
|
|
262
|
+
forUser?: number;
|
|
261
263
|
}
|
|
262
264
|
export interface ProvidersSamlRetrieveRequest {
|
|
263
265
|
id: number;
|
|
@@ -646,6 +646,9 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
646
646
|
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling providersOauth2PreviewUserRetrieve.');
|
|
647
647
|
}
|
|
648
648
|
const queryParameters = {};
|
|
649
|
+
if (requestParameters.forUser !== undefined) {
|
|
650
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
651
|
+
}
|
|
649
652
|
const headerParameters = {};
|
|
650
653
|
if (this.configuration && this.configuration.apiKey) {
|
|
651
654
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
|
|
@@ -1865,6 +1868,9 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
1865
1868
|
throw new runtime.RequiredError('id', 'Required parameter requestParameters.id was null or undefined when calling providersSamlPreviewUserRetrieve.');
|
|
1866
1869
|
}
|
|
1867
1870
|
const queryParameters = {};
|
|
1871
|
+
if (requestParameters.forUser !== undefined) {
|
|
1872
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
1873
|
+
}
|
|
1868
1874
|
const headerParameters = {};
|
|
1869
1875
|
if (this.configuration && this.configuration.apiKey) {
|
|
1870
1876
|
headerParameters["Authorization"] = this.configuration.apiKey("Authorization"); // authentik authentication
|
package/package.json
CHANGED
package/src/apis/ProvidersApi.ts
CHANGED
|
@@ -234,6 +234,7 @@ export interface ProvidersOauth2PartialUpdateRequest {
|
|
|
234
234
|
|
|
235
235
|
export interface ProvidersOauth2PreviewUserRetrieveRequest {
|
|
236
236
|
id: number;
|
|
237
|
+
forUser?: number;
|
|
237
238
|
}
|
|
238
239
|
|
|
239
240
|
export interface ProvidersOauth2RetrieveRequest {
|
|
@@ -427,6 +428,7 @@ export interface ProvidersSamlPartialUpdateRequest {
|
|
|
427
428
|
|
|
428
429
|
export interface ProvidersSamlPreviewUserRetrieveRequest {
|
|
429
430
|
id: number;
|
|
431
|
+
forUser?: number;
|
|
430
432
|
}
|
|
431
433
|
|
|
432
434
|
export interface ProvidersSamlRetrieveRequest {
|
|
@@ -1198,6 +1200,10 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
1198
1200
|
|
|
1199
1201
|
const queryParameters: any = {};
|
|
1200
1202
|
|
|
1203
|
+
if (requestParameters.forUser !== undefined) {
|
|
1204
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
1205
|
+
}
|
|
1206
|
+
|
|
1201
1207
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
1202
1208
|
|
|
1203
1209
|
if (this.configuration && this.configuration.apiKey) {
|
|
@@ -2590,6 +2596,10 @@ export class ProvidersApi extends runtime.BaseAPI {
|
|
|
2590
2596
|
|
|
2591
2597
|
const queryParameters: any = {};
|
|
2592
2598
|
|
|
2599
|
+
if (requestParameters.forUser !== undefined) {
|
|
2600
|
+
queryParameters['for_user'] = requestParameters.forUser;
|
|
2601
|
+
}
|
|
2602
|
+
|
|
2593
2603
|
const headerParameters: runtime.HTTPHeaders = {};
|
|
2594
2604
|
|
|
2595
2605
|
if (this.configuration && this.configuration.apiKey) {
|