Skip to content

Commit 27783ba

Browse files
Update API Client
### authentik (v 2026.5.0-rc1) --- #### Result --- No differences. Specifications are equivalent
1 parent a928a1b commit 27783ba

9 files changed

Lines changed: 10 additions & 10 deletions

File tree

README.md

Lines changed: 2 additions & 2 deletions
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-1773682739
19+
- Package version: 2026.5.0-rc1-1773774637
2020
- Generator version: 7.20.0
2121
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
2222

@@ -1210,7 +1210,7 @@ Class | Method | HTTP request | Description
12101210
*TasksApi* | [**tasks_tasks_retrieve**](docs/TasksApi.md#tasks_tasks_retrieve) | **GET** /tasks/tasks/{message_id}/ |
12111211
*TasksApi* | [**tasks_tasks_retry_create**](docs/TasksApi.md#tasks_tasks_retry_create) | **POST** /tasks/tasks/{message_id}/retry/ |
12121212
*TasksApi* | [**tasks_tasks_status_retrieve**](docs/TasksApi.md#tasks_tasks_status_retrieve) | **GET** /tasks/tasks/status/ |
1213-
*TasksApi* | [**tasks_workers_list**](docs/TasksApi.md#tasks_workers_list) | **GET** /tasks/workers |
1213+
*TasksApi* | [**tasks_workers_list**](docs/TasksApi.md#tasks_workers_list) | **GET** /tasks/workers/ |
12141214
*TenantsApi* | [**tenants_domains_create**](docs/TenantsApi.md#tenants_domains_create) | **POST** /tenants/domains/ |
12151215
*TenantsApi* | [**tenants_domains_destroy**](docs/TenantsApi.md#tenants_domains_destroy) | **DELETE** /tenants/domains/{id}/ |
12161216
*TenantsApi* | [**tenants_domains_list**](docs/TenantsApi.md#tenants_domains_list) | **GET** /tenants/domains/ |

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-1773682739"
18+
__version__ = "2026.5.0-rc1-1773774637"
1919

2020
# Define package exports
2121
__all__ = [

authentik_client/api/tasks_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3063,7 +3063,7 @@ def _tasks_workers_list_serialize(
30633063

30643064
return self.api_client.param_serialize(
30653065
method='GET',
3066-
resource_path='/tasks/workers',
3066+
resource_path='/tasks/workers/',
30673067
path_params=_path_params,
30683068
query_params=_query_params,
30693069
header_params=_header_params,

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-1773682739/python'
94+
self.user_agent = 'OpenAPI-Generator/2026.5.0-rc1-1773774637/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-1773682739".\
517+
"SDK Package Version: 2026.5.0-rc1-1773774637".\
518518
format(env=sys.platform, pyversion=sys.version)
519519

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

docs/TasksApi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Method | HTTP request | Description
1313
[**tasks_tasks_retrieve**](TasksApi.md#tasks_tasks_retrieve) | **GET** /tasks/tasks/{message_id}/ |
1414
[**tasks_tasks_retry_create**](TasksApi.md#tasks_tasks_retry_create) | **POST** /tasks/tasks/{message_id}/retry/ |
1515
[**tasks_tasks_status_retrieve**](TasksApi.md#tasks_tasks_status_retrieve) | **GET** /tasks/tasks/status/ |
16-
[**tasks_workers_list**](TasksApi.md#tasks_workers_list) | **GET** /tasks/workers |
16+
[**tasks_workers_list**](TasksApi.md#tasks_workers_list) | **GET** /tasks/workers/ |
1717

1818

1919
# **tasks_schedules_list**

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "authentik_client"
3-
version = "2026.5.0-rc1-1773682739"
3+
version = "2026.5.0-rc1-1773774637"
44
description = "authentik"
55
authors = [
66
{name = "authentik Team",email = "hello@goauthentik.io"},

schema.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33496,7 +33496,7 @@ paths:
3349633496
$ref: '#/components/responses/ValidationErrorResponse'
3349733497
'403':
3349833498
$ref: '#/components/responses/GenericErrorResponse'
33499-
/tasks/workers:
33499+
/tasks/workers/:
3350033500
get:
3350133501
operationId: tasks_workers_list
3350233502
description: Get currently connected worker count.

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# prerequisite: setuptools
2121
# http://pypi.python.org/pypi/setuptools
2222
NAME = "authentik-client"
23-
VERSION = "2026.5.0-rc1-1773682739"
23+
VERSION = "2026.5.0-rc1-1773774637"
2424
PYTHON_REQUIRES = ">= 3.9"
2525
REQUIRES = [
2626
"urllib3 >= 2.1.0, < 3.0.0",

0 commit comments

Comments
 (0)