Skip to content

Commit db62dad

Browse files
-e Update API Client
#### What's Changed --- ##### `GET` /providers/scim/{id}/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ##### `PUT` /providers/scim/{id}/ ###### Request: Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ##### `PATCH` /providers/scim/{id}/ ###### Request: Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ##### `POST` /providers/scim/ ###### Request: Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ###### Return Type: Changed response : **201 Created** * Changed content type : `application/json` * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ##### `GET` /providers/scim/ ###### Return Type: Changed response : **200 OK** * Changed content type : `application/json` * Changed property `results` (array) Changed items (object): > SCIMProvider Serializer * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc` ##### `PUT` /core/transactional/applications/ ###### Request: Changed content type : `application/json` * Changed property `provider` (object) Updated `authentik_providers_scim.scimprovider` provider_model: * Changed property `compatibility_mode` (string) > Alter authentik behavior for vendor-specific SCIM implementations. Added enum value: * `sfdc`
1 parent 18043fc commit db62dad

File tree

9 files changed

+10
-6
lines changed

9 files changed

+10
-6
lines changed

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: 2025.10.0-rc1
19-
- Package version: 2025.10.0-rc1-1758665240
19+
- Package version: 2025.10.0-rc1-1758805275
2020
- Generator version: 7.15.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__ = "2025.10.0-rc1-1758665240"
18+
__version__ = "2025.10.0-rc1-1758805275"
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
@@ -92,7 +92,7 @@ def __init__(
9292
self.default_headers[header_name] = header_value
9393
self.cookie = cookie
9494
# Set default User-Agent.
95-
self.user_agent = 'OpenAPI-Generator/2025.10.0-rc1-1758665240/python'
95+
self.user_agent = 'OpenAPI-Generator/2025.10.0-rc1-1758805275/python'
9696
self.client_side_validation = configuration.client_side_validation
9797

9898
def __enter__(self):

authentik_client/configuration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -511,7 +511,7 @@ def to_debug_report(self) -> str:
511511
"OS: {env}\n"\
512512
"Python Version: {pyversion}\n"\
513513
"Version of the API: 2025.10.0-rc1\n"\
514-
"SDK Package Version: 2025.10.0-rc1-1758665240".\
514+
"SDK Package Version: 2025.10.0-rc1-1758805275".\
515515
format(env=sys.platform, pyversion=sys.version)
516516

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

authentik_client/models/compatibility_mode_enum.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ class CompatibilityModeEnum(str, Enum):
3030
DEFAULT = 'default'
3131
AWS = 'aws'
3232
SLACK = 'slack'
33+
SFDC = 'sfdc'
3334

3435
@classmethod
3536
def from_json(cls, json_str: str) -> Self:

docs/CompatibilityModeEnum.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@
99

1010
* `SLACK` (value: `'slack'`)
1111

12+
* `SFDC` (value: `'sfdc'`)
13+
1214
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1315

1416

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 = "2025.10.0-rc1-1758665240"
3+
version = "2025.10.0-rc1-1758805275"
44
description = "authentik"
55
authors = [
66
{name = "authentik Team",email = "[email protected]"},

schema.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40684,6 +40684,7 @@ components:
4068440684
- default
4068540685
- aws
4068640686
- slack
40687+
- sfdc
4068740688
type: string
4068840689
Config:
4068940690
type: object

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
# prerequisite: setuptools
2323
# http://pypi.python.org/pypi/setuptools
2424
NAME = "authentik-client"
25-
VERSION = "2025.10.0-rc1-1758665240"
25+
VERSION = "2025.10.0-rc1-1758805275"
2626
PYTHON_REQUIRES = ">= 3.9"
2727
REQUIRES = [
2828
"urllib3 >= 2.1.0, < 3.0.0",

0 commit comments

Comments
 (0)