Skip to content

Commit c335eef

Browse files
Update API Client
### authentik (v 2026.5.0-rc1) --- #### Result --- No differences. Specifications are equivalent
1 parent 98c1f5b commit c335eef

22 files changed

Lines changed: 46 additions & 9 deletions

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This repo contains a generated API client to talk with authentik's API from Pyth
1616
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1717

1818
- API version: 2026.5.0-rc1
19-
- Package version: 2026.5.0-rc1-1771855828
19+
- Package version: 2026.5.0-rc1-1772621265
2020
- Generator version: 7.20.0
2121
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
2222

authentik_client/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2026.5.0-rc1-1771855828"
18+
__version__ = "2026.5.0-rc1-1772621265"
1919

2020
# Define package exports
2121
__all__ = [

authentik_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ def __init__(
9191
self.default_headers[header_name] = header_value
9292
self.cookie = cookie
9393
# Set default User-Agent.
94-
self.user_agent = 'OpenAPI-Generator/2026.5.0-rc1-1771855828/python'
94+
self.user_agent = 'OpenAPI-Generator/2026.5.0-rc1-1772621265/python'
9595
self.client_side_validation = configuration.client_side_validation
9696

9797
def __enter__(self):

authentik_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ def to_debug_report(self) -> str:
514514
"OS: {env}\n"\
515515
"Python Version: {pyversion}\n"\
516516
"Version of the API: 2026.5.0-rc1\n"\
517-
"SDK Package Version: 2026.5.0-rc1-1771855828".\
517+
"SDK Package Version: 2026.5.0-rc1-1772621265".\
518518
format(env=sys.platform, pyversion=sys.version)
519519

520520
def get_host_settings(self) -> List[HostSetting]:

authentik_client/models/current_brand_flags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ class CurrentBrandFlags(BaseModel):
2929
""" # noqa: E501
3030
enterprise_audit_include_expanded_diff: StrictBool
3131
policies_buffered_access_view: StrictBool
32+
flows_continuous_login: StrictBool
3233
flows_refresh_others: StrictBool
33-
__properties: ClassVar[List[str]] = ["enterprise_audit_include_expanded_diff", "policies_buffered_access_view", "flows_refresh_others"]
34+
__properties: ClassVar[List[str]] = ["enterprise_audit_include_expanded_diff", "policies_buffered_access_view", "flows_continuous_login", "flows_refresh_others"]
3435

3536
model_config = ConfigDict(
3637
populate_by_name=True,
@@ -85,6 +86,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8586
_obj = cls.model_validate({
8687
"enterprise_audit_include_expanded_diff": obj.get("enterprise_audit_include_expanded_diff"),
8788
"policies_buffered_access_view": obj.get("policies_buffered_access_view"),
89+
"flows_continuous_login": obj.get("flows_continuous_login"),
8890
"flows_refresh_others": obj.get("flows_refresh_others")
8991
})
9092
return _obj

authentik_client/models/identification_challenge.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ class IdentificationChallenge(BaseModel):
4040
password_fields: StrictBool
4141
allow_show_password: Optional[StrictBool] = False
4242
application_pre: Optional[StrictStr] = None
43+
application_pre_launch: Optional[StrictStr] = None
4344
flow_designation: FlowDesignationEnum
4445
captcha_stage: Optional[CaptchaChallenge] = None
4546
enroll_url: Optional[StrictStr] = None
@@ -50,7 +51,7 @@ class IdentificationChallenge(BaseModel):
5051
show_source_labels: StrictBool
5152
enable_remember_me: Optional[StrictBool] = True
5253
passkey_challenge: Optional[Dict[str, Any]] = None
53-
__properties: ClassVar[List[str]] = ["flow_info", "component", "response_errors", "user_fields", "pending_user_identifier", "password_fields", "allow_show_password", "application_pre", "flow_designation", "captcha_stage", "enroll_url", "recovery_url", "passwordless_url", "primary_action", "sources", "show_source_labels", "enable_remember_me", "passkey_challenge"]
54+
__properties: ClassVar[List[str]] = ["flow_info", "component", "response_errors", "user_fields", "pending_user_identifier", "password_fields", "allow_show_password", "application_pre", "application_pre_launch", "flow_designation", "captcha_stage", "enroll_url", "recovery_url", "passwordless_url", "primary_action", "sources", "show_source_labels", "enable_remember_me", "passkey_challenge"]
5455

5556
model_config = ConfigDict(
5657
populate_by_name=True,
@@ -160,6 +161,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
160161
"password_fields": obj.get("password_fields"),
161162
"allow_show_password": obj.get("allow_show_password") if obj.get("allow_show_password") is not None else False,
162163
"application_pre": obj.get("application_pre"),
164+
"application_pre_launch": obj.get("application_pre_launch"),
163165
"flow_designation": obj.get("flow_designation"),
164166
"captcha_stage": CaptchaChallenge.from_dict(obj["captcha_stage"]) if obj.get("captcha_stage") is not None else None,
165167
"enroll_url": obj.get("enroll_url"),

authentik_client/models/patched_settings_request_flags.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ class PatchedSettingsRequestFlags(BaseModel):
2929
""" # noqa: E501
3030
enterprise_audit_include_expanded_diff: StrictBool
3131
policies_buffered_access_view: StrictBool
32+
flows_continuous_login: StrictBool
3233
flows_refresh_others: StrictBool
33-
__properties: ClassVar[List[str]] = ["enterprise_audit_include_expanded_diff", "policies_buffered_access_view", "flows_refresh_others"]
34+
__properties: ClassVar[List[str]] = ["enterprise_audit_include_expanded_diff", "policies_buffered_access_view", "flows_continuous_login", "flows_refresh_others"]
3435

3536
model_config = ConfigDict(
3637
populate_by_name=True,
@@ -85,6 +86,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
8586
_obj = cls.model_validate({
8687
"enterprise_audit_include_expanded_diff": obj.get("enterprise_audit_include_expanded_diff"),
8788
"policies_buffered_access_view": obj.get("policies_buffered_access_view"),
89+
"flows_continuous_login": obj.get("flows_continuous_login"),
8890
"flows_refresh_others": obj.get("flows_refresh_others")
8991
})
9092
return _obj

docs/ChallengeTypes.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ Name | Type | Description | Notes
4949
**password_fields** | **bool** | |
5050
**allow_show_password** | **bool** | | [optional] [default to False]
5151
**application_pre** | **str** | | [optional]
52+
**application_pre_launch** | **str** | | [optional]
5253
**flow_designation** | [**FlowDesignationEnum**](FlowDesignationEnum.md) | |
5354
**captcha_stage** | [**CaptchaChallenge**](CaptchaChallenge.md) | | [optional]
5455
**enroll_url** | **str** | | [optional]

docs/CurrentBrandFlags.md

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

1213
## Example

docs/IdentificationChallenge.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Name | Type | Description | Notes
1414
**password_fields** | **bool** | |
1515
**allow_show_password** | **bool** | | [optional] [default to False]
1616
**application_pre** | **str** | | [optional]
17+
**application_pre_launch** | **str** | | [optional]
1718
**flow_designation** | [**FlowDesignationEnum**](FlowDesignationEnum.md) | |
1819
**captcha_stage** | [**CaptchaChallenge**](CaptchaChallenge.md) | | [optional]
1920
**enroll_url** | **str** | | [optional]

0 commit comments

Comments
 (0)