@goauthentik/api 2022.12.1-1672608421 → 2022.12.1-1672857969

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.
@@ -21,7 +21,7 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
21
21
  certificateGenerationRequest: CertificateGenerationRequest;
22
22
  }
23
23
  export interface CryptoCertificatekeypairsListRequest {
24
- hasKey?: string;
24
+ hasKey?: boolean;
25
25
  includeDetails?: boolean;
26
26
  managed?: string;
27
27
  name?: string;
@@ -21,7 +21,7 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
21
21
  certificateGenerationRequest: CertificateGenerationRequest;
22
22
  }
23
23
  export interface CryptoCertificatekeypairsListRequest {
24
- hasKey?: string;
24
+ hasKey?: boolean;
25
25
  includeDetails?: boolean;
26
26
  managed?: string;
27
27
  name?: string;
@@ -174,6 +174,18 @@ export interface SAMLProvider {
174
174
  * @memberof SAMLProvider
175
175
  */
176
176
  readonly urlSsoInit: string;
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof SAMLProvider
181
+ */
182
+ readonly urlSloPost: string;
183
+ /**
184
+ *
185
+ * @type {string}
186
+ * @memberof SAMLProvider
187
+ */
188
+ readonly urlSloRedirect: string;
177
189
  }
178
190
  export declare function SAMLProviderFromJSON(json: any): SAMLProvider;
179
191
  export declare function SAMLProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): SAMLProvider;
@@ -49,6 +49,8 @@ export function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
49
49
  'urlSsoPost': json['url_sso_post'],
50
50
  'urlSsoRedirect': json['url_sso_redirect'],
51
51
  'urlSsoInit': json['url_sso_init'],
52
+ 'urlSloPost': json['url_slo_post'],
53
+ 'urlSloRedirect': json['url_slo_redirect'],
52
54
  };
53
55
  }
54
56
  export function SAMLProviderToJSON(value) {
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- *
13
+ * Account adding/removing operations
14
14
  * @export
15
15
  * @interface UserAccountRequest
16
16
  */
@@ -174,6 +174,18 @@ export interface SAMLProvider {
174
174
  * @memberof SAMLProvider
175
175
  */
176
176
  readonly urlSsoInit: string;
177
+ /**
178
+ *
179
+ * @type {string}
180
+ * @memberof SAMLProvider
181
+ */
182
+ readonly urlSloPost: string;
183
+ /**
184
+ *
185
+ * @type {string}
186
+ * @memberof SAMLProvider
187
+ */
188
+ readonly urlSloRedirect: string;
177
189
  }
178
190
  export declare function SAMLProviderFromJSON(json: any): SAMLProvider;
179
191
  export declare function SAMLProviderFromJSONTyped(json: any, ignoreDiscriminator: boolean): SAMLProvider;
@@ -53,6 +53,8 @@ function SAMLProviderFromJSONTyped(json, ignoreDiscriminator) {
53
53
  'urlSsoPost': json['url_sso_post'],
54
54
  'urlSsoRedirect': json['url_sso_redirect'],
55
55
  'urlSsoInit': json['url_sso_init'],
56
+ 'urlSloPost': json['url_slo_post'],
57
+ 'urlSloRedirect': json['url_slo_redirect'],
56
58
  };
57
59
  }
58
60
  exports.SAMLProviderFromJSONTyped = SAMLProviderFromJSONTyped;
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  /**
13
- *
13
+ * Account adding/removing operations
14
14
  * @export
15
15
  * @interface UserAccountRequest
16
16
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@goauthentik/api",
3
- "version": "2022.12.1-1672608421",
3
+ "version": "2022.12.1-1672857969",
4
4
  "description": "OpenAPI client for @goauthentik/api",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -57,7 +57,7 @@ export interface CryptoCertificatekeypairsGenerateCreateRequest {
57
57
  }
58
58
 
59
59
  export interface CryptoCertificatekeypairsListRequest {
60
- hasKey?: string;
60
+ hasKey?: boolean;
61
61
  includeDetails?: boolean;
62
62
  managed?: string;
63
63
  name?: string;
@@ -194,6 +194,18 @@ export interface SAMLProvider {
194
194
  * @memberof SAMLProvider
195
195
  */
196
196
  readonly urlSsoInit: string;
197
+ /**
198
+ *
199
+ * @type {string}
200
+ * @memberof SAMLProvider
201
+ */
202
+ readonly urlSloPost: string;
203
+ /**
204
+ *
205
+ * @type {string}
206
+ * @memberof SAMLProvider
207
+ */
208
+ readonly urlSloRedirect: string;
197
209
  }
198
210
 
199
211
  export function SAMLProviderFromJSON(json: any): SAMLProvider {
@@ -232,6 +244,8 @@ export function SAMLProviderFromJSONTyped(json: any, ignoreDiscriminator: boolea
232
244
  'urlSsoPost': json['url_sso_post'],
233
245
  'urlSsoRedirect': json['url_sso_redirect'],
234
246
  'urlSsoInit': json['url_sso_init'],
247
+ 'urlSloPost': json['url_slo_post'],
248
+ 'urlSloRedirect': json['url_slo_redirect'],
235
249
  };
236
250
  }
237
251
 
@@ -14,7 +14,7 @@
14
14
 
15
15
  import { exists, mapValues } from '../runtime';
16
16
  /**
17
- *
17
+ * Account adding/removing operations
18
18
  * @export
19
19
  * @interface UserAccountRequest
20
20
  */