Skip to content

Commit f477648

Browse files
Version 2025.10.0-rc3
1 parent 476600d commit f477648

File tree

1,604 files changed

+1956
-3260
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,604 files changed

+1956
-3260
lines changed

.openapi-generator/FILES

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -598,6 +598,7 @@ authentik_client/models/patched_web_authn_device_request.py
598598
authentik_client/models/permission.py
599599
authentik_client/models/permission_assign_request.py
600600
authentik_client/models/permission_assign_result.py
601+
authentik_client/models/pkce_method_enum.py
601602
authentik_client/models/plex_authentication_challenge.py
602603
authentik_client/models/plex_authentication_challenge_response_request.py
603604
authentik_client/models/plex_source.py
@@ -614,6 +615,7 @@ authentik_client/models/policy_test_result.py
614615
authentik_client/models/prompt.py
615616
authentik_client/models/prompt_challenge.py
616617
authentik_client/models/prompt_challenge_response_request.py
618+
authentik_client/models/prompt_choice.py
617619
authentik_client/models/prompt_request.py
618620
authentik_client/models/prompt_stage.py
619621
authentik_client/models/prompt_stage_request.py
@@ -1101,6 +1103,7 @@ docs/OutpostHealth.md
11011103
docs/OutpostRequest.md
11021104
docs/OutpostTypeEnum.md
11031105
docs/OutpostsApi.md
1106+
docs/PKCEMethodEnum.md
11041107
docs/PaginatedApplicationEntitlementList.md
11051108
docs/PaginatedApplicationList.md
11061109
docs/PaginatedAuthenticatedSessionList.md
@@ -1395,6 +1398,7 @@ docs/PolicyTestResult.md
13951398
docs/Prompt.md
13961399
docs/PromptChallenge.md
13971400
docs/PromptChallengeResponseRequest.md
1401+
docs/PromptChoice.md
13981402
docs/PromptRequest.md
13991403
docs/PromptStage.md
14001404
docs/PromptStageRequest.md
@@ -2175,6 +2179,7 @@ test/test_patched_web_authn_device_request.py
21752179
test/test_permission.py
21762180
test/test_permission_assign_request.py
21772181
test/test_permission_assign_result.py
2182+
test/test_pkce_method_enum.py
21782183
test/test_plex_authentication_challenge.py
21792184
test/test_plex_authentication_challenge_response_request.py
21802185
test/test_plex_source.py
@@ -2192,6 +2197,7 @@ test/test_policy_test_result.py
21922197
test/test_prompt.py
21932198
test/test_prompt_challenge.py
21942199
test/test_prompt_challenge_response_request.py
2200+
test/test_prompt_choice.py
21952201
test/test_prompt_request.py
21962202
test/test_prompt_stage.py
21972203
test/test_prompt_stage_request.py

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.15.0
1+
7.16.0

README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ This repo contains a generated API client to talk with authentik's API from Pyth
1515

1616
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
1717

18-
- API version: 2025.10.0-rc1
19-
- Package version: 2025.10.0-rc1-1760140185
20-
- Generator version: 7.15.0
18+
- API version: 2025.10.0-rc3
19+
- Package version: 2025.10.0-rc3
20+
- Generator version: 7.16.0
2121
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
2222

2323
## Requirements.
@@ -1433,6 +1433,7 @@ Class | Method | HTTP request | Description
14331433
- [OutpostHealth](docs/OutpostHealth.md)
14341434
- [OutpostRequest](docs/OutpostRequest.md)
14351435
- [OutpostTypeEnum](docs/OutpostTypeEnum.md)
1436+
- [PKCEMethodEnum](docs/PKCEMethodEnum.md)
14361437
- [PaginatedApplicationEntitlementList](docs/PaginatedApplicationEntitlementList.md)
14371438
- [PaginatedApplicationList](docs/PaginatedApplicationList.md)
14381439
- [PaginatedAuthenticatedSessionList](docs/PaginatedAuthenticatedSessionList.md)
@@ -1726,6 +1727,7 @@ Class | Method | HTTP request | Description
17261727
- [Prompt](docs/Prompt.md)
17271728
- [PromptChallenge](docs/PromptChallenge.md)
17281729
- [PromptChallengeResponseRequest](docs/PromptChallengeResponseRequest.md)
1730+
- [PromptChoice](docs/PromptChoice.md)
17291731
- [PromptRequest](docs/PromptRequest.md)
17301732
- [PromptStage](docs/PromptStage.md)
17311733
- [PromptStageRequest](docs/PromptStageRequest.md)

authentik_client/__init__.py

Lines changed: 7 additions & 822 deletions
Large diffs are not rendered by default.

authentik_client/api/__init__.py

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,6 @@
11
# flake8: noqa
22

3-
if __import__("typing").TYPE_CHECKING:
4-
# import apis into api package
5-
from authentik_client.api.admin_api import AdminApi
6-
from authentik_client.api.authenticators_api import AuthenticatorsApi
7-
from authentik_client.api.core_api import CoreApi
8-
from authentik_client.api.crypto_api import CryptoApi
9-
from authentik_client.api.enterprise_api import EnterpriseApi
10-
from authentik_client.api.events_api import EventsApi
11-
from authentik_client.api.flows_api import FlowsApi
12-
from authentik_client.api.managed_api import ManagedApi
13-
from authentik_client.api.oauth2_api import Oauth2Api
14-
from authentik_client.api.outposts_api import OutpostsApi
15-
from authentik_client.api.policies_api import PoliciesApi
16-
from authentik_client.api.propertymappings_api import PropertymappingsApi
17-
from authentik_client.api.providers_api import ProvidersApi
18-
from authentik_client.api.rac_api import RacApi
19-
from authentik_client.api.rbac_api import RbacApi
20-
from authentik_client.api.root_api import RootApi
21-
from authentik_client.api.schema_api import SchemaApi
22-
from authentik_client.api.sources_api import SourcesApi
23-
from authentik_client.api.ssf_api import SsfApi
24-
from authentik_client.api.stages_api import StagesApi
25-
from authentik_client.api.tasks_api import TasksApi
26-
from authentik_client.api.tenants_api import TenantsApi
27-
28-
else:
29-
from lazy_imports import LazyModule, as_package, load
30-
31-
load(
32-
LazyModule(
33-
*as_package(__file__),
34-
"""# import apis into api package
3+
# import apis into api package
354
from authentik_client.api.admin_api import AdminApi
365
from authentik_client.api.authenticators_api import AuthenticatorsApi
376
from authentik_client.api.core_api import CoreApi
@@ -55,8 +24,3 @@
5524
from authentik_client.api.tasks_api import TasksApi
5625
from authentik_client.api.tenants_api import TenantsApi
5726

58-
""",
59-
name=__name__,
60-
doc=__doc__,
61-
)
62-
)

authentik_client/api/admin_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Making authentication simple.
77
8-
The version of the OpenAPI document: 2025.10.0-rc1
8+
The version of the OpenAPI document: 2025.10.0-rc3
99
Contact: hello@goauthentik.io
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

authentik_client/api/authenticators_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Making authentication simple.
77

8-
The version of the OpenAPI document: 2025.10.0-rc1
8+
The version of the OpenAPI document: 2025.10.0-rc3
99
Contact: hello@goauthentik.io
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

authentik_client/api/core_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Making authentication simple.
77

8-
The version of the OpenAPI document: 2025.10.0-rc1
8+
The version of the OpenAPI document: 2025.10.0-rc3
99
Contact: hello@goauthentik.io
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

authentik_client/api/crypto_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Making authentication simple.
77
8-
The version of the OpenAPI document: 2025.10.0-rc1
8+
The version of the OpenAPI document: 2025.10.0-rc3
99
Contact: hello@goauthentik.io
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

authentik_client/api/enterprise_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Making authentication simple.
77
8-
The version of the OpenAPI document: 2025.10.0-rc1
8+
The version of the OpenAPI document: 2025.10.0-rc3
99
Contact: hello@goauthentik.io
1010
Generated by OpenAPI Generator (https://openapi-generator.tech)
1111

0 commit comments

Comments
 (0)