Skip to content

Commit be0e326

Browse files
Update API Client
### authentik (v 2026.5.0-rc1) --- #### Result --- No differences. Specifications are equivalent
1 parent 62ae247 commit be0e326

46 files changed

Lines changed: 130 additions & 159 deletions

Some content is hidden

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

.openapi-generator/FILES

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,6 @@ authentik_client/models/denied_action_enum.py
144144
authentik_client/models/deny_stage.py
145145
authentik_client/models/deny_stage_request.py
146146
authentik_client/models/detailed_country.py
147-
authentik_client/models/detailed_country_field.py
148147
authentik_client/models/device.py
149148
authentik_client/models/device_access_group.py
150149
authentik_client/models/device_access_group_request.py
@@ -235,6 +234,7 @@ authentik_client/models/frame_challenge.py
235234
authentik_client/models/frame_challenge_response_request.py
236235
authentik_client/models/generic_error.py
237236
authentik_client/models/geo_ip_policy.py
237+
authentik_client/models/geo_ip_policy_countries_obj_inner.py
238238
authentik_client/models/geo_ip_policy_request.py
239239
authentik_client/models/geoip_binding_enum.py
240240
authentik_client/models/global_task_status.py
@@ -1009,7 +1009,6 @@ docs/DeniedActionEnum.md
10091009
docs/DenyStage.md
10101010
docs/DenyStageRequest.md
10111011
docs/DetailedCountry.md
1012-
docs/DetailedCountryField.md
10131012
docs/Device.md
10141013
docs/DeviceAccessGroup.md
10151014
docs/DeviceAccessGroupRequest.md
@@ -1104,6 +1103,7 @@ docs/FrameChallenge.md
11041103
docs/FrameChallengeResponseRequest.md
11051104
docs/GenericError.md
11061105
docs/GeoIPPolicy.md
1106+
docs/GeoIPPolicyCountriesObjInner.md
11071107
docs/GeoIPPolicyRequest.md
11081108
docs/GeoipBindingEnum.md
11091109
docs/GlobalTaskStatus.md
@@ -1900,7 +1900,6 @@ test/test_denied_action_enum.py
19001900
test/test_deny_stage.py
19011901
test/test_deny_stage_request.py
19021902
test/test_detailed_country.py
1903-
test/test_detailed_country_field.py
19041903
test/test_device.py
19051904
test/test_device_access_group.py
19061905
test/test_device_access_group_request.py
@@ -1995,6 +1994,7 @@ test/test_frame_challenge.py
19951994
test/test_frame_challenge_response_request.py
19961995
test/test_generic_error.py
19971996
test/test_geo_ip_policy.py
1997+
test/test_geo_ip_policy_countries_obj_inner.py
19981998
test/test_geo_ip_policy_request.py
19991999
test/test_geoip_binding_enum.py
20002000
test/test_global_task_status.py

.openapi-generator/VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7.19.0
1+
7.20.0

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ 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-1770991623
20-
- Generator version: 7.19.0
19+
- Package version: 2026.5.0-rc1-1771349837
20+
- Generator version: 7.20.0
2121
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
2222

2323
## Requirements.
@@ -1331,7 +1331,6 @@ Class | Method | HTTP request | Description
13311331
- [DenyStage](docs/DenyStage.md)
13321332
- [DenyStageRequest](docs/DenyStageRequest.md)
13331333
- [DetailedCountry](docs/DetailedCountry.md)
1334-
- [DetailedCountryField](docs/DetailedCountryField.md)
13351334
- [Device](docs/Device.md)
13361335
- [DeviceAccessGroup](docs/DeviceAccessGroup.md)
13371336
- [DeviceAccessGroupRequest](docs/DeviceAccessGroupRequest.md)
@@ -1422,6 +1421,7 @@ Class | Method | HTTP request | Description
14221421
- [FrameChallengeResponseRequest](docs/FrameChallengeResponseRequest.md)
14231422
- [GenericError](docs/GenericError.md)
14241423
- [GeoIPPolicy](docs/GeoIPPolicy.md)
1424+
- [GeoIPPolicyCountriesObjInner](docs/GeoIPPolicyCountriesObjInner.md)
14251425
- [GeoIPPolicyRequest](docs/GeoIPPolicyRequest.md)
14261426
- [GeoipBindingEnum](docs/GeoipBindingEnum.md)
14271427
- [GlobalTaskStatus](docs/GlobalTaskStatus.md)

authentik_client/__init__.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
""" # noqa: E501
1616

1717

18-
__version__ = "2026.5.0-rc1-1770991623"
18+
__version__ = "2026.5.0-rc1-1771349837"
1919

2020
# Define package exports
2121
__all__ = [
@@ -162,7 +162,6 @@
162162
"DenyStage",
163163
"DenyStageRequest",
164164
"DetailedCountry",
165-
"DetailedCountryField",
166165
"Device",
167166
"DeviceAccessGroup",
168167
"DeviceAccessGroupRequest",
@@ -253,6 +252,7 @@
253252
"FrameChallengeResponseRequest",
254253
"GenericError",
255254
"GeoIPPolicy",
255+
"GeoIPPolicyCountriesObjInner",
256256
"GeoIPPolicyRequest",
257257
"GeoipBindingEnum",
258258
"GlobalTaskStatus",
@@ -1062,7 +1062,6 @@
10621062
from authentik_client.models.deny_stage import DenyStage as DenyStage
10631063
from authentik_client.models.deny_stage_request import DenyStageRequest as DenyStageRequest
10641064
from authentik_client.models.detailed_country import DetailedCountry as DetailedCountry
1065-
from authentik_client.models.detailed_country_field import DetailedCountryField as DetailedCountryField
10661065
from authentik_client.models.device import Device as Device
10671066
from authentik_client.models.device_access_group import DeviceAccessGroup as DeviceAccessGroup
10681067
from authentik_client.models.device_access_group_request import DeviceAccessGroupRequest as DeviceAccessGroupRequest
@@ -1153,6 +1152,7 @@
11531152
from authentik_client.models.frame_challenge_response_request import FrameChallengeResponseRequest as FrameChallengeResponseRequest
11541153
from authentik_client.models.generic_error import GenericError as GenericError
11551154
from authentik_client.models.geo_ip_policy import GeoIPPolicy as GeoIPPolicy
1155+
from authentik_client.models.geo_ip_policy_countries_obj_inner import GeoIPPolicyCountriesObjInner as GeoIPPolicyCountriesObjInner
11561156
from authentik_client.models.geo_ip_policy_request import GeoIPPolicyRequest as GeoIPPolicyRequest
11571157
from authentik_client.models.geoip_binding_enum import GeoipBindingEnum as GeoipBindingEnum
11581158
from authentik_client.models.global_task_status import GlobalTaskStatus as GlobalTaskStatus

authentik_client/api/admin_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53
@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

authentik_client/api/authenticators_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53

@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

authentik_client/api/core_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53

@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

authentik_client/api/crypto_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53
@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

authentik_client/api/endpoints_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53

@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

authentik_client/api/enterprise_api.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# coding: utf-8
2-
31
"""
42
authentik
53
@@ -12,6 +10,7 @@
1210
Do not edit the class manually.
1311
""" # noqa: E501
1412

13+
1514
import warnings
1615
from pydantic import validate_call, Field, StrictFloat, StrictStr, StrictInt
1716
from typing import Any, Dict, List, Optional, Tuple, Union

0 commit comments

Comments
 (0)