Skip to content

Commit 89d7bb2

Browse files
Update API Client
### authentik (v 2026.5.0-rc1) --- #### Result --- No differences. Specifications are equivalent
1 parent c3bd88c commit 89d7bb2

9 files changed

Lines changed: 30 additions & 2 deletions

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "authentik-client"
3-
version = "2026.5.0-rc1.1771856021"
3+
version = "2026.5.0-rc1.1772621792"
44
authors = ["hello@goauthentik.io"]
55
description = "Making authentication simple."
66
license = "MIT"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ This repo contains a generated API client to talk with authentik's API from Rust
1515
This API client was generated by the [OpenAPI Generator](https://openapi-generator.tech) project. By using the [OpenAPI-spec](https://www.openapis.org/) from a remote server, you can easily generate an API client.
1616

1717
- API version: 2026.5.0-rc1
18-
- Package version: 2026.5.0-rc1.1771856021
18+
- Package version: 2026.5.0-rc1.1772621792
1919

2020
## Installation
2121

docs/CurrentBrandFlags.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**enterprise_audit_include_expanded_diff** | **bool** | |
88
**policies_buffered_access_view** | **bool** | |
9+
**flows_continuous_login** | **bool** | |
910
**flows_refresh_others** | **bool** | |
1011

1112
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/IdentificationChallenge.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**password_fields** | **bool** | |
1313
**allow_show_password** | Option<**bool**> | | [optional][default to false]
1414
**application_pre** | Option<**String**> | | [optional]
15+
**application_pre_launch** | Option<**String**> | | [optional]
1516
**flow_designation** | [**models::FlowDesignationEnum**](FlowDesignationEnum.md) | |
1617
**captcha_stage** | Option<[**models::CaptchaChallenge**](CaptchaChallenge.md)> | | [optional]
1718
**enroll_url** | Option<**String**> | | [optional]

docs/PatchedSettingsRequestFlags.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**enterprise_audit_include_expanded_diff** | **bool** | |
88
**policies_buffered_access_view** | **bool** | |
9+
**flows_continuous_login** | **bool** | |
910
**flows_refresh_others** | **bool** | |
1011

1112
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

schema.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36805,10 +36805,13 @@ components:
3680536805
type: boolean
3680636806
policies_buffered_access_view:
3680736807
type: boolean
36808+
flows_continuous_login:
36809+
type: boolean
3680836810
flows_refresh_others:
3680936811
type: boolean
3681036812
required:
3681136813
- enterprise_audit_include_expanded_diff
36814+
- flows_continuous_login
3681236815
- flows_refresh_others
3681336816
- policies_buffered_access_view
3681436817
readOnly: true
@@ -40480,6 +40483,8 @@ components:
4048040483
default: false
4048140484
application_pre:
4048240485
type: string
40486+
application_pre_launch:
40487+
type: string
4048340488
flow_designation:
4048440489
$ref: '#/components/schemas/FlowDesignationEnum'
4048540490
captcha_stage:
@@ -50461,10 +50466,13 @@ components:
5046150466
type: boolean
5046250467
policies_buffered_access_view:
5046350468
type: boolean
50469+
flows_continuous_login:
50470+
type: boolean
5046450471
flows_refresh_others:
5046550472
type: boolean
5046650473
required:
5046750474
- enterprise_audit_include_expanded_diff
50475+
- flows_continuous_login
5046850476
- flows_refresh_others
5046950477
- policies_buffered_access_view
5047050478
PatchedSourceStageRequest:
@@ -55160,10 +55168,13 @@ components:
5516055168
type: boolean
5516155169
policies_buffered_access_view:
5516255170
type: boolean
55171+
flows_continuous_login:
55172+
type: boolean
5516355173
flows_refresh_others:
5516455174
type: boolean
5516555175
required:
5516655176
- enterprise_audit_include_expanded_diff
55177+
- flows_continuous_login
5516755178
- flows_refresh_others
5516855179
- policies_buffered_access_view
5516955180
required:
@@ -55238,10 +55249,13 @@ components:
5523855249
type: boolean
5523955250
policies_buffered_access_view:
5524055251
type: boolean
55252+
flows_continuous_login:
55253+
type: boolean
5524155254
flows_refresh_others:
5524255255
type: boolean
5524355256
required:
5524455257
- enterprise_audit_include_expanded_diff
55258+
- flows_continuous_login
5524555259
- flows_refresh_others
5524655260
- policies_buffered_access_view
5524755261
required:

src/models/current_brand_flags.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ pub struct CurrentBrandFlags {
1717
pub enterprise_audit_include_expanded_diff: bool,
1818
#[serde(rename = "policies_buffered_access_view")]
1919
pub policies_buffered_access_view: bool,
20+
#[serde(rename = "flows_continuous_login")]
21+
pub flows_continuous_login: bool,
2022
#[serde(rename = "flows_refresh_others")]
2123
pub flows_refresh_others: bool,
2224
}
@@ -25,11 +27,13 @@ impl CurrentBrandFlags {
2527
pub fn new(
2628
enterprise_audit_include_expanded_diff: bool,
2729
policies_buffered_access_view: bool,
30+
flows_continuous_login: bool,
2831
flows_refresh_others: bool,
2932
) -> CurrentBrandFlags {
3033
CurrentBrandFlags {
3134
enterprise_audit_include_expanded_diff,
3235
policies_buffered_access_view,
36+
flows_continuous_login,
3337
flows_refresh_others,
3438
}
3539
}

src/models/identification_challenge.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ pub struct IdentificationChallenge {
3535
pub allow_show_password: Option<bool>,
3636
#[serde(rename = "application_pre", skip_serializing_if = "Option::is_none")]
3737
pub application_pre: Option<String>,
38+
#[serde(rename = "application_pre_launch", skip_serializing_if = "Option::is_none")]
39+
pub application_pre_launch: Option<String>,
3840
#[serde(rename = "flow_designation")]
3941
pub flow_designation: models::FlowDesignationEnum,
4042
#[serde(
@@ -85,6 +87,7 @@ impl IdentificationChallenge {
8587
password_fields,
8688
allow_show_password: None,
8789
application_pre: None,
90+
application_pre_launch: None,
8891
flow_designation,
8992
captcha_stage: None,
9093
enroll_url: None,

src/models/patched_settings_request_flags.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ pub struct PatchedSettingsRequestFlags {
1717
pub enterprise_audit_include_expanded_diff: bool,
1818
#[serde(rename = "policies_buffered_access_view")]
1919
pub policies_buffered_access_view: bool,
20+
#[serde(rename = "flows_continuous_login")]
21+
pub flows_continuous_login: bool,
2022
#[serde(rename = "flows_refresh_others")]
2123
pub flows_refresh_others: bool,
2224
}
@@ -25,11 +27,13 @@ impl PatchedSettingsRequestFlags {
2527
pub fn new(
2628
enterprise_audit_include_expanded_diff: bool,
2729
policies_buffered_access_view: bool,
30+
flows_continuous_login: bool,
2831
flows_refresh_others: bool,
2932
) -> PatchedSettingsRequestFlags {
3033
PatchedSettingsRequestFlags {
3134
enterprise_audit_include_expanded_diff,
3235
policies_buffered_access_view,
36+
flows_continuous_login,
3337
flows_refresh_others,
3438
}
3539
}

0 commit comments

Comments
 (0)