diff --git a/Cargo.lock b/Cargo.lock index 71192649ad..5ec2e856d9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -171,7 +171,7 @@ checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" [[package]] name = "authentik" -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" dependencies = [ "arc-swap", "argh", @@ -196,7 +196,7 @@ dependencies = [ [[package]] name = "authentik-axum" -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" dependencies = [ "authentik-common", "axum", @@ -216,7 +216,7 @@ dependencies = [ [[package]] name = "authentik-client" -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" dependencies = [ "aws-lc-rs", "reqwest", @@ -232,7 +232,7 @@ dependencies = [ [[package]] name = "authentik-common" -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" dependencies = [ "arc-swap", "authentik-client", diff --git a/Cargo.toml b/Cargo.toml index 51c4bf21db..16d15ed7bd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ members = [ resolver = "3" [workspace.package] -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" authors = ["authentik Team "] description = "Making authentication simple." edition = "2024" @@ -115,9 +115,9 @@ url = "= 2.5.8" uuid = { version = "= 1.23.1", features = ["serde", "v4"] } which = "= 8.0.2" -ak-axum = { package = "authentik-axum", version = "2026.5.0-rc1", path = "./packages/ak-axum" } -ak-client = { package = "authentik-client", version = "2026.5.0-rc1", path = "./packages/client-rust" } -ak-common = { package = "authentik-common", version = "2026.5.0-rc1", path = "./packages/ak-common", default-features = false } +ak-axum = { package = "authentik-axum", version = "2026.5.0-rc2", path = "./packages/ak-axum" } +ak-client = { package = "authentik-client", version = "2026.5.0-rc2", path = "./packages/client-rust" } +ak-common = { package = "authentik-common", version = "2026.5.0-rc2", path = "./packages/ak-common", default-features = false } [workspace.lints.rust] ambiguous_negative_literals = "warn" diff --git a/authentik/__init__.py b/authentik/__init__.py index 02c6b21c4f..f8cf1c798d 100644 --- a/authentik/__init__.py +++ b/authentik/__init__.py @@ -3,7 +3,7 @@ from functools import lru_cache from os import environ -VERSION = "2026.5.0-rc1" +VERSION = "2026.5.0-rc2" ENV_GIT_HASH_KEY = "GIT_BUILD_HASH" diff --git a/blueprints/schema.json b/blueprints/schema.json index 8bd381e2cd..80d7f25089 100644 --- a/blueprints/schema.json +++ b/blueprints/schema.json @@ -2,7 +2,7 @@ "$schema": "http://json-schema.org/draft-07/schema", "$id": "https://goauthentik.io/blueprints/schema.json", "type": "object", - "title": "authentik 2026.5.0-rc1 Blueprint schema", + "title": "authentik 2026.5.0-rc2 Blueprint schema", "required": [ "version", "entries" diff --git a/internal/constants/VERSION b/internal/constants/VERSION index 7c3fd22494..cdb1ed381f 100644 --- a/internal/constants/VERSION +++ b/internal/constants/VERSION @@ -1 +1 @@ -2026.5.0-rc1 \ No newline at end of file +2026.5.0-rc2 \ No newline at end of file diff --git a/lifecycle/aws/template.yaml b/lifecycle/aws/template.yaml index 48453024df..583ba1d71b 100644 --- a/lifecycle/aws/template.yaml +++ b/lifecycle/aws/template.yaml @@ -18,7 +18,7 @@ Parameters: Description: authentik Docker image AuthentikVersion: Type: String - Default: 2026.5.0-rc1 + Default: 2026.5.0-rc2 Description: authentik Docker image tag AuthentikServerCPU: Type: Number diff --git a/lifecycle/container/compose.yml b/lifecycle/container/compose.yml index f6bce8dfe5..7292aa265c 100644 --- a/lifecycle/container/compose.yml +++ b/lifecycle/container/compose.yml @@ -31,7 +31,7 @@ services: AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS} AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik} AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY:?secret key required} - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2026.5.0-rc1} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2026.5.0-rc2} ports: - ${COMPOSE_PORT_HTTP:-9000}:9000 - ${COMPOSE_PORT_HTTPS:-9443}:9443 @@ -53,7 +53,7 @@ services: AUTHENTIK_POSTGRESQL__PASSWORD: ${PG_PASS} AUTHENTIK_POSTGRESQL__USER: ${PG_USER:-authentik} AUTHENTIK_SECRET_KEY: ${AUTHENTIK_SECRET_KEY:?secret key required} - image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2026.5.0-rc1} + image: ${AUTHENTIK_IMAGE:-ghcr.io/goauthentik/server}:${AUTHENTIK_TAG:-2026.5.0-rc2} restart: unless-stopped shm_size: 512mb user: root diff --git a/package-lock.json b/package-lock.json index 4c1c37bd30..52cabfab09 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@goauthentik/authentik", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@goauthentik/authentik", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "dependencies": { "@eslint/js": "^9.39.3", "@goauthentik/eslint-config": "./packages/eslint-config", diff --git a/package.json b/package.json index 73616618ea..297af331eb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@goauthentik/authentik", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "private": true, "scripts": { "lint": "run-s lint:spellcheck lint:lockfile", diff --git a/packages/client-go/api_core.go b/packages/client-go/api_core.go index e9e982e740..3f05bbd0d8 100644 --- a/packages/client-go/api_core.go +++ b/packages/client-go/api_core.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/api_crypto.go b/packages/client-go/api_crypto.go index e650d619bb..2e06759284 100644 --- a/packages/client-go/api_crypto.go +++ b/packages/client-go/api_crypto.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/api_events.go b/packages/client-go/api_events.go index 7c4c58c0af..f976feb880 100644 --- a/packages/client-go/api_events.go +++ b/packages/client-go/api_events.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/api_flows.go b/packages/client-go/api_flows.go index cb458b75fa..79114ae30e 100644 --- a/packages/client-go/api_flows.go +++ b/packages/client-go/api_flows.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/api_outposts.go b/packages/client-go/api_outposts.go index 6bb223f277..513eb66a2f 100644 --- a/packages/client-go/api_outposts.go +++ b/packages/client-go/api_outposts.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/api_root.go b/packages/client-go/api_root.go index 43541c4de9..1e330002e7 100644 --- a/packages/client-go/api_root.go +++ b/packages/client-go/api_root.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/client.go b/packages/client-go/client.go index a8be2d57f7..b9d239f4b8 100644 --- a/packages/client-go/client.go +++ b/packages/client-go/client.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ @@ -41,7 +41,7 @@ var ( queryDescape = strings.NewReplacer("%5B", "[", "%5D", "]") ) -// APIClient manages communication with the authentik API v2026.5.0-rc1 +// APIClient manages communication with the authentik API v2026.5.0-rc2 // In most cases there should be only one, shared, APIClient. type APIClient struct { cfg *Configuration diff --git a/packages/client-go/configuration.go b/packages/client-go/configuration.go index 754d7bed2b..c3f829332f 100644 --- a/packages/client-go/configuration.go +++ b/packages/client-go/configuration.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_access_denied_challenge.go b/packages/client-go/model_access_denied_challenge.go index d6e887360d..c8674aff3d 100644 --- a/packages/client-go/model_access_denied_challenge.go +++ b/packages/client-go/model_access_denied_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_apple_challenge_response_request.go b/packages/client-go/model_apple_challenge_response_request.go index e57ccbfada..a17dbe9b5d 100644 --- a/packages/client-go/model_apple_challenge_response_request.go +++ b/packages/client-go/model_apple_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_apple_login_challenge.go b/packages/client-go/model_apple_login_challenge.go index 5b7f20c179..2836e2403f 100644 --- a/packages/client-go/model_apple_login_challenge.go +++ b/packages/client-go/model_apple_login_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_duo_challenge.go b/packages/client-go/model_authenticator_duo_challenge.go index 19a5a378b1..d0d6c3f6fe 100644 --- a/packages/client-go/model_authenticator_duo_challenge.go +++ b/packages/client-go/model_authenticator_duo_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_duo_challenge_response_request.go b/packages/client-go/model_authenticator_duo_challenge_response_request.go index fade6671d4..f75454f74d 100644 --- a/packages/client-go/model_authenticator_duo_challenge_response_request.go +++ b/packages/client-go/model_authenticator_duo_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_email_challenge.go b/packages/client-go/model_authenticator_email_challenge.go index 6e20b077a7..53c045b185 100644 --- a/packages/client-go/model_authenticator_email_challenge.go +++ b/packages/client-go/model_authenticator_email_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_email_challenge_response_request.go b/packages/client-go/model_authenticator_email_challenge_response_request.go index 489fb46bbb..5bc107a05d 100644 --- a/packages/client-go/model_authenticator_email_challenge_response_request.go +++ b/packages/client-go/model_authenticator_email_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_sms_challenge.go b/packages/client-go/model_authenticator_sms_challenge.go index 3a3d9e9ae8..db9a3acca1 100644 --- a/packages/client-go/model_authenticator_sms_challenge.go +++ b/packages/client-go/model_authenticator_sms_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_sms_challenge_response_request.go b/packages/client-go/model_authenticator_sms_challenge_response_request.go index 9af2ec0448..80a1a97175 100644 --- a/packages/client-go/model_authenticator_sms_challenge_response_request.go +++ b/packages/client-go/model_authenticator_sms_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_static_challenge.go b/packages/client-go/model_authenticator_static_challenge.go index 2c5b2f5d31..5b88189bdf 100644 --- a/packages/client-go/model_authenticator_static_challenge.go +++ b/packages/client-go/model_authenticator_static_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_static_challenge_response_request.go b/packages/client-go/model_authenticator_static_challenge_response_request.go index 0dfab2b100..92b6d0434b 100644 --- a/packages/client-go/model_authenticator_static_challenge_response_request.go +++ b/packages/client-go/model_authenticator_static_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_totp_challenge.go b/packages/client-go/model_authenticator_totp_challenge.go index 4e52087606..b17da9153f 100644 --- a/packages/client-go/model_authenticator_totp_challenge.go +++ b/packages/client-go/model_authenticator_totp_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_totp_challenge_response_request.go b/packages/client-go/model_authenticator_totp_challenge_response_request.go index 02881b9e53..16dc21a948 100644 --- a/packages/client-go/model_authenticator_totp_challenge_response_request.go +++ b/packages/client-go/model_authenticator_totp_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_validation_challenge.go b/packages/client-go/model_authenticator_validation_challenge.go index a2d04fc3bb..7df7feec73 100644 --- a/packages/client-go/model_authenticator_validation_challenge.go +++ b/packages/client-go/model_authenticator_validation_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_validation_challenge_response_request.go b/packages/client-go/model_authenticator_validation_challenge_response_request.go index 7067c3dfe2..30093a6460 100644 --- a/packages/client-go/model_authenticator_validation_challenge_response_request.go +++ b/packages/client-go/model_authenticator_validation_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_web_authn_challenge.go b/packages/client-go/model_authenticator_web_authn_challenge.go index a61c12d1c5..ca7490e31c 100644 --- a/packages/client-go/model_authenticator_web_authn_challenge.go +++ b/packages/client-go/model_authenticator_web_authn_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_authenticator_web_authn_challenge_response_request.go b/packages/client-go/model_authenticator_web_authn_challenge_response_request.go index 7def4f40a3..4385f8fa50 100644 --- a/packages/client-go/model_authenticator_web_authn_challenge_response_request.go +++ b/packages/client-go/model_authenticator_web_authn_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_auto_submit_challenge_response_request.go b/packages/client-go/model_auto_submit_challenge_response_request.go index 519eb4d409..6493506517 100644 --- a/packages/client-go/model_auto_submit_challenge_response_request.go +++ b/packages/client-go/model_auto_submit_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_autosubmit_challenge.go b/packages/client-go/model_autosubmit_challenge.go index 3b96c28f7b..fe89c28e40 100644 --- a/packages/client-go/model_autosubmit_challenge.go +++ b/packages/client-go/model_autosubmit_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_brand.go b/packages/client-go/model_brand.go index ff3109dc97..c4b7728409 100644 --- a/packages/client-go/model_brand.go +++ b/packages/client-go/model_brand.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_capabilities_enum.go b/packages/client-go/model_capabilities_enum.go index 2ce434b39a..93a7be23e1 100644 --- a/packages/client-go/model_capabilities_enum.go +++ b/packages/client-go/model_capabilities_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_captcha_challenge.go b/packages/client-go/model_captcha_challenge.go index 8ff3dc6c0f..153bbb432d 100644 --- a/packages/client-go/model_captcha_challenge.go +++ b/packages/client-go/model_captcha_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_captcha_challenge_response_request.go b/packages/client-go/model_captcha_challenge_response_request.go index 0c34c518c4..184635e28a 100644 --- a/packages/client-go/model_captcha_challenge_response_request.go +++ b/packages/client-go/model_captcha_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_certificate_data.go b/packages/client-go/model_certificate_data.go index 0045e45cc2..1d686e24d0 100644 --- a/packages/client-go/model_certificate_data.go +++ b/packages/client-go/model_certificate_data.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_certificate_key_pair.go b/packages/client-go/model_certificate_key_pair.go index 44a3157377..b359724ad6 100644 --- a/packages/client-go/model_certificate_key_pair.go +++ b/packages/client-go/model_certificate_key_pair.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_certificate_key_pair_key_type_enum.go b/packages/client-go/model_certificate_key_pair_key_type_enum.go index 4a917252dd..52779f884f 100644 --- a/packages/client-go/model_certificate_key_pair_key_type_enum.go +++ b/packages/client-go/model_certificate_key_pair_key_type_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_challenge_types.go b/packages/client-go/model_challenge_types.go index e4e0845348..efb5a87e09 100644 --- a/packages/client-go/model_challenge_types.go +++ b/packages/client-go/model_challenge_types.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_config.go b/packages/client-go/model_config.go index ee0e6e680b..5134ba70d3 100644 --- a/packages/client-go/model_config.go +++ b/packages/client-go/model_config.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_consent_challenge.go b/packages/client-go/model_consent_challenge.go index 8902d489d3..93c6c8645d 100644 --- a/packages/client-go/model_consent_challenge.go +++ b/packages/client-go/model_consent_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_consent_challenge_response_request.go b/packages/client-go/model_consent_challenge_response_request.go index e2da9e859e..f297678ac3 100644 --- a/packages/client-go/model_consent_challenge_response_request.go +++ b/packages/client-go/model_consent_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_consent_permission.go b/packages/client-go/model_consent_permission.go index 8d43c181c6..b199760e31 100644 --- a/packages/client-go/model_consent_permission.go +++ b/packages/client-go/model_consent_permission.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_contextual_flow_info.go b/packages/client-go/model_contextual_flow_info.go index afff1c1548..b472587d3b 100644 --- a/packages/client-go/model_contextual_flow_info.go +++ b/packages/client-go/model_contextual_flow_info.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_contextual_flow_info_layout_enum.go b/packages/client-go/model_contextual_flow_info_layout_enum.go index 7cf6ed1526..934ef2db34 100644 --- a/packages/client-go/model_contextual_flow_info_layout_enum.go +++ b/packages/client-go/model_contextual_flow_info_layout_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_device_challenge.go b/packages/client-go/model_device_challenge.go index eecdbbfad2..a6769367d4 100644 --- a/packages/client-go/model_device_challenge.go +++ b/packages/client-go/model_device_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_device_challenge_request.go b/packages/client-go/model_device_challenge_request.go index 09125dd71e..1bdac4d211 100644 --- a/packages/client-go/model_device_challenge_request.go +++ b/packages/client-go/model_device_challenge_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_device_classes_enum.go b/packages/client-go/model_device_classes_enum.go index 689a2b03a5..5c1bbe3db5 100644 --- a/packages/client-go/model_device_classes_enum.go +++ b/packages/client-go/model_device_classes_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_dummy_challenge.go b/packages/client-go/model_dummy_challenge.go index a445fe033f..a031f43725 100644 --- a/packages/client-go/model_dummy_challenge.go +++ b/packages/client-go/model_dummy_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_dummy_challenge_response_request.go b/packages/client-go/model_dummy_challenge_response_request.go index 3902d06347..ea38fef4b6 100644 --- a/packages/client-go/model_dummy_challenge_response_request.go +++ b/packages/client-go/model_dummy_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_email_challenge.go b/packages/client-go/model_email_challenge.go index 9a66e5c54f..e539bb80ac 100644 --- a/packages/client-go/model_email_challenge.go +++ b/packages/client-go/model_email_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_email_challenge_response_request.go b/packages/client-go/model_email_challenge_response_request.go index 5a6760cdca..2c9581d424 100644 --- a/packages/client-go/model_email_challenge_response_request.go +++ b/packages/client-go/model_email_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_endpoint_agent_challenge.go b/packages/client-go/model_endpoint_agent_challenge.go index 37f6ae52c1..643923b7e5 100644 --- a/packages/client-go/model_endpoint_agent_challenge.go +++ b/packages/client-go/model_endpoint_agent_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_endpoint_agent_challenge_response_request.go b/packages/client-go/model_endpoint_agent_challenge_response_request.go index ae165049ba..d348c0942d 100644 --- a/packages/client-go/model_endpoint_agent_challenge_response_request.go +++ b/packages/client-go/model_endpoint_agent_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_error_detail.go b/packages/client-go/model_error_detail.go index ba76914233..c65f5199e2 100644 --- a/packages/client-go/model_error_detail.go +++ b/packages/client-go/model_error_detail.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_error_reporting_config.go b/packages/client-go/model_error_reporting_config.go index afb927fc4c..b6c8270c91 100644 --- a/packages/client-go/model_error_reporting_config.go +++ b/packages/client-go/model_error_reporting_config.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_event.go b/packages/client-go/model_event.go index 618ee731ba..c039d04fee 100644 --- a/packages/client-go/model_event.go +++ b/packages/client-go/model_event.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_event_actions.go b/packages/client-go/model_event_actions.go index 48360f8fa0..f28478d278 100644 --- a/packages/client-go/model_event_actions.go +++ b/packages/client-go/model_event_actions.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_event_request.go b/packages/client-go/model_event_request.go index 1520fc05c5..35161a3cee 100644 --- a/packages/client-go/model_event_request.go +++ b/packages/client-go/model_event_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_flow_challenge_response_request.go b/packages/client-go/model_flow_challenge_response_request.go index 05c7b952e1..ef922835fb 100644 --- a/packages/client-go/model_flow_challenge_response_request.go +++ b/packages/client-go/model_flow_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_flow_designation_enum.go b/packages/client-go/model_flow_designation_enum.go index f5e7579494..ce8501e5f7 100644 --- a/packages/client-go/model_flow_designation_enum.go +++ b/packages/client-go/model_flow_designation_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_flow_error_challenge.go b/packages/client-go/model_flow_error_challenge.go index 98e0a4559a..8227ffc416 100644 --- a/packages/client-go/model_flow_error_challenge.go +++ b/packages/client-go/model_flow_error_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_frame_challenge.go b/packages/client-go/model_frame_challenge.go index a51c9c8e51..54fa401cc7 100644 --- a/packages/client-go/model_frame_challenge.go +++ b/packages/client-go/model_frame_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_frame_challenge_response_request.go b/packages/client-go/model_frame_challenge_response_request.go index 8c4b09b83f..b440adb6d0 100644 --- a/packages/client-go/model_frame_challenge_response_request.go +++ b/packages/client-go/model_frame_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_generic_error.go b/packages/client-go/model_generic_error.go index 441514338c..f2e8d64097 100644 --- a/packages/client-go/model_generic_error.go +++ b/packages/client-go/model_generic_error.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_group.go b/packages/client-go/model_group.go index e9617d7d03..a870d8487f 100644 --- a/packages/client-go/model_group.go +++ b/packages/client-go/model_group.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_identification_challenge.go b/packages/client-go/model_identification_challenge.go index b9c09e010f..b6c89df6b2 100644 --- a/packages/client-go/model_identification_challenge.go +++ b/packages/client-go/model_identification_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_identification_challenge_response_request.go b/packages/client-go/model_identification_challenge_response_request.go index 2428001742..ac83195901 100644 --- a/packages/client-go/model_identification_challenge_response_request.go +++ b/packages/client-go/model_identification_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_iframe_logout_challenge.go b/packages/client-go/model_iframe_logout_challenge.go index 7c277a56c7..6ba90b6ea4 100644 --- a/packages/client-go/model_iframe_logout_challenge.go +++ b/packages/client-go/model_iframe_logout_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_iframe_logout_challenge_response_request.go b/packages/client-go/model_iframe_logout_challenge_response_request.go index 92971b4472..27807f4bc1 100644 --- a/packages/client-go/model_iframe_logout_challenge_response_request.go +++ b/packages/client-go/model_iframe_logout_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_ldap_check_access.go b/packages/client-go/model_ldap_check_access.go index cc16d7f37c..a49b9b8a65 100644 --- a/packages/client-go/model_ldap_check_access.go +++ b/packages/client-go/model_ldap_check_access.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_ldap_outpost_config.go b/packages/client-go/model_ldap_outpost_config.go index b0f89f709e..8e09feaba9 100644 --- a/packages/client-go/model_ldap_outpost_config.go +++ b/packages/client-go/model_ldap_outpost_config.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_ldapapi_access_mode.go b/packages/client-go/model_ldapapi_access_mode.go index d363ec375a..1028403aa5 100644 --- a/packages/client-go/model_ldapapi_access_mode.go +++ b/packages/client-go/model_ldapapi_access_mode.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_log_event.go b/packages/client-go/model_log_event.go index 9a58662142..7ba2611507 100644 --- a/packages/client-go/model_log_event.go +++ b/packages/client-go/model_log_event.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_log_level_enum.go b/packages/client-go/model_log_level_enum.go index 88e194690b..5a7b92618e 100644 --- a/packages/client-go/model_log_level_enum.go +++ b/packages/client-go/model_log_level_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_login_challenge_types.go b/packages/client-go/model_login_challenge_types.go index 3ce381a2de..7a2ef10071 100644 --- a/packages/client-go/model_login_challenge_types.go +++ b/packages/client-go/model_login_challenge_types.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_login_source.go b/packages/client-go/model_login_source.go index e5400d0b70..e36c148456 100644 --- a/packages/client-go/model_login_source.go +++ b/packages/client-go/model_login_source.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_logout_url.go b/packages/client-go/model_logout_url.go index 6e67c605ff..3984047637 100644 --- a/packages/client-go/model_logout_url.go +++ b/packages/client-go/model_logout_url.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_native_logout_challenge.go b/packages/client-go/model_native_logout_challenge.go index 0117ea4a45..f02d0173ce 100644 --- a/packages/client-go/model_native_logout_challenge.go +++ b/packages/client-go/model_native_logout_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_native_logout_challenge_response_request.go b/packages/client-go/model_native_logout_challenge_response_request.go index 2c4179dcbf..4b329fa5ae 100644 --- a/packages/client-go/model_native_logout_challenge_response_request.go +++ b/packages/client-go/model_native_logout_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_o_auth_device_code_challenge.go b/packages/client-go/model_o_auth_device_code_challenge.go index eb0aad4c06..85344da1ba 100644 --- a/packages/client-go/model_o_auth_device_code_challenge.go +++ b/packages/client-go/model_o_auth_device_code_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_o_auth_device_code_challenge_response_request.go b/packages/client-go/model_o_auth_device_code_challenge_response_request.go index 8fd0236045..d27aa67be3 100644 --- a/packages/client-go/model_o_auth_device_code_challenge_response_request.go +++ b/packages/client-go/model_o_auth_device_code_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_o_auth_device_code_finish_challenge.go b/packages/client-go/model_o_auth_device_code_finish_challenge.go index 186ab75e22..d6ea6b0d14 100644 --- a/packages/client-go/model_o_auth_device_code_finish_challenge.go +++ b/packages/client-go/model_o_auth_device_code_finish_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_o_auth_device_code_finish_challenge_response_request.go b/packages/client-go/model_o_auth_device_code_finish_challenge_response_request.go index f899e9d840..06c3ae32c6 100644 --- a/packages/client-go/model_o_auth_device_code_finish_challenge_response_request.go +++ b/packages/client-go/model_o_auth_device_code_finish_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_open_id_connect_configuration.go b/packages/client-go/model_open_id_connect_configuration.go index 8a071383e4..3a44c8e85d 100644 --- a/packages/client-go/model_open_id_connect_configuration.go +++ b/packages/client-go/model_open_id_connect_configuration.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_outpost.go b/packages/client-go/model_outpost.go index d43ba1b096..9dc37203eb 100644 --- a/packages/client-go/model_outpost.go +++ b/packages/client-go/model_outpost.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_outpost_type_enum.go b/packages/client-go/model_outpost_type_enum.go index 7b4e8dbb15..2e6855079a 100644 --- a/packages/client-go/model_outpost_type_enum.go +++ b/packages/client-go/model_outpost_type_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_brand_list.go b/packages/client-go/model_paginated_brand_list.go index c6bc0c178a..af7bb6e716 100644 --- a/packages/client-go/model_paginated_brand_list.go +++ b/packages/client-go/model_paginated_brand_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_group_list.go b/packages/client-go/model_paginated_group_list.go index 1b3633b392..68cce26197 100644 --- a/packages/client-go/model_paginated_group_list.go +++ b/packages/client-go/model_paginated_group_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_ldap_outpost_config_list.go b/packages/client-go/model_paginated_ldap_outpost_config_list.go index 803abb8f67..8d53694c07 100644 --- a/packages/client-go/model_paginated_ldap_outpost_config_list.go +++ b/packages/client-go/model_paginated_ldap_outpost_config_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_outpost_list.go b/packages/client-go/model_paginated_outpost_list.go index 1993b2a0e2..e796cd32ca 100644 --- a/packages/client-go/model_paginated_outpost_list.go +++ b/packages/client-go/model_paginated_outpost_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_proxy_outpost_config_list.go b/packages/client-go/model_paginated_proxy_outpost_config_list.go index 6a7200043d..d58187c8a9 100644 --- a/packages/client-go/model_paginated_proxy_outpost_config_list.go +++ b/packages/client-go/model_paginated_proxy_outpost_config_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_radius_outpost_config_list.go b/packages/client-go/model_paginated_radius_outpost_config_list.go index b7b35b9cb2..0753201989 100644 --- a/packages/client-go/model_paginated_radius_outpost_config_list.go +++ b/packages/client-go/model_paginated_radius_outpost_config_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_paginated_user_list.go b/packages/client-go/model_paginated_user_list.go index f73039de5c..e532b965fd 100644 --- a/packages/client-go/model_paginated_user_list.go +++ b/packages/client-go/model_paginated_user_list.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_pagination.go b/packages/client-go/model_pagination.go index 10fc38fb78..ab20bc7741 100644 --- a/packages/client-go/model_pagination.go +++ b/packages/client-go/model_pagination.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_partial_group.go b/packages/client-go/model_partial_group.go index 032e5c7573..5f28733698 100644 --- a/packages/client-go/model_partial_group.go +++ b/packages/client-go/model_partial_group.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_partial_user.go b/packages/client-go/model_partial_user.go index cba019414f..bceb65f803 100644 --- a/packages/client-go/model_partial_user.go +++ b/packages/client-go/model_partial_user.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_password_challenge.go b/packages/client-go/model_password_challenge.go index a464caa0f8..517c2dbfeb 100644 --- a/packages/client-go/model_password_challenge.go +++ b/packages/client-go/model_password_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_password_challenge_response_request.go b/packages/client-go/model_password_challenge_response_request.go index 0ccb7b0a67..c16f39cab7 100644 --- a/packages/client-go/model_password_challenge_response_request.go +++ b/packages/client-go/model_password_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_plex_authentication_challenge.go b/packages/client-go/model_plex_authentication_challenge.go index 69d62ed893..af9ebe6de6 100644 --- a/packages/client-go/model_plex_authentication_challenge.go +++ b/packages/client-go/model_plex_authentication_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_plex_authentication_challenge_response_request.go b/packages/client-go/model_plex_authentication_challenge_response_request.go index fa580f4363..006e5d3818 100644 --- a/packages/client-go/model_plex_authentication_challenge_response_request.go +++ b/packages/client-go/model_plex_authentication_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_policy_test_result.go b/packages/client-go/model_policy_test_result.go index 42ebeb1382..384dc10ecd 100644 --- a/packages/client-go/model_policy_test_result.go +++ b/packages/client-go/model_policy_test_result.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_prompt_challenge.go b/packages/client-go/model_prompt_challenge.go index f31b501519..aecd755643 100644 --- a/packages/client-go/model_prompt_challenge.go +++ b/packages/client-go/model_prompt_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_prompt_challenge_response_request.go b/packages/client-go/model_prompt_challenge_response_request.go index 592c478e25..f2de9dcb70 100644 --- a/packages/client-go/model_prompt_challenge_response_request.go +++ b/packages/client-go/model_prompt_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_prompt_choice.go b/packages/client-go/model_prompt_choice.go index c6cb5305a6..e459afd4c8 100644 --- a/packages/client-go/model_prompt_choice.go +++ b/packages/client-go/model_prompt_choice.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_prompt_type_enum.go b/packages/client-go/model_prompt_type_enum.go index 408cbdb1ca..b21adb7877 100644 --- a/packages/client-go/model_prompt_type_enum.go +++ b/packages/client-go/model_prompt_type_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_provider.go b/packages/client-go/model_provider.go index 22c2373ecd..3b57e04c00 100644 --- a/packages/client-go/model_provider.go +++ b/packages/client-go/model_provider.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_proxy_mode.go b/packages/client-go/model_proxy_mode.go index a0aa637b93..a21e3d034e 100644 --- a/packages/client-go/model_proxy_mode.go +++ b/packages/client-go/model_proxy_mode.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_proxy_outpost_config.go b/packages/client-go/model_proxy_outpost_config.go index 7751ac0d5e..68e212080e 100644 --- a/packages/client-go/model_proxy_outpost_config.go +++ b/packages/client-go/model_proxy_outpost_config.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_radius_check_access.go b/packages/client-go/model_radius_check_access.go index ecedadebd1..04e89a739d 100644 --- a/packages/client-go/model_radius_check_access.go +++ b/packages/client-go/model_radius_check_access.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_radius_outpost_config.go b/packages/client-go/model_radius_outpost_config.go index 0c02552b72..3a3cd8587b 100644 --- a/packages/client-go/model_radius_outpost_config.go +++ b/packages/client-go/model_radius_outpost_config.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_redirect_challenge.go b/packages/client-go/model_redirect_challenge.go index fcf47d769f..1cd7443bd9 100644 --- a/packages/client-go/model_redirect_challenge.go +++ b/packages/client-go/model_redirect_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_redirect_challenge_response_request.go b/packages/client-go/model_redirect_challenge_response_request.go index 06346ab76a..1a160ae683 100644 --- a/packages/client-go/model_redirect_challenge_response_request.go +++ b/packages/client-go/model_redirect_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_related_group.go b/packages/client-go/model_related_group.go index 70e9e081c5..c40222627e 100644 --- a/packages/client-go/model_related_group.go +++ b/packages/client-go/model_related_group.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_role.go b/packages/client-go/model_role.go index 84dadeac96..e953158e7e 100644 --- a/packages/client-go/model_role.go +++ b/packages/client-go/model_role.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_saml_bindings_enum.go b/packages/client-go/model_saml_bindings_enum.go index 199658f148..1cc7287d0a 100644 --- a/packages/client-go/model_saml_bindings_enum.go +++ b/packages/client-go/model_saml_bindings_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_selectable_stage.go b/packages/client-go/model_selectable_stage.go index d00f8b9e1f..19f0246acc 100644 --- a/packages/client-go/model_selectable_stage.go +++ b/packages/client-go/model_selectable_stage.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_service_connection.go b/packages/client-go/model_service_connection.go index 68e2f1c1f6..b938d25096 100644 --- a/packages/client-go/model_service_connection.go +++ b/packages/client-go/model_service_connection.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_session_end_challenge.go b/packages/client-go/model_session_end_challenge.go index d65fef8416..34f1a874b6 100644 --- a/packages/client-go/model_session_end_challenge.go +++ b/packages/client-go/model_session_end_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_session_user.go b/packages/client-go/model_session_user.go index b58aca3493..9d30ddeb67 100644 --- a/packages/client-go/model_session_user.go +++ b/packages/client-go/model_session_user.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_shell_challenge.go b/packages/client-go/model_shell_challenge.go index 2813461a10..c7a450ddae 100644 --- a/packages/client-go/model_shell_challenge.go +++ b/packages/client-go/model_shell_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_stage_prompt.go b/packages/client-go/model_stage_prompt.go index ea10446df1..cb66c7cabe 100644 --- a/packages/client-go/model_stage_prompt.go +++ b/packages/client-go/model_stage_prompt.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_telegram_challenge_response_request.go b/packages/client-go/model_telegram_challenge_response_request.go index f1d9b6f834..355ca3a2fe 100644 --- a/packages/client-go/model_telegram_challenge_response_request.go +++ b/packages/client-go/model_telegram_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_telegram_login_challenge.go b/packages/client-go/model_telegram_login_challenge.go index 33eb36d62d..cef16549d3 100644 --- a/packages/client-go/model_telegram_login_challenge.go +++ b/packages/client-go/model_telegram_login_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_themed_urls.go b/packages/client-go/model_themed_urls.go index c882b4cef9..27f6212931 100644 --- a/packages/client-go/model_themed_urls.go +++ b/packages/client-go/model_themed_urls.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user.go b/packages/client-go/model_user.go index 72197bbb37..7b3da7d4cf 100644 --- a/packages/client-go/model_user.go +++ b/packages/client-go/model_user.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_login_challenge.go b/packages/client-go/model_user_login_challenge.go index 502b913606..280b189022 100644 --- a/packages/client-go/model_user_login_challenge.go +++ b/packages/client-go/model_user_login_challenge.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_login_challenge_response_request.go b/packages/client-go/model_user_login_challenge_response_request.go index d75826b2e9..0138818e1a 100644 --- a/packages/client-go/model_user_login_challenge_response_request.go +++ b/packages/client-go/model_user_login_challenge_response_request.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_self.go b/packages/client-go/model_user_self.go index d59b796617..0030446ce5 100644 --- a/packages/client-go/model_user_self.go +++ b/packages/client-go/model_user_self.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_self_groups.go b/packages/client-go/model_user_self_groups.go index c8429cf7df..b90050a3b8 100644 --- a/packages/client-go/model_user_self_groups.go +++ b/packages/client-go/model_user_self_groups.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_self_roles.go b/packages/client-go/model_user_self_roles.go index a02fc08b71..d9ee9ef900 100644 --- a/packages/client-go/model_user_self_roles.go +++ b/packages/client-go/model_user_self_roles.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_user_type_enum.go b/packages/client-go/model_user_type_enum.go index c3d0f350b9..4a4ed3b2c3 100644 --- a/packages/client-go/model_user_type_enum.go +++ b/packages/client-go/model_user_type_enum.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/model_validation_error.go b/packages/client-go/model_validation_error.go index c876a501f5..cfc9994792 100644 --- a/packages/client-go/model_validation_error.go +++ b/packages/client-go/model_validation_error.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/response.go b/packages/client-go/response.go index 1de9340547..e435b68a3c 100644 --- a/packages/client-go/response.go +++ b/packages/client-go/response.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-go/utils.go b/packages/client-go/utils.go index 9b4dc792ae..2f7eac3025 100644 --- a/packages/client-go/utils.go +++ b/packages/client-go/utils.go @@ -3,7 +3,7 @@ authentik Making authentication simple. -API version: 2026.5.0-rc1 +API version: 2026.5.0-rc2 Contact: hello@goauthentik.io */ diff --git a/packages/client-rust/src/apis/configuration.rs b/packages/client-rust/src/apis/configuration.rs index 86b35fb5d9..b7f0cc553e 100644 --- a/packages/client-rust/src/apis/configuration.rs +++ b/packages/client-rust/src/apis/configuration.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech @@ -35,7 +35,7 @@ impl Default for Configuration { fn default() -> Self { Configuration { base_path: "/api/v3".to_owned(), - user_agent: Some("OpenAPI-Generator/2026.5.0-rc1/rust".to_owned()), + user_agent: Some("OpenAPI-Generator/2026.5.0-rc2/rust".to_owned()), client: reqwest_middleware::ClientBuilder::new(reqwest::Client::new()).build(), basic_auth: None, oauth_access_token: None, diff --git a/packages/client-rust/src/apis/core_api.rs b/packages/client-rust/src/apis/core_api.rs index adb9ca23c1..df768430bc 100644 --- a/packages/client-rust/src/apis/core_api.rs +++ b/packages/client-rust/src/apis/core_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/apis/crypto_api.rs b/packages/client-rust/src/apis/crypto_api.rs index 2645967b60..46998a6351 100644 --- a/packages/client-rust/src/apis/crypto_api.rs +++ b/packages/client-rust/src/apis/crypto_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/apis/events_api.rs b/packages/client-rust/src/apis/events_api.rs index dec39bab28..a99f3e6027 100644 --- a/packages/client-rust/src/apis/events_api.rs +++ b/packages/client-rust/src/apis/events_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/apis/flows_api.rs b/packages/client-rust/src/apis/flows_api.rs index effc19ad1a..bfb90e9652 100644 --- a/packages/client-rust/src/apis/flows_api.rs +++ b/packages/client-rust/src/apis/flows_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/apis/outposts_api.rs b/packages/client-rust/src/apis/outposts_api.rs index 89fb4391e8..09d4da116e 100644 --- a/packages/client-rust/src/apis/outposts_api.rs +++ b/packages/client-rust/src/apis/outposts_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/apis/root_api.rs b/packages/client-rust/src/apis/root_api.rs index 1cf2a03057..ef40a390e8 100644 --- a/packages/client-rust/src/apis/root_api.rs +++ b/packages/client-rust/src/apis/root_api.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/access_denied_challenge.rs b/packages/client-rust/src/models/access_denied_challenge.rs index 9ccb1e742c..ff389fd613 100644 --- a/packages/client-rust/src/models/access_denied_challenge.rs +++ b/packages/client-rust/src/models/access_denied_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/apple_challenge_response_request.rs b/packages/client-rust/src/models/apple_challenge_response_request.rs index 3e60474acb..40803464fd 100644 --- a/packages/client-rust/src/models/apple_challenge_response_request.rs +++ b/packages/client-rust/src/models/apple_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/apple_login_challenge.rs b/packages/client-rust/src/models/apple_login_challenge.rs index d57afbc22b..c035de707c 100644 --- a/packages/client-rust/src/models/apple_login_challenge.rs +++ b/packages/client-rust/src/models/apple_login_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_duo_challenge.rs b/packages/client-rust/src/models/authenticator_duo_challenge.rs index 2cde9c9d95..81cb7a26b8 100644 --- a/packages/client-rust/src/models/authenticator_duo_challenge.rs +++ b/packages/client-rust/src/models/authenticator_duo_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_duo_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_duo_challenge_response_request.rs index be7be315b7..359b23c8e0 100644 --- a/packages/client-rust/src/models/authenticator_duo_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_duo_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_email_challenge.rs b/packages/client-rust/src/models/authenticator_email_challenge.rs index 09c10e6636..eb17bf980b 100644 --- a/packages/client-rust/src/models/authenticator_email_challenge.rs +++ b/packages/client-rust/src/models/authenticator_email_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_email_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_email_challenge_response_request.rs index fb964607d0..28964ffaa2 100644 --- a/packages/client-rust/src/models/authenticator_email_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_email_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_sms_challenge.rs b/packages/client-rust/src/models/authenticator_sms_challenge.rs index cd4c3d2cd9..f64926f007 100644 --- a/packages/client-rust/src/models/authenticator_sms_challenge.rs +++ b/packages/client-rust/src/models/authenticator_sms_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_sms_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_sms_challenge_response_request.rs index b1d8260456..fe0916df4a 100644 --- a/packages/client-rust/src/models/authenticator_sms_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_sms_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_static_challenge.rs b/packages/client-rust/src/models/authenticator_static_challenge.rs index 829bbecfa5..e1930cec40 100644 --- a/packages/client-rust/src/models/authenticator_static_challenge.rs +++ b/packages/client-rust/src/models/authenticator_static_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_static_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_static_challenge_response_request.rs index 8c210a757b..be5e039bd2 100644 --- a/packages/client-rust/src/models/authenticator_static_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_static_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_totp_challenge.rs b/packages/client-rust/src/models/authenticator_totp_challenge.rs index 6373d124a7..bc48d388e9 100644 --- a/packages/client-rust/src/models/authenticator_totp_challenge.rs +++ b/packages/client-rust/src/models/authenticator_totp_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_totp_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_totp_challenge_response_request.rs index adc3f9a2b9..436bf913a9 100644 --- a/packages/client-rust/src/models/authenticator_totp_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_totp_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_validation_challenge.rs b/packages/client-rust/src/models/authenticator_validation_challenge.rs index 18c232426c..b27484804a 100644 --- a/packages/client-rust/src/models/authenticator_validation_challenge.rs +++ b/packages/client-rust/src/models/authenticator_validation_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_validation_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_validation_challenge_response_request.rs index c2ed53ba0c..9793b5fa5d 100644 --- a/packages/client-rust/src/models/authenticator_validation_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_validation_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_web_authn_challenge.rs b/packages/client-rust/src/models/authenticator_web_authn_challenge.rs index fff48bec1c..b789a79f5d 100644 --- a/packages/client-rust/src/models/authenticator_web_authn_challenge.rs +++ b/packages/client-rust/src/models/authenticator_web_authn_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/authenticator_web_authn_challenge_response_request.rs b/packages/client-rust/src/models/authenticator_web_authn_challenge_response_request.rs index 09432d341d..c27ac8722c 100644 --- a/packages/client-rust/src/models/authenticator_web_authn_challenge_response_request.rs +++ b/packages/client-rust/src/models/authenticator_web_authn_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/auto_submit_challenge_response_request.rs b/packages/client-rust/src/models/auto_submit_challenge_response_request.rs index 928443b376..2e69aa2bf5 100644 --- a/packages/client-rust/src/models/auto_submit_challenge_response_request.rs +++ b/packages/client-rust/src/models/auto_submit_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/autosubmit_challenge.rs b/packages/client-rust/src/models/autosubmit_challenge.rs index 565f619ebd..21635600ef 100644 --- a/packages/client-rust/src/models/autosubmit_challenge.rs +++ b/packages/client-rust/src/models/autosubmit_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/brand.rs b/packages/client-rust/src/models/brand.rs index 528335ed1a..3fc0cadd6b 100644 --- a/packages/client-rust/src/models/brand.rs +++ b/packages/client-rust/src/models/brand.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/capabilities_enum.rs b/packages/client-rust/src/models/capabilities_enum.rs index fc80704b9a..45b934d4d9 100644 --- a/packages/client-rust/src/models/capabilities_enum.rs +++ b/packages/client-rust/src/models/capabilities_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/captcha_challenge.rs b/packages/client-rust/src/models/captcha_challenge.rs index 22f0daa680..b28f49456e 100644 --- a/packages/client-rust/src/models/captcha_challenge.rs +++ b/packages/client-rust/src/models/captcha_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/captcha_challenge_response_request.rs b/packages/client-rust/src/models/captcha_challenge_response_request.rs index 93658d9402..b6ba9b9651 100644 --- a/packages/client-rust/src/models/captcha_challenge_response_request.rs +++ b/packages/client-rust/src/models/captcha_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/certificate_data.rs b/packages/client-rust/src/models/certificate_data.rs index 73081759f9..4495e9006f 100644 --- a/packages/client-rust/src/models/certificate_data.rs +++ b/packages/client-rust/src/models/certificate_data.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/certificate_key_pair.rs b/packages/client-rust/src/models/certificate_key_pair.rs index d0b5ef73e3..564ace8bd9 100644 --- a/packages/client-rust/src/models/certificate_key_pair.rs +++ b/packages/client-rust/src/models/certificate_key_pair.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/certificate_key_pair_key_type_enum.rs b/packages/client-rust/src/models/certificate_key_pair_key_type_enum.rs index c25924b7ea..4a527b1163 100644 --- a/packages/client-rust/src/models/certificate_key_pair_key_type_enum.rs +++ b/packages/client-rust/src/models/certificate_key_pair_key_type_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/challenge_types.rs b/packages/client-rust/src/models/challenge_types.rs index dd8193b8d1..00d99ac354 100644 --- a/packages/client-rust/src/models/challenge_types.rs +++ b/packages/client-rust/src/models/challenge_types.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/config.rs b/packages/client-rust/src/models/config.rs index 386da14533..e8a327797a 100644 --- a/packages/client-rust/src/models/config.rs +++ b/packages/client-rust/src/models/config.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/consent_challenge.rs b/packages/client-rust/src/models/consent_challenge.rs index 64ee17408b..8766472fe0 100644 --- a/packages/client-rust/src/models/consent_challenge.rs +++ b/packages/client-rust/src/models/consent_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/consent_challenge_response_request.rs b/packages/client-rust/src/models/consent_challenge_response_request.rs index b75c327684..9f555f2016 100644 --- a/packages/client-rust/src/models/consent_challenge_response_request.rs +++ b/packages/client-rust/src/models/consent_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/consent_permission.rs b/packages/client-rust/src/models/consent_permission.rs index d374ee0bf0..2318b4039e 100644 --- a/packages/client-rust/src/models/consent_permission.rs +++ b/packages/client-rust/src/models/consent_permission.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/contextual_flow_info.rs b/packages/client-rust/src/models/contextual_flow_info.rs index 817fc4542c..7e60120ebc 100644 --- a/packages/client-rust/src/models/contextual_flow_info.rs +++ b/packages/client-rust/src/models/contextual_flow_info.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/contextual_flow_info_layout_enum.rs b/packages/client-rust/src/models/contextual_flow_info_layout_enum.rs index 13652dc756..a8c101382e 100644 --- a/packages/client-rust/src/models/contextual_flow_info_layout_enum.rs +++ b/packages/client-rust/src/models/contextual_flow_info_layout_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/device_challenge.rs b/packages/client-rust/src/models/device_challenge.rs index e5498b4cd7..c65e46c7d9 100644 --- a/packages/client-rust/src/models/device_challenge.rs +++ b/packages/client-rust/src/models/device_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/device_challenge_request.rs b/packages/client-rust/src/models/device_challenge_request.rs index 72991223d9..11b7373f82 100644 --- a/packages/client-rust/src/models/device_challenge_request.rs +++ b/packages/client-rust/src/models/device_challenge_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/device_classes_enum.rs b/packages/client-rust/src/models/device_classes_enum.rs index d7c00ce2ab..64bff79511 100644 --- a/packages/client-rust/src/models/device_classes_enum.rs +++ b/packages/client-rust/src/models/device_classes_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/dummy_challenge.rs b/packages/client-rust/src/models/dummy_challenge.rs index 645a6dda91..7c8e735f83 100644 --- a/packages/client-rust/src/models/dummy_challenge.rs +++ b/packages/client-rust/src/models/dummy_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/dummy_challenge_response_request.rs b/packages/client-rust/src/models/dummy_challenge_response_request.rs index c6f171db72..3b12b0346f 100644 --- a/packages/client-rust/src/models/dummy_challenge_response_request.rs +++ b/packages/client-rust/src/models/dummy_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/email_challenge.rs b/packages/client-rust/src/models/email_challenge.rs index 9e656dce47..040617bd37 100644 --- a/packages/client-rust/src/models/email_challenge.rs +++ b/packages/client-rust/src/models/email_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/email_challenge_response_request.rs b/packages/client-rust/src/models/email_challenge_response_request.rs index ac2c8764c1..ef65ccae1b 100644 --- a/packages/client-rust/src/models/email_challenge_response_request.rs +++ b/packages/client-rust/src/models/email_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/endpoint_agent_challenge.rs b/packages/client-rust/src/models/endpoint_agent_challenge.rs index 911cbb33ad..2ef8ee4cfe 100644 --- a/packages/client-rust/src/models/endpoint_agent_challenge.rs +++ b/packages/client-rust/src/models/endpoint_agent_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/endpoint_agent_challenge_response_request.rs b/packages/client-rust/src/models/endpoint_agent_challenge_response_request.rs index dad368a26c..76d284ab7c 100644 --- a/packages/client-rust/src/models/endpoint_agent_challenge_response_request.rs +++ b/packages/client-rust/src/models/endpoint_agent_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/error_detail.rs b/packages/client-rust/src/models/error_detail.rs index 4f6e5d7758..1a9db5742b 100644 --- a/packages/client-rust/src/models/error_detail.rs +++ b/packages/client-rust/src/models/error_detail.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/error_reporting_config.rs b/packages/client-rust/src/models/error_reporting_config.rs index a882ed4190..73832aeea6 100644 --- a/packages/client-rust/src/models/error_reporting_config.rs +++ b/packages/client-rust/src/models/error_reporting_config.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/event.rs b/packages/client-rust/src/models/event.rs index 82cb8d8f54..3faf88cdf0 100644 --- a/packages/client-rust/src/models/event.rs +++ b/packages/client-rust/src/models/event.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/event_actions.rs b/packages/client-rust/src/models/event_actions.rs index 8f43b49d0f..7ceb450d1f 100644 --- a/packages/client-rust/src/models/event_actions.rs +++ b/packages/client-rust/src/models/event_actions.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/event_request.rs b/packages/client-rust/src/models/event_request.rs index fefa99d93a..f1e3d83456 100644 --- a/packages/client-rust/src/models/event_request.rs +++ b/packages/client-rust/src/models/event_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/flow_challenge_response_request.rs b/packages/client-rust/src/models/flow_challenge_response_request.rs index 558eab0878..9daad8d08b 100644 --- a/packages/client-rust/src/models/flow_challenge_response_request.rs +++ b/packages/client-rust/src/models/flow_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/flow_designation_enum.rs b/packages/client-rust/src/models/flow_designation_enum.rs index a9928fd80e..49e973e0a3 100644 --- a/packages/client-rust/src/models/flow_designation_enum.rs +++ b/packages/client-rust/src/models/flow_designation_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/flow_error_challenge.rs b/packages/client-rust/src/models/flow_error_challenge.rs index 66d19325c8..7f5ab26feb 100644 --- a/packages/client-rust/src/models/flow_error_challenge.rs +++ b/packages/client-rust/src/models/flow_error_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/frame_challenge.rs b/packages/client-rust/src/models/frame_challenge.rs index c7f3a09761..90d7e5c492 100644 --- a/packages/client-rust/src/models/frame_challenge.rs +++ b/packages/client-rust/src/models/frame_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/frame_challenge_response_request.rs b/packages/client-rust/src/models/frame_challenge_response_request.rs index b435ff0f6f..1b1fb3f651 100644 --- a/packages/client-rust/src/models/frame_challenge_response_request.rs +++ b/packages/client-rust/src/models/frame_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/generic_error.rs b/packages/client-rust/src/models/generic_error.rs index 4a7b7c8179..90b522a75c 100644 --- a/packages/client-rust/src/models/generic_error.rs +++ b/packages/client-rust/src/models/generic_error.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/group.rs b/packages/client-rust/src/models/group.rs index f4a298b30d..8973a75a3a 100644 --- a/packages/client-rust/src/models/group.rs +++ b/packages/client-rust/src/models/group.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/identification_challenge.rs b/packages/client-rust/src/models/identification_challenge.rs index 30ca03f130..2ed751fcfd 100644 --- a/packages/client-rust/src/models/identification_challenge.rs +++ b/packages/client-rust/src/models/identification_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/identification_challenge_response_request.rs b/packages/client-rust/src/models/identification_challenge_response_request.rs index e387711c26..49a33e4b18 100644 --- a/packages/client-rust/src/models/identification_challenge_response_request.rs +++ b/packages/client-rust/src/models/identification_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/iframe_logout_challenge.rs b/packages/client-rust/src/models/iframe_logout_challenge.rs index 85107a702d..34a6eaa816 100644 --- a/packages/client-rust/src/models/iframe_logout_challenge.rs +++ b/packages/client-rust/src/models/iframe_logout_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/iframe_logout_challenge_response_request.rs b/packages/client-rust/src/models/iframe_logout_challenge_response_request.rs index 9fe40cf751..ad15348def 100644 --- a/packages/client-rust/src/models/iframe_logout_challenge_response_request.rs +++ b/packages/client-rust/src/models/iframe_logout_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/ldap_check_access.rs b/packages/client-rust/src/models/ldap_check_access.rs index 369746361f..2ed67b1162 100644 --- a/packages/client-rust/src/models/ldap_check_access.rs +++ b/packages/client-rust/src/models/ldap_check_access.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/ldap_outpost_config.rs b/packages/client-rust/src/models/ldap_outpost_config.rs index 45918fc83a..71b140f993 100644 --- a/packages/client-rust/src/models/ldap_outpost_config.rs +++ b/packages/client-rust/src/models/ldap_outpost_config.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/ldapapi_access_mode.rs b/packages/client-rust/src/models/ldapapi_access_mode.rs index 2e695d5da6..b9ee3953f0 100644 --- a/packages/client-rust/src/models/ldapapi_access_mode.rs +++ b/packages/client-rust/src/models/ldapapi_access_mode.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/log_event.rs b/packages/client-rust/src/models/log_event.rs index 5314ce6db9..85608bce91 100644 --- a/packages/client-rust/src/models/log_event.rs +++ b/packages/client-rust/src/models/log_event.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/log_level_enum.rs b/packages/client-rust/src/models/log_level_enum.rs index 7af4d69087..bc57590102 100644 --- a/packages/client-rust/src/models/log_level_enum.rs +++ b/packages/client-rust/src/models/log_level_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/login_challenge_types.rs b/packages/client-rust/src/models/login_challenge_types.rs index 28b05b5c5d..75fdd0d5b8 100644 --- a/packages/client-rust/src/models/login_challenge_types.rs +++ b/packages/client-rust/src/models/login_challenge_types.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/login_source.rs b/packages/client-rust/src/models/login_source.rs index fc6b34ce82..95101c7529 100644 --- a/packages/client-rust/src/models/login_source.rs +++ b/packages/client-rust/src/models/login_source.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/logout_url.rs b/packages/client-rust/src/models/logout_url.rs index 760079d49c..c55550a9ee 100644 --- a/packages/client-rust/src/models/logout_url.rs +++ b/packages/client-rust/src/models/logout_url.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/native_logout_challenge.rs b/packages/client-rust/src/models/native_logout_challenge.rs index a17b242b96..696b735f7d 100644 --- a/packages/client-rust/src/models/native_logout_challenge.rs +++ b/packages/client-rust/src/models/native_logout_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/native_logout_challenge_response_request.rs b/packages/client-rust/src/models/native_logout_challenge_response_request.rs index 86e9436c3e..4cd0d81a5d 100644 --- a/packages/client-rust/src/models/native_logout_challenge_response_request.rs +++ b/packages/client-rust/src/models/native_logout_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/o_auth_device_code_challenge.rs b/packages/client-rust/src/models/o_auth_device_code_challenge.rs index fd40504e4e..64e6901b4c 100644 --- a/packages/client-rust/src/models/o_auth_device_code_challenge.rs +++ b/packages/client-rust/src/models/o_auth_device_code_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/o_auth_device_code_challenge_response_request.rs b/packages/client-rust/src/models/o_auth_device_code_challenge_response_request.rs index 0bfa8fa3b2..723683481e 100644 --- a/packages/client-rust/src/models/o_auth_device_code_challenge_response_request.rs +++ b/packages/client-rust/src/models/o_auth_device_code_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/o_auth_device_code_finish_challenge.rs b/packages/client-rust/src/models/o_auth_device_code_finish_challenge.rs index 563bbc97da..2fc0273b7b 100644 --- a/packages/client-rust/src/models/o_auth_device_code_finish_challenge.rs +++ b/packages/client-rust/src/models/o_auth_device_code_finish_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/o_auth_device_code_finish_challenge_response_request.rs b/packages/client-rust/src/models/o_auth_device_code_finish_challenge_response_request.rs index 1521c5ea4c..7b605587cf 100644 --- a/packages/client-rust/src/models/o_auth_device_code_finish_challenge_response_request.rs +++ b/packages/client-rust/src/models/o_auth_device_code_finish_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/open_id_connect_configuration.rs b/packages/client-rust/src/models/open_id_connect_configuration.rs index 9ea2e266f0..45f3c0da84 100644 --- a/packages/client-rust/src/models/open_id_connect_configuration.rs +++ b/packages/client-rust/src/models/open_id_connect_configuration.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/outpost.rs b/packages/client-rust/src/models/outpost.rs index 3a48946245..1137502bff 100644 --- a/packages/client-rust/src/models/outpost.rs +++ b/packages/client-rust/src/models/outpost.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/outpost_type_enum.rs b/packages/client-rust/src/models/outpost_type_enum.rs index e1e59afd92..3b8ead6f32 100644 --- a/packages/client-rust/src/models/outpost_type_enum.rs +++ b/packages/client-rust/src/models/outpost_type_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_brand_list.rs b/packages/client-rust/src/models/paginated_brand_list.rs index abcf81cdb1..129610fc3d 100644 --- a/packages/client-rust/src/models/paginated_brand_list.rs +++ b/packages/client-rust/src/models/paginated_brand_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_group_list.rs b/packages/client-rust/src/models/paginated_group_list.rs index 36987a712a..dbf796fd8d 100644 --- a/packages/client-rust/src/models/paginated_group_list.rs +++ b/packages/client-rust/src/models/paginated_group_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_ldap_outpost_config_list.rs b/packages/client-rust/src/models/paginated_ldap_outpost_config_list.rs index 261c3dc505..b5052b34e5 100644 --- a/packages/client-rust/src/models/paginated_ldap_outpost_config_list.rs +++ b/packages/client-rust/src/models/paginated_ldap_outpost_config_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_outpost_list.rs b/packages/client-rust/src/models/paginated_outpost_list.rs index dae9723ecf..350acec6c3 100644 --- a/packages/client-rust/src/models/paginated_outpost_list.rs +++ b/packages/client-rust/src/models/paginated_outpost_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_proxy_outpost_config_list.rs b/packages/client-rust/src/models/paginated_proxy_outpost_config_list.rs index 18c94887c5..6a187d8578 100644 --- a/packages/client-rust/src/models/paginated_proxy_outpost_config_list.rs +++ b/packages/client-rust/src/models/paginated_proxy_outpost_config_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_radius_outpost_config_list.rs b/packages/client-rust/src/models/paginated_radius_outpost_config_list.rs index 848b6791c8..2c567c4719 100644 --- a/packages/client-rust/src/models/paginated_radius_outpost_config_list.rs +++ b/packages/client-rust/src/models/paginated_radius_outpost_config_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/paginated_user_list.rs b/packages/client-rust/src/models/paginated_user_list.rs index d2323f6734..498030a06b 100644 --- a/packages/client-rust/src/models/paginated_user_list.rs +++ b/packages/client-rust/src/models/paginated_user_list.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/pagination.rs b/packages/client-rust/src/models/pagination.rs index cf9f29f5fb..a5bff65f72 100644 --- a/packages/client-rust/src/models/pagination.rs +++ b/packages/client-rust/src/models/pagination.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/partial_group.rs b/packages/client-rust/src/models/partial_group.rs index d938bdd38e..2e68a83f9c 100644 --- a/packages/client-rust/src/models/partial_group.rs +++ b/packages/client-rust/src/models/partial_group.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/partial_user.rs b/packages/client-rust/src/models/partial_user.rs index bfc7d3b974..6b3b198c73 100644 --- a/packages/client-rust/src/models/partial_user.rs +++ b/packages/client-rust/src/models/partial_user.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/password_challenge.rs b/packages/client-rust/src/models/password_challenge.rs index 6f74674a8a..1796c10005 100644 --- a/packages/client-rust/src/models/password_challenge.rs +++ b/packages/client-rust/src/models/password_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/password_challenge_response_request.rs b/packages/client-rust/src/models/password_challenge_response_request.rs index 811a8b8618..aeb1e9671b 100644 --- a/packages/client-rust/src/models/password_challenge_response_request.rs +++ b/packages/client-rust/src/models/password_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/plex_authentication_challenge.rs b/packages/client-rust/src/models/plex_authentication_challenge.rs index 044e6b886b..03f776ec1f 100644 --- a/packages/client-rust/src/models/plex_authentication_challenge.rs +++ b/packages/client-rust/src/models/plex_authentication_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/plex_authentication_challenge_response_request.rs b/packages/client-rust/src/models/plex_authentication_challenge_response_request.rs index 0f16547300..c72ad57ae1 100644 --- a/packages/client-rust/src/models/plex_authentication_challenge_response_request.rs +++ b/packages/client-rust/src/models/plex_authentication_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/policy_test_result.rs b/packages/client-rust/src/models/policy_test_result.rs index d90478391c..ad5b04fdf9 100644 --- a/packages/client-rust/src/models/policy_test_result.rs +++ b/packages/client-rust/src/models/policy_test_result.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/prompt_challenge.rs b/packages/client-rust/src/models/prompt_challenge.rs index baf4d78714..ac3872be17 100644 --- a/packages/client-rust/src/models/prompt_challenge.rs +++ b/packages/client-rust/src/models/prompt_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/prompt_challenge_response_request.rs b/packages/client-rust/src/models/prompt_challenge_response_request.rs index f9fc0f6862..11feb37a1a 100644 --- a/packages/client-rust/src/models/prompt_challenge_response_request.rs +++ b/packages/client-rust/src/models/prompt_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/prompt_choice.rs b/packages/client-rust/src/models/prompt_choice.rs index c0ff4bb2d6..d0db168d63 100644 --- a/packages/client-rust/src/models/prompt_choice.rs +++ b/packages/client-rust/src/models/prompt_choice.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/prompt_type_enum.rs b/packages/client-rust/src/models/prompt_type_enum.rs index 6f374fecd7..f5e7d464be 100644 --- a/packages/client-rust/src/models/prompt_type_enum.rs +++ b/packages/client-rust/src/models/prompt_type_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/provider.rs b/packages/client-rust/src/models/provider.rs index dd6417b2a5..a49737ad2f 100644 --- a/packages/client-rust/src/models/provider.rs +++ b/packages/client-rust/src/models/provider.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/proxy_mode.rs b/packages/client-rust/src/models/proxy_mode.rs index 012dea4713..f36ac2674d 100644 --- a/packages/client-rust/src/models/proxy_mode.rs +++ b/packages/client-rust/src/models/proxy_mode.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/proxy_outpost_config.rs b/packages/client-rust/src/models/proxy_outpost_config.rs index f12f22ff64..da738c5627 100644 --- a/packages/client-rust/src/models/proxy_outpost_config.rs +++ b/packages/client-rust/src/models/proxy_outpost_config.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/radius_check_access.rs b/packages/client-rust/src/models/radius_check_access.rs index 65eeea2c2e..a62f3875ff 100644 --- a/packages/client-rust/src/models/radius_check_access.rs +++ b/packages/client-rust/src/models/radius_check_access.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/radius_outpost_config.rs b/packages/client-rust/src/models/radius_outpost_config.rs index e1cb5e9b4b..a2d3c672fb 100644 --- a/packages/client-rust/src/models/radius_outpost_config.rs +++ b/packages/client-rust/src/models/radius_outpost_config.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/redirect_challenge.rs b/packages/client-rust/src/models/redirect_challenge.rs index 20bda026f6..c1ecaffd28 100644 --- a/packages/client-rust/src/models/redirect_challenge.rs +++ b/packages/client-rust/src/models/redirect_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/redirect_challenge_response_request.rs b/packages/client-rust/src/models/redirect_challenge_response_request.rs index 0323bc9609..43afd19f7f 100644 --- a/packages/client-rust/src/models/redirect_challenge_response_request.rs +++ b/packages/client-rust/src/models/redirect_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/related_group.rs b/packages/client-rust/src/models/related_group.rs index 3617ee0174..ff675baaa3 100644 --- a/packages/client-rust/src/models/related_group.rs +++ b/packages/client-rust/src/models/related_group.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/role.rs b/packages/client-rust/src/models/role.rs index 5323624fe1..ec38f6193a 100644 --- a/packages/client-rust/src/models/role.rs +++ b/packages/client-rust/src/models/role.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/saml_bindings_enum.rs b/packages/client-rust/src/models/saml_bindings_enum.rs index b76af9495f..a24d4f78e7 100644 --- a/packages/client-rust/src/models/saml_bindings_enum.rs +++ b/packages/client-rust/src/models/saml_bindings_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/selectable_stage.rs b/packages/client-rust/src/models/selectable_stage.rs index acba667b03..61bcadd7d9 100644 --- a/packages/client-rust/src/models/selectable_stage.rs +++ b/packages/client-rust/src/models/selectable_stage.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/service_connection.rs b/packages/client-rust/src/models/service_connection.rs index 6677af9f74..94b10c1f8f 100644 --- a/packages/client-rust/src/models/service_connection.rs +++ b/packages/client-rust/src/models/service_connection.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/session_end_challenge.rs b/packages/client-rust/src/models/session_end_challenge.rs index 439ffe5e6f..440ad40bda 100644 --- a/packages/client-rust/src/models/session_end_challenge.rs +++ b/packages/client-rust/src/models/session_end_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/session_user.rs b/packages/client-rust/src/models/session_user.rs index 6363a4ece5..1d0ae8c506 100644 --- a/packages/client-rust/src/models/session_user.rs +++ b/packages/client-rust/src/models/session_user.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/shell_challenge.rs b/packages/client-rust/src/models/shell_challenge.rs index 487a5ef89b..a4393adb2b 100644 --- a/packages/client-rust/src/models/shell_challenge.rs +++ b/packages/client-rust/src/models/shell_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/stage_prompt.rs b/packages/client-rust/src/models/stage_prompt.rs index 08e90d7214..ecf9cfb5b8 100644 --- a/packages/client-rust/src/models/stage_prompt.rs +++ b/packages/client-rust/src/models/stage_prompt.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/telegram_challenge_response_request.rs b/packages/client-rust/src/models/telegram_challenge_response_request.rs index bae324006d..ffd9f5815a 100644 --- a/packages/client-rust/src/models/telegram_challenge_response_request.rs +++ b/packages/client-rust/src/models/telegram_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/telegram_login_challenge.rs b/packages/client-rust/src/models/telegram_login_challenge.rs index e213f21411..1fd6c0e70b 100644 --- a/packages/client-rust/src/models/telegram_login_challenge.rs +++ b/packages/client-rust/src/models/telegram_login_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/themed_urls.rs b/packages/client-rust/src/models/themed_urls.rs index ee87619f7f..659be1a71b 100644 --- a/packages/client-rust/src/models/themed_urls.rs +++ b/packages/client-rust/src/models/themed_urls.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user.rs b/packages/client-rust/src/models/user.rs index 80d04fbe5e..e5ae795de0 100644 --- a/packages/client-rust/src/models/user.rs +++ b/packages/client-rust/src/models/user.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_login_challenge.rs b/packages/client-rust/src/models/user_login_challenge.rs index 576152536a..644328439d 100644 --- a/packages/client-rust/src/models/user_login_challenge.rs +++ b/packages/client-rust/src/models/user_login_challenge.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_login_challenge_response_request.rs b/packages/client-rust/src/models/user_login_challenge_response_request.rs index dc202635b7..0eede0e68f 100644 --- a/packages/client-rust/src/models/user_login_challenge_response_request.rs +++ b/packages/client-rust/src/models/user_login_challenge_response_request.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_self.rs b/packages/client-rust/src/models/user_self.rs index f05c8eaccf..6b95570462 100644 --- a/packages/client-rust/src/models/user_self.rs +++ b/packages/client-rust/src/models/user_self.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_self_groups.rs b/packages/client-rust/src/models/user_self_groups.rs index d377d2da2f..3111b14fb8 100644 --- a/packages/client-rust/src/models/user_self_groups.rs +++ b/packages/client-rust/src/models/user_self_groups.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_self_roles.rs b/packages/client-rust/src/models/user_self_roles.rs index f0a1d78799..91d6bc7432 100644 --- a/packages/client-rust/src/models/user_self_roles.rs +++ b/packages/client-rust/src/models/user_self_roles.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/user_type_enum.rs b/packages/client-rust/src/models/user_type_enum.rs index 011d8cbea5..6b489e418e 100644 --- a/packages/client-rust/src/models/user_type_enum.rs +++ b/packages/client-rust/src/models/user_type_enum.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-rust/src/models/validation_error.rs b/packages/client-rust/src/models/validation_error.rs index ce0db262b4..aec4f6c8e7 100644 --- a/packages/client-rust/src/models/validation_error.rs +++ b/packages/client-rust/src/models/validation_error.rs @@ -2,7 +2,7 @@ // // Making authentication simple. // -// The version of the OpenAPI document: 2026.5.0-rc1 +// The version of the OpenAPI document: 2026.5.0-rc2 // Contact: hello@goauthentik.io // Generated by: https://openapi-generator.tech diff --git a/packages/client-ts/src/apis/AdminApi.ts b/packages/client-ts/src/apis/AdminApi.ts index 01f51e42e8..b8bb200cb7 100644 --- a/packages/client-ts/src/apis/AdminApi.ts +++ b/packages/client-ts/src/apis/AdminApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/AuthenticatorsApi.ts b/packages/client-ts/src/apis/AuthenticatorsApi.ts index 440c8fb434..80cfa48b50 100644 --- a/packages/client-ts/src/apis/AuthenticatorsApi.ts +++ b/packages/client-ts/src/apis/AuthenticatorsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/CoreApi.ts b/packages/client-ts/src/apis/CoreApi.ts index 77ad492238..ed4137d424 100644 --- a/packages/client-ts/src/apis/CoreApi.ts +++ b/packages/client-ts/src/apis/CoreApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/CryptoApi.ts b/packages/client-ts/src/apis/CryptoApi.ts index d7220bff62..2e58d21d34 100644 --- a/packages/client-ts/src/apis/CryptoApi.ts +++ b/packages/client-ts/src/apis/CryptoApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/EndpointsApi.ts b/packages/client-ts/src/apis/EndpointsApi.ts index 1e17887fc2..655b41b563 100644 --- a/packages/client-ts/src/apis/EndpointsApi.ts +++ b/packages/client-ts/src/apis/EndpointsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/EnterpriseApi.ts b/packages/client-ts/src/apis/EnterpriseApi.ts index afa10d550d..4a6eaff534 100644 --- a/packages/client-ts/src/apis/EnterpriseApi.ts +++ b/packages/client-ts/src/apis/EnterpriseApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/EventsApi.ts b/packages/client-ts/src/apis/EventsApi.ts index c4e9c89884..5d49f82826 100644 --- a/packages/client-ts/src/apis/EventsApi.ts +++ b/packages/client-ts/src/apis/EventsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/FlowsApi.ts b/packages/client-ts/src/apis/FlowsApi.ts index c11a3ef769..2d88f86769 100644 --- a/packages/client-ts/src/apis/FlowsApi.ts +++ b/packages/client-ts/src/apis/FlowsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/LifecycleApi.ts b/packages/client-ts/src/apis/LifecycleApi.ts index 4df1753e39..ad935dd7c5 100644 --- a/packages/client-ts/src/apis/LifecycleApi.ts +++ b/packages/client-ts/src/apis/LifecycleApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/ManagedApi.ts b/packages/client-ts/src/apis/ManagedApi.ts index 7161ffd8ea..ff6d3467f2 100644 --- a/packages/client-ts/src/apis/ManagedApi.ts +++ b/packages/client-ts/src/apis/ManagedApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/Oauth2Api.ts b/packages/client-ts/src/apis/Oauth2Api.ts index 06061b4170..03b8c7b4e3 100644 --- a/packages/client-ts/src/apis/Oauth2Api.ts +++ b/packages/client-ts/src/apis/Oauth2Api.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/OutpostsApi.ts b/packages/client-ts/src/apis/OutpostsApi.ts index 3960568a30..a585bba708 100644 --- a/packages/client-ts/src/apis/OutpostsApi.ts +++ b/packages/client-ts/src/apis/OutpostsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/PoliciesApi.ts b/packages/client-ts/src/apis/PoliciesApi.ts index 0c68c1d7a3..c9e8bc71b4 100644 --- a/packages/client-ts/src/apis/PoliciesApi.ts +++ b/packages/client-ts/src/apis/PoliciesApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/PropertymappingsApi.ts b/packages/client-ts/src/apis/PropertymappingsApi.ts index 75c1f3e8ee..df83647a02 100644 --- a/packages/client-ts/src/apis/PropertymappingsApi.ts +++ b/packages/client-ts/src/apis/PropertymappingsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/ProvidersApi.ts b/packages/client-ts/src/apis/ProvidersApi.ts index 93dc44647e..0f4d8714d6 100644 --- a/packages/client-ts/src/apis/ProvidersApi.ts +++ b/packages/client-ts/src/apis/ProvidersApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/RacApi.ts b/packages/client-ts/src/apis/RacApi.ts index 25aa069a2e..5cc8c47e81 100644 --- a/packages/client-ts/src/apis/RacApi.ts +++ b/packages/client-ts/src/apis/RacApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/RbacApi.ts b/packages/client-ts/src/apis/RbacApi.ts index 267048210e..41fe2edcec 100644 --- a/packages/client-ts/src/apis/RbacApi.ts +++ b/packages/client-ts/src/apis/RbacApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/ReportsApi.ts b/packages/client-ts/src/apis/ReportsApi.ts index 9d85c14b56..6aa6da983c 100644 --- a/packages/client-ts/src/apis/ReportsApi.ts +++ b/packages/client-ts/src/apis/ReportsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/RootApi.ts b/packages/client-ts/src/apis/RootApi.ts index f1c8530bf6..7934da6b59 100644 --- a/packages/client-ts/src/apis/RootApi.ts +++ b/packages/client-ts/src/apis/RootApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/SchemaApi.ts b/packages/client-ts/src/apis/SchemaApi.ts index ce2b97c620..c0ddbd6157 100644 --- a/packages/client-ts/src/apis/SchemaApi.ts +++ b/packages/client-ts/src/apis/SchemaApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/SourcesApi.ts b/packages/client-ts/src/apis/SourcesApi.ts index e1b38756ee..8156eb2570 100644 --- a/packages/client-ts/src/apis/SourcesApi.ts +++ b/packages/client-ts/src/apis/SourcesApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/SsfApi.ts b/packages/client-ts/src/apis/SsfApi.ts index b3532eab04..f0fba3c731 100644 --- a/packages/client-ts/src/apis/SsfApi.ts +++ b/packages/client-ts/src/apis/SsfApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/StagesApi.ts b/packages/client-ts/src/apis/StagesApi.ts index 35a5ca1210..102f9b969e 100644 --- a/packages/client-ts/src/apis/StagesApi.ts +++ b/packages/client-ts/src/apis/StagesApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/TasksApi.ts b/packages/client-ts/src/apis/TasksApi.ts index c57772a5a8..cbcc95b414 100644 --- a/packages/client-ts/src/apis/TasksApi.ts +++ b/packages/client-ts/src/apis/TasksApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/apis/TenantsApi.ts b/packages/client-ts/src/apis/TenantsApi.ts index 8eebff966a..3dabb8dd49 100644 --- a/packages/client-ts/src/apis/TenantsApi.ts +++ b/packages/client-ts/src/apis/TenantsApi.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AccessDeniedChallenge.ts b/packages/client-ts/src/models/AccessDeniedChallenge.ts index 765b3e51ad..1797e14a86 100644 --- a/packages/client-ts/src/models/AccessDeniedChallenge.ts +++ b/packages/client-ts/src/models/AccessDeniedChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AccountLockdownStage.ts b/packages/client-ts/src/models/AccountLockdownStage.ts index 39415c3065..2ba70a6017 100644 --- a/packages/client-ts/src/models/AccountLockdownStage.ts +++ b/packages/client-ts/src/models/AccountLockdownStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AccountLockdownStageRequest.ts b/packages/client-ts/src/models/AccountLockdownStageRequest.ts index e33b995f7f..e3f2fefb26 100644 --- a/packages/client-ts/src/models/AccountLockdownStageRequest.ts +++ b/packages/client-ts/src/models/AccountLockdownStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentAuthenticationResponse.ts b/packages/client-ts/src/models/AgentAuthenticationResponse.ts index 9a01de9d24..f2f91b921b 100644 --- a/packages/client-ts/src/models/AgentAuthenticationResponse.ts +++ b/packages/client-ts/src/models/AgentAuthenticationResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentConfig.ts b/packages/client-ts/src/models/AgentConfig.ts index 81b8a2e18e..2d446226fe 100644 --- a/packages/client-ts/src/models/AgentConfig.ts +++ b/packages/client-ts/src/models/AgentConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentConnector.ts b/packages/client-ts/src/models/AgentConnector.ts index e0dd4c0311..9de03a1adf 100644 --- a/packages/client-ts/src/models/AgentConnector.ts +++ b/packages/client-ts/src/models/AgentConnector.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentConnectorRequest.ts b/packages/client-ts/src/models/AgentConnectorRequest.ts index 8862de6972..e9a96bd41d 100644 --- a/packages/client-ts/src/models/AgentConnectorRequest.ts +++ b/packages/client-ts/src/models/AgentConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentPSSODeviceRegistrationRequest.ts b/packages/client-ts/src/models/AgentPSSODeviceRegistrationRequest.ts index 4ccbd39e65..c1ea42db96 100644 --- a/packages/client-ts/src/models/AgentPSSODeviceRegistrationRequest.ts +++ b/packages/client-ts/src/models/AgentPSSODeviceRegistrationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentPSSODeviceRegistrationResponse.ts b/packages/client-ts/src/models/AgentPSSODeviceRegistrationResponse.ts index 2747aa6c57..b89d5418d5 100644 --- a/packages/client-ts/src/models/AgentPSSODeviceRegistrationResponse.ts +++ b/packages/client-ts/src/models/AgentPSSODeviceRegistrationResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentPSSOUserRegistrationRequest.ts b/packages/client-ts/src/models/AgentPSSOUserRegistrationRequest.ts index c6d2cdcde1..41b83cf07a 100644 --- a/packages/client-ts/src/models/AgentPSSOUserRegistrationRequest.ts +++ b/packages/client-ts/src/models/AgentPSSOUserRegistrationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AgentTokenResponse.ts b/packages/client-ts/src/models/AgentTokenResponse.ts index 7cc58b7544..def70e1684 100644 --- a/packages/client-ts/src/models/AgentTokenResponse.ts +++ b/packages/client-ts/src/models/AgentTokenResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AlgEnum.ts b/packages/client-ts/src/models/AlgEnum.ts index e2136fa6d5..2f38b2493d 100644 --- a/packages/client-ts/src/models/AlgEnum.ts +++ b/packages/client-ts/src/models/AlgEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/App.ts b/packages/client-ts/src/models/App.ts index fd02c44714..96031bdf76 100644 --- a/packages/client-ts/src/models/App.ts +++ b/packages/client-ts/src/models/App.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AppEnum.ts b/packages/client-ts/src/models/AppEnum.ts index 5923798e8c..bf65cb3f0a 100644 --- a/packages/client-ts/src/models/AppEnum.ts +++ b/packages/client-ts/src/models/AppEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AppleChallengeResponseRequest.ts b/packages/client-ts/src/models/AppleChallengeResponseRequest.ts index 55bbcfef4d..90dfa36f86 100644 --- a/packages/client-ts/src/models/AppleChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AppleChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AppleIndependentSecureEnclave.ts b/packages/client-ts/src/models/AppleIndependentSecureEnclave.ts index d661b16663..bd410bfbd6 100644 --- a/packages/client-ts/src/models/AppleIndependentSecureEnclave.ts +++ b/packages/client-ts/src/models/AppleIndependentSecureEnclave.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AppleIndependentSecureEnclaveRequest.ts b/packages/client-ts/src/models/AppleIndependentSecureEnclaveRequest.ts index a37808e2b0..891f893523 100644 --- a/packages/client-ts/src/models/AppleIndependentSecureEnclaveRequest.ts +++ b/packages/client-ts/src/models/AppleIndependentSecureEnclaveRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AppleLoginChallenge.ts b/packages/client-ts/src/models/AppleLoginChallenge.ts index 719a0b094b..2186157dfc 100644 --- a/packages/client-ts/src/models/AppleLoginChallenge.ts +++ b/packages/client-ts/src/models/AppleLoginChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Application.ts b/packages/client-ts/src/models/Application.ts index d6b5805ba2..c4c6bbdf4b 100644 --- a/packages/client-ts/src/models/Application.ts +++ b/packages/client-ts/src/models/Application.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ApplicationEntitlement.ts b/packages/client-ts/src/models/ApplicationEntitlement.ts index 3284e28033..9ce73b76bb 100644 --- a/packages/client-ts/src/models/ApplicationEntitlement.ts +++ b/packages/client-ts/src/models/ApplicationEntitlement.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ApplicationEntitlementRequest.ts b/packages/client-ts/src/models/ApplicationEntitlementRequest.ts index 34e0317046..f388ed7f16 100644 --- a/packages/client-ts/src/models/ApplicationEntitlementRequest.ts +++ b/packages/client-ts/src/models/ApplicationEntitlementRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ApplicationRequest.ts b/packages/client-ts/src/models/ApplicationRequest.ts index a82b9ec32e..f1604dea10 100644 --- a/packages/client-ts/src/models/ApplicationRequest.ts +++ b/packages/client-ts/src/models/ApplicationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthTypeEnum.ts b/packages/client-ts/src/models/AuthTypeEnum.ts index 1c35a0eb5c..953d291652 100644 --- a/packages/client-ts/src/models/AuthTypeEnum.ts +++ b/packages/client-ts/src/models/AuthTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSession.ts b/packages/client-ts/src/models/AuthenticatedSession.ts index dcb64bbba6..0b96ebf2a6 100644 --- a/packages/client-ts/src/models/AuthenticatedSession.ts +++ b/packages/client-ts/src/models/AuthenticatedSession.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionAsn.ts b/packages/client-ts/src/models/AuthenticatedSessionAsn.ts index 700cd152af..f9d011d320 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionAsn.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionAsn.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionGeoIp.ts b/packages/client-ts/src/models/AuthenticatedSessionGeoIp.ts index 83a0d5cfe8..beb6c24837 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionGeoIp.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionGeoIp.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionUserAgent.ts b/packages/client-ts/src/models/AuthenticatedSessionUserAgent.ts index ebefbd8ce5..ab6107cfe4 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionUserAgent.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionUserAgent.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionUserAgentDevice.ts b/packages/client-ts/src/models/AuthenticatedSessionUserAgentDevice.ts index 4e158545ce..ac8ae6006a 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionUserAgentDevice.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionUserAgentDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionUserAgentOs.ts b/packages/client-ts/src/models/AuthenticatedSessionUserAgentOs.ts index 59f9e5e49f..2e8976f48c 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionUserAgentOs.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionUserAgentOs.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatedSessionUserAgentUserAgent.ts b/packages/client-ts/src/models/AuthenticatedSessionUserAgentUserAgent.ts index 3ddaadbe8c..ac361ef0d4 100644 --- a/packages/client-ts/src/models/AuthenticatedSessionUserAgentUserAgent.ts +++ b/packages/client-ts/src/models/AuthenticatedSessionUserAgentUserAgent.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticationEnum.ts b/packages/client-ts/src/models/AuthenticationEnum.ts index fba12d4fcd..d2b797d8d5 100644 --- a/packages/client-ts/src/models/AuthenticationEnum.ts +++ b/packages/client-ts/src/models/AuthenticationEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorAttachmentEnum.ts b/packages/client-ts/src/models/AuthenticatorAttachmentEnum.ts index 63f982362f..27f17c5ae5 100644 --- a/packages/client-ts/src/models/AuthenticatorAttachmentEnum.ts +++ b/packages/client-ts/src/models/AuthenticatorAttachmentEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoChallenge.ts b/packages/client-ts/src/models/AuthenticatorDuoChallenge.ts index 9865bb60ff..d0211b3756 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorDuoChallengeResponseRequest.ts index 9f94632ea0..141d0a7922 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoStage.ts b/packages/client-ts/src/models/AuthenticatorDuoStage.ts index f4e8cc74b1..dda96e0709 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoStage.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoStageDeviceImportResponse.ts b/packages/client-ts/src/models/AuthenticatorDuoStageDeviceImportResponse.ts index e6462e1c73..2a06455cd6 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoStageDeviceImportResponse.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoStageDeviceImportResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoStageManualDeviceImportRequest.ts b/packages/client-ts/src/models/AuthenticatorDuoStageManualDeviceImportRequest.ts index 5e6e24fda1..d781436957 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoStageManualDeviceImportRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoStageManualDeviceImportRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorDuoStageRequest.ts b/packages/client-ts/src/models/AuthenticatorDuoStageRequest.ts index 61f574d9f5..44c0cf8497 100644 --- a/packages/client-ts/src/models/AuthenticatorDuoStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorDuoStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEmailChallenge.ts b/packages/client-ts/src/models/AuthenticatorEmailChallenge.ts index 9baf18063f..eaf24df9e7 100644 --- a/packages/client-ts/src/models/AuthenticatorEmailChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorEmailChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEmailChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorEmailChallengeResponseRequest.ts index 398d0d2c39..7d56cf33b6 100644 --- a/packages/client-ts/src/models/AuthenticatorEmailChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorEmailChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEmailStage.ts b/packages/client-ts/src/models/AuthenticatorEmailStage.ts index d845773760..a9579e9898 100644 --- a/packages/client-ts/src/models/AuthenticatorEmailStage.ts +++ b/packages/client-ts/src/models/AuthenticatorEmailStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEmailStageRequest.ts b/packages/client-ts/src/models/AuthenticatorEmailStageRequest.ts index 52dc0e223c..e608ab20e2 100644 --- a/packages/client-ts/src/models/AuthenticatorEmailStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorEmailStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEndpointGDTCStage.ts b/packages/client-ts/src/models/AuthenticatorEndpointGDTCStage.ts index b46239d62c..93138ca380 100644 --- a/packages/client-ts/src/models/AuthenticatorEndpointGDTCStage.ts +++ b/packages/client-ts/src/models/AuthenticatorEndpointGDTCStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorEndpointGDTCStageRequest.ts b/packages/client-ts/src/models/AuthenticatorEndpointGDTCStageRequest.ts index 930e118ac6..c968058500 100644 --- a/packages/client-ts/src/models/AuthenticatorEndpointGDTCStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorEndpointGDTCStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorSMSChallenge.ts b/packages/client-ts/src/models/AuthenticatorSMSChallenge.ts index f72d017a7f..b7e5020a32 100644 --- a/packages/client-ts/src/models/AuthenticatorSMSChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorSMSChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorSMSChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorSMSChallengeResponseRequest.ts index 58898fb146..f5e7303edb 100644 --- a/packages/client-ts/src/models/AuthenticatorSMSChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorSMSChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorSMSStage.ts b/packages/client-ts/src/models/AuthenticatorSMSStage.ts index fa7a3d30d6..d73945c8b1 100644 --- a/packages/client-ts/src/models/AuthenticatorSMSStage.ts +++ b/packages/client-ts/src/models/AuthenticatorSMSStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorSMSStageRequest.ts b/packages/client-ts/src/models/AuthenticatorSMSStageRequest.ts index 8fecf5516a..0ba5f21c93 100644 --- a/packages/client-ts/src/models/AuthenticatorSMSStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorSMSStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorStaticChallenge.ts b/packages/client-ts/src/models/AuthenticatorStaticChallenge.ts index dd75d33b95..c57612966b 100644 --- a/packages/client-ts/src/models/AuthenticatorStaticChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorStaticChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorStaticChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorStaticChallengeResponseRequest.ts index 1519b7a724..10e6ea4659 100644 --- a/packages/client-ts/src/models/AuthenticatorStaticChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorStaticChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorStaticStage.ts b/packages/client-ts/src/models/AuthenticatorStaticStage.ts index 202dfa25c7..8ef7bce3e9 100644 --- a/packages/client-ts/src/models/AuthenticatorStaticStage.ts +++ b/packages/client-ts/src/models/AuthenticatorStaticStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorStaticStageRequest.ts b/packages/client-ts/src/models/AuthenticatorStaticStageRequest.ts index 79b79383f4..09a13de635 100644 --- a/packages/client-ts/src/models/AuthenticatorStaticStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorStaticStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorTOTPChallenge.ts b/packages/client-ts/src/models/AuthenticatorTOTPChallenge.ts index dbb12c3312..b5b40b23f1 100644 --- a/packages/client-ts/src/models/AuthenticatorTOTPChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorTOTPChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorTOTPChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorTOTPChallengeResponseRequest.ts index 5b5f8dc38e..6b4187991d 100644 --- a/packages/client-ts/src/models/AuthenticatorTOTPChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorTOTPChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorTOTPStage.ts b/packages/client-ts/src/models/AuthenticatorTOTPStage.ts index e1f39f01c2..95477f48a5 100644 --- a/packages/client-ts/src/models/AuthenticatorTOTPStage.ts +++ b/packages/client-ts/src/models/AuthenticatorTOTPStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorTOTPStageRequest.ts b/packages/client-ts/src/models/AuthenticatorTOTPStageRequest.ts index f87b2bf9e6..5cdfd799ea 100644 --- a/packages/client-ts/src/models/AuthenticatorTOTPStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorTOTPStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorValidateStage.ts b/packages/client-ts/src/models/AuthenticatorValidateStage.ts index 4f77aa5278..35960c6e76 100644 --- a/packages/client-ts/src/models/AuthenticatorValidateStage.ts +++ b/packages/client-ts/src/models/AuthenticatorValidateStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorValidateStageRequest.ts b/packages/client-ts/src/models/AuthenticatorValidateStageRequest.ts index a5a3104319..d5fd4f8ad7 100644 --- a/packages/client-ts/src/models/AuthenticatorValidateStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorValidateStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorValidationChallenge.ts b/packages/client-ts/src/models/AuthenticatorValidationChallenge.ts index c98572a205..ba9f8bc53b 100644 --- a/packages/client-ts/src/models/AuthenticatorValidationChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorValidationChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorValidationChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorValidationChallengeResponseRequest.ts index efb4699ea8..236ec4fb18 100644 --- a/packages/client-ts/src/models/AuthenticatorValidationChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorValidationChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorWebAuthnChallenge.ts b/packages/client-ts/src/models/AuthenticatorWebAuthnChallenge.ts index da2bf1adda..661cf12f9b 100644 --- a/packages/client-ts/src/models/AuthenticatorWebAuthnChallenge.ts +++ b/packages/client-ts/src/models/AuthenticatorWebAuthnChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorWebAuthnChallengeResponseRequest.ts b/packages/client-ts/src/models/AuthenticatorWebAuthnChallengeResponseRequest.ts index c365b47a36..b4bf50b369 100644 --- a/packages/client-ts/src/models/AuthenticatorWebAuthnChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorWebAuthnChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorWebAuthnStage.ts b/packages/client-ts/src/models/AuthenticatorWebAuthnStage.ts index dec50330da..59b3a8f8a2 100644 --- a/packages/client-ts/src/models/AuthenticatorWebAuthnStage.ts +++ b/packages/client-ts/src/models/AuthenticatorWebAuthnStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthenticatorWebAuthnStageRequest.ts b/packages/client-ts/src/models/AuthenticatorWebAuthnStageRequest.ts index 089944372f..dfd34e9530 100644 --- a/packages/client-ts/src/models/AuthenticatorWebAuthnStageRequest.ts +++ b/packages/client-ts/src/models/AuthenticatorWebAuthnStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AuthorizationCodeAuthMethodEnum.ts b/packages/client-ts/src/models/AuthorizationCodeAuthMethodEnum.ts index 0a76706146..76f171e283 100644 --- a/packages/client-ts/src/models/AuthorizationCodeAuthMethodEnum.ts +++ b/packages/client-ts/src/models/AuthorizationCodeAuthMethodEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AutoSubmitChallengeResponseRequest.ts b/packages/client-ts/src/models/AutoSubmitChallengeResponseRequest.ts index 0e40897a90..faa6e1b5ff 100644 --- a/packages/client-ts/src/models/AutoSubmitChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/AutoSubmitChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/AutosubmitChallenge.ts b/packages/client-ts/src/models/AutosubmitChallenge.ts index 2c0a551a3d..921d7f71ed 100644 --- a/packages/client-ts/src/models/AutosubmitChallenge.ts +++ b/packages/client-ts/src/models/AutosubmitChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BackendsEnum.ts b/packages/client-ts/src/models/BackendsEnum.ts index 8fee349892..4018b393b6 100644 --- a/packages/client-ts/src/models/BackendsEnum.ts +++ b/packages/client-ts/src/models/BackendsEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BindingTypeEnum.ts b/packages/client-ts/src/models/BindingTypeEnum.ts index 4793e97c0d..eadddf3057 100644 --- a/packages/client-ts/src/models/BindingTypeEnum.ts +++ b/packages/client-ts/src/models/BindingTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BlueprintFile.ts b/packages/client-ts/src/models/BlueprintFile.ts index 10bcf6a6d3..ddd0fd5fd1 100644 --- a/packages/client-ts/src/models/BlueprintFile.ts +++ b/packages/client-ts/src/models/BlueprintFile.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BlueprintImportResult.ts b/packages/client-ts/src/models/BlueprintImportResult.ts index 775a32fef6..74641e97de 100644 --- a/packages/client-ts/src/models/BlueprintImportResult.ts +++ b/packages/client-ts/src/models/BlueprintImportResult.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BlueprintInstance.ts b/packages/client-ts/src/models/BlueprintInstance.ts index 99d3bc23b3..3d9eaf60d6 100644 --- a/packages/client-ts/src/models/BlueprintInstance.ts +++ b/packages/client-ts/src/models/BlueprintInstance.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BlueprintInstanceRequest.ts b/packages/client-ts/src/models/BlueprintInstanceRequest.ts index 24d2a6fe29..35bed4a4df 100644 --- a/packages/client-ts/src/models/BlueprintInstanceRequest.ts +++ b/packages/client-ts/src/models/BlueprintInstanceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BlueprintInstanceStatusEnum.ts b/packages/client-ts/src/models/BlueprintInstanceStatusEnum.ts index 30bbb42e83..7dbfe4683d 100644 --- a/packages/client-ts/src/models/BlueprintInstanceStatusEnum.ts +++ b/packages/client-ts/src/models/BlueprintInstanceStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Brand.ts b/packages/client-ts/src/models/Brand.ts index b584a226e7..d41317f5aa 100644 --- a/packages/client-ts/src/models/Brand.ts +++ b/packages/client-ts/src/models/Brand.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BrandRequest.ts b/packages/client-ts/src/models/BrandRequest.ts index 39e03df1f5..522a2c73d1 100644 --- a/packages/client-ts/src/models/BrandRequest.ts +++ b/packages/client-ts/src/models/BrandRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/BulkDeleteSessionResponse.ts b/packages/client-ts/src/models/BulkDeleteSessionResponse.ts index f20e9656ac..da70c9e809 100644 --- a/packages/client-ts/src/models/BulkDeleteSessionResponse.ts +++ b/packages/client-ts/src/models/BulkDeleteSessionResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Cache.ts b/packages/client-ts/src/models/Cache.ts index 8bf8b48e6c..09cd173585 100644 --- a/packages/client-ts/src/models/Cache.ts +++ b/packages/client-ts/src/models/Cache.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CapabilitiesEnum.ts b/packages/client-ts/src/models/CapabilitiesEnum.ts index 1349a990e8..a612229936 100644 --- a/packages/client-ts/src/models/CapabilitiesEnum.ts +++ b/packages/client-ts/src/models/CapabilitiesEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CaptchaChallenge.ts b/packages/client-ts/src/models/CaptchaChallenge.ts index f466194d03..94504ed5bd 100644 --- a/packages/client-ts/src/models/CaptchaChallenge.ts +++ b/packages/client-ts/src/models/CaptchaChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CaptchaChallengeResponseRequest.ts b/packages/client-ts/src/models/CaptchaChallengeResponseRequest.ts index 2b887755b9..c323c9354b 100644 --- a/packages/client-ts/src/models/CaptchaChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/CaptchaChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CaptchaStage.ts b/packages/client-ts/src/models/CaptchaStage.ts index 156afe3634..bf4c67c112 100644 --- a/packages/client-ts/src/models/CaptchaStage.ts +++ b/packages/client-ts/src/models/CaptchaStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CaptchaStageRequest.ts b/packages/client-ts/src/models/CaptchaStageRequest.ts index 3ab49a4fd0..69918acfa4 100644 --- a/packages/client-ts/src/models/CaptchaStageRequest.ts +++ b/packages/client-ts/src/models/CaptchaStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertAttributeEnum.ts b/packages/client-ts/src/models/CertAttributeEnum.ts index 18bb2c8391..3353a24b76 100644 --- a/packages/client-ts/src/models/CertAttributeEnum.ts +++ b/packages/client-ts/src/models/CertAttributeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertificateData.ts b/packages/client-ts/src/models/CertificateData.ts index 2d541c9a9e..a205b1b807 100644 --- a/packages/client-ts/src/models/CertificateData.ts +++ b/packages/client-ts/src/models/CertificateData.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertificateGenerationRequest.ts b/packages/client-ts/src/models/CertificateGenerationRequest.ts index 0a0d10933a..0a74ff81fa 100644 --- a/packages/client-ts/src/models/CertificateGenerationRequest.ts +++ b/packages/client-ts/src/models/CertificateGenerationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertificateKeyPair.ts b/packages/client-ts/src/models/CertificateKeyPair.ts index 54186cd54a..791426e2ba 100644 --- a/packages/client-ts/src/models/CertificateKeyPair.ts +++ b/packages/client-ts/src/models/CertificateKeyPair.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertificateKeyPairKeyTypeEnum.ts b/packages/client-ts/src/models/CertificateKeyPairKeyTypeEnum.ts index 9f356fa051..ada428d245 100644 --- a/packages/client-ts/src/models/CertificateKeyPairKeyTypeEnum.ts +++ b/packages/client-ts/src/models/CertificateKeyPairKeyTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CertificateKeyPairRequest.ts b/packages/client-ts/src/models/CertificateKeyPairRequest.ts index b99f9f3b5b..f97a095a3b 100644 --- a/packages/client-ts/src/models/CertificateKeyPairRequest.ts +++ b/packages/client-ts/src/models/CertificateKeyPairRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ChallengeTypes.ts b/packages/client-ts/src/models/ChallengeTypes.ts index 97e87f59c6..8cde97070d 100644 --- a/packages/client-ts/src/models/ChallengeTypes.ts +++ b/packages/client-ts/src/models/ChallengeTypes.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ClientTypeEnum.ts b/packages/client-ts/src/models/ClientTypeEnum.ts index bb6a559854..901228b052 100644 --- a/packages/client-ts/src/models/ClientTypeEnum.ts +++ b/packages/client-ts/src/models/ClientTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CompatibilityModeEnum.ts b/packages/client-ts/src/models/CompatibilityModeEnum.ts index 2ca27e942e..81c6a78349 100644 --- a/packages/client-ts/src/models/CompatibilityModeEnum.ts +++ b/packages/client-ts/src/models/CompatibilityModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Config.ts b/packages/client-ts/src/models/Config.ts index fa8a3b0040..c7502a1be3 100644 --- a/packages/client-ts/src/models/Config.ts +++ b/packages/client-ts/src/models/Config.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConnectionToken.ts b/packages/client-ts/src/models/ConnectionToken.ts index 1c8737ac53..79ccf126fc 100644 --- a/packages/client-ts/src/models/ConnectionToken.ts +++ b/packages/client-ts/src/models/ConnectionToken.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConnectionTokenRequest.ts b/packages/client-ts/src/models/ConnectionTokenRequest.ts index 17f72e0f54..0f3bc802f7 100644 --- a/packages/client-ts/src/models/ConnectionTokenRequest.ts +++ b/packages/client-ts/src/models/ConnectionTokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Connector.ts b/packages/client-ts/src/models/Connector.ts index ce5ff2495c..edf6e06130 100644 --- a/packages/client-ts/src/models/Connector.ts +++ b/packages/client-ts/src/models/Connector.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentChallenge.ts b/packages/client-ts/src/models/ConsentChallenge.ts index 0dae973916..39fe611562 100644 --- a/packages/client-ts/src/models/ConsentChallenge.ts +++ b/packages/client-ts/src/models/ConsentChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentChallengeResponseRequest.ts b/packages/client-ts/src/models/ConsentChallengeResponseRequest.ts index 22539f4eb1..ad407a535c 100644 --- a/packages/client-ts/src/models/ConsentChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/ConsentChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentModeEnum.ts b/packages/client-ts/src/models/ConsentModeEnum.ts index ab3949962a..b68615bb3b 100644 --- a/packages/client-ts/src/models/ConsentModeEnum.ts +++ b/packages/client-ts/src/models/ConsentModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentPermission.ts b/packages/client-ts/src/models/ConsentPermission.ts index 018b7d4a65..1b6eba6805 100644 --- a/packages/client-ts/src/models/ConsentPermission.ts +++ b/packages/client-ts/src/models/ConsentPermission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentStage.ts b/packages/client-ts/src/models/ConsentStage.ts index 0ab8fa7f27..54c2d26e56 100644 --- a/packages/client-ts/src/models/ConsentStage.ts +++ b/packages/client-ts/src/models/ConsentStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ConsentStageRequest.ts b/packages/client-ts/src/models/ConsentStageRequest.ts index f3b105044f..714c6e2f48 100644 --- a/packages/client-ts/src/models/ConsentStageRequest.ts +++ b/packages/client-ts/src/models/ConsentStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ContentType.ts b/packages/client-ts/src/models/ContentType.ts index 27e38f3e70..cc0a1325c8 100644 --- a/packages/client-ts/src/models/ContentType.ts +++ b/packages/client-ts/src/models/ContentType.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ContentTypeEnum.ts b/packages/client-ts/src/models/ContentTypeEnum.ts index 0f5c3302f8..2cd0527af1 100644 --- a/packages/client-ts/src/models/ContentTypeEnum.ts +++ b/packages/client-ts/src/models/ContentTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ContextualFlowInfo.ts b/packages/client-ts/src/models/ContextualFlowInfo.ts index ea53af2580..db9ff684eb 100644 --- a/packages/client-ts/src/models/ContextualFlowInfo.ts +++ b/packages/client-ts/src/models/ContextualFlowInfo.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ContextualFlowInfoLayoutEnum.ts b/packages/client-ts/src/models/ContextualFlowInfoLayoutEnum.ts index c2da466d22..cb1041616a 100644 --- a/packages/client-ts/src/models/ContextualFlowInfoLayoutEnum.ts +++ b/packages/client-ts/src/models/ContextualFlowInfoLayoutEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CountryCodeEnum.ts b/packages/client-ts/src/models/CountryCodeEnum.ts index 724a74b50a..62599f9904 100644 --- a/packages/client-ts/src/models/CountryCodeEnum.ts +++ b/packages/client-ts/src/models/CountryCodeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CurrentBrand.ts b/packages/client-ts/src/models/CurrentBrand.ts index 24d9b81042..fb9ec04ee7 100644 --- a/packages/client-ts/src/models/CurrentBrand.ts +++ b/packages/client-ts/src/models/CurrentBrand.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/CurrentBrandFlags.ts b/packages/client-ts/src/models/CurrentBrandFlags.ts index d7eb510d38..5fcbc31e76 100644 --- a/packages/client-ts/src/models/CurrentBrandFlags.ts +++ b/packages/client-ts/src/models/CurrentBrandFlags.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DataExport.ts b/packages/client-ts/src/models/DataExport.ts index 2c8ce2e5ef..5daa177ee1 100644 --- a/packages/client-ts/src/models/DataExport.ts +++ b/packages/client-ts/src/models/DataExport.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeliveryMethodEnum.ts b/packages/client-ts/src/models/DeliveryMethodEnum.ts index 2a76cac1f8..5145c1f719 100644 --- a/packages/client-ts/src/models/DeliveryMethodEnum.ts +++ b/packages/client-ts/src/models/DeliveryMethodEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeniedActionEnum.ts b/packages/client-ts/src/models/DeniedActionEnum.ts index 0bee96e686..ad5506a111 100644 --- a/packages/client-ts/src/models/DeniedActionEnum.ts +++ b/packages/client-ts/src/models/DeniedActionEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DenyStage.ts b/packages/client-ts/src/models/DenyStage.ts index 2de425e711..d4661c56fc 100644 --- a/packages/client-ts/src/models/DenyStage.ts +++ b/packages/client-ts/src/models/DenyStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DenyStageRequest.ts b/packages/client-ts/src/models/DenyStageRequest.ts index 514733e8e4..e3fa61344e 100644 --- a/packages/client-ts/src/models/DenyStageRequest.ts +++ b/packages/client-ts/src/models/DenyStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DetailedCountry.ts b/packages/client-ts/src/models/DetailedCountry.ts index 670eb36b8a..be9cf88780 100644 --- a/packages/client-ts/src/models/DetailedCountry.ts +++ b/packages/client-ts/src/models/DetailedCountry.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Device.ts b/packages/client-ts/src/models/Device.ts index 71904b6802..00bbbd86ab 100644 --- a/packages/client-ts/src/models/Device.ts +++ b/packages/client-ts/src/models/Device.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceAccessGroup.ts b/packages/client-ts/src/models/DeviceAccessGroup.ts index 62b597a151..c1d2b5fb5d 100644 --- a/packages/client-ts/src/models/DeviceAccessGroup.ts +++ b/packages/client-ts/src/models/DeviceAccessGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceAccessGroupRequest.ts b/packages/client-ts/src/models/DeviceAccessGroupRequest.ts index dbff420bed..73b58b1162 100644 --- a/packages/client-ts/src/models/DeviceAccessGroupRequest.ts +++ b/packages/client-ts/src/models/DeviceAccessGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceChallenge.ts b/packages/client-ts/src/models/DeviceChallenge.ts index 1cd801e0c2..f3b5f2bb0e 100644 --- a/packages/client-ts/src/models/DeviceChallenge.ts +++ b/packages/client-ts/src/models/DeviceChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceChallengeRequest.ts b/packages/client-ts/src/models/DeviceChallengeRequest.ts index 34a362c3ef..06dceadb20 100644 --- a/packages/client-ts/src/models/DeviceChallengeRequest.ts +++ b/packages/client-ts/src/models/DeviceChallengeRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceClassesEnum.ts b/packages/client-ts/src/models/DeviceClassesEnum.ts index c1c917abb5..670f5b9f05 100644 --- a/packages/client-ts/src/models/DeviceClassesEnum.ts +++ b/packages/client-ts/src/models/DeviceClassesEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceConnection.ts b/packages/client-ts/src/models/DeviceConnection.ts index 061069f4c5..2fe33de5c9 100644 --- a/packages/client-ts/src/models/DeviceConnection.ts +++ b/packages/client-ts/src/models/DeviceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceFactSnapshot.ts b/packages/client-ts/src/models/DeviceFactSnapshot.ts index 3abf8953b7..a0846409e5 100644 --- a/packages/client-ts/src/models/DeviceFactSnapshot.ts +++ b/packages/client-ts/src/models/DeviceFactSnapshot.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceFacts.ts b/packages/client-ts/src/models/DeviceFacts.ts index 473c0424e4..b18391030a 100644 --- a/packages/client-ts/src/models/DeviceFacts.ts +++ b/packages/client-ts/src/models/DeviceFacts.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceFactsOSFamily.ts b/packages/client-ts/src/models/DeviceFactsOSFamily.ts index e10583ccc4..ef974d1d84 100644 --- a/packages/client-ts/src/models/DeviceFactsOSFamily.ts +++ b/packages/client-ts/src/models/DeviceFactsOSFamily.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceFactsRequest.ts b/packages/client-ts/src/models/DeviceFactsRequest.ts index 9b5428d9ef..fae0f17083 100644 --- a/packages/client-ts/src/models/DeviceFactsRequest.ts +++ b/packages/client-ts/src/models/DeviceFactsRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceGroup.ts b/packages/client-ts/src/models/DeviceGroup.ts index 70cd3e420c..195565e9a3 100644 --- a/packages/client-ts/src/models/DeviceGroup.ts +++ b/packages/client-ts/src/models/DeviceGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceGroupRequest.ts b/packages/client-ts/src/models/DeviceGroupRequest.ts index eb614e5733..8b33982b96 100644 --- a/packages/client-ts/src/models/DeviceGroupRequest.ts +++ b/packages/client-ts/src/models/DeviceGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceSummary.ts b/packages/client-ts/src/models/DeviceSummary.ts index 9e1c35f704..be8c6b5034 100644 --- a/packages/client-ts/src/models/DeviceSummary.ts +++ b/packages/client-ts/src/models/DeviceSummary.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceUser.ts b/packages/client-ts/src/models/DeviceUser.ts index 4a21b3dc48..b457ed260d 100644 --- a/packages/client-ts/src/models/DeviceUser.ts +++ b/packages/client-ts/src/models/DeviceUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceUserBinding.ts b/packages/client-ts/src/models/DeviceUserBinding.ts index 8287d63a2b..414acb8bb1 100644 --- a/packages/client-ts/src/models/DeviceUserBinding.ts +++ b/packages/client-ts/src/models/DeviceUserBinding.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceUserBindingRequest.ts b/packages/client-ts/src/models/DeviceUserBindingRequest.ts index 78ee366bec..70ad18f3bc 100644 --- a/packages/client-ts/src/models/DeviceUserBindingRequest.ts +++ b/packages/client-ts/src/models/DeviceUserBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DeviceUserRequest.ts b/packages/client-ts/src/models/DeviceUserRequest.ts index 8afcde8a0d..7d8e4fd4ba 100644 --- a/packages/client-ts/src/models/DeviceUserRequest.ts +++ b/packages/client-ts/src/models/DeviceUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DigestAlgorithmEnum.ts b/packages/client-ts/src/models/DigestAlgorithmEnum.ts index 8f48ecdec5..2e1fca8755 100644 --- a/packages/client-ts/src/models/DigestAlgorithmEnum.ts +++ b/packages/client-ts/src/models/DigestAlgorithmEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DigitsEnum.ts b/packages/client-ts/src/models/DigitsEnum.ts index b770cbcf30..45f1b63183 100644 --- a/packages/client-ts/src/models/DigitsEnum.ts +++ b/packages/client-ts/src/models/DigitsEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Disk.ts b/packages/client-ts/src/models/Disk.ts index d01d527599..1135838b44 100644 --- a/packages/client-ts/src/models/Disk.ts +++ b/packages/client-ts/src/models/Disk.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DiskRequest.ts b/packages/client-ts/src/models/DiskRequest.ts index d7b07ecad6..dd2827b6a5 100644 --- a/packages/client-ts/src/models/DiskRequest.ts +++ b/packages/client-ts/src/models/DiskRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DockerServiceConnection.ts b/packages/client-ts/src/models/DockerServiceConnection.ts index 776266e852..8adfe86817 100644 --- a/packages/client-ts/src/models/DockerServiceConnection.ts +++ b/packages/client-ts/src/models/DockerServiceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DockerServiceConnectionRequest.ts b/packages/client-ts/src/models/DockerServiceConnectionRequest.ts index 52fa07cdc8..0d0bfbbcc7 100644 --- a/packages/client-ts/src/models/DockerServiceConnectionRequest.ts +++ b/packages/client-ts/src/models/DockerServiceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Domain.ts b/packages/client-ts/src/models/Domain.ts index 1477b47546..6dc3433c32 100644 --- a/packages/client-ts/src/models/Domain.ts +++ b/packages/client-ts/src/models/Domain.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DomainRequest.ts b/packages/client-ts/src/models/DomainRequest.ts index c18ba359ec..abc610935c 100644 --- a/packages/client-ts/src/models/DomainRequest.ts +++ b/packages/client-ts/src/models/DomainRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyChallenge.ts b/packages/client-ts/src/models/DummyChallenge.ts index eb6d5ff6d6..4593fbfd37 100644 --- a/packages/client-ts/src/models/DummyChallenge.ts +++ b/packages/client-ts/src/models/DummyChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyChallengeResponseRequest.ts b/packages/client-ts/src/models/DummyChallengeResponseRequest.ts index 86d629e893..84b15f3414 100644 --- a/packages/client-ts/src/models/DummyChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/DummyChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyPolicy.ts b/packages/client-ts/src/models/DummyPolicy.ts index 2c42438fc2..f78a0e778b 100644 --- a/packages/client-ts/src/models/DummyPolicy.ts +++ b/packages/client-ts/src/models/DummyPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyPolicyRequest.ts b/packages/client-ts/src/models/DummyPolicyRequest.ts index 78128b939d..9b4fe22c92 100644 --- a/packages/client-ts/src/models/DummyPolicyRequest.ts +++ b/packages/client-ts/src/models/DummyPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyStage.ts b/packages/client-ts/src/models/DummyStage.ts index ba4a8eb44d..14996627d4 100644 --- a/packages/client-ts/src/models/DummyStage.ts +++ b/packages/client-ts/src/models/DummyStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DummyStageRequest.ts b/packages/client-ts/src/models/DummyStageRequest.ts index a39a2479cc..b44f6f7942 100644 --- a/packages/client-ts/src/models/DummyStageRequest.ts +++ b/packages/client-ts/src/models/DummyStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DuoDevice.ts b/packages/client-ts/src/models/DuoDevice.ts index 35af5201b9..ab3c600545 100644 --- a/packages/client-ts/src/models/DuoDevice.ts +++ b/packages/client-ts/src/models/DuoDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DuoDeviceEnrollmentStatus.ts b/packages/client-ts/src/models/DuoDeviceEnrollmentStatus.ts index db4ace98a6..03ad7ce05f 100644 --- a/packages/client-ts/src/models/DuoDeviceEnrollmentStatus.ts +++ b/packages/client-ts/src/models/DuoDeviceEnrollmentStatus.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DuoDeviceRequest.ts b/packages/client-ts/src/models/DuoDeviceRequest.ts index ac2c0226eb..7c55e1d139 100644 --- a/packages/client-ts/src/models/DuoDeviceRequest.ts +++ b/packages/client-ts/src/models/DuoDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/DuoResponseEnum.ts b/packages/client-ts/src/models/DuoResponseEnum.ts index 068867bc62..241705f625 100644 --- a/packages/client-ts/src/models/DuoResponseEnum.ts +++ b/packages/client-ts/src/models/DuoResponseEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailChallenge.ts b/packages/client-ts/src/models/EmailChallenge.ts index b5cee68f3c..de33af63f4 100644 --- a/packages/client-ts/src/models/EmailChallenge.ts +++ b/packages/client-ts/src/models/EmailChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailChallengeResponseRequest.ts b/packages/client-ts/src/models/EmailChallengeResponseRequest.ts index cc2333a825..92a9a3d808 100644 --- a/packages/client-ts/src/models/EmailChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/EmailChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailDevice.ts b/packages/client-ts/src/models/EmailDevice.ts index febc9ce1d0..0ef52ecf6b 100644 --- a/packages/client-ts/src/models/EmailDevice.ts +++ b/packages/client-ts/src/models/EmailDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailDeviceRequest.ts b/packages/client-ts/src/models/EmailDeviceRequest.ts index 2e869bf113..0913d531da 100644 --- a/packages/client-ts/src/models/EmailDeviceRequest.ts +++ b/packages/client-ts/src/models/EmailDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailStage.ts b/packages/client-ts/src/models/EmailStage.ts index 472fb816c3..17e9ab8a8b 100644 --- a/packages/client-ts/src/models/EmailStage.ts +++ b/packages/client-ts/src/models/EmailStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EmailStageRequest.ts b/packages/client-ts/src/models/EmailStageRequest.ts index 1b356dcbe9..6598c4febc 100644 --- a/packages/client-ts/src/models/EmailStageRequest.ts +++ b/packages/client-ts/src/models/EmailStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Endpoint.ts b/packages/client-ts/src/models/Endpoint.ts index 4f8068e7b7..23ffbba049 100644 --- a/packages/client-ts/src/models/Endpoint.ts +++ b/packages/client-ts/src/models/Endpoint.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointAgentChallenge.ts b/packages/client-ts/src/models/EndpointAgentChallenge.ts index c57c711ad5..430e47ec8f 100644 --- a/packages/client-ts/src/models/EndpointAgentChallenge.ts +++ b/packages/client-ts/src/models/EndpointAgentChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointAgentChallengeResponseRequest.ts b/packages/client-ts/src/models/EndpointAgentChallengeResponseRequest.ts index 2a6f79e596..0b7584aa51 100644 --- a/packages/client-ts/src/models/EndpointAgentChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/EndpointAgentChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointAuthModeEnum.ts b/packages/client-ts/src/models/EndpointAuthModeEnum.ts index 552e2374c9..22dd018318 100644 --- a/packages/client-ts/src/models/EndpointAuthModeEnum.ts +++ b/packages/client-ts/src/models/EndpointAuthModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointDevice.ts b/packages/client-ts/src/models/EndpointDevice.ts index 656cae1c18..4499ab04ec 100644 --- a/packages/client-ts/src/models/EndpointDevice.ts +++ b/packages/client-ts/src/models/EndpointDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointDeviceDetails.ts b/packages/client-ts/src/models/EndpointDeviceDetails.ts index bc03a9e1e4..337f49c412 100644 --- a/packages/client-ts/src/models/EndpointDeviceDetails.ts +++ b/packages/client-ts/src/models/EndpointDeviceDetails.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointDeviceRequest.ts b/packages/client-ts/src/models/EndpointDeviceRequest.ts index fff4f22f49..0a872928b5 100644 --- a/packages/client-ts/src/models/EndpointDeviceRequest.ts +++ b/packages/client-ts/src/models/EndpointDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointRequest.ts b/packages/client-ts/src/models/EndpointRequest.ts index d910fcc770..dd5b3bb4d2 100644 --- a/packages/client-ts/src/models/EndpointRequest.ts +++ b/packages/client-ts/src/models/EndpointRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointStage.ts b/packages/client-ts/src/models/EndpointStage.ts index e7a1ad226d..401e761676 100644 --- a/packages/client-ts/src/models/EndpointStage.ts +++ b/packages/client-ts/src/models/EndpointStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EndpointStageRequest.ts b/packages/client-ts/src/models/EndpointStageRequest.ts index c814efdfdc..ee166b9be2 100644 --- a/packages/client-ts/src/models/EndpointStageRequest.ts +++ b/packages/client-ts/src/models/EndpointStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EnrollRequest.ts b/packages/client-ts/src/models/EnrollRequest.ts index e5972255dd..9943301385 100644 --- a/packages/client-ts/src/models/EnrollRequest.ts +++ b/packages/client-ts/src/models/EnrollRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EnrollmentToken.ts b/packages/client-ts/src/models/EnrollmentToken.ts index 5ef3ae2e34..3574470ec2 100644 --- a/packages/client-ts/src/models/EnrollmentToken.ts +++ b/packages/client-ts/src/models/EnrollmentToken.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EnrollmentTokenRequest.ts b/packages/client-ts/src/models/EnrollmentTokenRequest.ts index 2bd9ad486d..8ced4be71c 100644 --- a/packages/client-ts/src/models/EnrollmentTokenRequest.ts +++ b/packages/client-ts/src/models/EnrollmentTokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ErrorDetail.ts b/packages/client-ts/src/models/ErrorDetail.ts index dee1ff8f3e..644434d43e 100644 --- a/packages/client-ts/src/models/ErrorDetail.ts +++ b/packages/client-ts/src/models/ErrorDetail.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ErrorReportingConfig.ts b/packages/client-ts/src/models/ErrorReportingConfig.ts index f54617550b..bcb8d6ab75 100644 --- a/packages/client-ts/src/models/ErrorReportingConfig.ts +++ b/packages/client-ts/src/models/ErrorReportingConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Event.ts b/packages/client-ts/src/models/Event.ts index d2cfe845f3..686debd499 100644 --- a/packages/client-ts/src/models/Event.ts +++ b/packages/client-ts/src/models/Event.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventActions.ts b/packages/client-ts/src/models/EventActions.ts index 72fd1ed238..ed810f410c 100644 --- a/packages/client-ts/src/models/EventActions.ts +++ b/packages/client-ts/src/models/EventActions.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventMatcherPolicy.ts b/packages/client-ts/src/models/EventMatcherPolicy.ts index 73fc472fb9..b10d1f3ed6 100644 --- a/packages/client-ts/src/models/EventMatcherPolicy.ts +++ b/packages/client-ts/src/models/EventMatcherPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventMatcherPolicyRequest.ts b/packages/client-ts/src/models/EventMatcherPolicyRequest.ts index 8ce6949d6f..28d988939a 100644 --- a/packages/client-ts/src/models/EventMatcherPolicyRequest.ts +++ b/packages/client-ts/src/models/EventMatcherPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventRequest.ts b/packages/client-ts/src/models/EventRequest.ts index 4cba7659ef..0e79f5cad4 100644 --- a/packages/client-ts/src/models/EventRequest.ts +++ b/packages/client-ts/src/models/EventRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventStats.ts b/packages/client-ts/src/models/EventStats.ts index 317caad745..3f2f719195 100644 --- a/packages/client-ts/src/models/EventStats.ts +++ b/packages/client-ts/src/models/EventStats.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventTopPerUser.ts b/packages/client-ts/src/models/EventTopPerUser.ts index fc417d2183..1c1363ff45 100644 --- a/packages/client-ts/src/models/EventTopPerUser.ts +++ b/packages/client-ts/src/models/EventTopPerUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventVolume.ts b/packages/client-ts/src/models/EventVolume.ts index e3d62d9209..7cbc76ab05 100644 --- a/packages/client-ts/src/models/EventVolume.ts +++ b/packages/client-ts/src/models/EventVolume.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/EventsRequestedEnum.ts b/packages/client-ts/src/models/EventsRequestedEnum.ts index be742865f2..5709f376cd 100644 --- a/packages/client-ts/src/models/EventsRequestedEnum.ts +++ b/packages/client-ts/src/models/EventsRequestedEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ExpiringBaseGrantModel.ts b/packages/client-ts/src/models/ExpiringBaseGrantModel.ts index f02cd00573..9959dcd8e8 100644 --- a/packages/client-ts/src/models/ExpiringBaseGrantModel.ts +++ b/packages/client-ts/src/models/ExpiringBaseGrantModel.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ExpressionPolicy.ts b/packages/client-ts/src/models/ExpressionPolicy.ts index 9ac308f45b..5aafda2db1 100644 --- a/packages/client-ts/src/models/ExpressionPolicy.ts +++ b/packages/client-ts/src/models/ExpressionPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ExpressionPolicyRequest.ts b/packages/client-ts/src/models/ExpressionPolicyRequest.ts index d1ce77dc17..d4ee63582f 100644 --- a/packages/client-ts/src/models/ExpressionPolicyRequest.ts +++ b/packages/client-ts/src/models/ExpressionPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ExtraRoleObjectPermission.ts b/packages/client-ts/src/models/ExtraRoleObjectPermission.ts index 554b82c9f3..b6fea2dbf1 100644 --- a/packages/client-ts/src/models/ExtraRoleObjectPermission.ts +++ b/packages/client-ts/src/models/ExtraRoleObjectPermission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FileList.ts b/packages/client-ts/src/models/FileList.ts index 230f1c55bc..0c40bfb82e 100644 --- a/packages/client-ts/src/models/FileList.ts +++ b/packages/client-ts/src/models/FileList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FleetConnector.ts b/packages/client-ts/src/models/FleetConnector.ts index 8be7d68a00..18bbdff428 100644 --- a/packages/client-ts/src/models/FleetConnector.ts +++ b/packages/client-ts/src/models/FleetConnector.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FleetConnectorRequest.ts b/packages/client-ts/src/models/FleetConnectorRequest.ts index f761606be3..b81a306a9e 100644 --- a/packages/client-ts/src/models/FleetConnectorRequest.ts +++ b/packages/client-ts/src/models/FleetConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Flow.ts b/packages/client-ts/src/models/Flow.ts index ea8ada9b97..6fced91c20 100644 --- a/packages/client-ts/src/models/Flow.ts +++ b/packages/client-ts/src/models/Flow.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowChallengeResponseRequest.ts b/packages/client-ts/src/models/FlowChallengeResponseRequest.ts index cd3f7e5e8b..ffe0dbcf48 100644 --- a/packages/client-ts/src/models/FlowChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/FlowChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowDesignationEnum.ts b/packages/client-ts/src/models/FlowDesignationEnum.ts index 02a9ace109..fd86cf8ad6 100644 --- a/packages/client-ts/src/models/FlowDesignationEnum.ts +++ b/packages/client-ts/src/models/FlowDesignationEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowDiagram.ts b/packages/client-ts/src/models/FlowDiagram.ts index 1746492d4d..411774ff96 100644 --- a/packages/client-ts/src/models/FlowDiagram.ts +++ b/packages/client-ts/src/models/FlowDiagram.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowErrorChallenge.ts b/packages/client-ts/src/models/FlowErrorChallenge.ts index 5dcb076ab6..2ec23ae104 100644 --- a/packages/client-ts/src/models/FlowErrorChallenge.ts +++ b/packages/client-ts/src/models/FlowErrorChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowInspection.ts b/packages/client-ts/src/models/FlowInspection.ts index f5d0be485e..7d28a25a8e 100644 --- a/packages/client-ts/src/models/FlowInspection.ts +++ b/packages/client-ts/src/models/FlowInspection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowInspectorPlan.ts b/packages/client-ts/src/models/FlowInspectorPlan.ts index fa7e6c5693..61da078cc0 100644 --- a/packages/client-ts/src/models/FlowInspectorPlan.ts +++ b/packages/client-ts/src/models/FlowInspectorPlan.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowLayoutEnum.ts b/packages/client-ts/src/models/FlowLayoutEnum.ts index 6b6b643282..0f4020a5b9 100644 --- a/packages/client-ts/src/models/FlowLayoutEnum.ts +++ b/packages/client-ts/src/models/FlowLayoutEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowRequest.ts b/packages/client-ts/src/models/FlowRequest.ts index d4092798c2..9991672b93 100644 --- a/packages/client-ts/src/models/FlowRequest.ts +++ b/packages/client-ts/src/models/FlowRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowSet.ts b/packages/client-ts/src/models/FlowSet.ts index 13ff4e6d33..f2ed9a2fad 100644 --- a/packages/client-ts/src/models/FlowSet.ts +++ b/packages/client-ts/src/models/FlowSet.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowStageBinding.ts b/packages/client-ts/src/models/FlowStageBinding.ts index a5aeea0e4f..26508423a7 100644 --- a/packages/client-ts/src/models/FlowStageBinding.ts +++ b/packages/client-ts/src/models/FlowStageBinding.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FlowStageBindingRequest.ts b/packages/client-ts/src/models/FlowStageBindingRequest.ts index b44edbcb0d..e318dfe99e 100644 --- a/packages/client-ts/src/models/FlowStageBindingRequest.ts +++ b/packages/client-ts/src/models/FlowStageBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FooterLink.ts b/packages/client-ts/src/models/FooterLink.ts index 479a400ea5..caad883d57 100644 --- a/packages/client-ts/src/models/FooterLink.ts +++ b/packages/client-ts/src/models/FooterLink.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ForceBindingEnum.ts b/packages/client-ts/src/models/ForceBindingEnum.ts index 6a7da2796b..8cf5a43348 100644 --- a/packages/client-ts/src/models/ForceBindingEnum.ts +++ b/packages/client-ts/src/models/ForceBindingEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FormatEnum.ts b/packages/client-ts/src/models/FormatEnum.ts index e5d051168a..8c58e012c3 100644 --- a/packages/client-ts/src/models/FormatEnum.ts +++ b/packages/client-ts/src/models/FormatEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FrameChallenge.ts b/packages/client-ts/src/models/FrameChallenge.ts index 34be82af6a..c1605afe62 100644 --- a/packages/client-ts/src/models/FrameChallenge.ts +++ b/packages/client-ts/src/models/FrameChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/FrameChallengeResponseRequest.ts b/packages/client-ts/src/models/FrameChallengeResponseRequest.ts index e5ccb2fd7a..9292432aa2 100644 --- a/packages/client-ts/src/models/FrameChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/FrameChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GenericError.ts b/packages/client-ts/src/models/GenericError.ts index f0488d39f3..6dd67f855f 100644 --- a/packages/client-ts/src/models/GenericError.ts +++ b/packages/client-ts/src/models/GenericError.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GeoIPPolicy.ts b/packages/client-ts/src/models/GeoIPPolicy.ts index bbb97c05cc..50fc9d6661 100644 --- a/packages/client-ts/src/models/GeoIPPolicy.ts +++ b/packages/client-ts/src/models/GeoIPPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GeoIPPolicyCountriesObjInner.ts b/packages/client-ts/src/models/GeoIPPolicyCountriesObjInner.ts index 3eb2e98f86..d537f8a772 100644 --- a/packages/client-ts/src/models/GeoIPPolicyCountriesObjInner.ts +++ b/packages/client-ts/src/models/GeoIPPolicyCountriesObjInner.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GeoIPPolicyRequest.ts b/packages/client-ts/src/models/GeoIPPolicyRequest.ts index 10ded5b5de..ae594b0390 100644 --- a/packages/client-ts/src/models/GeoIPPolicyRequest.ts +++ b/packages/client-ts/src/models/GeoIPPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GeoipBindingEnum.ts b/packages/client-ts/src/models/GeoipBindingEnum.ts index 362ec7b309..2dc5a59c97 100644 --- a/packages/client-ts/src/models/GeoipBindingEnum.ts +++ b/packages/client-ts/src/models/GeoipBindingEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GlobalTaskStatus.ts b/packages/client-ts/src/models/GlobalTaskStatus.ts index 36fa7bfe34..3e1821cf63 100644 --- a/packages/client-ts/src/models/GlobalTaskStatus.ts +++ b/packages/client-ts/src/models/GlobalTaskStatus.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleChromeConnector.ts b/packages/client-ts/src/models/GoogleChromeConnector.ts index 6bc2b14daa..ea6b7a3184 100644 --- a/packages/client-ts/src/models/GoogleChromeConnector.ts +++ b/packages/client-ts/src/models/GoogleChromeConnector.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleChromeConnectorRequest.ts b/packages/client-ts/src/models/GoogleChromeConnectorRequest.ts index 2c73dc440a..c7d155b4e6 100644 --- a/packages/client-ts/src/models/GoogleChromeConnectorRequest.ts +++ b/packages/client-ts/src/models/GoogleChromeConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleEndpointDevice.ts b/packages/client-ts/src/models/GoogleEndpointDevice.ts index 1d8a03d093..3162142d3a 100644 --- a/packages/client-ts/src/models/GoogleEndpointDevice.ts +++ b/packages/client-ts/src/models/GoogleEndpointDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleEndpointDeviceRequest.ts b/packages/client-ts/src/models/GoogleEndpointDeviceRequest.ts index 1e7ccbf4c0..255fdaa1a5 100644 --- a/packages/client-ts/src/models/GoogleEndpointDeviceRequest.ts +++ b/packages/client-ts/src/models/GoogleEndpointDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProvider.ts b/packages/client-ts/src/models/GoogleWorkspaceProvider.ts index 012fe0ea56..4ade00489d 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProvider.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderGroup.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderGroup.ts index 17b0f9a34d..0d9d0b8af3 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderGroup.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderGroupRequest.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderGroupRequest.ts index f2e72a6ae6..eff207b43d 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderGroupRequest.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderMapping.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderMapping.ts index 62c413b910..f508cd4468 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderMapping.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderMappingRequest.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderMappingRequest.ts index 032d8a7c82..5b95319f40 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderMappingRequest.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderRequest.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderRequest.ts index fbd1d565c1..73797f4448 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderRequest.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderUser.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderUser.ts index d1c063e455..9bc80b3189 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderUser.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GoogleWorkspaceProviderUserRequest.ts b/packages/client-ts/src/models/GoogleWorkspaceProviderUserRequest.ts index fad0e00b78..6d9e2c0e3d 100644 --- a/packages/client-ts/src/models/GoogleWorkspaceProviderUserRequest.ts +++ b/packages/client-ts/src/models/GoogleWorkspaceProviderUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GrantTypesEnum.ts b/packages/client-ts/src/models/GrantTypesEnum.ts index f9395498c1..e2194e5674 100644 --- a/packages/client-ts/src/models/GrantTypesEnum.ts +++ b/packages/client-ts/src/models/GrantTypesEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Group.ts b/packages/client-ts/src/models/Group.ts index d8d6d83720..b12d26e2d9 100644 --- a/packages/client-ts/src/models/Group.ts +++ b/packages/client-ts/src/models/Group.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupKerberosSourceConnection.ts b/packages/client-ts/src/models/GroupKerberosSourceConnection.ts index 91b1f91821..6fb49897ec 100644 --- a/packages/client-ts/src/models/GroupKerberosSourceConnection.ts +++ b/packages/client-ts/src/models/GroupKerberosSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupKerberosSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupKerberosSourceConnectionRequest.ts index 2f73fa6183..e5b601a6a3 100644 --- a/packages/client-ts/src/models/GroupKerberosSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupKerberosSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupLDAPSourceConnection.ts b/packages/client-ts/src/models/GroupLDAPSourceConnection.ts index 19f8b5bd18..49a27417d7 100644 --- a/packages/client-ts/src/models/GroupLDAPSourceConnection.ts +++ b/packages/client-ts/src/models/GroupLDAPSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupLDAPSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupLDAPSourceConnectionRequest.ts index ae93cfdf1f..10456dbd70 100644 --- a/packages/client-ts/src/models/GroupLDAPSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupLDAPSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupMatchingModeEnum.ts b/packages/client-ts/src/models/GroupMatchingModeEnum.ts index 3dd6d11d4a..18a0017157 100644 --- a/packages/client-ts/src/models/GroupMatchingModeEnum.ts +++ b/packages/client-ts/src/models/GroupMatchingModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupOAuthSourceConnection.ts b/packages/client-ts/src/models/GroupOAuthSourceConnection.ts index 9212f83304..69191ac182 100644 --- a/packages/client-ts/src/models/GroupOAuthSourceConnection.ts +++ b/packages/client-ts/src/models/GroupOAuthSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupOAuthSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupOAuthSourceConnectionRequest.ts index 439e6b09c8..4ea504e6f9 100644 --- a/packages/client-ts/src/models/GroupOAuthSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupOAuthSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupPlexSourceConnection.ts b/packages/client-ts/src/models/GroupPlexSourceConnection.ts index 20eec48647..6ea8a1038a 100644 --- a/packages/client-ts/src/models/GroupPlexSourceConnection.ts +++ b/packages/client-ts/src/models/GroupPlexSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupPlexSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupPlexSourceConnectionRequest.ts index 92f5a83d04..f0e46dcf36 100644 --- a/packages/client-ts/src/models/GroupPlexSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupPlexSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupRequest.ts b/packages/client-ts/src/models/GroupRequest.ts index 5c5f0c8fb6..f2140bc8d2 100644 --- a/packages/client-ts/src/models/GroupRequest.ts +++ b/packages/client-ts/src/models/GroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupSAMLSourceConnection.ts b/packages/client-ts/src/models/GroupSAMLSourceConnection.ts index 8e6a2f2f04..79f58fa500 100644 --- a/packages/client-ts/src/models/GroupSAMLSourceConnection.ts +++ b/packages/client-ts/src/models/GroupSAMLSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupSAMLSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupSAMLSourceConnectionRequest.ts index 09ceab5551..d63df5a3d5 100644 --- a/packages/client-ts/src/models/GroupSAMLSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupSAMLSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupSourceConnection.ts b/packages/client-ts/src/models/GroupSourceConnection.ts index 896f40c1d2..0daa5cdcd1 100644 --- a/packages/client-ts/src/models/GroupSourceConnection.ts +++ b/packages/client-ts/src/models/GroupSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupSourceConnectionRequest.ts index 049e43a130..719b8ed610 100644 --- a/packages/client-ts/src/models/GroupSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupTelegramSourceConnection.ts b/packages/client-ts/src/models/GroupTelegramSourceConnection.ts index 6669cc98bd..159b88e62a 100644 --- a/packages/client-ts/src/models/GroupTelegramSourceConnection.ts +++ b/packages/client-ts/src/models/GroupTelegramSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/GroupTelegramSourceConnectionRequest.ts b/packages/client-ts/src/models/GroupTelegramSourceConnectionRequest.ts index b3128855aa..efa8affbb3 100644 --- a/packages/client-ts/src/models/GroupTelegramSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/GroupTelegramSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Hardware.ts b/packages/client-ts/src/models/Hardware.ts index 969381d709..a9f5f325b0 100644 --- a/packages/client-ts/src/models/Hardware.ts +++ b/packages/client-ts/src/models/Hardware.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/HardwareRequest.ts b/packages/client-ts/src/models/HardwareRequest.ts index 8dda287aef..b4dcff97cf 100644 --- a/packages/client-ts/src/models/HardwareRequest.ts +++ b/packages/client-ts/src/models/HardwareRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IdentificationChallenge.ts b/packages/client-ts/src/models/IdentificationChallenge.ts index 9e30f2838a..5221a73b0c 100644 --- a/packages/client-ts/src/models/IdentificationChallenge.ts +++ b/packages/client-ts/src/models/IdentificationChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IdentificationChallengeResponseRequest.ts b/packages/client-ts/src/models/IdentificationChallengeResponseRequest.ts index 9dd339b512..8b6d1a4590 100644 --- a/packages/client-ts/src/models/IdentificationChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/IdentificationChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IdentificationStage.ts b/packages/client-ts/src/models/IdentificationStage.ts index a5cf11d3f7..47cea41054 100644 --- a/packages/client-ts/src/models/IdentificationStage.ts +++ b/packages/client-ts/src/models/IdentificationStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IdentificationStageRequest.ts b/packages/client-ts/src/models/IdentificationStageRequest.ts index ade83bd4ac..240f4f8d61 100644 --- a/packages/client-ts/src/models/IdentificationStageRequest.ts +++ b/packages/client-ts/src/models/IdentificationStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IframeLogoutChallenge.ts b/packages/client-ts/src/models/IframeLogoutChallenge.ts index a87d830dd3..95f61986bf 100644 --- a/packages/client-ts/src/models/IframeLogoutChallenge.ts +++ b/packages/client-ts/src/models/IframeLogoutChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IframeLogoutChallengeResponseRequest.ts b/packages/client-ts/src/models/IframeLogoutChallengeResponseRequest.ts index 5ea8076b6a..0b7ed2b22f 100644 --- a/packages/client-ts/src/models/IframeLogoutChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/IframeLogoutChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ImpersonationRequest.ts b/packages/client-ts/src/models/ImpersonationRequest.ts index 0dbc088d1d..28589d790a 100644 --- a/packages/client-ts/src/models/ImpersonationRequest.ts +++ b/packages/client-ts/src/models/ImpersonationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InitialPermissions.ts b/packages/client-ts/src/models/InitialPermissions.ts index 82ef9d973f..fc0c7153c2 100644 --- a/packages/client-ts/src/models/InitialPermissions.ts +++ b/packages/client-ts/src/models/InitialPermissions.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InitialPermissionsRequest.ts b/packages/client-ts/src/models/InitialPermissionsRequest.ts index 0186e03051..d847b2e38d 100644 --- a/packages/client-ts/src/models/InitialPermissionsRequest.ts +++ b/packages/client-ts/src/models/InitialPermissionsRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InstallID.ts b/packages/client-ts/src/models/InstallID.ts index b0f32acd8b..50831ff44d 100644 --- a/packages/client-ts/src/models/InstallID.ts +++ b/packages/client-ts/src/models/InstallID.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IntentEnum.ts b/packages/client-ts/src/models/IntentEnum.ts index 24655f937b..a7758b51db 100644 --- a/packages/client-ts/src/models/IntentEnum.ts +++ b/packages/client-ts/src/models/IntentEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InvalidResponseActionEnum.ts b/packages/client-ts/src/models/InvalidResponseActionEnum.ts index 0f0303d059..fad5a9651b 100644 --- a/packages/client-ts/src/models/InvalidResponseActionEnum.ts +++ b/packages/client-ts/src/models/InvalidResponseActionEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Invitation.ts b/packages/client-ts/src/models/Invitation.ts index 4088d74ad4..2ec974059b 100644 --- a/packages/client-ts/src/models/Invitation.ts +++ b/packages/client-ts/src/models/Invitation.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InvitationRequest.ts b/packages/client-ts/src/models/InvitationRequest.ts index b95e2bb6d3..87b1af2d26 100644 --- a/packages/client-ts/src/models/InvitationRequest.ts +++ b/packages/client-ts/src/models/InvitationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InvitationSendEmailRequest.ts b/packages/client-ts/src/models/InvitationSendEmailRequest.ts index b580278b91..9c6772ba43 100644 --- a/packages/client-ts/src/models/InvitationSendEmailRequest.ts +++ b/packages/client-ts/src/models/InvitationSendEmailRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InvitationStage.ts b/packages/client-ts/src/models/InvitationStage.ts index 5a5994e248..dbc63d0b70 100644 --- a/packages/client-ts/src/models/InvitationStage.ts +++ b/packages/client-ts/src/models/InvitationStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/InvitationStageRequest.ts b/packages/client-ts/src/models/InvitationStageRequest.ts index 8711fdd29b..c9040eee60 100644 --- a/packages/client-ts/src/models/InvitationStageRequest.ts +++ b/packages/client-ts/src/models/InvitationStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/IssuerModeEnum.ts b/packages/client-ts/src/models/IssuerModeEnum.ts index ff8d58d2f4..69a009cfc1 100644 --- a/packages/client-ts/src/models/IssuerModeEnum.ts +++ b/packages/client-ts/src/models/IssuerModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KadminTypeEnum.ts b/packages/client-ts/src/models/KadminTypeEnum.ts index a3aec82b47..b584a00922 100644 --- a/packages/client-ts/src/models/KadminTypeEnum.ts +++ b/packages/client-ts/src/models/KadminTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KerberosSource.ts b/packages/client-ts/src/models/KerberosSource.ts index d1e9b77275..d617ad49fe 100644 --- a/packages/client-ts/src/models/KerberosSource.ts +++ b/packages/client-ts/src/models/KerberosSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KerberosSourcePropertyMapping.ts b/packages/client-ts/src/models/KerberosSourcePropertyMapping.ts index c40d2e286f..e8b667ec89 100644 --- a/packages/client-ts/src/models/KerberosSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/KerberosSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KerberosSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/KerberosSourcePropertyMappingRequest.ts index 3bf32bd98c..7c03d2e9e0 100644 --- a/packages/client-ts/src/models/KerberosSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/KerberosSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KerberosSourceRequest.ts b/packages/client-ts/src/models/KerberosSourceRequest.ts index b32b693aea..d6b633f5fa 100644 --- a/packages/client-ts/src/models/KerberosSourceRequest.ts +++ b/packages/client-ts/src/models/KerberosSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KeyTypeEnum.ts b/packages/client-ts/src/models/KeyTypeEnum.ts index 87b7360880..144ecaf6af 100644 --- a/packages/client-ts/src/models/KeyTypeEnum.ts +++ b/packages/client-ts/src/models/KeyTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KubernetesServiceConnection.ts b/packages/client-ts/src/models/KubernetesServiceConnection.ts index 0d8388b6e8..b3f14656e5 100644 --- a/packages/client-ts/src/models/KubernetesServiceConnection.ts +++ b/packages/client-ts/src/models/KubernetesServiceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/KubernetesServiceConnectionRequest.ts b/packages/client-ts/src/models/KubernetesServiceConnectionRequest.ts index c5fd8e0e89..7e3713a805 100644 --- a/packages/client-ts/src/models/KubernetesServiceConnectionRequest.ts +++ b/packages/client-ts/src/models/KubernetesServiceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPAPIAccessMode.ts b/packages/client-ts/src/models/LDAPAPIAccessMode.ts index d2f073b602..5b2b7e336e 100644 --- a/packages/client-ts/src/models/LDAPAPIAccessMode.ts +++ b/packages/client-ts/src/models/LDAPAPIAccessMode.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPCheckAccess.ts b/packages/client-ts/src/models/LDAPCheckAccess.ts index c29b6694e5..13bed4aa7b 100644 --- a/packages/client-ts/src/models/LDAPCheckAccess.ts +++ b/packages/client-ts/src/models/LDAPCheckAccess.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPDebug.ts b/packages/client-ts/src/models/LDAPDebug.ts index 99765b49b8..b317519982 100644 --- a/packages/client-ts/src/models/LDAPDebug.ts +++ b/packages/client-ts/src/models/LDAPDebug.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPOutpostConfig.ts b/packages/client-ts/src/models/LDAPOutpostConfig.ts index 57aa6ade50..a68491cb16 100644 --- a/packages/client-ts/src/models/LDAPOutpostConfig.ts +++ b/packages/client-ts/src/models/LDAPOutpostConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPProvider.ts b/packages/client-ts/src/models/LDAPProvider.ts index 6571857349..bc0be5788c 100644 --- a/packages/client-ts/src/models/LDAPProvider.ts +++ b/packages/client-ts/src/models/LDAPProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPProviderRequest.ts b/packages/client-ts/src/models/LDAPProviderRequest.ts index 7a13914b71..c1f5541485 100644 --- a/packages/client-ts/src/models/LDAPProviderRequest.ts +++ b/packages/client-ts/src/models/LDAPProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPSource.ts b/packages/client-ts/src/models/LDAPSource.ts index a7c4c947c6..a3795c95c9 100644 --- a/packages/client-ts/src/models/LDAPSource.ts +++ b/packages/client-ts/src/models/LDAPSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPSourcePropertyMapping.ts b/packages/client-ts/src/models/LDAPSourcePropertyMapping.ts index 1e5b54960e..5c2186d3ca 100644 --- a/packages/client-ts/src/models/LDAPSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/LDAPSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/LDAPSourcePropertyMappingRequest.ts index dd366f1d0e..cf82d3511e 100644 --- a/packages/client-ts/src/models/LDAPSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/LDAPSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LDAPSourceRequest.ts b/packages/client-ts/src/models/LDAPSourceRequest.ts index 7a5f7d1173..031742d8d5 100644 --- a/packages/client-ts/src/models/LDAPSourceRequest.ts +++ b/packages/client-ts/src/models/LDAPSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LangEnum.ts b/packages/client-ts/src/models/LangEnum.ts index 80652727d3..e1bb547196 100644 --- a/packages/client-ts/src/models/LangEnum.ts +++ b/packages/client-ts/src/models/LangEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LastTaskStatusEnum.ts b/packages/client-ts/src/models/LastTaskStatusEnum.ts index 5913a0d681..0523d97121 100644 --- a/packages/client-ts/src/models/LastTaskStatusEnum.ts +++ b/packages/client-ts/src/models/LastTaskStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/License.ts b/packages/client-ts/src/models/License.ts index 7b62954714..ea9552e590 100644 --- a/packages/client-ts/src/models/License.ts +++ b/packages/client-ts/src/models/License.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseFlagsEnum.ts b/packages/client-ts/src/models/LicenseFlagsEnum.ts index bb1a2cc4a6..9bbda63ba1 100644 --- a/packages/client-ts/src/models/LicenseFlagsEnum.ts +++ b/packages/client-ts/src/models/LicenseFlagsEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseForecast.ts b/packages/client-ts/src/models/LicenseForecast.ts index 74558f2154..1c2517fe0e 100644 --- a/packages/client-ts/src/models/LicenseForecast.ts +++ b/packages/client-ts/src/models/LicenseForecast.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseRequest.ts b/packages/client-ts/src/models/LicenseRequest.ts index 8dcf4e3129..14fd479b6f 100644 --- a/packages/client-ts/src/models/LicenseRequest.ts +++ b/packages/client-ts/src/models/LicenseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseStatusEnum.ts b/packages/client-ts/src/models/LicenseStatusEnum.ts index 37b9ccfd8a..9dd255e813 100644 --- a/packages/client-ts/src/models/LicenseStatusEnum.ts +++ b/packages/client-ts/src/models/LicenseStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseSummary.ts b/packages/client-ts/src/models/LicenseSummary.ts index cf728bc974..44a5903aa7 100644 --- a/packages/client-ts/src/models/LicenseSummary.ts +++ b/packages/client-ts/src/models/LicenseSummary.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LicenseSummaryStatusEnum.ts b/packages/client-ts/src/models/LicenseSummaryStatusEnum.ts index fc0ad234b8..024a9f617d 100644 --- a/packages/client-ts/src/models/LicenseSummaryStatusEnum.ts +++ b/packages/client-ts/src/models/LicenseSummaryStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LifecycleIteration.ts b/packages/client-ts/src/models/LifecycleIteration.ts index 281ebd1771..6ad018f4ac 100644 --- a/packages/client-ts/src/models/LifecycleIteration.ts +++ b/packages/client-ts/src/models/LifecycleIteration.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LifecycleIterationRequest.ts b/packages/client-ts/src/models/LifecycleIterationRequest.ts index 97c3131327..7bd16a745c 100644 --- a/packages/client-ts/src/models/LifecycleIterationRequest.ts +++ b/packages/client-ts/src/models/LifecycleIterationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LifecycleIterationStateEnum.ts b/packages/client-ts/src/models/LifecycleIterationStateEnum.ts index e3654424fa..9ac29926b3 100644 --- a/packages/client-ts/src/models/LifecycleIterationStateEnum.ts +++ b/packages/client-ts/src/models/LifecycleIterationStateEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LifecycleRule.ts b/packages/client-ts/src/models/LifecycleRule.ts index b57c3402ec..1a0bcc4408 100644 --- a/packages/client-ts/src/models/LifecycleRule.ts +++ b/packages/client-ts/src/models/LifecycleRule.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LifecycleRuleRequest.ts b/packages/client-ts/src/models/LifecycleRuleRequest.ts index ecd136acae..ffdf17aa48 100644 --- a/packages/client-ts/src/models/LifecycleRuleRequest.ts +++ b/packages/client-ts/src/models/LifecycleRuleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Link.ts b/packages/client-ts/src/models/Link.ts index c9a29e1ff6..3a9ec79574 100644 --- a/packages/client-ts/src/models/Link.ts +++ b/packages/client-ts/src/models/Link.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LogEvent.ts b/packages/client-ts/src/models/LogEvent.ts index 71a4726ecf..83675bd714 100644 --- a/packages/client-ts/src/models/LogEvent.ts +++ b/packages/client-ts/src/models/LogEvent.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LogLevelEnum.ts b/packages/client-ts/src/models/LogLevelEnum.ts index 515165ebef..6c27434105 100644 --- a/packages/client-ts/src/models/LogLevelEnum.ts +++ b/packages/client-ts/src/models/LogLevelEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LoginChallengeTypes.ts b/packages/client-ts/src/models/LoginChallengeTypes.ts index 3fdc49c239..9b5c33e212 100644 --- a/packages/client-ts/src/models/LoginChallengeTypes.ts +++ b/packages/client-ts/src/models/LoginChallengeTypes.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LoginSource.ts b/packages/client-ts/src/models/LoginSource.ts index cd0916266e..f4f46cf0eb 100644 --- a/packages/client-ts/src/models/LoginSource.ts +++ b/packages/client-ts/src/models/LoginSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/LogoutURL.ts b/packages/client-ts/src/models/LogoutURL.ts index 68ec1b5fe6..2c7cd88a92 100644 --- a/packages/client-ts/src/models/LogoutURL.ts +++ b/packages/client-ts/src/models/LogoutURL.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MDMConfigRequest.ts b/packages/client-ts/src/models/MDMConfigRequest.ts index 11bacc560f..b0336c2bd8 100644 --- a/packages/client-ts/src/models/MDMConfigRequest.ts +++ b/packages/client-ts/src/models/MDMConfigRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MDMConfigResponse.ts b/packages/client-ts/src/models/MDMConfigResponse.ts index e29da99033..55e4c6cc05 100644 --- a/packages/client-ts/src/models/MDMConfigResponse.ts +++ b/packages/client-ts/src/models/MDMConfigResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MatchingModeEnum.ts b/packages/client-ts/src/models/MatchingModeEnum.ts index 17acda9b9e..81cea9b8f0 100644 --- a/packages/client-ts/src/models/MatchingModeEnum.ts +++ b/packages/client-ts/src/models/MatchingModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Metadata.ts b/packages/client-ts/src/models/Metadata.ts index c444cec423..22c752d0e8 100644 --- a/packages/client-ts/src/models/Metadata.ts +++ b/packages/client-ts/src/models/Metadata.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProvider.ts b/packages/client-ts/src/models/MicrosoftEntraProvider.ts index f11f7e8012..4344e4be2d 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProvider.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderGroup.ts b/packages/client-ts/src/models/MicrosoftEntraProviderGroup.ts index 54c20f5106..5ab6892363 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderGroup.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderGroupRequest.ts b/packages/client-ts/src/models/MicrosoftEntraProviderGroupRequest.ts index 6fb5a26262..d30d5660b2 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderGroupRequest.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderMapping.ts b/packages/client-ts/src/models/MicrosoftEntraProviderMapping.ts index 0f69952997..93fd0aaefb 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderMapping.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderMappingRequest.ts b/packages/client-ts/src/models/MicrosoftEntraProviderMappingRequest.ts index 324726d5e6..cd8674662e 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderMappingRequest.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderRequest.ts b/packages/client-ts/src/models/MicrosoftEntraProviderRequest.ts index 6a93913061..b31998e2ef 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderRequest.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderUser.ts b/packages/client-ts/src/models/MicrosoftEntraProviderUser.ts index 6f0747cf2c..40bf2c31c3 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderUser.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MicrosoftEntraProviderUserRequest.ts b/packages/client-ts/src/models/MicrosoftEntraProviderUserRequest.ts index 2b595eda66..577fa5e02e 100644 --- a/packages/client-ts/src/models/MicrosoftEntraProviderUserRequest.ts +++ b/packages/client-ts/src/models/MicrosoftEntraProviderUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ModelEnum.ts b/packages/client-ts/src/models/ModelEnum.ts index d743a9a395..9bf87c3f8a 100644 --- a/packages/client-ts/src/models/ModelEnum.ts +++ b/packages/client-ts/src/models/ModelEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ModelRequest.ts b/packages/client-ts/src/models/ModelRequest.ts index fc57df020c..45e9101878 100644 --- a/packages/client-ts/src/models/ModelRequest.ts +++ b/packages/client-ts/src/models/ModelRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MutualTLSStage.ts b/packages/client-ts/src/models/MutualTLSStage.ts index 1b3cea28db..e68921aaa1 100644 --- a/packages/client-ts/src/models/MutualTLSStage.ts +++ b/packages/client-ts/src/models/MutualTLSStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/MutualTLSStageRequest.ts b/packages/client-ts/src/models/MutualTLSStageRequest.ts index fcbbec03ed..9e2df057ce 100644 --- a/packages/client-ts/src/models/MutualTLSStageRequest.ts +++ b/packages/client-ts/src/models/MutualTLSStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NativeLogoutChallenge.ts b/packages/client-ts/src/models/NativeLogoutChallenge.ts index 328c007bf6..1219ea7fa6 100644 --- a/packages/client-ts/src/models/NativeLogoutChallenge.ts +++ b/packages/client-ts/src/models/NativeLogoutChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NativeLogoutChallengeResponseRequest.ts b/packages/client-ts/src/models/NativeLogoutChallengeResponseRequest.ts index a7dbab9da1..514e564ab5 100644 --- a/packages/client-ts/src/models/NativeLogoutChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/NativeLogoutChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Network.ts b/packages/client-ts/src/models/Network.ts index 0838e1a2c6..69ce6e865e 100644 --- a/packages/client-ts/src/models/Network.ts +++ b/packages/client-ts/src/models/Network.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NetworkBindingEnum.ts b/packages/client-ts/src/models/NetworkBindingEnum.ts index 1cfa0ca03a..259b49580b 100644 --- a/packages/client-ts/src/models/NetworkBindingEnum.ts +++ b/packages/client-ts/src/models/NetworkBindingEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NetworkInterface.ts b/packages/client-ts/src/models/NetworkInterface.ts index bd7c6d4954..a9943666a7 100644 --- a/packages/client-ts/src/models/NetworkInterface.ts +++ b/packages/client-ts/src/models/NetworkInterface.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NetworkInterfaceRequest.ts b/packages/client-ts/src/models/NetworkInterfaceRequest.ts index 1ff1b5e7c4..eba22008c3 100644 --- a/packages/client-ts/src/models/NetworkInterfaceRequest.ts +++ b/packages/client-ts/src/models/NetworkInterfaceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NetworkRequest.ts b/packages/client-ts/src/models/NetworkRequest.ts index 5bfa7254a5..f203afd423 100644 --- a/packages/client-ts/src/models/NetworkRequest.ts +++ b/packages/client-ts/src/models/NetworkRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotConfiguredActionEnum.ts b/packages/client-ts/src/models/NotConfiguredActionEnum.ts index c672551f60..2d1c6ae422 100644 --- a/packages/client-ts/src/models/NotConfiguredActionEnum.ts +++ b/packages/client-ts/src/models/NotConfiguredActionEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Notification.ts b/packages/client-ts/src/models/Notification.ts index 750c440fa8..3cc7d09e2a 100644 --- a/packages/client-ts/src/models/Notification.ts +++ b/packages/client-ts/src/models/Notification.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationRequest.ts b/packages/client-ts/src/models/NotificationRequest.ts index 5f539bf165..46a3ed72a1 100644 --- a/packages/client-ts/src/models/NotificationRequest.ts +++ b/packages/client-ts/src/models/NotificationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationRule.ts b/packages/client-ts/src/models/NotificationRule.ts index c87dafbb80..044682a804 100644 --- a/packages/client-ts/src/models/NotificationRule.ts +++ b/packages/client-ts/src/models/NotificationRule.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationRuleRequest.ts b/packages/client-ts/src/models/NotificationRuleRequest.ts index 3643868ee2..1d44de7991 100644 --- a/packages/client-ts/src/models/NotificationRuleRequest.ts +++ b/packages/client-ts/src/models/NotificationRuleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationTransport.ts b/packages/client-ts/src/models/NotificationTransport.ts index c6f9a69769..dbba566374 100644 --- a/packages/client-ts/src/models/NotificationTransport.ts +++ b/packages/client-ts/src/models/NotificationTransport.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationTransportRequest.ts b/packages/client-ts/src/models/NotificationTransportRequest.ts index 9426cbab3e..ffd43087eb 100644 --- a/packages/client-ts/src/models/NotificationTransportRequest.ts +++ b/packages/client-ts/src/models/NotificationTransportRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationTransportTest.ts b/packages/client-ts/src/models/NotificationTransportTest.ts index 7d0f57c55f..e63b2fa90c 100644 --- a/packages/client-ts/src/models/NotificationTransportTest.ts +++ b/packages/client-ts/src/models/NotificationTransportTest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationWebhookMapping.ts b/packages/client-ts/src/models/NotificationWebhookMapping.ts index b3148b7f0e..4d8a9e1f1e 100644 --- a/packages/client-ts/src/models/NotificationWebhookMapping.ts +++ b/packages/client-ts/src/models/NotificationWebhookMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/NotificationWebhookMappingRequest.ts b/packages/client-ts/src/models/NotificationWebhookMappingRequest.ts index 4168c9916a..a980c6500e 100644 --- a/packages/client-ts/src/models/NotificationWebhookMappingRequest.ts +++ b/packages/client-ts/src/models/NotificationWebhookMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuth2Provider.ts b/packages/client-ts/src/models/OAuth2Provider.ts index 6c8e0696ca..cf83583915 100644 --- a/packages/client-ts/src/models/OAuth2Provider.ts +++ b/packages/client-ts/src/models/OAuth2Provider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuth2ProviderLogoutMethodEnum.ts b/packages/client-ts/src/models/OAuth2ProviderLogoutMethodEnum.ts index ac08ea2302..828ffa7621 100644 --- a/packages/client-ts/src/models/OAuth2ProviderLogoutMethodEnum.ts +++ b/packages/client-ts/src/models/OAuth2ProviderLogoutMethodEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuth2ProviderRequest.ts b/packages/client-ts/src/models/OAuth2ProviderRequest.ts index 15338bb37e..f2e8dbfc1a 100644 --- a/packages/client-ts/src/models/OAuth2ProviderRequest.ts +++ b/packages/client-ts/src/models/OAuth2ProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuth2ProviderSetupURLs.ts b/packages/client-ts/src/models/OAuth2ProviderSetupURLs.ts index 21c27ce537..e3424a9e55 100644 --- a/packages/client-ts/src/models/OAuth2ProviderSetupURLs.ts +++ b/packages/client-ts/src/models/OAuth2ProviderSetupURLs.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthDeviceCodeChallenge.ts b/packages/client-ts/src/models/OAuthDeviceCodeChallenge.ts index 0a3125dd91..5b54c5f915 100644 --- a/packages/client-ts/src/models/OAuthDeviceCodeChallenge.ts +++ b/packages/client-ts/src/models/OAuthDeviceCodeChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthDeviceCodeChallengeResponseRequest.ts b/packages/client-ts/src/models/OAuthDeviceCodeChallengeResponseRequest.ts index 1f50425850..a9d108025e 100644 --- a/packages/client-ts/src/models/OAuthDeviceCodeChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/OAuthDeviceCodeChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthDeviceCodeFinishChallenge.ts b/packages/client-ts/src/models/OAuthDeviceCodeFinishChallenge.ts index 468921b5d5..c9e7003652 100644 --- a/packages/client-ts/src/models/OAuthDeviceCodeFinishChallenge.ts +++ b/packages/client-ts/src/models/OAuthDeviceCodeFinishChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthDeviceCodeFinishChallengeResponseRequest.ts b/packages/client-ts/src/models/OAuthDeviceCodeFinishChallengeResponseRequest.ts index ab7b1f2ffc..3aa9e3a800 100644 --- a/packages/client-ts/src/models/OAuthDeviceCodeFinishChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/OAuthDeviceCodeFinishChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthSource.ts b/packages/client-ts/src/models/OAuthSource.ts index bb5e39cb97..344edb3d97 100644 --- a/packages/client-ts/src/models/OAuthSource.ts +++ b/packages/client-ts/src/models/OAuthSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthSourcePropertyMapping.ts b/packages/client-ts/src/models/OAuthSourcePropertyMapping.ts index 36ee60ee6b..4e4a09e996 100644 --- a/packages/client-ts/src/models/OAuthSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/OAuthSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/OAuthSourcePropertyMappingRequest.ts index 4fba159335..c180ba9aac 100644 --- a/packages/client-ts/src/models/OAuthSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/OAuthSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OAuthSourceRequest.ts b/packages/client-ts/src/models/OAuthSourceRequest.ts index b885d281de..553f89d1c0 100644 --- a/packages/client-ts/src/models/OAuthSourceRequest.ts +++ b/packages/client-ts/src/models/OAuthSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OpenIDConnectConfiguration.ts b/packages/client-ts/src/models/OpenIDConnectConfiguration.ts index 2e4c6d5f9d..8384f38d71 100644 --- a/packages/client-ts/src/models/OpenIDConnectConfiguration.ts +++ b/packages/client-ts/src/models/OpenIDConnectConfiguration.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OperatingSystem.ts b/packages/client-ts/src/models/OperatingSystem.ts index 6924b2b896..50fce3ae28 100644 --- a/packages/client-ts/src/models/OperatingSystem.ts +++ b/packages/client-ts/src/models/OperatingSystem.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OperatingSystemRequest.ts b/packages/client-ts/src/models/OperatingSystemRequest.ts index 8a97efb1fe..d038e20801 100644 --- a/packages/client-ts/src/models/OperatingSystemRequest.ts +++ b/packages/client-ts/src/models/OperatingSystemRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OutgoingSyncDeleteAction.ts b/packages/client-ts/src/models/OutgoingSyncDeleteAction.ts index e4c53944aa..96a1343bf6 100644 --- a/packages/client-ts/src/models/OutgoingSyncDeleteAction.ts +++ b/packages/client-ts/src/models/OutgoingSyncDeleteAction.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Outpost.ts b/packages/client-ts/src/models/Outpost.ts index 15cee3865f..7572e8c509 100644 --- a/packages/client-ts/src/models/Outpost.ts +++ b/packages/client-ts/src/models/Outpost.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OutpostDefaultConfig.ts b/packages/client-ts/src/models/OutpostDefaultConfig.ts index 00f8ebca45..70770c3dc4 100644 --- a/packages/client-ts/src/models/OutpostDefaultConfig.ts +++ b/packages/client-ts/src/models/OutpostDefaultConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OutpostHealth.ts b/packages/client-ts/src/models/OutpostHealth.ts index 52f889b429..567f1c1e50 100644 --- a/packages/client-ts/src/models/OutpostHealth.ts +++ b/packages/client-ts/src/models/OutpostHealth.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OutpostRequest.ts b/packages/client-ts/src/models/OutpostRequest.ts index 56f2cf8e5f..8535aa1f14 100644 --- a/packages/client-ts/src/models/OutpostRequest.ts +++ b/packages/client-ts/src/models/OutpostRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/OutpostTypeEnum.ts b/packages/client-ts/src/models/OutpostTypeEnum.ts index cdd23e2993..64cceea424 100644 --- a/packages/client-ts/src/models/OutpostTypeEnum.ts +++ b/packages/client-ts/src/models/OutpostTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PKCEMethodEnum.ts b/packages/client-ts/src/models/PKCEMethodEnum.ts index 68f2a74a16..7c3665bff3 100644 --- a/packages/client-ts/src/models/PKCEMethodEnum.ts +++ b/packages/client-ts/src/models/PKCEMethodEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAccountLockdownStageList.ts b/packages/client-ts/src/models/PaginatedAccountLockdownStageList.ts index 7f3d181806..26dcd8970f 100644 --- a/packages/client-ts/src/models/PaginatedAccountLockdownStageList.ts +++ b/packages/client-ts/src/models/PaginatedAccountLockdownStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAgentConnectorList.ts b/packages/client-ts/src/models/PaginatedAgentConnectorList.ts index e58157f9d0..6faaa4e22b 100644 --- a/packages/client-ts/src/models/PaginatedAgentConnectorList.ts +++ b/packages/client-ts/src/models/PaginatedAgentConnectorList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAppleIndependentSecureEnclaveList.ts b/packages/client-ts/src/models/PaginatedAppleIndependentSecureEnclaveList.ts index c53d89bc21..898e549152 100644 --- a/packages/client-ts/src/models/PaginatedAppleIndependentSecureEnclaveList.ts +++ b/packages/client-ts/src/models/PaginatedAppleIndependentSecureEnclaveList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedApplicationEntitlementList.ts b/packages/client-ts/src/models/PaginatedApplicationEntitlementList.ts index f44eba8347..56ec5e45c0 100644 --- a/packages/client-ts/src/models/PaginatedApplicationEntitlementList.ts +++ b/packages/client-ts/src/models/PaginatedApplicationEntitlementList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedApplicationList.ts b/packages/client-ts/src/models/PaginatedApplicationList.ts index 7f595a3748..32a8cedf5f 100644 --- a/packages/client-ts/src/models/PaginatedApplicationList.ts +++ b/packages/client-ts/src/models/PaginatedApplicationList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatedSessionList.ts b/packages/client-ts/src/models/PaginatedAuthenticatedSessionList.ts index 2b162c5713..a5ddb39b05 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatedSessionList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatedSessionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorDuoStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorDuoStageList.ts index 9c63fc24e3..8277d3b16a 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorDuoStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorDuoStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorEmailStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorEmailStageList.ts index 3df84bca10..8e6d5a4dc1 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorEmailStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorEmailStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorEndpointGDTCStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorEndpointGDTCStageList.ts index c9ab4da621..5c4dd97b84 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorEndpointGDTCStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorEndpointGDTCStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorSMSStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorSMSStageList.ts index 7e3623a1b5..90feff3f23 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorSMSStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorSMSStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorStaticStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorStaticStageList.ts index 1c110bcca1..5c126e5041 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorStaticStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorStaticStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorTOTPStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorTOTPStageList.ts index 37e7ad24d0..a95b69c5f9 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorTOTPStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorTOTPStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorValidateStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorValidateStageList.ts index 27b3218565..95219ffecc 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorValidateStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorValidateStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedAuthenticatorWebAuthnStageList.ts b/packages/client-ts/src/models/PaginatedAuthenticatorWebAuthnStageList.ts index 1a0c2daf92..7ca587533d 100644 --- a/packages/client-ts/src/models/PaginatedAuthenticatorWebAuthnStageList.ts +++ b/packages/client-ts/src/models/PaginatedAuthenticatorWebAuthnStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedBlueprintInstanceList.ts b/packages/client-ts/src/models/PaginatedBlueprintInstanceList.ts index f86807df21..f498d67ac7 100644 --- a/packages/client-ts/src/models/PaginatedBlueprintInstanceList.ts +++ b/packages/client-ts/src/models/PaginatedBlueprintInstanceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedBrandList.ts b/packages/client-ts/src/models/PaginatedBrandList.ts index aa7bd89ff8..ce9ac4c4a9 100644 --- a/packages/client-ts/src/models/PaginatedBrandList.ts +++ b/packages/client-ts/src/models/PaginatedBrandList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedCaptchaStageList.ts b/packages/client-ts/src/models/PaginatedCaptchaStageList.ts index 125653873f..8b912874c5 100644 --- a/packages/client-ts/src/models/PaginatedCaptchaStageList.ts +++ b/packages/client-ts/src/models/PaginatedCaptchaStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedCertificateKeyPairList.ts b/packages/client-ts/src/models/PaginatedCertificateKeyPairList.ts index c9be7fa636..e01a6fd56c 100644 --- a/packages/client-ts/src/models/PaginatedCertificateKeyPairList.ts +++ b/packages/client-ts/src/models/PaginatedCertificateKeyPairList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedConnectionTokenList.ts b/packages/client-ts/src/models/PaginatedConnectionTokenList.ts index c4d7ef002b..a024646fe6 100644 --- a/packages/client-ts/src/models/PaginatedConnectionTokenList.ts +++ b/packages/client-ts/src/models/PaginatedConnectionTokenList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedConnectorList.ts b/packages/client-ts/src/models/PaginatedConnectorList.ts index 6becbb0892..7fcb8d5356 100644 --- a/packages/client-ts/src/models/PaginatedConnectorList.ts +++ b/packages/client-ts/src/models/PaginatedConnectorList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedConsentStageList.ts b/packages/client-ts/src/models/PaginatedConsentStageList.ts index 50d2448f24..0169480612 100644 --- a/packages/client-ts/src/models/PaginatedConsentStageList.ts +++ b/packages/client-ts/src/models/PaginatedConsentStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDataExportList.ts b/packages/client-ts/src/models/PaginatedDataExportList.ts index b90a8ae04f..d96744a2a3 100644 --- a/packages/client-ts/src/models/PaginatedDataExportList.ts +++ b/packages/client-ts/src/models/PaginatedDataExportList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDenyStageList.ts b/packages/client-ts/src/models/PaginatedDenyStageList.ts index 0ee93db518..c95ccf29e0 100644 --- a/packages/client-ts/src/models/PaginatedDenyStageList.ts +++ b/packages/client-ts/src/models/PaginatedDenyStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDeviceAccessGroupList.ts b/packages/client-ts/src/models/PaginatedDeviceAccessGroupList.ts index 10fed87b27..2189892ca9 100644 --- a/packages/client-ts/src/models/PaginatedDeviceAccessGroupList.ts +++ b/packages/client-ts/src/models/PaginatedDeviceAccessGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDeviceUserBindingList.ts b/packages/client-ts/src/models/PaginatedDeviceUserBindingList.ts index 106f7b82ac..5e3c54c0f4 100644 --- a/packages/client-ts/src/models/PaginatedDeviceUserBindingList.ts +++ b/packages/client-ts/src/models/PaginatedDeviceUserBindingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDockerServiceConnectionList.ts b/packages/client-ts/src/models/PaginatedDockerServiceConnectionList.ts index 526a0263c5..d863176f28 100644 --- a/packages/client-ts/src/models/PaginatedDockerServiceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedDockerServiceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDomainList.ts b/packages/client-ts/src/models/PaginatedDomainList.ts index 64f94f45e2..fbe54fad37 100644 --- a/packages/client-ts/src/models/PaginatedDomainList.ts +++ b/packages/client-ts/src/models/PaginatedDomainList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDummyPolicyList.ts b/packages/client-ts/src/models/PaginatedDummyPolicyList.ts index 52f8e990a3..6ccc50d2fb 100644 --- a/packages/client-ts/src/models/PaginatedDummyPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedDummyPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDummyStageList.ts b/packages/client-ts/src/models/PaginatedDummyStageList.ts index 1ad553c7a6..dafbd07fd6 100644 --- a/packages/client-ts/src/models/PaginatedDummyStageList.ts +++ b/packages/client-ts/src/models/PaginatedDummyStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedDuoDeviceList.ts b/packages/client-ts/src/models/PaginatedDuoDeviceList.ts index c6fe07a793..7d74db9f59 100644 --- a/packages/client-ts/src/models/PaginatedDuoDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedDuoDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEmailDeviceList.ts b/packages/client-ts/src/models/PaginatedEmailDeviceList.ts index 818d26717c..c0aee4897e 100644 --- a/packages/client-ts/src/models/PaginatedEmailDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedEmailDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEmailStageList.ts b/packages/client-ts/src/models/PaginatedEmailStageList.ts index f97e39f028..cf7d2f8985 100644 --- a/packages/client-ts/src/models/PaginatedEmailStageList.ts +++ b/packages/client-ts/src/models/PaginatedEmailStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEndpointDeviceList.ts b/packages/client-ts/src/models/PaginatedEndpointDeviceList.ts index 17fb9fe0b8..ed1cff06fc 100644 --- a/packages/client-ts/src/models/PaginatedEndpointDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedEndpointDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEndpointList.ts b/packages/client-ts/src/models/PaginatedEndpointList.ts index 5223d60fea..bcdaeefb2b 100644 --- a/packages/client-ts/src/models/PaginatedEndpointList.ts +++ b/packages/client-ts/src/models/PaginatedEndpointList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEndpointStageList.ts b/packages/client-ts/src/models/PaginatedEndpointStageList.ts index 55302772d3..7d093f8a3c 100644 --- a/packages/client-ts/src/models/PaginatedEndpointStageList.ts +++ b/packages/client-ts/src/models/PaginatedEndpointStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEnrollmentTokenList.ts b/packages/client-ts/src/models/PaginatedEnrollmentTokenList.ts index 230c74e2ca..ca7e737563 100644 --- a/packages/client-ts/src/models/PaginatedEnrollmentTokenList.ts +++ b/packages/client-ts/src/models/PaginatedEnrollmentTokenList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEventList.ts b/packages/client-ts/src/models/PaginatedEventList.ts index 3293b1c809..ac1c1c1b00 100644 --- a/packages/client-ts/src/models/PaginatedEventList.ts +++ b/packages/client-ts/src/models/PaginatedEventList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedEventMatcherPolicyList.ts b/packages/client-ts/src/models/PaginatedEventMatcherPolicyList.ts index f3138c523d..5145622315 100644 --- a/packages/client-ts/src/models/PaginatedEventMatcherPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedEventMatcherPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedExpiringBaseGrantModelList.ts b/packages/client-ts/src/models/PaginatedExpiringBaseGrantModelList.ts index f5bdb99d37..002d55b1f7 100644 --- a/packages/client-ts/src/models/PaginatedExpiringBaseGrantModelList.ts +++ b/packages/client-ts/src/models/PaginatedExpiringBaseGrantModelList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedExpressionPolicyList.ts b/packages/client-ts/src/models/PaginatedExpressionPolicyList.ts index 999ced8de6..ac16f45156 100644 --- a/packages/client-ts/src/models/PaginatedExpressionPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedExpressionPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedExtraRoleObjectPermissionList.ts b/packages/client-ts/src/models/PaginatedExtraRoleObjectPermissionList.ts index 74df0b6702..bfc33419ae 100644 --- a/packages/client-ts/src/models/PaginatedExtraRoleObjectPermissionList.ts +++ b/packages/client-ts/src/models/PaginatedExtraRoleObjectPermissionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedFleetConnectorList.ts b/packages/client-ts/src/models/PaginatedFleetConnectorList.ts index 23bbe48479..6252e30606 100644 --- a/packages/client-ts/src/models/PaginatedFleetConnectorList.ts +++ b/packages/client-ts/src/models/PaginatedFleetConnectorList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedFlowList.ts b/packages/client-ts/src/models/PaginatedFlowList.ts index e007c4ce48..e20232ec4e 100644 --- a/packages/client-ts/src/models/PaginatedFlowList.ts +++ b/packages/client-ts/src/models/PaginatedFlowList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedFlowStageBindingList.ts b/packages/client-ts/src/models/PaginatedFlowStageBindingList.ts index 4ae23aa9b2..a3b6274dcc 100644 --- a/packages/client-ts/src/models/PaginatedFlowStageBindingList.ts +++ b/packages/client-ts/src/models/PaginatedFlowStageBindingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGeoIPPolicyList.ts b/packages/client-ts/src/models/PaginatedGeoIPPolicyList.ts index a59c13d4a0..c258341924 100644 --- a/packages/client-ts/src/models/PaginatedGeoIPPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedGeoIPPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleChromeConnectorList.ts b/packages/client-ts/src/models/PaginatedGoogleChromeConnectorList.ts index 309bbd51a1..a54d9af74d 100644 --- a/packages/client-ts/src/models/PaginatedGoogleChromeConnectorList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleChromeConnectorList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleEndpointDeviceList.ts b/packages/client-ts/src/models/PaginatedGoogleEndpointDeviceList.ts index 3b1a84d7ea..d0777fc361 100644 --- a/packages/client-ts/src/models/PaginatedGoogleEndpointDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleEndpointDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderGroupList.ts b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderGroupList.ts index 9270b53a6c..15dc631536 100644 --- a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderGroupList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderList.ts b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderList.ts index 1988713c04..cab25c3b24 100644 --- a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderMappingList.ts b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderMappingList.ts index e87a7a8eb8..6a6eb63e0f 100644 --- a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderMappingList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderUserList.ts b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderUserList.ts index e0ec1b7c7c..d687344289 100644 --- a/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderUserList.ts +++ b/packages/client-ts/src/models/PaginatedGoogleWorkspaceProviderUserList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupKerberosSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupKerberosSourceConnectionList.ts index 81139e05b4..295761b9a9 100644 --- a/packages/client-ts/src/models/PaginatedGroupKerberosSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupKerberosSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupLDAPSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupLDAPSourceConnectionList.ts index 895c0cf2b1..eb8d4aa060 100644 --- a/packages/client-ts/src/models/PaginatedGroupLDAPSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupLDAPSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupList.ts b/packages/client-ts/src/models/PaginatedGroupList.ts index a6354ae154..81420a37f6 100644 --- a/packages/client-ts/src/models/PaginatedGroupList.ts +++ b/packages/client-ts/src/models/PaginatedGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupOAuthSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupOAuthSourceConnectionList.ts index ae5514281a..0e8a47ee42 100644 --- a/packages/client-ts/src/models/PaginatedGroupOAuthSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupOAuthSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupPlexSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupPlexSourceConnectionList.ts index 2f6460834e..edc3ab902e 100644 --- a/packages/client-ts/src/models/PaginatedGroupPlexSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupPlexSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupSAMLSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupSAMLSourceConnectionList.ts index c0900c4ee0..b6ab547c74 100644 --- a/packages/client-ts/src/models/PaginatedGroupSAMLSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupSAMLSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupSourceConnectionList.ts index d7ac00bf39..8e0eac1f44 100644 --- a/packages/client-ts/src/models/PaginatedGroupSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedGroupTelegramSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedGroupTelegramSourceConnectionList.ts index 324975f68c..96b7f15c1b 100644 --- a/packages/client-ts/src/models/PaginatedGroupTelegramSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedGroupTelegramSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedIdentificationStageList.ts b/packages/client-ts/src/models/PaginatedIdentificationStageList.ts index 30174ff54c..ba5ab8794a 100644 --- a/packages/client-ts/src/models/PaginatedIdentificationStageList.ts +++ b/packages/client-ts/src/models/PaginatedIdentificationStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedInitialPermissionsList.ts b/packages/client-ts/src/models/PaginatedInitialPermissionsList.ts index 64f59bcea1..5c11402e2f 100644 --- a/packages/client-ts/src/models/PaginatedInitialPermissionsList.ts +++ b/packages/client-ts/src/models/PaginatedInitialPermissionsList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedInvitationList.ts b/packages/client-ts/src/models/PaginatedInvitationList.ts index ce8acb9ceb..d7604754a0 100644 --- a/packages/client-ts/src/models/PaginatedInvitationList.ts +++ b/packages/client-ts/src/models/PaginatedInvitationList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedInvitationStageList.ts b/packages/client-ts/src/models/PaginatedInvitationStageList.ts index 47fd4fc626..046a1b06f2 100644 --- a/packages/client-ts/src/models/PaginatedInvitationStageList.ts +++ b/packages/client-ts/src/models/PaginatedInvitationStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedKerberosSourceList.ts b/packages/client-ts/src/models/PaginatedKerberosSourceList.ts index 821061323f..f89d37b6a8 100644 --- a/packages/client-ts/src/models/PaginatedKerberosSourceList.ts +++ b/packages/client-ts/src/models/PaginatedKerberosSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedKerberosSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedKerberosSourcePropertyMappingList.ts index cbfe5a9fb3..ac563f7fcd 100644 --- a/packages/client-ts/src/models/PaginatedKerberosSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedKerberosSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedKubernetesServiceConnectionList.ts b/packages/client-ts/src/models/PaginatedKubernetesServiceConnectionList.ts index 6b13884b37..8870e3fe05 100644 --- a/packages/client-ts/src/models/PaginatedKubernetesServiceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedKubernetesServiceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLDAPOutpostConfigList.ts b/packages/client-ts/src/models/PaginatedLDAPOutpostConfigList.ts index 3636554c11..a1c23c18c8 100644 --- a/packages/client-ts/src/models/PaginatedLDAPOutpostConfigList.ts +++ b/packages/client-ts/src/models/PaginatedLDAPOutpostConfigList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLDAPProviderList.ts b/packages/client-ts/src/models/PaginatedLDAPProviderList.ts index ccf176b88d..bf7df96e67 100644 --- a/packages/client-ts/src/models/PaginatedLDAPProviderList.ts +++ b/packages/client-ts/src/models/PaginatedLDAPProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLDAPSourceList.ts b/packages/client-ts/src/models/PaginatedLDAPSourceList.ts index 92dc3cee3c..42bcc4e68c 100644 --- a/packages/client-ts/src/models/PaginatedLDAPSourceList.ts +++ b/packages/client-ts/src/models/PaginatedLDAPSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLDAPSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedLDAPSourcePropertyMappingList.ts index 4bad875292..6de83a4c67 100644 --- a/packages/client-ts/src/models/PaginatedLDAPSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedLDAPSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLicenseList.ts b/packages/client-ts/src/models/PaginatedLicenseList.ts index aab8e6f2f5..9b6e3d8716 100644 --- a/packages/client-ts/src/models/PaginatedLicenseList.ts +++ b/packages/client-ts/src/models/PaginatedLicenseList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLifecycleIterationList.ts b/packages/client-ts/src/models/PaginatedLifecycleIterationList.ts index 9623663974..c4f70ce1ab 100644 --- a/packages/client-ts/src/models/PaginatedLifecycleIterationList.ts +++ b/packages/client-ts/src/models/PaginatedLifecycleIterationList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedLifecycleRuleList.ts b/packages/client-ts/src/models/PaginatedLifecycleRuleList.ts index 018a9c91ea..998c56934c 100644 --- a/packages/client-ts/src/models/PaginatedLifecycleRuleList.ts +++ b/packages/client-ts/src/models/PaginatedLifecycleRuleList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderGroupList.ts b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderGroupList.ts index bb4e9157eb..cbe2f4d9f3 100644 --- a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderGroupList.ts +++ b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderList.ts b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderList.ts index 825173ed3d..408add40b9 100644 --- a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderList.ts +++ b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderMappingList.ts b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderMappingList.ts index 60310b4b84..7f9ec4df6d 100644 --- a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderMappingList.ts +++ b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderUserList.ts b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderUserList.ts index 7d2f9139e0..800fa2b98b 100644 --- a/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderUserList.ts +++ b/packages/client-ts/src/models/PaginatedMicrosoftEntraProviderUserList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedMutualTLSStageList.ts b/packages/client-ts/src/models/PaginatedMutualTLSStageList.ts index 77e2b11b47..6e59319368 100644 --- a/packages/client-ts/src/models/PaginatedMutualTLSStageList.ts +++ b/packages/client-ts/src/models/PaginatedMutualTLSStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedNotificationList.ts b/packages/client-ts/src/models/PaginatedNotificationList.ts index b4035e84d9..359caa30e6 100644 --- a/packages/client-ts/src/models/PaginatedNotificationList.ts +++ b/packages/client-ts/src/models/PaginatedNotificationList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedNotificationRuleList.ts b/packages/client-ts/src/models/PaginatedNotificationRuleList.ts index bdb0769994..d7fc4f96e5 100644 --- a/packages/client-ts/src/models/PaginatedNotificationRuleList.ts +++ b/packages/client-ts/src/models/PaginatedNotificationRuleList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedNotificationTransportList.ts b/packages/client-ts/src/models/PaginatedNotificationTransportList.ts index 1abc796955..b025d8f5a1 100644 --- a/packages/client-ts/src/models/PaginatedNotificationTransportList.ts +++ b/packages/client-ts/src/models/PaginatedNotificationTransportList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedNotificationWebhookMappingList.ts b/packages/client-ts/src/models/PaginatedNotificationWebhookMappingList.ts index 8618816a19..b401891cc7 100644 --- a/packages/client-ts/src/models/PaginatedNotificationWebhookMappingList.ts +++ b/packages/client-ts/src/models/PaginatedNotificationWebhookMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedOAuth2ProviderList.ts b/packages/client-ts/src/models/PaginatedOAuth2ProviderList.ts index 2ea768eba3..f7307353b8 100644 --- a/packages/client-ts/src/models/PaginatedOAuth2ProviderList.ts +++ b/packages/client-ts/src/models/PaginatedOAuth2ProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedOAuthSourceList.ts b/packages/client-ts/src/models/PaginatedOAuthSourceList.ts index c856f47f80..f692efc5c1 100644 --- a/packages/client-ts/src/models/PaginatedOAuthSourceList.ts +++ b/packages/client-ts/src/models/PaginatedOAuthSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedOAuthSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedOAuthSourcePropertyMappingList.ts index 08727e02ea..b6a11acd3c 100644 --- a/packages/client-ts/src/models/PaginatedOAuthSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedOAuthSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedOutpostList.ts b/packages/client-ts/src/models/PaginatedOutpostList.ts index bae24cfc90..f8f5b9aaae 100644 --- a/packages/client-ts/src/models/PaginatedOutpostList.ts +++ b/packages/client-ts/src/models/PaginatedOutpostList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPasswordExpiryPolicyList.ts b/packages/client-ts/src/models/PaginatedPasswordExpiryPolicyList.ts index d983b251cf..a6c20f11ff 100644 --- a/packages/client-ts/src/models/PaginatedPasswordExpiryPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedPasswordExpiryPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPasswordPolicyList.ts b/packages/client-ts/src/models/PaginatedPasswordPolicyList.ts index 91b7431c63..f0d39e5160 100644 --- a/packages/client-ts/src/models/PaginatedPasswordPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedPasswordPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPasswordStageList.ts b/packages/client-ts/src/models/PaginatedPasswordStageList.ts index 62872502c0..5ad8ed1c8e 100644 --- a/packages/client-ts/src/models/PaginatedPasswordStageList.ts +++ b/packages/client-ts/src/models/PaginatedPasswordStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPermissionList.ts b/packages/client-ts/src/models/PaginatedPermissionList.ts index 6620dc6711..28fe6c68a0 100644 --- a/packages/client-ts/src/models/PaginatedPermissionList.ts +++ b/packages/client-ts/src/models/PaginatedPermissionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPlexSourceList.ts b/packages/client-ts/src/models/PaginatedPlexSourceList.ts index 5b1702b55f..d87480a6bc 100644 --- a/packages/client-ts/src/models/PaginatedPlexSourceList.ts +++ b/packages/client-ts/src/models/PaginatedPlexSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPlexSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedPlexSourcePropertyMappingList.ts index 431adfe408..05190a9470 100644 --- a/packages/client-ts/src/models/PaginatedPlexSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedPlexSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPolicyBindingList.ts b/packages/client-ts/src/models/PaginatedPolicyBindingList.ts index 8337782035..617d765d78 100644 --- a/packages/client-ts/src/models/PaginatedPolicyBindingList.ts +++ b/packages/client-ts/src/models/PaginatedPolicyBindingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPolicyList.ts b/packages/client-ts/src/models/PaginatedPolicyList.ts index bed511d411..a2a8382ccb 100644 --- a/packages/client-ts/src/models/PaginatedPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPromptList.ts b/packages/client-ts/src/models/PaginatedPromptList.ts index ff8a359104..31291d3c76 100644 --- a/packages/client-ts/src/models/PaginatedPromptList.ts +++ b/packages/client-ts/src/models/PaginatedPromptList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPromptStageList.ts b/packages/client-ts/src/models/PaginatedPromptStageList.ts index 2e17603ed5..d88c92139e 100644 --- a/packages/client-ts/src/models/PaginatedPromptStageList.ts +++ b/packages/client-ts/src/models/PaginatedPromptStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedPropertyMappingList.ts b/packages/client-ts/src/models/PaginatedPropertyMappingList.ts index 913c6603b2..aee0355bc6 100644 --- a/packages/client-ts/src/models/PaginatedPropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedPropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedProviderList.ts b/packages/client-ts/src/models/PaginatedProviderList.ts index b9f6b4e83f..4d7869a2ed 100644 --- a/packages/client-ts/src/models/PaginatedProviderList.ts +++ b/packages/client-ts/src/models/PaginatedProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedProxyOutpostConfigList.ts b/packages/client-ts/src/models/PaginatedProxyOutpostConfigList.ts index 0207fc7e80..40208cc4e8 100644 --- a/packages/client-ts/src/models/PaginatedProxyOutpostConfigList.ts +++ b/packages/client-ts/src/models/PaginatedProxyOutpostConfigList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedProxyProviderList.ts b/packages/client-ts/src/models/PaginatedProxyProviderList.ts index a462bccb56..1a1b3c88be 100644 --- a/packages/client-ts/src/models/PaginatedProxyProviderList.ts +++ b/packages/client-ts/src/models/PaginatedProxyProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRACPropertyMappingList.ts b/packages/client-ts/src/models/PaginatedRACPropertyMappingList.ts index 98ca215a71..3f59c8a7e2 100644 --- a/packages/client-ts/src/models/PaginatedRACPropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedRACPropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRACProviderList.ts b/packages/client-ts/src/models/PaginatedRACProviderList.ts index 225de11b25..3c7951c435 100644 --- a/packages/client-ts/src/models/PaginatedRACProviderList.ts +++ b/packages/client-ts/src/models/PaginatedRACProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRadiusOutpostConfigList.ts b/packages/client-ts/src/models/PaginatedRadiusOutpostConfigList.ts index 0c299134f0..9cc13d1e86 100644 --- a/packages/client-ts/src/models/PaginatedRadiusOutpostConfigList.ts +++ b/packages/client-ts/src/models/PaginatedRadiusOutpostConfigList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRadiusProviderList.ts b/packages/client-ts/src/models/PaginatedRadiusProviderList.ts index 6afb6a26dc..3f602f7837 100644 --- a/packages/client-ts/src/models/PaginatedRadiusProviderList.ts +++ b/packages/client-ts/src/models/PaginatedRadiusProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRadiusProviderPropertyMappingList.ts b/packages/client-ts/src/models/PaginatedRadiusProviderPropertyMappingList.ts index 1d24b33fd0..d9f0158185 100644 --- a/packages/client-ts/src/models/PaginatedRadiusProviderPropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedRadiusProviderPropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRedirectStageList.ts b/packages/client-ts/src/models/PaginatedRedirectStageList.ts index c721736454..d65d20788f 100644 --- a/packages/client-ts/src/models/PaginatedRedirectStageList.ts +++ b/packages/client-ts/src/models/PaginatedRedirectStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedReputationList.ts b/packages/client-ts/src/models/PaginatedReputationList.ts index 71b39a7203..427f5a97db 100644 --- a/packages/client-ts/src/models/PaginatedReputationList.ts +++ b/packages/client-ts/src/models/PaginatedReputationList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedReputationPolicyList.ts b/packages/client-ts/src/models/PaginatedReputationPolicyList.ts index 442ce5e85b..6aee1241fa 100644 --- a/packages/client-ts/src/models/PaginatedReputationPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedReputationPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRoleAssignedObjectPermissionList.ts b/packages/client-ts/src/models/PaginatedRoleAssignedObjectPermissionList.ts index e3a7db9a10..b8fee92b28 100644 --- a/packages/client-ts/src/models/PaginatedRoleAssignedObjectPermissionList.ts +++ b/packages/client-ts/src/models/PaginatedRoleAssignedObjectPermissionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedRoleList.ts b/packages/client-ts/src/models/PaginatedRoleList.ts index cb97316334..74248b62ea 100644 --- a/packages/client-ts/src/models/PaginatedRoleList.ts +++ b/packages/client-ts/src/models/PaginatedRoleList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSAMLPropertyMappingList.ts b/packages/client-ts/src/models/PaginatedSAMLPropertyMappingList.ts index af2c4764d6..6dfb73aa47 100644 --- a/packages/client-ts/src/models/PaginatedSAMLPropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedSAMLPropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSAMLProviderList.ts b/packages/client-ts/src/models/PaginatedSAMLProviderList.ts index 3fee0afb34..3d6213ee9f 100644 --- a/packages/client-ts/src/models/PaginatedSAMLProviderList.ts +++ b/packages/client-ts/src/models/PaginatedSAMLProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSAMLSourceList.ts b/packages/client-ts/src/models/PaginatedSAMLSourceList.ts index 2d93add262..3499b4e8f0 100644 --- a/packages/client-ts/src/models/PaginatedSAMLSourceList.ts +++ b/packages/client-ts/src/models/PaginatedSAMLSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSAMLSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedSAMLSourcePropertyMappingList.ts index b22ee289b1..a2dbccf1e7 100644 --- a/packages/client-ts/src/models/PaginatedSAMLSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedSAMLSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMMappingList.ts b/packages/client-ts/src/models/PaginatedSCIMMappingList.ts index ceceb3d9c1..d8e62100d8 100644 --- a/packages/client-ts/src/models/PaginatedSCIMMappingList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMProviderGroupList.ts b/packages/client-ts/src/models/PaginatedSCIMProviderGroupList.ts index bf9aa1738a..fd75cc4a0a 100644 --- a/packages/client-ts/src/models/PaginatedSCIMProviderGroupList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMProviderGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMProviderList.ts b/packages/client-ts/src/models/PaginatedSCIMProviderList.ts index f1f02a9679..a8c1b39498 100644 --- a/packages/client-ts/src/models/PaginatedSCIMProviderList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMProviderUserList.ts b/packages/client-ts/src/models/PaginatedSCIMProviderUserList.ts index c80eea91a0..f487f0f7f8 100644 --- a/packages/client-ts/src/models/PaginatedSCIMProviderUserList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMProviderUserList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMSourceGroupList.ts b/packages/client-ts/src/models/PaginatedSCIMSourceGroupList.ts index bada2c7146..8733e3cf8d 100644 --- a/packages/client-ts/src/models/PaginatedSCIMSourceGroupList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMSourceGroupList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMSourceList.ts b/packages/client-ts/src/models/PaginatedSCIMSourceList.ts index 6082401c9a..637517afb6 100644 --- a/packages/client-ts/src/models/PaginatedSCIMSourceList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedSCIMSourcePropertyMappingList.ts index f34d8d6b01..14c1f84773 100644 --- a/packages/client-ts/src/models/PaginatedSCIMSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSCIMSourceUserList.ts b/packages/client-ts/src/models/PaginatedSCIMSourceUserList.ts index ac3b471c55..2ef326c288 100644 --- a/packages/client-ts/src/models/PaginatedSCIMSourceUserList.ts +++ b/packages/client-ts/src/models/PaginatedSCIMSourceUserList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSMSDeviceList.ts b/packages/client-ts/src/models/PaginatedSMSDeviceList.ts index d727199b29..c906c3ac99 100644 --- a/packages/client-ts/src/models/PaginatedSMSDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedSMSDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSSFProviderList.ts b/packages/client-ts/src/models/PaginatedSSFProviderList.ts index 3064946c51..a3dd00bd8e 100644 --- a/packages/client-ts/src/models/PaginatedSSFProviderList.ts +++ b/packages/client-ts/src/models/PaginatedSSFProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSSFStreamList.ts b/packages/client-ts/src/models/PaginatedSSFStreamList.ts index 61295aac60..450fbe0009 100644 --- a/packages/client-ts/src/models/PaginatedSSFStreamList.ts +++ b/packages/client-ts/src/models/PaginatedSSFStreamList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedScheduleList.ts b/packages/client-ts/src/models/PaginatedScheduleList.ts index 0b7fbaa847..0181453199 100644 --- a/packages/client-ts/src/models/PaginatedScheduleList.ts +++ b/packages/client-ts/src/models/PaginatedScheduleList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedScopeMappingList.ts b/packages/client-ts/src/models/PaginatedScopeMappingList.ts index 2292d1239f..b5722b8450 100644 --- a/packages/client-ts/src/models/PaginatedScopeMappingList.ts +++ b/packages/client-ts/src/models/PaginatedScopeMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedServiceConnectionList.ts b/packages/client-ts/src/models/PaginatedServiceConnectionList.ts index d96a5da228..16ffd653e5 100644 --- a/packages/client-ts/src/models/PaginatedServiceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedServiceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSourceList.ts b/packages/client-ts/src/models/PaginatedSourceList.ts index 653f87df73..7586c4ce76 100644 --- a/packages/client-ts/src/models/PaginatedSourceList.ts +++ b/packages/client-ts/src/models/PaginatedSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedSourceStageList.ts b/packages/client-ts/src/models/PaginatedSourceStageList.ts index 271fab7a16..71fdbdd52a 100644 --- a/packages/client-ts/src/models/PaginatedSourceStageList.ts +++ b/packages/client-ts/src/models/PaginatedSourceStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedStageList.ts b/packages/client-ts/src/models/PaginatedStageList.ts index 42922e6574..f83c2f8868 100644 --- a/packages/client-ts/src/models/PaginatedStageList.ts +++ b/packages/client-ts/src/models/PaginatedStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedStaticDeviceList.ts b/packages/client-ts/src/models/PaginatedStaticDeviceList.ts index df819a50d0..c7fb17a7d4 100644 --- a/packages/client-ts/src/models/PaginatedStaticDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedStaticDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTOTPDeviceList.ts b/packages/client-ts/src/models/PaginatedTOTPDeviceList.ts index bb0888ae32..32b0b83caf 100644 --- a/packages/client-ts/src/models/PaginatedTOTPDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedTOTPDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTaskList.ts b/packages/client-ts/src/models/PaginatedTaskList.ts index 9c02394118..77ce2afd71 100644 --- a/packages/client-ts/src/models/PaginatedTaskList.ts +++ b/packages/client-ts/src/models/PaginatedTaskList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTelegramSourceList.ts b/packages/client-ts/src/models/PaginatedTelegramSourceList.ts index fc46f94a7b..ea92ee9f73 100644 --- a/packages/client-ts/src/models/PaginatedTelegramSourceList.ts +++ b/packages/client-ts/src/models/PaginatedTelegramSourceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTelegramSourcePropertyMappingList.ts b/packages/client-ts/src/models/PaginatedTelegramSourcePropertyMappingList.ts index 3533fea922..6a1101a854 100644 --- a/packages/client-ts/src/models/PaginatedTelegramSourcePropertyMappingList.ts +++ b/packages/client-ts/src/models/PaginatedTelegramSourcePropertyMappingList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTenantList.ts b/packages/client-ts/src/models/PaginatedTenantList.ts index c46a5eaeeb..cf3ae69be4 100644 --- a/packages/client-ts/src/models/PaginatedTenantList.ts +++ b/packages/client-ts/src/models/PaginatedTenantList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTokenList.ts b/packages/client-ts/src/models/PaginatedTokenList.ts index cb64730554..0aa287f398 100644 --- a/packages/client-ts/src/models/PaginatedTokenList.ts +++ b/packages/client-ts/src/models/PaginatedTokenList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedTokenModelList.ts b/packages/client-ts/src/models/PaginatedTokenModelList.ts index c9c18544e8..7ae9db2943 100644 --- a/packages/client-ts/src/models/PaginatedTokenModelList.ts +++ b/packages/client-ts/src/models/PaginatedTokenModelList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUniquePasswordPolicyList.ts b/packages/client-ts/src/models/PaginatedUniquePasswordPolicyList.ts index aed7706eb9..ec58c50908 100644 --- a/packages/client-ts/src/models/PaginatedUniquePasswordPolicyList.ts +++ b/packages/client-ts/src/models/PaginatedUniquePasswordPolicyList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserConsentList.ts b/packages/client-ts/src/models/PaginatedUserConsentList.ts index 0c544fca4c..d0af905b75 100644 --- a/packages/client-ts/src/models/PaginatedUserConsentList.ts +++ b/packages/client-ts/src/models/PaginatedUserConsentList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserDeleteStageList.ts b/packages/client-ts/src/models/PaginatedUserDeleteStageList.ts index f502b821c9..a4cd20e2a4 100644 --- a/packages/client-ts/src/models/PaginatedUserDeleteStageList.ts +++ b/packages/client-ts/src/models/PaginatedUserDeleteStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserKerberosSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserKerberosSourceConnectionList.ts index 7b8192360c..105623e7d5 100644 --- a/packages/client-ts/src/models/PaginatedUserKerberosSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserKerberosSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserLDAPSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserLDAPSourceConnectionList.ts index 816dabf6fa..d67209f4b7 100644 --- a/packages/client-ts/src/models/PaginatedUserLDAPSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserLDAPSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserList.ts b/packages/client-ts/src/models/PaginatedUserList.ts index b0f6a3e83f..c95790cf08 100644 --- a/packages/client-ts/src/models/PaginatedUserList.ts +++ b/packages/client-ts/src/models/PaginatedUserList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserLoginStageList.ts b/packages/client-ts/src/models/PaginatedUserLoginStageList.ts index feac05c3fa..346112506a 100644 --- a/packages/client-ts/src/models/PaginatedUserLoginStageList.ts +++ b/packages/client-ts/src/models/PaginatedUserLoginStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserLogoutStageList.ts b/packages/client-ts/src/models/PaginatedUserLogoutStageList.ts index f18bc6083a..16be80445e 100644 --- a/packages/client-ts/src/models/PaginatedUserLogoutStageList.ts +++ b/packages/client-ts/src/models/PaginatedUserLogoutStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserOAuthSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserOAuthSourceConnectionList.ts index 2968186eeb..407e676c64 100644 --- a/packages/client-ts/src/models/PaginatedUserOAuthSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserOAuthSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserPlexSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserPlexSourceConnectionList.ts index 1c292f35d5..8f30f5d3c6 100644 --- a/packages/client-ts/src/models/PaginatedUserPlexSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserPlexSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserSAMLSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserSAMLSourceConnectionList.ts index feb25f9737..45e0d4c527 100644 --- a/packages/client-ts/src/models/PaginatedUserSAMLSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserSAMLSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserSourceConnectionList.ts index b0fb13484f..c86c8e500a 100644 --- a/packages/client-ts/src/models/PaginatedUserSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserTelegramSourceConnectionList.ts b/packages/client-ts/src/models/PaginatedUserTelegramSourceConnectionList.ts index fe2725193c..f50f90e763 100644 --- a/packages/client-ts/src/models/PaginatedUserTelegramSourceConnectionList.ts +++ b/packages/client-ts/src/models/PaginatedUserTelegramSourceConnectionList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedUserWriteStageList.ts b/packages/client-ts/src/models/PaginatedUserWriteStageList.ts index b64a7b8757..3afb70646e 100644 --- a/packages/client-ts/src/models/PaginatedUserWriteStageList.ts +++ b/packages/client-ts/src/models/PaginatedUserWriteStageList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedWSFederationProviderList.ts b/packages/client-ts/src/models/PaginatedWSFederationProviderList.ts index 4e9cada382..5be396433a 100644 --- a/packages/client-ts/src/models/PaginatedWSFederationProviderList.ts +++ b/packages/client-ts/src/models/PaginatedWSFederationProviderList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedWebAuthnDeviceList.ts b/packages/client-ts/src/models/PaginatedWebAuthnDeviceList.ts index d158422599..d3fb4a96bc 100644 --- a/packages/client-ts/src/models/PaginatedWebAuthnDeviceList.ts +++ b/packages/client-ts/src/models/PaginatedWebAuthnDeviceList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PaginatedWebAuthnDeviceTypeList.ts b/packages/client-ts/src/models/PaginatedWebAuthnDeviceTypeList.ts index 75eaea8cae..d982bc82ab 100644 --- a/packages/client-ts/src/models/PaginatedWebAuthnDeviceTypeList.ts +++ b/packages/client-ts/src/models/PaginatedWebAuthnDeviceTypeList.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Pagination.ts b/packages/client-ts/src/models/Pagination.ts index d8b52a7e7c..56c011e544 100644 --- a/packages/client-ts/src/models/Pagination.ts +++ b/packages/client-ts/src/models/Pagination.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PartialGroup.ts b/packages/client-ts/src/models/PartialGroup.ts index faf49d8697..b74d285903 100644 --- a/packages/client-ts/src/models/PartialGroup.ts +++ b/packages/client-ts/src/models/PartialGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PartialUser.ts b/packages/client-ts/src/models/PartialUser.ts index 9c275bf169..a78797bc1b 100644 --- a/packages/client-ts/src/models/PartialUser.ts +++ b/packages/client-ts/src/models/PartialUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordChallenge.ts b/packages/client-ts/src/models/PasswordChallenge.ts index e2ca02575a..ccbf906b50 100644 --- a/packages/client-ts/src/models/PasswordChallenge.ts +++ b/packages/client-ts/src/models/PasswordChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordChallengeResponseRequest.ts b/packages/client-ts/src/models/PasswordChallengeResponseRequest.ts index b0ea4a5b76..8f63bf7a7d 100644 --- a/packages/client-ts/src/models/PasswordChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/PasswordChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordExpiryPolicy.ts b/packages/client-ts/src/models/PasswordExpiryPolicy.ts index 2e3c23107c..2b002e8d41 100644 --- a/packages/client-ts/src/models/PasswordExpiryPolicy.ts +++ b/packages/client-ts/src/models/PasswordExpiryPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordExpiryPolicyRequest.ts b/packages/client-ts/src/models/PasswordExpiryPolicyRequest.ts index b59d44b287..6da4dbc001 100644 --- a/packages/client-ts/src/models/PasswordExpiryPolicyRequest.ts +++ b/packages/client-ts/src/models/PasswordExpiryPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordPolicy.ts b/packages/client-ts/src/models/PasswordPolicy.ts index 318dd49239..ec9b57f6f1 100644 --- a/packages/client-ts/src/models/PasswordPolicy.ts +++ b/packages/client-ts/src/models/PasswordPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordPolicyRequest.ts b/packages/client-ts/src/models/PasswordPolicyRequest.ts index 6963ea65aa..7e5b8cd1dc 100644 --- a/packages/client-ts/src/models/PasswordPolicyRequest.ts +++ b/packages/client-ts/src/models/PasswordPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordStage.ts b/packages/client-ts/src/models/PasswordStage.ts index a3a360da00..1018562f1b 100644 --- a/packages/client-ts/src/models/PasswordStage.ts +++ b/packages/client-ts/src/models/PasswordStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PasswordStageRequest.ts b/packages/client-ts/src/models/PasswordStageRequest.ts index e3ea8b6638..37739907f7 100644 --- a/packages/client-ts/src/models/PasswordStageRequest.ts +++ b/packages/client-ts/src/models/PasswordStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAccountLockdownStageRequest.ts b/packages/client-ts/src/models/PatchedAccountLockdownStageRequest.ts index a562f2eb2c..8ea8c5eb6a 100644 --- a/packages/client-ts/src/models/PatchedAccountLockdownStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAccountLockdownStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAgentConnectorRequest.ts b/packages/client-ts/src/models/PatchedAgentConnectorRequest.ts index bedb56e8cf..c174b989a6 100644 --- a/packages/client-ts/src/models/PatchedAgentConnectorRequest.ts +++ b/packages/client-ts/src/models/PatchedAgentConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAppleIndependentSecureEnclaveRequest.ts b/packages/client-ts/src/models/PatchedAppleIndependentSecureEnclaveRequest.ts index a35f6ff79a..f449332dda 100644 --- a/packages/client-ts/src/models/PatchedAppleIndependentSecureEnclaveRequest.ts +++ b/packages/client-ts/src/models/PatchedAppleIndependentSecureEnclaveRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedApplicationEntitlementRequest.ts b/packages/client-ts/src/models/PatchedApplicationEntitlementRequest.ts index 5fb60f65ea..c4d8ad80b7 100644 --- a/packages/client-ts/src/models/PatchedApplicationEntitlementRequest.ts +++ b/packages/client-ts/src/models/PatchedApplicationEntitlementRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedApplicationRequest.ts b/packages/client-ts/src/models/PatchedApplicationRequest.ts index 577ebd7951..e1d772894c 100644 --- a/packages/client-ts/src/models/PatchedApplicationRequest.ts +++ b/packages/client-ts/src/models/PatchedApplicationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorDuoStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorDuoStageRequest.ts index 2d898f0be0..de443967a9 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorDuoStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorDuoStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorEmailStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorEmailStageRequest.ts index 95c2d026e6..13e29a3870 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorEmailStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorEmailStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorEndpointGDTCStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorEndpointGDTCStageRequest.ts index 69c8f53a8d..77026dccff 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorEndpointGDTCStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorEndpointGDTCStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorSMSStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorSMSStageRequest.ts index 38aa57f942..1d87e24b47 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorSMSStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorSMSStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorStaticStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorStaticStageRequest.ts index 7d9ac6de66..7a2a3a728f 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorStaticStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorStaticStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorTOTPStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorTOTPStageRequest.ts index fa171f10bf..3fb6643f29 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorTOTPStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorTOTPStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorValidateStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorValidateStageRequest.ts index 520db4f6da..d5d2910d94 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorValidateStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorValidateStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedAuthenticatorWebAuthnStageRequest.ts b/packages/client-ts/src/models/PatchedAuthenticatorWebAuthnStageRequest.ts index edf41aed62..d39205ac43 100644 --- a/packages/client-ts/src/models/PatchedAuthenticatorWebAuthnStageRequest.ts +++ b/packages/client-ts/src/models/PatchedAuthenticatorWebAuthnStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedBlueprintInstanceRequest.ts b/packages/client-ts/src/models/PatchedBlueprintInstanceRequest.ts index 47db86aefa..b5e01cc207 100644 --- a/packages/client-ts/src/models/PatchedBlueprintInstanceRequest.ts +++ b/packages/client-ts/src/models/PatchedBlueprintInstanceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedBrandRequest.ts b/packages/client-ts/src/models/PatchedBrandRequest.ts index 62709215b6..e957902ea6 100644 --- a/packages/client-ts/src/models/PatchedBrandRequest.ts +++ b/packages/client-ts/src/models/PatchedBrandRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedCaptchaStageRequest.ts b/packages/client-ts/src/models/PatchedCaptchaStageRequest.ts index fd3037dccb..609aa7b75c 100644 --- a/packages/client-ts/src/models/PatchedCaptchaStageRequest.ts +++ b/packages/client-ts/src/models/PatchedCaptchaStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedCertificateKeyPairRequest.ts b/packages/client-ts/src/models/PatchedCertificateKeyPairRequest.ts index a3c602ea4c..fb86afd69d 100644 --- a/packages/client-ts/src/models/PatchedCertificateKeyPairRequest.ts +++ b/packages/client-ts/src/models/PatchedCertificateKeyPairRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedConnectionTokenRequest.ts b/packages/client-ts/src/models/PatchedConnectionTokenRequest.ts index af6275c8c7..11cedb240b 100644 --- a/packages/client-ts/src/models/PatchedConnectionTokenRequest.ts +++ b/packages/client-ts/src/models/PatchedConnectionTokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedConsentStageRequest.ts b/packages/client-ts/src/models/PatchedConsentStageRequest.ts index 639c44f270..e49d5ffe73 100644 --- a/packages/client-ts/src/models/PatchedConsentStageRequest.ts +++ b/packages/client-ts/src/models/PatchedConsentStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDenyStageRequest.ts b/packages/client-ts/src/models/PatchedDenyStageRequest.ts index 324bc7780d..b76b61403f 100644 --- a/packages/client-ts/src/models/PatchedDenyStageRequest.ts +++ b/packages/client-ts/src/models/PatchedDenyStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDeviceAccessGroupRequest.ts b/packages/client-ts/src/models/PatchedDeviceAccessGroupRequest.ts index 4b68d46596..f31992367e 100644 --- a/packages/client-ts/src/models/PatchedDeviceAccessGroupRequest.ts +++ b/packages/client-ts/src/models/PatchedDeviceAccessGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDeviceUserBindingRequest.ts b/packages/client-ts/src/models/PatchedDeviceUserBindingRequest.ts index 26106d967f..7023ede6cb 100644 --- a/packages/client-ts/src/models/PatchedDeviceUserBindingRequest.ts +++ b/packages/client-ts/src/models/PatchedDeviceUserBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDockerServiceConnectionRequest.ts b/packages/client-ts/src/models/PatchedDockerServiceConnectionRequest.ts index df4ab94aa4..a28c2667d4 100644 --- a/packages/client-ts/src/models/PatchedDockerServiceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedDockerServiceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDomainRequest.ts b/packages/client-ts/src/models/PatchedDomainRequest.ts index d5f6779048..c24a31ba3c 100644 --- a/packages/client-ts/src/models/PatchedDomainRequest.ts +++ b/packages/client-ts/src/models/PatchedDomainRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDummyPolicyRequest.ts b/packages/client-ts/src/models/PatchedDummyPolicyRequest.ts index 66a110e0a0..e9a734bf06 100644 --- a/packages/client-ts/src/models/PatchedDummyPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedDummyPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDummyStageRequest.ts b/packages/client-ts/src/models/PatchedDummyStageRequest.ts index e6676b6d86..e85a56f16c 100644 --- a/packages/client-ts/src/models/PatchedDummyStageRequest.ts +++ b/packages/client-ts/src/models/PatchedDummyStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedDuoDeviceRequest.ts b/packages/client-ts/src/models/PatchedDuoDeviceRequest.ts index b8064830eb..70b5b34ec7 100644 --- a/packages/client-ts/src/models/PatchedDuoDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedDuoDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEmailDeviceRequest.ts b/packages/client-ts/src/models/PatchedEmailDeviceRequest.ts index 9b9481e4c6..cdd71e89b2 100644 --- a/packages/client-ts/src/models/PatchedEmailDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedEmailDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEmailStageRequest.ts b/packages/client-ts/src/models/PatchedEmailStageRequest.ts index 1284ad1170..4ac82a4b92 100644 --- a/packages/client-ts/src/models/PatchedEmailStageRequest.ts +++ b/packages/client-ts/src/models/PatchedEmailStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEndpointDeviceRequest.ts b/packages/client-ts/src/models/PatchedEndpointDeviceRequest.ts index 87dbd8854e..35e4812e2f 100644 --- a/packages/client-ts/src/models/PatchedEndpointDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedEndpointDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEndpointRequest.ts b/packages/client-ts/src/models/PatchedEndpointRequest.ts index 6f2827c0a0..ec3cd95504 100644 --- a/packages/client-ts/src/models/PatchedEndpointRequest.ts +++ b/packages/client-ts/src/models/PatchedEndpointRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEndpointStageRequest.ts b/packages/client-ts/src/models/PatchedEndpointStageRequest.ts index 0b1a176018..4981ac1e32 100644 --- a/packages/client-ts/src/models/PatchedEndpointStageRequest.ts +++ b/packages/client-ts/src/models/PatchedEndpointStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEnrollmentTokenRequest.ts b/packages/client-ts/src/models/PatchedEnrollmentTokenRequest.ts index d02d50b969..3312730bf5 100644 --- a/packages/client-ts/src/models/PatchedEnrollmentTokenRequest.ts +++ b/packages/client-ts/src/models/PatchedEnrollmentTokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEventMatcherPolicyRequest.ts b/packages/client-ts/src/models/PatchedEventMatcherPolicyRequest.ts index c42c3a6cb4..6325693298 100644 --- a/packages/client-ts/src/models/PatchedEventMatcherPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedEventMatcherPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedEventRequest.ts b/packages/client-ts/src/models/PatchedEventRequest.ts index 5afa67e386..6ecc3a7652 100644 --- a/packages/client-ts/src/models/PatchedEventRequest.ts +++ b/packages/client-ts/src/models/PatchedEventRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedExpressionPolicyRequest.ts b/packages/client-ts/src/models/PatchedExpressionPolicyRequest.ts index 1cd3df7647..4be5f89e02 100644 --- a/packages/client-ts/src/models/PatchedExpressionPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedExpressionPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedFleetConnectorRequest.ts b/packages/client-ts/src/models/PatchedFleetConnectorRequest.ts index 438642c725..cd62093c9a 100644 --- a/packages/client-ts/src/models/PatchedFleetConnectorRequest.ts +++ b/packages/client-ts/src/models/PatchedFleetConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedFlowRequest.ts b/packages/client-ts/src/models/PatchedFlowRequest.ts index 1b08b2ea07..ca15a696db 100644 --- a/packages/client-ts/src/models/PatchedFlowRequest.ts +++ b/packages/client-ts/src/models/PatchedFlowRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedFlowStageBindingRequest.ts b/packages/client-ts/src/models/PatchedFlowStageBindingRequest.ts index 031d6f88ee..ce2c0810c9 100644 --- a/packages/client-ts/src/models/PatchedFlowStageBindingRequest.ts +++ b/packages/client-ts/src/models/PatchedFlowStageBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGeoIPPolicyRequest.ts b/packages/client-ts/src/models/PatchedGeoIPPolicyRequest.ts index 1f8aac42f1..f8356b93c4 100644 --- a/packages/client-ts/src/models/PatchedGeoIPPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedGeoIPPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGoogleChromeConnectorRequest.ts b/packages/client-ts/src/models/PatchedGoogleChromeConnectorRequest.ts index ef42d48e19..432a3db992 100644 --- a/packages/client-ts/src/models/PatchedGoogleChromeConnectorRequest.ts +++ b/packages/client-ts/src/models/PatchedGoogleChromeConnectorRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGoogleEndpointDeviceRequest.ts b/packages/client-ts/src/models/PatchedGoogleEndpointDeviceRequest.ts index d445a005bd..86633991a6 100644 --- a/packages/client-ts/src/models/PatchedGoogleEndpointDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedGoogleEndpointDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderMappingRequest.ts b/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderMappingRequest.ts index ed816ca9de..21a51bcf2d 100644 --- a/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderRequest.ts b/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderRequest.ts index 6b337f562a..db415c3597 100644 --- a/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedGoogleWorkspaceProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupKerberosSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupKerberosSourceConnectionRequest.ts index f874b95ddc..a0212a2017 100644 --- a/packages/client-ts/src/models/PatchedGroupKerberosSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupKerberosSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupLDAPSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupLDAPSourceConnectionRequest.ts index bdc7537d54..3f4e87209f 100644 --- a/packages/client-ts/src/models/PatchedGroupLDAPSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupLDAPSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupOAuthSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupOAuthSourceConnectionRequest.ts index dd8339de30..c15a89da1c 100644 --- a/packages/client-ts/src/models/PatchedGroupOAuthSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupOAuthSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupPlexSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupPlexSourceConnectionRequest.ts index 25fed0a36d..b74ea198f9 100644 --- a/packages/client-ts/src/models/PatchedGroupPlexSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupPlexSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupRequest.ts b/packages/client-ts/src/models/PatchedGroupRequest.ts index 5d176855f3..66ff674e28 100644 --- a/packages/client-ts/src/models/PatchedGroupRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupSAMLSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupSAMLSourceConnectionRequest.ts index a77a78d629..2f50e202e0 100644 --- a/packages/client-ts/src/models/PatchedGroupSAMLSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupSAMLSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupSourceConnectionRequest.ts index 38889061b1..5d8af60684 100644 --- a/packages/client-ts/src/models/PatchedGroupSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedGroupTelegramSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedGroupTelegramSourceConnectionRequest.ts index 460672cd69..a678893a8c 100644 --- a/packages/client-ts/src/models/PatchedGroupTelegramSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedGroupTelegramSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedIdentificationStageRequest.ts b/packages/client-ts/src/models/PatchedIdentificationStageRequest.ts index 33d1d5c56c..572c2dd263 100644 --- a/packages/client-ts/src/models/PatchedIdentificationStageRequest.ts +++ b/packages/client-ts/src/models/PatchedIdentificationStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedInitialPermissionsRequest.ts b/packages/client-ts/src/models/PatchedInitialPermissionsRequest.ts index 7fa5e976f0..28aa53b018 100644 --- a/packages/client-ts/src/models/PatchedInitialPermissionsRequest.ts +++ b/packages/client-ts/src/models/PatchedInitialPermissionsRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedInvitationRequest.ts b/packages/client-ts/src/models/PatchedInvitationRequest.ts index c7083d8c86..100eb87953 100644 --- a/packages/client-ts/src/models/PatchedInvitationRequest.ts +++ b/packages/client-ts/src/models/PatchedInvitationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedInvitationStageRequest.ts b/packages/client-ts/src/models/PatchedInvitationStageRequest.ts index 7edcfd952b..008d2b198b 100644 --- a/packages/client-ts/src/models/PatchedInvitationStageRequest.ts +++ b/packages/client-ts/src/models/PatchedInvitationStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedKerberosSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedKerberosSourcePropertyMappingRequest.ts index b140074c4d..2265d02e13 100644 --- a/packages/client-ts/src/models/PatchedKerberosSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedKerberosSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedKerberosSourceRequest.ts b/packages/client-ts/src/models/PatchedKerberosSourceRequest.ts index 7b340bb52c..72572d5481 100644 --- a/packages/client-ts/src/models/PatchedKerberosSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedKerberosSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedKubernetesServiceConnectionRequest.ts b/packages/client-ts/src/models/PatchedKubernetesServiceConnectionRequest.ts index 1bf99fc6f0..4121d0601b 100644 --- a/packages/client-ts/src/models/PatchedKubernetesServiceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedKubernetesServiceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedLDAPProviderRequest.ts b/packages/client-ts/src/models/PatchedLDAPProviderRequest.ts index d5cfbcea91..37c12ead2c 100644 --- a/packages/client-ts/src/models/PatchedLDAPProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedLDAPProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedLDAPSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedLDAPSourcePropertyMappingRequest.ts index fdc68fdee0..d1b180cb4f 100644 --- a/packages/client-ts/src/models/PatchedLDAPSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedLDAPSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedLDAPSourceRequest.ts b/packages/client-ts/src/models/PatchedLDAPSourceRequest.ts index 473ceb1541..f10636dff2 100644 --- a/packages/client-ts/src/models/PatchedLDAPSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedLDAPSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedLicenseRequest.ts b/packages/client-ts/src/models/PatchedLicenseRequest.ts index 8250b2ecd1..816a15c6ba 100644 --- a/packages/client-ts/src/models/PatchedLicenseRequest.ts +++ b/packages/client-ts/src/models/PatchedLicenseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedLifecycleRuleRequest.ts b/packages/client-ts/src/models/PatchedLifecycleRuleRequest.ts index 3c77f4057e..132a99b274 100644 --- a/packages/client-ts/src/models/PatchedLifecycleRuleRequest.ts +++ b/packages/client-ts/src/models/PatchedLifecycleRuleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedMicrosoftEntraProviderMappingRequest.ts b/packages/client-ts/src/models/PatchedMicrosoftEntraProviderMappingRequest.ts index 57e9079959..57fd8cc8f7 100644 --- a/packages/client-ts/src/models/PatchedMicrosoftEntraProviderMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedMicrosoftEntraProviderMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedMicrosoftEntraProviderRequest.ts b/packages/client-ts/src/models/PatchedMicrosoftEntraProviderRequest.ts index de3c1a01f8..0718c75f14 100644 --- a/packages/client-ts/src/models/PatchedMicrosoftEntraProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedMicrosoftEntraProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedMutualTLSStageRequest.ts b/packages/client-ts/src/models/PatchedMutualTLSStageRequest.ts index 6cef9a89cf..a764772435 100644 --- a/packages/client-ts/src/models/PatchedMutualTLSStageRequest.ts +++ b/packages/client-ts/src/models/PatchedMutualTLSStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedNotificationRequest.ts b/packages/client-ts/src/models/PatchedNotificationRequest.ts index d2025a5bac..5a0da80501 100644 --- a/packages/client-ts/src/models/PatchedNotificationRequest.ts +++ b/packages/client-ts/src/models/PatchedNotificationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedNotificationRuleRequest.ts b/packages/client-ts/src/models/PatchedNotificationRuleRequest.ts index a1309ba3b9..352aae1345 100644 --- a/packages/client-ts/src/models/PatchedNotificationRuleRequest.ts +++ b/packages/client-ts/src/models/PatchedNotificationRuleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts b/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts index 03d9b739fa..1e8a03a5c6 100644 --- a/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts +++ b/packages/client-ts/src/models/PatchedNotificationTransportRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedNotificationWebhookMappingRequest.ts b/packages/client-ts/src/models/PatchedNotificationWebhookMappingRequest.ts index bf397856d9..a0a9f14410 100644 --- a/packages/client-ts/src/models/PatchedNotificationWebhookMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedNotificationWebhookMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedOAuth2ProviderRequest.ts b/packages/client-ts/src/models/PatchedOAuth2ProviderRequest.ts index 7c509ebeac..e511bf0c83 100644 --- a/packages/client-ts/src/models/PatchedOAuth2ProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedOAuth2ProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedOAuthSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedOAuthSourcePropertyMappingRequest.ts index 09c0fb5926..6d14872ade 100644 --- a/packages/client-ts/src/models/PatchedOAuthSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedOAuthSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedOAuthSourceRequest.ts b/packages/client-ts/src/models/PatchedOAuthSourceRequest.ts index 596a4a59b1..56b41f3f46 100644 --- a/packages/client-ts/src/models/PatchedOAuthSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedOAuthSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedOutpostRequest.ts b/packages/client-ts/src/models/PatchedOutpostRequest.ts index 0c981115d9..8fc6c71a19 100644 --- a/packages/client-ts/src/models/PatchedOutpostRequest.ts +++ b/packages/client-ts/src/models/PatchedOutpostRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPasswordExpiryPolicyRequest.ts b/packages/client-ts/src/models/PatchedPasswordExpiryPolicyRequest.ts index 12327ac8d9..999f39debd 100644 --- a/packages/client-ts/src/models/PatchedPasswordExpiryPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedPasswordExpiryPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPasswordPolicyRequest.ts b/packages/client-ts/src/models/PatchedPasswordPolicyRequest.ts index 6ad365c91e..6fb43966e1 100644 --- a/packages/client-ts/src/models/PatchedPasswordPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedPasswordPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPasswordStageRequest.ts b/packages/client-ts/src/models/PatchedPasswordStageRequest.ts index 34f0cafd9c..c9df2bc146 100644 --- a/packages/client-ts/src/models/PatchedPasswordStageRequest.ts +++ b/packages/client-ts/src/models/PatchedPasswordStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPermissionAssignRequest.ts b/packages/client-ts/src/models/PatchedPermissionAssignRequest.ts index 303d41240f..abf28366f7 100644 --- a/packages/client-ts/src/models/PatchedPermissionAssignRequest.ts +++ b/packages/client-ts/src/models/PatchedPermissionAssignRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPlexSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedPlexSourcePropertyMappingRequest.ts index c8fcd780d5..1ebfcd6383 100644 --- a/packages/client-ts/src/models/PatchedPlexSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedPlexSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPlexSourceRequest.ts b/packages/client-ts/src/models/PatchedPlexSourceRequest.ts index cf829017b7..ce6704d8f7 100644 --- a/packages/client-ts/src/models/PatchedPlexSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedPlexSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPolicyBindingRequest.ts b/packages/client-ts/src/models/PatchedPolicyBindingRequest.ts index 357afec005..ffb6f13915 100644 --- a/packages/client-ts/src/models/PatchedPolicyBindingRequest.ts +++ b/packages/client-ts/src/models/PatchedPolicyBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPromptRequest.ts b/packages/client-ts/src/models/PatchedPromptRequest.ts index bfb2f3b5ed..5f78f28144 100644 --- a/packages/client-ts/src/models/PatchedPromptRequest.ts +++ b/packages/client-ts/src/models/PatchedPromptRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedPromptStageRequest.ts b/packages/client-ts/src/models/PatchedPromptStageRequest.ts index 5f575adb55..cb9873f35d 100644 --- a/packages/client-ts/src/models/PatchedPromptStageRequest.ts +++ b/packages/client-ts/src/models/PatchedPromptStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedProxyProviderRequest.ts b/packages/client-ts/src/models/PatchedProxyProviderRequest.ts index baa6180617..41d819b822 100644 --- a/packages/client-ts/src/models/PatchedProxyProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedProxyProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRACPropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedRACPropertyMappingRequest.ts index f1c3bf17af..4b1a54c7de 100644 --- a/packages/client-ts/src/models/PatchedRACPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedRACPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRACProviderRequest.ts b/packages/client-ts/src/models/PatchedRACProviderRequest.ts index 342c702f34..a618787bdb 100644 --- a/packages/client-ts/src/models/PatchedRACProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedRACProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRadiusProviderPropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedRadiusProviderPropertyMappingRequest.ts index 78f1389f7a..ac2ea477af 100644 --- a/packages/client-ts/src/models/PatchedRadiusProviderPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedRadiusProviderPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRadiusProviderRequest.ts b/packages/client-ts/src/models/PatchedRadiusProviderRequest.ts index ea62eab77d..0c14a830a9 100644 --- a/packages/client-ts/src/models/PatchedRadiusProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedRadiusProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRedirectStageRequest.ts b/packages/client-ts/src/models/PatchedRedirectStageRequest.ts index f58a9517ee..a044f94335 100644 --- a/packages/client-ts/src/models/PatchedRedirectStageRequest.ts +++ b/packages/client-ts/src/models/PatchedRedirectStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedReputationPolicyRequest.ts b/packages/client-ts/src/models/PatchedReputationPolicyRequest.ts index 8310c869a6..2d9c03d7ab 100644 --- a/packages/client-ts/src/models/PatchedReputationPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedReputationPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedRoleRequest.ts b/packages/client-ts/src/models/PatchedRoleRequest.ts index a753a2d218..a5a6640239 100644 --- a/packages/client-ts/src/models/PatchedRoleRequest.ts +++ b/packages/client-ts/src/models/PatchedRoleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSAMLPropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedSAMLPropertyMappingRequest.ts index 549f737063..2bb9167fb1 100644 --- a/packages/client-ts/src/models/PatchedSAMLPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedSAMLPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSAMLProviderRequest.ts b/packages/client-ts/src/models/PatchedSAMLProviderRequest.ts index bf9360807e..2980105cd8 100644 --- a/packages/client-ts/src/models/PatchedSAMLProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedSAMLProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSAMLSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedSAMLSourcePropertyMappingRequest.ts index 865565c5b2..b3b47b35fb 100644 --- a/packages/client-ts/src/models/PatchedSAMLSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedSAMLSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSAMLSourceRequest.ts b/packages/client-ts/src/models/PatchedSAMLSourceRequest.ts index 2c46f6d8c4..a87f27142c 100644 --- a/packages/client-ts/src/models/PatchedSAMLSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedSAMLSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMMappingRequest.ts b/packages/client-ts/src/models/PatchedSCIMMappingRequest.ts index 791fc2f079..d1d786ea58 100644 --- a/packages/client-ts/src/models/PatchedSCIMMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMProviderRequest.ts b/packages/client-ts/src/models/PatchedSCIMProviderRequest.ts index 369aba88c8..9249f2fbb4 100644 --- a/packages/client-ts/src/models/PatchedSCIMProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMSourceGroupRequest.ts b/packages/client-ts/src/models/PatchedSCIMSourceGroupRequest.ts index 74aca39bf6..4d98c1961d 100644 --- a/packages/client-ts/src/models/PatchedSCIMSourceGroupRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMSourceGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedSCIMSourcePropertyMappingRequest.ts index b2386222b0..98465e9bff 100644 --- a/packages/client-ts/src/models/PatchedSCIMSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMSourceRequest.ts b/packages/client-ts/src/models/PatchedSCIMSourceRequest.ts index 927ac405bc..5d00b7364d 100644 --- a/packages/client-ts/src/models/PatchedSCIMSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSCIMSourceUserRequest.ts b/packages/client-ts/src/models/PatchedSCIMSourceUserRequest.ts index 3a0290de82..6f687b17cd 100644 --- a/packages/client-ts/src/models/PatchedSCIMSourceUserRequest.ts +++ b/packages/client-ts/src/models/PatchedSCIMSourceUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSMSDeviceRequest.ts b/packages/client-ts/src/models/PatchedSMSDeviceRequest.ts index 0d4ebb67b9..b924c49144 100644 --- a/packages/client-ts/src/models/PatchedSMSDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedSMSDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSSFProviderRequest.ts b/packages/client-ts/src/models/PatchedSSFProviderRequest.ts index e3eb13808d..b8820b183d 100644 --- a/packages/client-ts/src/models/PatchedSSFProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedSSFProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedScheduleRequest.ts b/packages/client-ts/src/models/PatchedScheduleRequest.ts index a959ac9b69..b337421430 100644 --- a/packages/client-ts/src/models/PatchedScheduleRequest.ts +++ b/packages/client-ts/src/models/PatchedScheduleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedScopeMappingRequest.ts b/packages/client-ts/src/models/PatchedScopeMappingRequest.ts index 27fceb2e28..fb6370ce2d 100644 --- a/packages/client-ts/src/models/PatchedScopeMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedScopeMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSettingsRequest.ts b/packages/client-ts/src/models/PatchedSettingsRequest.ts index cccfee627d..d3d0ccd0ff 100644 --- a/packages/client-ts/src/models/PatchedSettingsRequest.ts +++ b/packages/client-ts/src/models/PatchedSettingsRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSettingsRequestFlags.ts b/packages/client-ts/src/models/PatchedSettingsRequestFlags.ts index 22578d20c0..523aec0c63 100644 --- a/packages/client-ts/src/models/PatchedSettingsRequestFlags.ts +++ b/packages/client-ts/src/models/PatchedSettingsRequestFlags.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedSourceStageRequest.ts b/packages/client-ts/src/models/PatchedSourceStageRequest.ts index 682db1a02e..e2faaca4dd 100644 --- a/packages/client-ts/src/models/PatchedSourceStageRequest.ts +++ b/packages/client-ts/src/models/PatchedSourceStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedStaticDeviceRequest.ts b/packages/client-ts/src/models/PatchedStaticDeviceRequest.ts index c9d43f94ec..d056d5a7e9 100644 --- a/packages/client-ts/src/models/PatchedStaticDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedStaticDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedTOTPDeviceRequest.ts b/packages/client-ts/src/models/PatchedTOTPDeviceRequest.ts index 05fa695654..40d3e74873 100644 --- a/packages/client-ts/src/models/PatchedTOTPDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedTOTPDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedTelegramSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PatchedTelegramSourcePropertyMappingRequest.ts index 4ac992e952..30e9c69885 100644 --- a/packages/client-ts/src/models/PatchedTelegramSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PatchedTelegramSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedTelegramSourceRequest.ts b/packages/client-ts/src/models/PatchedTelegramSourceRequest.ts index 06dd17407f..47597bdb51 100644 --- a/packages/client-ts/src/models/PatchedTelegramSourceRequest.ts +++ b/packages/client-ts/src/models/PatchedTelegramSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedTenantRequest.ts b/packages/client-ts/src/models/PatchedTenantRequest.ts index c353940f77..e99918a97f 100644 --- a/packages/client-ts/src/models/PatchedTenantRequest.ts +++ b/packages/client-ts/src/models/PatchedTenantRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedTokenRequest.ts b/packages/client-ts/src/models/PatchedTokenRequest.ts index ce08d21cbb..07fade077a 100644 --- a/packages/client-ts/src/models/PatchedTokenRequest.ts +++ b/packages/client-ts/src/models/PatchedTokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUniquePasswordPolicyRequest.ts b/packages/client-ts/src/models/PatchedUniquePasswordPolicyRequest.ts index 6c9109d39c..4a26aca3e7 100644 --- a/packages/client-ts/src/models/PatchedUniquePasswordPolicyRequest.ts +++ b/packages/client-ts/src/models/PatchedUniquePasswordPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserDeleteStageRequest.ts b/packages/client-ts/src/models/PatchedUserDeleteStageRequest.ts index 5310d20c82..5f314ba0b5 100644 --- a/packages/client-ts/src/models/PatchedUserDeleteStageRequest.ts +++ b/packages/client-ts/src/models/PatchedUserDeleteStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserKerberosSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserKerberosSourceConnectionRequest.ts index 4938f8ca72..7005bbc909 100644 --- a/packages/client-ts/src/models/PatchedUserKerberosSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserKerberosSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserLDAPSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserLDAPSourceConnectionRequest.ts index 88008085ff..b81940a66f 100644 --- a/packages/client-ts/src/models/PatchedUserLDAPSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserLDAPSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserLoginStageRequest.ts b/packages/client-ts/src/models/PatchedUserLoginStageRequest.ts index af8fac2dec..54add6106e 100644 --- a/packages/client-ts/src/models/PatchedUserLoginStageRequest.ts +++ b/packages/client-ts/src/models/PatchedUserLoginStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserLogoutStageRequest.ts b/packages/client-ts/src/models/PatchedUserLogoutStageRequest.ts index 231bf4a341..f4f5391ccb 100644 --- a/packages/client-ts/src/models/PatchedUserLogoutStageRequest.ts +++ b/packages/client-ts/src/models/PatchedUserLogoutStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserOAuthSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserOAuthSourceConnectionRequest.ts index a5cc2669ed..197c54955c 100644 --- a/packages/client-ts/src/models/PatchedUserOAuthSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserOAuthSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserPlexSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserPlexSourceConnectionRequest.ts index ff97013b43..7e6fadfd47 100644 --- a/packages/client-ts/src/models/PatchedUserPlexSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserPlexSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserRequest.ts b/packages/client-ts/src/models/PatchedUserRequest.ts index 9c816ab314..28a0db132d 100644 --- a/packages/client-ts/src/models/PatchedUserRequest.ts +++ b/packages/client-ts/src/models/PatchedUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserSAMLSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserSAMLSourceConnectionRequest.ts index a23c269b8b..edd65412ab 100644 --- a/packages/client-ts/src/models/PatchedUserSAMLSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserSAMLSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserSourceConnectionRequest.ts index 03e60f7852..a52b828a46 100644 --- a/packages/client-ts/src/models/PatchedUserSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserTelegramSourceConnectionRequest.ts b/packages/client-ts/src/models/PatchedUserTelegramSourceConnectionRequest.ts index 78989fa2e9..5715460005 100644 --- a/packages/client-ts/src/models/PatchedUserTelegramSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/PatchedUserTelegramSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedUserWriteStageRequest.ts b/packages/client-ts/src/models/PatchedUserWriteStageRequest.ts index da69d7b7e8..8d6e89d66d 100644 --- a/packages/client-ts/src/models/PatchedUserWriteStageRequest.ts +++ b/packages/client-ts/src/models/PatchedUserWriteStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedWSFederationProviderRequest.ts b/packages/client-ts/src/models/PatchedWSFederationProviderRequest.ts index 73499ef03a..e0c317af80 100644 --- a/packages/client-ts/src/models/PatchedWSFederationProviderRequest.ts +++ b/packages/client-ts/src/models/PatchedWSFederationProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PatchedWebAuthnDeviceRequest.ts b/packages/client-ts/src/models/PatchedWebAuthnDeviceRequest.ts index e563c5afa4..d27574c15b 100644 --- a/packages/client-ts/src/models/PatchedWebAuthnDeviceRequest.ts +++ b/packages/client-ts/src/models/PatchedWebAuthnDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Permission.ts b/packages/client-ts/src/models/Permission.ts index 97c4b7b746..5553ff389b 100644 --- a/packages/client-ts/src/models/Permission.ts +++ b/packages/client-ts/src/models/Permission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PermissionAssignRequest.ts b/packages/client-ts/src/models/PermissionAssignRequest.ts index dc5a1b275f..48910d3835 100644 --- a/packages/client-ts/src/models/PermissionAssignRequest.ts +++ b/packages/client-ts/src/models/PermissionAssignRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PermissionAssignResult.ts b/packages/client-ts/src/models/PermissionAssignResult.ts index afd2ec8978..b0a92e15f0 100644 --- a/packages/client-ts/src/models/PermissionAssignResult.ts +++ b/packages/client-ts/src/models/PermissionAssignResult.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexAuthenticationChallenge.ts b/packages/client-ts/src/models/PlexAuthenticationChallenge.ts index d2181224f1..0d1f93e88e 100644 --- a/packages/client-ts/src/models/PlexAuthenticationChallenge.ts +++ b/packages/client-ts/src/models/PlexAuthenticationChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexAuthenticationChallengeResponseRequest.ts b/packages/client-ts/src/models/PlexAuthenticationChallengeResponseRequest.ts index 5044aaae74..4cb25c45d6 100644 --- a/packages/client-ts/src/models/PlexAuthenticationChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/PlexAuthenticationChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexSource.ts b/packages/client-ts/src/models/PlexSource.ts index fefa2a8baf..31692b2f2b 100644 --- a/packages/client-ts/src/models/PlexSource.ts +++ b/packages/client-ts/src/models/PlexSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexSourcePropertyMapping.ts b/packages/client-ts/src/models/PlexSourcePropertyMapping.ts index 04375784d8..e4a12dfd7a 100644 --- a/packages/client-ts/src/models/PlexSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/PlexSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/PlexSourcePropertyMappingRequest.ts index eefe1503be..ac9118578a 100644 --- a/packages/client-ts/src/models/PlexSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/PlexSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexSourceRequest.ts b/packages/client-ts/src/models/PlexSourceRequest.ts index 9a78855832..27e00aa717 100644 --- a/packages/client-ts/src/models/PlexSourceRequest.ts +++ b/packages/client-ts/src/models/PlexSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PlexTokenRedeemRequest.ts b/packages/client-ts/src/models/PlexTokenRedeemRequest.ts index 8bcf71d074..f8f9b7480f 100644 --- a/packages/client-ts/src/models/PlexTokenRedeemRequest.ts +++ b/packages/client-ts/src/models/PlexTokenRedeemRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Policy.ts b/packages/client-ts/src/models/Policy.ts index a41eea8312..a98cd863a6 100644 --- a/packages/client-ts/src/models/Policy.ts +++ b/packages/client-ts/src/models/Policy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PolicyBinding.ts b/packages/client-ts/src/models/PolicyBinding.ts index 59df38ace5..b3d548d66c 100644 --- a/packages/client-ts/src/models/PolicyBinding.ts +++ b/packages/client-ts/src/models/PolicyBinding.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PolicyBindingRequest.ts b/packages/client-ts/src/models/PolicyBindingRequest.ts index 26cd4f56c2..4dcb4539b6 100644 --- a/packages/client-ts/src/models/PolicyBindingRequest.ts +++ b/packages/client-ts/src/models/PolicyBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PolicyEngineMode.ts b/packages/client-ts/src/models/PolicyEngineMode.ts index 80ceae9a9a..460f26c860 100644 --- a/packages/client-ts/src/models/PolicyEngineMode.ts +++ b/packages/client-ts/src/models/PolicyEngineMode.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PolicyTestRequest.ts b/packages/client-ts/src/models/PolicyTestRequest.ts index b0025b94bf..36863c6bcd 100644 --- a/packages/client-ts/src/models/PolicyTestRequest.ts +++ b/packages/client-ts/src/models/PolicyTestRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PolicyTestResult.ts b/packages/client-ts/src/models/PolicyTestResult.ts index 74e7fa3f85..e42a1ade5c 100644 --- a/packages/client-ts/src/models/PolicyTestResult.ts +++ b/packages/client-ts/src/models/PolicyTestResult.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Process.ts b/packages/client-ts/src/models/Process.ts index 40ae3db3a9..66316c67bf 100644 --- a/packages/client-ts/src/models/Process.ts +++ b/packages/client-ts/src/models/Process.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProcessRequest.ts b/packages/client-ts/src/models/ProcessRequest.ts index 3e92f9ba44..55c16a00f3 100644 --- a/packages/client-ts/src/models/ProcessRequest.ts +++ b/packages/client-ts/src/models/ProcessRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Prompt.ts b/packages/client-ts/src/models/Prompt.ts index 55482bcb4e..60add94e43 100644 --- a/packages/client-ts/src/models/Prompt.ts +++ b/packages/client-ts/src/models/Prompt.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptChallenge.ts b/packages/client-ts/src/models/PromptChallenge.ts index 7c2632466c..f111e3c480 100644 --- a/packages/client-ts/src/models/PromptChallenge.ts +++ b/packages/client-ts/src/models/PromptChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptChallengeResponseRequest.ts b/packages/client-ts/src/models/PromptChallengeResponseRequest.ts index 3ad1f1a2c4..08e748cc99 100644 --- a/packages/client-ts/src/models/PromptChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/PromptChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptChoice.ts b/packages/client-ts/src/models/PromptChoice.ts index 1f8a158be1..d6d42aa493 100644 --- a/packages/client-ts/src/models/PromptChoice.ts +++ b/packages/client-ts/src/models/PromptChoice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptRequest.ts b/packages/client-ts/src/models/PromptRequest.ts index c055b5ac91..bec547ce45 100644 --- a/packages/client-ts/src/models/PromptRequest.ts +++ b/packages/client-ts/src/models/PromptRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptStage.ts b/packages/client-ts/src/models/PromptStage.ts index fae47e4929..608d393ccb 100644 --- a/packages/client-ts/src/models/PromptStage.ts +++ b/packages/client-ts/src/models/PromptStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptStageRequest.ts b/packages/client-ts/src/models/PromptStageRequest.ts index ad8740aa3b..fa139cfb4b 100644 --- a/packages/client-ts/src/models/PromptStageRequest.ts +++ b/packages/client-ts/src/models/PromptStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PromptTypeEnum.ts b/packages/client-ts/src/models/PromptTypeEnum.ts index 9b5c6eb36f..409254c4aa 100644 --- a/packages/client-ts/src/models/PromptTypeEnum.ts +++ b/packages/client-ts/src/models/PromptTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PropertyMapping.ts b/packages/client-ts/src/models/PropertyMapping.ts index fc8b328c1b..34ba871e12 100644 --- a/packages/client-ts/src/models/PropertyMapping.ts +++ b/packages/client-ts/src/models/PropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PropertyMappingPreview.ts b/packages/client-ts/src/models/PropertyMappingPreview.ts index 896496719e..35fc4c0a2d 100644 --- a/packages/client-ts/src/models/PropertyMappingPreview.ts +++ b/packages/client-ts/src/models/PropertyMappingPreview.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PropertyMappingTestRequest.ts b/packages/client-ts/src/models/PropertyMappingTestRequest.ts index 9c045446bf..fee26f95d9 100644 --- a/packages/client-ts/src/models/PropertyMappingTestRequest.ts +++ b/packages/client-ts/src/models/PropertyMappingTestRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/PropertyMappingTestResult.ts b/packages/client-ts/src/models/PropertyMappingTestResult.ts index 4a58f4bf86..44727a21a9 100644 --- a/packages/client-ts/src/models/PropertyMappingTestResult.ts +++ b/packages/client-ts/src/models/PropertyMappingTestResult.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProtocolEnum.ts b/packages/client-ts/src/models/ProtocolEnum.ts index ab81db33c3..f53a7d7e0e 100644 --- a/packages/client-ts/src/models/ProtocolEnum.ts +++ b/packages/client-ts/src/models/ProtocolEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Provider.ts b/packages/client-ts/src/models/Provider.ts index 580a01d1e6..cb1cee6247 100644 --- a/packages/client-ts/src/models/Provider.ts +++ b/packages/client-ts/src/models/Provider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProviderEnum.ts b/packages/client-ts/src/models/ProviderEnum.ts index a11abc6bdc..8f305259bf 100644 --- a/packages/client-ts/src/models/ProviderEnum.ts +++ b/packages/client-ts/src/models/ProviderEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProviderModelEnum.ts b/packages/client-ts/src/models/ProviderModelEnum.ts index f8c65070ce..fd840eb49d 100644 --- a/packages/client-ts/src/models/ProviderModelEnum.ts +++ b/packages/client-ts/src/models/ProviderModelEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProviderTypeEnum.ts b/packages/client-ts/src/models/ProviderTypeEnum.ts index 0b1a22f722..5b65270c78 100644 --- a/packages/client-ts/src/models/ProviderTypeEnum.ts +++ b/packages/client-ts/src/models/ProviderTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProxyMode.ts b/packages/client-ts/src/models/ProxyMode.ts index 284400a6ef..a912593d61 100644 --- a/packages/client-ts/src/models/ProxyMode.ts +++ b/packages/client-ts/src/models/ProxyMode.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProxyOutpostConfig.ts b/packages/client-ts/src/models/ProxyOutpostConfig.ts index 9d81396971..c4359efd44 100644 --- a/packages/client-ts/src/models/ProxyOutpostConfig.ts +++ b/packages/client-ts/src/models/ProxyOutpostConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProxyProvider.ts b/packages/client-ts/src/models/ProxyProvider.ts index 75f8f09978..43e4692cda 100644 --- a/packages/client-ts/src/models/ProxyProvider.ts +++ b/packages/client-ts/src/models/ProxyProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ProxyProviderRequest.ts b/packages/client-ts/src/models/ProxyProviderRequest.ts index b54b975c69..2a8bf91ec5 100644 --- a/packages/client-ts/src/models/ProxyProviderRequest.ts +++ b/packages/client-ts/src/models/ProxyProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RACPropertyMapping.ts b/packages/client-ts/src/models/RACPropertyMapping.ts index e71cbecc97..3762544711 100644 --- a/packages/client-ts/src/models/RACPropertyMapping.ts +++ b/packages/client-ts/src/models/RACPropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RACPropertyMappingRequest.ts b/packages/client-ts/src/models/RACPropertyMappingRequest.ts index cd3339ad28..3f1321c282 100644 --- a/packages/client-ts/src/models/RACPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/RACPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RACProvider.ts b/packages/client-ts/src/models/RACProvider.ts index 52663bb28a..61992c298a 100644 --- a/packages/client-ts/src/models/RACProvider.ts +++ b/packages/client-ts/src/models/RACProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RACProviderRequest.ts b/packages/client-ts/src/models/RACProviderRequest.ts index 73b012d8aa..2d8b711e29 100644 --- a/packages/client-ts/src/models/RACProviderRequest.ts +++ b/packages/client-ts/src/models/RACProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusCheckAccess.ts b/packages/client-ts/src/models/RadiusCheckAccess.ts index 20cf48edc2..59f374db7f 100644 --- a/packages/client-ts/src/models/RadiusCheckAccess.ts +++ b/packages/client-ts/src/models/RadiusCheckAccess.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusOutpostConfig.ts b/packages/client-ts/src/models/RadiusOutpostConfig.ts index f8db6638ef..422f4bba92 100644 --- a/packages/client-ts/src/models/RadiusOutpostConfig.ts +++ b/packages/client-ts/src/models/RadiusOutpostConfig.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusProvider.ts b/packages/client-ts/src/models/RadiusProvider.ts index cede00b770..e6fca9774e 100644 --- a/packages/client-ts/src/models/RadiusProvider.ts +++ b/packages/client-ts/src/models/RadiusProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusProviderPropertyMapping.ts b/packages/client-ts/src/models/RadiusProviderPropertyMapping.ts index 28247fada1..e447a1d29e 100644 --- a/packages/client-ts/src/models/RadiusProviderPropertyMapping.ts +++ b/packages/client-ts/src/models/RadiusProviderPropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusProviderPropertyMappingRequest.ts b/packages/client-ts/src/models/RadiusProviderPropertyMappingRequest.ts index cdda5a6bbb..e7fff385a5 100644 --- a/packages/client-ts/src/models/RadiusProviderPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/RadiusProviderPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RadiusProviderRequest.ts b/packages/client-ts/src/models/RadiusProviderRequest.ts index 9d5d1e8dc5..d8b35cae66 100644 --- a/packages/client-ts/src/models/RadiusProviderRequest.ts +++ b/packages/client-ts/src/models/RadiusProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectChallenge.ts b/packages/client-ts/src/models/RedirectChallenge.ts index d87902f9b8..f4605d2dd0 100644 --- a/packages/client-ts/src/models/RedirectChallenge.ts +++ b/packages/client-ts/src/models/RedirectChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectChallengeResponseRequest.ts b/packages/client-ts/src/models/RedirectChallengeResponseRequest.ts index 9947e0b8a0..448a64d220 100644 --- a/packages/client-ts/src/models/RedirectChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/RedirectChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectStage.ts b/packages/client-ts/src/models/RedirectStage.ts index 19b2ce9da7..2d0383be1a 100644 --- a/packages/client-ts/src/models/RedirectStage.ts +++ b/packages/client-ts/src/models/RedirectStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectStageModeEnum.ts b/packages/client-ts/src/models/RedirectStageModeEnum.ts index 2feb06cdaa..908074336f 100644 --- a/packages/client-ts/src/models/RedirectStageModeEnum.ts +++ b/packages/client-ts/src/models/RedirectStageModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectStageRequest.ts b/packages/client-ts/src/models/RedirectStageRequest.ts index cfa81f4bc0..d3fc8874cc 100644 --- a/packages/client-ts/src/models/RedirectStageRequest.ts +++ b/packages/client-ts/src/models/RedirectStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectURI.ts b/packages/client-ts/src/models/RedirectURI.ts index 3f88cf150f..843508a1d7 100644 --- a/packages/client-ts/src/models/RedirectURI.ts +++ b/packages/client-ts/src/models/RedirectURI.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectURIRequest.ts b/packages/client-ts/src/models/RedirectURIRequest.ts index eab6c83024..5a3b9bb6bf 100644 --- a/packages/client-ts/src/models/RedirectURIRequest.ts +++ b/packages/client-ts/src/models/RedirectURIRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RedirectURITypeEnum.ts b/packages/client-ts/src/models/RedirectURITypeEnum.ts index 2bcf351d8d..d26e0024e2 100644 --- a/packages/client-ts/src/models/RedirectURITypeEnum.ts +++ b/packages/client-ts/src/models/RedirectURITypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RelatedGroup.ts b/packages/client-ts/src/models/RelatedGroup.ts index 349a276706..6d53cabc94 100644 --- a/packages/client-ts/src/models/RelatedGroup.ts +++ b/packages/client-ts/src/models/RelatedGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RelatedRule.ts b/packages/client-ts/src/models/RelatedRule.ts index 3431cc814a..b1b9f1dc86 100644 --- a/packages/client-ts/src/models/RelatedRule.ts +++ b/packages/client-ts/src/models/RelatedRule.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Reputation.ts b/packages/client-ts/src/models/Reputation.ts index 2b124aaf7b..f2460a4729 100644 --- a/packages/client-ts/src/models/Reputation.ts +++ b/packages/client-ts/src/models/Reputation.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ReputationPolicy.ts b/packages/client-ts/src/models/ReputationPolicy.ts index c7454caeed..e320d5ab65 100644 --- a/packages/client-ts/src/models/ReputationPolicy.ts +++ b/packages/client-ts/src/models/ReputationPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ReputationPolicyRequest.ts b/packages/client-ts/src/models/ReputationPolicyRequest.ts index a77e29d4e5..8236557e37 100644 --- a/packages/client-ts/src/models/ReputationPolicyRequest.ts +++ b/packages/client-ts/src/models/ReputationPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Review.ts b/packages/client-ts/src/models/Review.ts index f700b9781a..d71e630bae 100644 --- a/packages/client-ts/src/models/Review.ts +++ b/packages/client-ts/src/models/Review.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ReviewRequest.ts b/packages/client-ts/src/models/ReviewRequest.ts index e832c80e32..d324fb6991 100644 --- a/packages/client-ts/src/models/ReviewRequest.ts +++ b/packages/client-ts/src/models/ReviewRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ReviewerGroup.ts b/packages/client-ts/src/models/ReviewerGroup.ts index 14e4a2ec2a..8a794bbf52 100644 --- a/packages/client-ts/src/models/ReviewerGroup.ts +++ b/packages/client-ts/src/models/ReviewerGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ReviewerUser.ts b/packages/client-ts/src/models/ReviewerUser.ts index d1620b6a87..8ebcafb726 100644 --- a/packages/client-ts/src/models/ReviewerUser.ts +++ b/packages/client-ts/src/models/ReviewerUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Role.ts b/packages/client-ts/src/models/Role.ts index 5894dbd49f..0cd0b43d9e 100644 --- a/packages/client-ts/src/models/Role.ts +++ b/packages/client-ts/src/models/Role.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RoleAssignedObjectPermission.ts b/packages/client-ts/src/models/RoleAssignedObjectPermission.ts index 9287ad9fdd..24e6889f55 100644 --- a/packages/client-ts/src/models/RoleAssignedObjectPermission.ts +++ b/packages/client-ts/src/models/RoleAssignedObjectPermission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RoleModelPermission.ts b/packages/client-ts/src/models/RoleModelPermission.ts index 16a1e9acdf..f7a5cf83dc 100644 --- a/packages/client-ts/src/models/RoleModelPermission.ts +++ b/packages/client-ts/src/models/RoleModelPermission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RoleObjectPermission.ts b/packages/client-ts/src/models/RoleObjectPermission.ts index 4a3ad47b49..1902007ce4 100644 --- a/packages/client-ts/src/models/RoleObjectPermission.ts +++ b/packages/client-ts/src/models/RoleObjectPermission.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/RoleRequest.ts b/packages/client-ts/src/models/RoleRequest.ts index ea62780c5c..834ccfd680 100644 --- a/packages/client-ts/src/models/RoleRequest.ts +++ b/packages/client-ts/src/models/RoleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLBindingsEnum.ts b/packages/client-ts/src/models/SAMLBindingsEnum.ts index 1462b6c738..a5ca3661c9 100644 --- a/packages/client-ts/src/models/SAMLBindingsEnum.ts +++ b/packages/client-ts/src/models/SAMLBindingsEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLLogoutMethods.ts b/packages/client-ts/src/models/SAMLLogoutMethods.ts index b553897456..d862dfc0b1 100644 --- a/packages/client-ts/src/models/SAMLLogoutMethods.ts +++ b/packages/client-ts/src/models/SAMLLogoutMethods.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLMetadata.ts b/packages/client-ts/src/models/SAMLMetadata.ts index 9309a047e3..3da0bc36da 100644 --- a/packages/client-ts/src/models/SAMLMetadata.ts +++ b/packages/client-ts/src/models/SAMLMetadata.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLNameIDPolicyEnum.ts b/packages/client-ts/src/models/SAMLNameIDPolicyEnum.ts index 768bb73c44..a39ed57e72 100644 --- a/packages/client-ts/src/models/SAMLNameIDPolicyEnum.ts +++ b/packages/client-ts/src/models/SAMLNameIDPolicyEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLPropertyMapping.ts b/packages/client-ts/src/models/SAMLPropertyMapping.ts index 61e5e1b5b8..6af8a40029 100644 --- a/packages/client-ts/src/models/SAMLPropertyMapping.ts +++ b/packages/client-ts/src/models/SAMLPropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLPropertyMappingRequest.ts b/packages/client-ts/src/models/SAMLPropertyMappingRequest.ts index e858778b1d..21702bf25e 100644 --- a/packages/client-ts/src/models/SAMLPropertyMappingRequest.ts +++ b/packages/client-ts/src/models/SAMLPropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLProvider.ts b/packages/client-ts/src/models/SAMLProvider.ts index ff6506a90c..23174fea14 100644 --- a/packages/client-ts/src/models/SAMLProvider.ts +++ b/packages/client-ts/src/models/SAMLProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLProviderRequest.ts b/packages/client-ts/src/models/SAMLProviderRequest.ts index 5d760c33d5..fe30c727af 100644 --- a/packages/client-ts/src/models/SAMLProviderRequest.ts +++ b/packages/client-ts/src/models/SAMLProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLSource.ts b/packages/client-ts/src/models/SAMLSource.ts index 9cf16363bf..92b317d0f7 100644 --- a/packages/client-ts/src/models/SAMLSource.ts +++ b/packages/client-ts/src/models/SAMLSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLSourcePropertyMapping.ts b/packages/client-ts/src/models/SAMLSourcePropertyMapping.ts index d20fa095b1..d7df428df1 100644 --- a/packages/client-ts/src/models/SAMLSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/SAMLSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/SAMLSourcePropertyMappingRequest.ts index 02002f09a9..a1074b6d30 100644 --- a/packages/client-ts/src/models/SAMLSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/SAMLSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SAMLSourceRequest.ts b/packages/client-ts/src/models/SAMLSourceRequest.ts index cb8550e53a..02f0e30492 100644 --- a/packages/client-ts/src/models/SAMLSourceRequest.ts +++ b/packages/client-ts/src/models/SAMLSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMAuthenticationModeEnum.ts b/packages/client-ts/src/models/SCIMAuthenticationModeEnum.ts index 20ba8c8e74..dd399db907 100644 --- a/packages/client-ts/src/models/SCIMAuthenticationModeEnum.ts +++ b/packages/client-ts/src/models/SCIMAuthenticationModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMMapping.ts b/packages/client-ts/src/models/SCIMMapping.ts index 126dda64ff..4a05808f55 100644 --- a/packages/client-ts/src/models/SCIMMapping.ts +++ b/packages/client-ts/src/models/SCIMMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMMappingRequest.ts b/packages/client-ts/src/models/SCIMMappingRequest.ts index 73294dcad9..ac2477cf74 100644 --- a/packages/client-ts/src/models/SCIMMappingRequest.ts +++ b/packages/client-ts/src/models/SCIMMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProvider.ts b/packages/client-ts/src/models/SCIMProvider.ts index 4b95d47fac..58bbe5454e 100644 --- a/packages/client-ts/src/models/SCIMProvider.ts +++ b/packages/client-ts/src/models/SCIMProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProviderGroup.ts b/packages/client-ts/src/models/SCIMProviderGroup.ts index cd6838da75..ed35f4de9c 100644 --- a/packages/client-ts/src/models/SCIMProviderGroup.ts +++ b/packages/client-ts/src/models/SCIMProviderGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProviderGroupRequest.ts b/packages/client-ts/src/models/SCIMProviderGroupRequest.ts index 43fbf696ed..cfb5d42e3a 100644 --- a/packages/client-ts/src/models/SCIMProviderGroupRequest.ts +++ b/packages/client-ts/src/models/SCIMProviderGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProviderRequest.ts b/packages/client-ts/src/models/SCIMProviderRequest.ts index 384d63c4d3..c95df93724 100644 --- a/packages/client-ts/src/models/SCIMProviderRequest.ts +++ b/packages/client-ts/src/models/SCIMProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProviderUser.ts b/packages/client-ts/src/models/SCIMProviderUser.ts index e827eee521..59819b542a 100644 --- a/packages/client-ts/src/models/SCIMProviderUser.ts +++ b/packages/client-ts/src/models/SCIMProviderUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMProviderUserRequest.ts b/packages/client-ts/src/models/SCIMProviderUserRequest.ts index bea96bbc80..1030fe5c28 100644 --- a/packages/client-ts/src/models/SCIMProviderUserRequest.ts +++ b/packages/client-ts/src/models/SCIMProviderUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSource.ts b/packages/client-ts/src/models/SCIMSource.ts index c3173240bf..22bcd67ed7 100644 --- a/packages/client-ts/src/models/SCIMSource.ts +++ b/packages/client-ts/src/models/SCIMSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourceGroup.ts b/packages/client-ts/src/models/SCIMSourceGroup.ts index 700c2974e4..5697c6fd39 100644 --- a/packages/client-ts/src/models/SCIMSourceGroup.ts +++ b/packages/client-ts/src/models/SCIMSourceGroup.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourceGroupRequest.ts b/packages/client-ts/src/models/SCIMSourceGroupRequest.ts index 1f25d3cd87..62dad062c7 100644 --- a/packages/client-ts/src/models/SCIMSourceGroupRequest.ts +++ b/packages/client-ts/src/models/SCIMSourceGroupRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourcePropertyMapping.ts b/packages/client-ts/src/models/SCIMSourcePropertyMapping.ts index e7fc5146fb..8108125943 100644 --- a/packages/client-ts/src/models/SCIMSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/SCIMSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/SCIMSourcePropertyMappingRequest.ts index 9c4580ad6e..1e0337ae09 100644 --- a/packages/client-ts/src/models/SCIMSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/SCIMSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourceRequest.ts b/packages/client-ts/src/models/SCIMSourceRequest.ts index fcc4d69f42..d7a081477a 100644 --- a/packages/client-ts/src/models/SCIMSourceRequest.ts +++ b/packages/client-ts/src/models/SCIMSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourceUser.ts b/packages/client-ts/src/models/SCIMSourceUser.ts index 2c5a0bdce2..3c44688bdc 100644 --- a/packages/client-ts/src/models/SCIMSourceUser.ts +++ b/packages/client-ts/src/models/SCIMSourceUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SCIMSourceUserRequest.ts b/packages/client-ts/src/models/SCIMSourceUserRequest.ts index 07e488766d..917b4c7f09 100644 --- a/packages/client-ts/src/models/SCIMSourceUserRequest.ts +++ b/packages/client-ts/src/models/SCIMSourceUserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SMSDevice.ts b/packages/client-ts/src/models/SMSDevice.ts index 1c97323edd..079fa8faea 100644 --- a/packages/client-ts/src/models/SMSDevice.ts +++ b/packages/client-ts/src/models/SMSDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SMSDeviceRequest.ts b/packages/client-ts/src/models/SMSDeviceRequest.ts index fe0646c6e3..1085274e22 100644 --- a/packages/client-ts/src/models/SMSDeviceRequest.ts +++ b/packages/client-ts/src/models/SMSDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SSFProvider.ts b/packages/client-ts/src/models/SSFProvider.ts index 9bc0ff0887..d2422022a0 100644 --- a/packages/client-ts/src/models/SSFProvider.ts +++ b/packages/client-ts/src/models/SSFProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SSFProviderRequest.ts b/packages/client-ts/src/models/SSFProviderRequest.ts index d8e6c7c3e3..c8bc51e0c1 100644 --- a/packages/client-ts/src/models/SSFProviderRequest.ts +++ b/packages/client-ts/src/models/SSFProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SSFStream.ts b/packages/client-ts/src/models/SSFStream.ts index 9c2a5de687..9673a87e9b 100644 --- a/packages/client-ts/src/models/SSFStream.ts +++ b/packages/client-ts/src/models/SSFStream.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SSFStreamStatusEnum.ts b/packages/client-ts/src/models/SSFStreamStatusEnum.ts index c6c53e2e4c..1a959e0626 100644 --- a/packages/client-ts/src/models/SSFStreamStatusEnum.ts +++ b/packages/client-ts/src/models/SSFStreamStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Schedule.ts b/packages/client-ts/src/models/Schedule.ts index 896fb10c1e..cca5c961f4 100644 --- a/packages/client-ts/src/models/Schedule.ts +++ b/packages/client-ts/src/models/Schedule.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ScheduleRequest.ts b/packages/client-ts/src/models/ScheduleRequest.ts index b7edcfe7f4..d6da6bd72b 100644 --- a/packages/client-ts/src/models/ScheduleRequest.ts +++ b/packages/client-ts/src/models/ScheduleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ScopeMapping.ts b/packages/client-ts/src/models/ScopeMapping.ts index 68d85cf703..3e4216c584 100644 --- a/packages/client-ts/src/models/ScopeMapping.ts +++ b/packages/client-ts/src/models/ScopeMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ScopeMappingRequest.ts b/packages/client-ts/src/models/ScopeMappingRequest.ts index 9217aff8b3..6acbb24ba2 100644 --- a/packages/client-ts/src/models/ScopeMappingRequest.ts +++ b/packages/client-ts/src/models/ScopeMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SelectableStage.ts b/packages/client-ts/src/models/SelectableStage.ts index 44c8beedec..ef08649d7b 100644 --- a/packages/client-ts/src/models/SelectableStage.ts +++ b/packages/client-ts/src/models/SelectableStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ServiceConnection.ts b/packages/client-ts/src/models/ServiceConnection.ts index a7a29d262d..1c9d4eabe1 100644 --- a/packages/client-ts/src/models/ServiceConnection.ts +++ b/packages/client-ts/src/models/ServiceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ServiceConnectionState.ts b/packages/client-ts/src/models/ServiceConnectionState.ts index 4d620c55f0..503f79028e 100644 --- a/packages/client-ts/src/models/ServiceConnectionState.ts +++ b/packages/client-ts/src/models/ServiceConnectionState.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SessionEndChallenge.ts b/packages/client-ts/src/models/SessionEndChallenge.ts index c483f178f3..42da738007 100644 --- a/packages/client-ts/src/models/SessionEndChallenge.ts +++ b/packages/client-ts/src/models/SessionEndChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SessionUser.ts b/packages/client-ts/src/models/SessionUser.ts index 71e295776f..24275b1f36 100644 --- a/packages/client-ts/src/models/SessionUser.ts +++ b/packages/client-ts/src/models/SessionUser.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Settings.ts b/packages/client-ts/src/models/Settings.ts index bbac15a534..481e8a653d 100644 --- a/packages/client-ts/src/models/Settings.ts +++ b/packages/client-ts/src/models/Settings.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SettingsRequest.ts b/packages/client-ts/src/models/SettingsRequest.ts index 1c07fe1f56..802e7d949e 100644 --- a/packages/client-ts/src/models/SettingsRequest.ts +++ b/packages/client-ts/src/models/SettingsRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SeverityEnum.ts b/packages/client-ts/src/models/SeverityEnum.ts index b547babc7a..379c9b5c92 100644 --- a/packages/client-ts/src/models/SeverityEnum.ts +++ b/packages/client-ts/src/models/SeverityEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ShellChallenge.ts b/packages/client-ts/src/models/ShellChallenge.ts index d19bf522b2..4008c22d5c 100644 --- a/packages/client-ts/src/models/ShellChallenge.ts +++ b/packages/client-ts/src/models/ShellChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SignatureAlgorithmEnum.ts b/packages/client-ts/src/models/SignatureAlgorithmEnum.ts index fa50b507e8..51ab9ff008 100644 --- a/packages/client-ts/src/models/SignatureAlgorithmEnum.ts +++ b/packages/client-ts/src/models/SignatureAlgorithmEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Software.ts b/packages/client-ts/src/models/Software.ts index 49f9b88de1..af88572cc1 100644 --- a/packages/client-ts/src/models/Software.ts +++ b/packages/client-ts/src/models/Software.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SoftwareRequest.ts b/packages/client-ts/src/models/SoftwareRequest.ts index 2adb055cca..a26da4b32c 100644 --- a/packages/client-ts/src/models/SoftwareRequest.ts +++ b/packages/client-ts/src/models/SoftwareRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Source.ts b/packages/client-ts/src/models/Source.ts index 26e88722f0..9cf2c4bdd7 100644 --- a/packages/client-ts/src/models/Source.ts +++ b/packages/client-ts/src/models/Source.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SourceStage.ts b/packages/client-ts/src/models/SourceStage.ts index 208d3c628f..7a48a6a669 100644 --- a/packages/client-ts/src/models/SourceStage.ts +++ b/packages/client-ts/src/models/SourceStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SourceStageRequest.ts b/packages/client-ts/src/models/SourceStageRequest.ts index fb29696020..2d90f50a5f 100644 --- a/packages/client-ts/src/models/SourceStageRequest.ts +++ b/packages/client-ts/src/models/SourceStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SourceType.ts b/packages/client-ts/src/models/SourceType.ts index bafe9a286a..38e096fd32 100644 --- a/packages/client-ts/src/models/SourceType.ts +++ b/packages/client-ts/src/models/SourceType.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Stage.ts b/packages/client-ts/src/models/Stage.ts index da6ca7defe..fd23274d73 100644 --- a/packages/client-ts/src/models/Stage.ts +++ b/packages/client-ts/src/models/Stage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/StageModeEnum.ts b/packages/client-ts/src/models/StageModeEnum.ts index ee35657d7a..95a41be33c 100644 --- a/packages/client-ts/src/models/StageModeEnum.ts +++ b/packages/client-ts/src/models/StageModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/StagePrompt.ts b/packages/client-ts/src/models/StagePrompt.ts index ba88c8152b..c8156e8a20 100644 --- a/packages/client-ts/src/models/StagePrompt.ts +++ b/packages/client-ts/src/models/StagePrompt.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/StaticDevice.ts b/packages/client-ts/src/models/StaticDevice.ts index aa79aec148..5dcf80d972 100644 --- a/packages/client-ts/src/models/StaticDevice.ts +++ b/packages/client-ts/src/models/StaticDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/StaticDeviceRequest.ts b/packages/client-ts/src/models/StaticDeviceRequest.ts index bb065e1a31..f50c518bf4 100644 --- a/packages/client-ts/src/models/StaticDeviceRequest.ts +++ b/packages/client-ts/src/models/StaticDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/StaticDeviceToken.ts b/packages/client-ts/src/models/StaticDeviceToken.ts index f8754fa173..f6f7a4b0e5 100644 --- a/packages/client-ts/src/models/StaticDeviceToken.ts +++ b/packages/client-ts/src/models/StaticDeviceToken.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SubModeEnum.ts b/packages/client-ts/src/models/SubModeEnum.ts index 6f3cc2bf6b..bccdb425a8 100644 --- a/packages/client-ts/src/models/SubModeEnum.ts +++ b/packages/client-ts/src/models/SubModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SyncObjectModelEnum.ts b/packages/client-ts/src/models/SyncObjectModelEnum.ts index c29ec4742e..d83bc410c3 100644 --- a/packages/client-ts/src/models/SyncObjectModelEnum.ts +++ b/packages/client-ts/src/models/SyncObjectModelEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SyncObjectRequest.ts b/packages/client-ts/src/models/SyncObjectRequest.ts index c0b6d255e9..bfbb132b65 100644 --- a/packages/client-ts/src/models/SyncObjectRequest.ts +++ b/packages/client-ts/src/models/SyncObjectRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SyncObjectResult.ts b/packages/client-ts/src/models/SyncObjectResult.ts index 5bbac7d960..fcfe245ac6 100644 --- a/packages/client-ts/src/models/SyncObjectResult.ts +++ b/packages/client-ts/src/models/SyncObjectResult.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SyncOutgoingTriggerModeEnum.ts b/packages/client-ts/src/models/SyncOutgoingTriggerModeEnum.ts index 8bb6236d5c..e72d37f55f 100644 --- a/packages/client-ts/src/models/SyncOutgoingTriggerModeEnum.ts +++ b/packages/client-ts/src/models/SyncOutgoingTriggerModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SyncStatus.ts b/packages/client-ts/src/models/SyncStatus.ts index f99b38fea6..d9b6164d74 100644 --- a/packages/client-ts/src/models/SyncStatus.ts +++ b/packages/client-ts/src/models/SyncStatus.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SystemInfo.ts b/packages/client-ts/src/models/SystemInfo.ts index f9e2048d11..157cf8054d 100644 --- a/packages/client-ts/src/models/SystemInfo.ts +++ b/packages/client-ts/src/models/SystemInfo.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/SystemInfoRuntime.ts b/packages/client-ts/src/models/SystemInfoRuntime.ts index 69cc9984f1..b59b18b12f 100644 --- a/packages/client-ts/src/models/SystemInfoRuntime.ts +++ b/packages/client-ts/src/models/SystemInfoRuntime.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TOTPDevice.ts b/packages/client-ts/src/models/TOTPDevice.ts index a985fb8db4..c2a461c254 100644 --- a/packages/client-ts/src/models/TOTPDevice.ts +++ b/packages/client-ts/src/models/TOTPDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TOTPDeviceRequest.ts b/packages/client-ts/src/models/TOTPDeviceRequest.ts index d0b6df85ef..b6eafd44be 100644 --- a/packages/client-ts/src/models/TOTPDeviceRequest.ts +++ b/packages/client-ts/src/models/TOTPDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Task.ts b/packages/client-ts/src/models/Task.ts index 5f1f790c05..76083127a0 100644 --- a/packages/client-ts/src/models/Task.ts +++ b/packages/client-ts/src/models/Task.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TaskAggregatedStatusEnum.ts b/packages/client-ts/src/models/TaskAggregatedStatusEnum.ts index 129cdc57bd..a169afd7b2 100644 --- a/packages/client-ts/src/models/TaskAggregatedStatusEnum.ts +++ b/packages/client-ts/src/models/TaskAggregatedStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TaskStatusEnum.ts b/packages/client-ts/src/models/TaskStatusEnum.ts index 1d804de7f0..0618cc62d8 100644 --- a/packages/client-ts/src/models/TaskStatusEnum.ts +++ b/packages/client-ts/src/models/TaskStatusEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramAuthRequest.ts b/packages/client-ts/src/models/TelegramAuthRequest.ts index 44405f2387..3b717a4246 100644 --- a/packages/client-ts/src/models/TelegramAuthRequest.ts +++ b/packages/client-ts/src/models/TelegramAuthRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramChallengeResponseRequest.ts b/packages/client-ts/src/models/TelegramChallengeResponseRequest.ts index 8ded9aa44a..ee22642cd9 100644 --- a/packages/client-ts/src/models/TelegramChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/TelegramChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramLoginChallenge.ts b/packages/client-ts/src/models/TelegramLoginChallenge.ts index 6e5e9c3344..16a7953c25 100644 --- a/packages/client-ts/src/models/TelegramLoginChallenge.ts +++ b/packages/client-ts/src/models/TelegramLoginChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramSource.ts b/packages/client-ts/src/models/TelegramSource.ts index e421d6da7d..1e682f3331 100644 --- a/packages/client-ts/src/models/TelegramSource.ts +++ b/packages/client-ts/src/models/TelegramSource.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramSourcePropertyMapping.ts b/packages/client-ts/src/models/TelegramSourcePropertyMapping.ts index 6ec4bd0597..e5b3e26146 100644 --- a/packages/client-ts/src/models/TelegramSourcePropertyMapping.ts +++ b/packages/client-ts/src/models/TelegramSourcePropertyMapping.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramSourcePropertyMappingRequest.ts b/packages/client-ts/src/models/TelegramSourcePropertyMappingRequest.ts index 28ab9aa50f..42d987975d 100644 --- a/packages/client-ts/src/models/TelegramSourcePropertyMappingRequest.ts +++ b/packages/client-ts/src/models/TelegramSourcePropertyMappingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TelegramSourceRequest.ts b/packages/client-ts/src/models/TelegramSourceRequest.ts index 68b5616fd0..963f3126ba 100644 --- a/packages/client-ts/src/models/TelegramSourceRequest.ts +++ b/packages/client-ts/src/models/TelegramSourceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Tenant.ts b/packages/client-ts/src/models/Tenant.ts index 6c1531fb9b..2f67a2af27 100644 --- a/packages/client-ts/src/models/Tenant.ts +++ b/packages/client-ts/src/models/Tenant.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TenantAdminGroupRequestRequest.ts b/packages/client-ts/src/models/TenantAdminGroupRequestRequest.ts index 9609b67632..3056da9cce 100644 --- a/packages/client-ts/src/models/TenantAdminGroupRequestRequest.ts +++ b/packages/client-ts/src/models/TenantAdminGroupRequestRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TenantRecoveryKeyRequestRequest.ts b/packages/client-ts/src/models/TenantRecoveryKeyRequestRequest.ts index 80d9b4074e..28db3f3796 100644 --- a/packages/client-ts/src/models/TenantRecoveryKeyRequestRequest.ts +++ b/packages/client-ts/src/models/TenantRecoveryKeyRequestRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TenantRecoveryKeyResponse.ts b/packages/client-ts/src/models/TenantRecoveryKeyResponse.ts index c58e8984d7..875f522af3 100644 --- a/packages/client-ts/src/models/TenantRecoveryKeyResponse.ts +++ b/packages/client-ts/src/models/TenantRecoveryKeyResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TenantRequest.ts b/packages/client-ts/src/models/TenantRequest.ts index 49677f1163..28d02ae032 100644 --- a/packages/client-ts/src/models/TenantRequest.ts +++ b/packages/client-ts/src/models/TenantRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ThemedUrls.ts b/packages/client-ts/src/models/ThemedUrls.ts index cc96102c8b..f0ed4c948b 100644 --- a/packages/client-ts/src/models/ThemedUrls.ts +++ b/packages/client-ts/src/models/ThemedUrls.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Token.ts b/packages/client-ts/src/models/Token.ts index 873c9b4721..bce30be086 100644 --- a/packages/client-ts/src/models/Token.ts +++ b/packages/client-ts/src/models/Token.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TokenModel.ts b/packages/client-ts/src/models/TokenModel.ts index ffb207f887..51f3eac59e 100644 --- a/packages/client-ts/src/models/TokenModel.ts +++ b/packages/client-ts/src/models/TokenModel.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TokenRequest.ts b/packages/client-ts/src/models/TokenRequest.ts index 5a8d8bcee5..a522318379 100644 --- a/packages/client-ts/src/models/TokenRequest.ts +++ b/packages/client-ts/src/models/TokenRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TokenSetKeyRequest.ts b/packages/client-ts/src/models/TokenSetKeyRequest.ts index 4c6653396e..b653abb657 100644 --- a/packages/client-ts/src/models/TokenSetKeyRequest.ts +++ b/packages/client-ts/src/models/TokenSetKeyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TokenView.ts b/packages/client-ts/src/models/TokenView.ts index b4d975f974..b2aeccd860 100644 --- a/packages/client-ts/src/models/TokenView.ts +++ b/packages/client-ts/src/models/TokenView.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TransactionApplicationRequest.ts b/packages/client-ts/src/models/TransactionApplicationRequest.ts index b55a2dcd6b..424f35c226 100644 --- a/packages/client-ts/src/models/TransactionApplicationRequest.ts +++ b/packages/client-ts/src/models/TransactionApplicationRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TransactionApplicationResponse.ts b/packages/client-ts/src/models/TransactionApplicationResponse.ts index afe97e5dbf..2445fb6366 100644 --- a/packages/client-ts/src/models/TransactionApplicationResponse.ts +++ b/packages/client-ts/src/models/TransactionApplicationResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TransactionPolicyBindingRequest.ts b/packages/client-ts/src/models/TransactionPolicyBindingRequest.ts index 36aed061c8..f5868749f5 100644 --- a/packages/client-ts/src/models/TransactionPolicyBindingRequest.ts +++ b/packages/client-ts/src/models/TransactionPolicyBindingRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TransportModeEnum.ts b/packages/client-ts/src/models/TransportModeEnum.ts index 836b257b90..66fa387b3d 100644 --- a/packages/client-ts/src/models/TransportModeEnum.ts +++ b/packages/client-ts/src/models/TransportModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/TypeCreate.ts b/packages/client-ts/src/models/TypeCreate.ts index 836638b143..5fbafa0ce4 100644 --- a/packages/client-ts/src/models/TypeCreate.ts +++ b/packages/client-ts/src/models/TypeCreate.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UiThemeEnum.ts b/packages/client-ts/src/models/UiThemeEnum.ts index 0eb5a6b72b..16fe7e0b78 100644 --- a/packages/client-ts/src/models/UiThemeEnum.ts +++ b/packages/client-ts/src/models/UiThemeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UniquePasswordPolicy.ts b/packages/client-ts/src/models/UniquePasswordPolicy.ts index ee7d55b3b6..674cbf07ba 100644 --- a/packages/client-ts/src/models/UniquePasswordPolicy.ts +++ b/packages/client-ts/src/models/UniquePasswordPolicy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UniquePasswordPolicyRequest.ts b/packages/client-ts/src/models/UniquePasswordPolicyRequest.ts index 6c8e9ea4f1..ccf0a05816 100644 --- a/packages/client-ts/src/models/UniquePasswordPolicyRequest.ts +++ b/packages/client-ts/src/models/UniquePasswordPolicyRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UsageEnum.ts b/packages/client-ts/src/models/UsageEnum.ts index ac7978bb28..f94e7e5108 100644 --- a/packages/client-ts/src/models/UsageEnum.ts +++ b/packages/client-ts/src/models/UsageEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UsedBy.ts b/packages/client-ts/src/models/UsedBy.ts index 3f0e0135a7..bc6a93c275 100644 --- a/packages/client-ts/src/models/UsedBy.ts +++ b/packages/client-ts/src/models/UsedBy.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UsedByActionEnum.ts b/packages/client-ts/src/models/UsedByActionEnum.ts index eb43971950..3a228df883 100644 --- a/packages/client-ts/src/models/UsedByActionEnum.ts +++ b/packages/client-ts/src/models/UsedByActionEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/User.ts b/packages/client-ts/src/models/User.ts index d1cc815a99..8762f7e78a 100644 --- a/packages/client-ts/src/models/User.ts +++ b/packages/client-ts/src/models/User.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserAccountLockdownRequest.ts b/packages/client-ts/src/models/UserAccountLockdownRequest.ts index 213db4d556..93df2ade74 100644 --- a/packages/client-ts/src/models/UserAccountLockdownRequest.ts +++ b/packages/client-ts/src/models/UserAccountLockdownRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserAccountRequest.ts b/packages/client-ts/src/models/UserAccountRequest.ts index d9c6207921..4238467c55 100644 --- a/packages/client-ts/src/models/UserAccountRequest.ts +++ b/packages/client-ts/src/models/UserAccountRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserAccountSerializerForRoleRequest.ts b/packages/client-ts/src/models/UserAccountSerializerForRoleRequest.ts index e384baf666..e9b511aa13 100644 --- a/packages/client-ts/src/models/UserAccountSerializerForRoleRequest.ts +++ b/packages/client-ts/src/models/UserAccountSerializerForRoleRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserAttributeEnum.ts b/packages/client-ts/src/models/UserAttributeEnum.ts index 40790d8c15..7f104f23c8 100644 --- a/packages/client-ts/src/models/UserAttributeEnum.ts +++ b/packages/client-ts/src/models/UserAttributeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserConsent.ts b/packages/client-ts/src/models/UserConsent.ts index 8b99c89867..9214d568f4 100644 --- a/packages/client-ts/src/models/UserConsent.ts +++ b/packages/client-ts/src/models/UserConsent.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserCreationModeEnum.ts b/packages/client-ts/src/models/UserCreationModeEnum.ts index 88e0f1c51f..94d4aaf05f 100644 --- a/packages/client-ts/src/models/UserCreationModeEnum.ts +++ b/packages/client-ts/src/models/UserCreationModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserDeleteStage.ts b/packages/client-ts/src/models/UserDeleteStage.ts index fb9dc637f9..959470be75 100644 --- a/packages/client-ts/src/models/UserDeleteStage.ts +++ b/packages/client-ts/src/models/UserDeleteStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserDeleteStageRequest.ts b/packages/client-ts/src/models/UserDeleteStageRequest.ts index 2733950432..b2fb848a6d 100644 --- a/packages/client-ts/src/models/UserDeleteStageRequest.ts +++ b/packages/client-ts/src/models/UserDeleteStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserFieldsEnum.ts b/packages/client-ts/src/models/UserFieldsEnum.ts index 59f34e3784..946b2a2b27 100644 --- a/packages/client-ts/src/models/UserFieldsEnum.ts +++ b/packages/client-ts/src/models/UserFieldsEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserKerberosSourceConnection.ts b/packages/client-ts/src/models/UserKerberosSourceConnection.ts index a78530d685..7118df1242 100644 --- a/packages/client-ts/src/models/UserKerberosSourceConnection.ts +++ b/packages/client-ts/src/models/UserKerberosSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserKerberosSourceConnectionRequest.ts b/packages/client-ts/src/models/UserKerberosSourceConnectionRequest.ts index 9a1f4d0336..132692d0b9 100644 --- a/packages/client-ts/src/models/UserKerberosSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserKerberosSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLDAPSourceConnection.ts b/packages/client-ts/src/models/UserLDAPSourceConnection.ts index ecad9ef54d..1445ffba50 100644 --- a/packages/client-ts/src/models/UserLDAPSourceConnection.ts +++ b/packages/client-ts/src/models/UserLDAPSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLDAPSourceConnectionRequest.ts b/packages/client-ts/src/models/UserLDAPSourceConnectionRequest.ts index 599dc060d6..76478dd23e 100644 --- a/packages/client-ts/src/models/UserLDAPSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserLDAPSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLoginChallenge.ts b/packages/client-ts/src/models/UserLoginChallenge.ts index 92de9d5a68..7b315b86a2 100644 --- a/packages/client-ts/src/models/UserLoginChallenge.ts +++ b/packages/client-ts/src/models/UserLoginChallenge.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLoginChallengeResponseRequest.ts b/packages/client-ts/src/models/UserLoginChallengeResponseRequest.ts index a68e10f488..f711a1df5d 100644 --- a/packages/client-ts/src/models/UserLoginChallengeResponseRequest.ts +++ b/packages/client-ts/src/models/UserLoginChallengeResponseRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLoginStage.ts b/packages/client-ts/src/models/UserLoginStage.ts index 920c7ff83a..a1fc14b860 100644 --- a/packages/client-ts/src/models/UserLoginStage.ts +++ b/packages/client-ts/src/models/UserLoginStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLoginStageRequest.ts b/packages/client-ts/src/models/UserLoginStageRequest.ts index fd1c051882..641d7ac909 100644 --- a/packages/client-ts/src/models/UserLoginStageRequest.ts +++ b/packages/client-ts/src/models/UserLoginStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLogoutStage.ts b/packages/client-ts/src/models/UserLogoutStage.ts index 3f428ba1a6..0315a8bb63 100644 --- a/packages/client-ts/src/models/UserLogoutStage.ts +++ b/packages/client-ts/src/models/UserLogoutStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserLogoutStageRequest.ts b/packages/client-ts/src/models/UserLogoutStageRequest.ts index d462af9b96..db46229a07 100644 --- a/packages/client-ts/src/models/UserLogoutStageRequest.ts +++ b/packages/client-ts/src/models/UserLogoutStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserMatchingModeEnum.ts b/packages/client-ts/src/models/UserMatchingModeEnum.ts index f2793eeca9..bfb16be1f7 100644 --- a/packages/client-ts/src/models/UserMatchingModeEnum.ts +++ b/packages/client-ts/src/models/UserMatchingModeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserOAuthSourceConnection.ts b/packages/client-ts/src/models/UserOAuthSourceConnection.ts index aaef5639bf..eaaf4fba2c 100644 --- a/packages/client-ts/src/models/UserOAuthSourceConnection.ts +++ b/packages/client-ts/src/models/UserOAuthSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserOAuthSourceConnectionRequest.ts b/packages/client-ts/src/models/UserOAuthSourceConnectionRequest.ts index c121599b01..b544a56646 100644 --- a/packages/client-ts/src/models/UserOAuthSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserOAuthSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserPasswordHashSetRequest.ts b/packages/client-ts/src/models/UserPasswordHashSetRequest.ts index 3bd15866e5..a2fb05ef1e 100644 --- a/packages/client-ts/src/models/UserPasswordHashSetRequest.ts +++ b/packages/client-ts/src/models/UserPasswordHashSetRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserPasswordSetRequest.ts b/packages/client-ts/src/models/UserPasswordSetRequest.ts index f51eb70e5b..c9c4fd3264 100644 --- a/packages/client-ts/src/models/UserPasswordSetRequest.ts +++ b/packages/client-ts/src/models/UserPasswordSetRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserPath.ts b/packages/client-ts/src/models/UserPath.ts index 19faaf4ed6..c52e7c1469 100644 --- a/packages/client-ts/src/models/UserPath.ts +++ b/packages/client-ts/src/models/UserPath.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserPlexSourceConnection.ts b/packages/client-ts/src/models/UserPlexSourceConnection.ts index 16cf1b4eef..61230b49fc 100644 --- a/packages/client-ts/src/models/UserPlexSourceConnection.ts +++ b/packages/client-ts/src/models/UserPlexSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserPlexSourceConnectionRequest.ts b/packages/client-ts/src/models/UserPlexSourceConnectionRequest.ts index 924eb7fd6b..d6b41fbc4e 100644 --- a/packages/client-ts/src/models/UserPlexSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserPlexSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserRecoveryEmailRequest.ts b/packages/client-ts/src/models/UserRecoveryEmailRequest.ts index c2a6d83114..01a0fec3a1 100644 --- a/packages/client-ts/src/models/UserRecoveryEmailRequest.ts +++ b/packages/client-ts/src/models/UserRecoveryEmailRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserRecoveryLinkRequest.ts b/packages/client-ts/src/models/UserRecoveryLinkRequest.ts index f0fe8c77c0..2efc2f1767 100644 --- a/packages/client-ts/src/models/UserRecoveryLinkRequest.ts +++ b/packages/client-ts/src/models/UserRecoveryLinkRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserRequest.ts b/packages/client-ts/src/models/UserRequest.ts index 060b1c89ee..192819d9d8 100644 --- a/packages/client-ts/src/models/UserRequest.ts +++ b/packages/client-ts/src/models/UserRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSAMLSourceConnection.ts b/packages/client-ts/src/models/UserSAMLSourceConnection.ts index 82fe2cc386..797503683a 100644 --- a/packages/client-ts/src/models/UserSAMLSourceConnection.ts +++ b/packages/client-ts/src/models/UserSAMLSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSAMLSourceConnectionRequest.ts b/packages/client-ts/src/models/UserSAMLSourceConnectionRequest.ts index b358f38cdd..476259958f 100644 --- a/packages/client-ts/src/models/UserSAMLSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserSAMLSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSelf.ts b/packages/client-ts/src/models/UserSelf.ts index 811116930a..062f1dd7e0 100644 --- a/packages/client-ts/src/models/UserSelf.ts +++ b/packages/client-ts/src/models/UserSelf.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSelfGroups.ts b/packages/client-ts/src/models/UserSelfGroups.ts index 7003ded4fe..1c6f101de7 100644 --- a/packages/client-ts/src/models/UserSelfGroups.ts +++ b/packages/client-ts/src/models/UserSelfGroups.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSelfRoles.ts b/packages/client-ts/src/models/UserSelfRoles.ts index 994bc281bd..c397651282 100644 --- a/packages/client-ts/src/models/UserSelfRoles.ts +++ b/packages/client-ts/src/models/UserSelfRoles.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserServiceAccountRequest.ts b/packages/client-ts/src/models/UserServiceAccountRequest.ts index 61404ac5c0..cf28aad163 100644 --- a/packages/client-ts/src/models/UserServiceAccountRequest.ts +++ b/packages/client-ts/src/models/UserServiceAccountRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserServiceAccountResponse.ts b/packages/client-ts/src/models/UserServiceAccountResponse.ts index df1e8dfcee..cf323a5f60 100644 --- a/packages/client-ts/src/models/UserServiceAccountResponse.ts +++ b/packages/client-ts/src/models/UserServiceAccountResponse.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSetting.ts b/packages/client-ts/src/models/UserSetting.ts index 9ceb83acf0..bfd9e5b988 100644 --- a/packages/client-ts/src/models/UserSetting.ts +++ b/packages/client-ts/src/models/UserSetting.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSourceConnection.ts b/packages/client-ts/src/models/UserSourceConnection.ts index ef164cfd8d..797498db7e 100644 --- a/packages/client-ts/src/models/UserSourceConnection.ts +++ b/packages/client-ts/src/models/UserSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserSourceConnectionRequest.ts b/packages/client-ts/src/models/UserSourceConnectionRequest.ts index b3b240fee3..97f2ece964 100644 --- a/packages/client-ts/src/models/UserSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserTelegramSourceConnection.ts b/packages/client-ts/src/models/UserTelegramSourceConnection.ts index 8c737badc5..d9d139c4f8 100644 --- a/packages/client-ts/src/models/UserTelegramSourceConnection.ts +++ b/packages/client-ts/src/models/UserTelegramSourceConnection.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserTelegramSourceConnectionRequest.ts b/packages/client-ts/src/models/UserTelegramSourceConnectionRequest.ts index 2094d685cb..abc91f69bd 100644 --- a/packages/client-ts/src/models/UserTelegramSourceConnectionRequest.ts +++ b/packages/client-ts/src/models/UserTelegramSourceConnectionRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserTypeEnum.ts b/packages/client-ts/src/models/UserTypeEnum.ts index c79081342a..fa54044505 100644 --- a/packages/client-ts/src/models/UserTypeEnum.ts +++ b/packages/client-ts/src/models/UserTypeEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserVerificationEnum.ts b/packages/client-ts/src/models/UserVerificationEnum.ts index 0a31f4c5d1..5b89159267 100644 --- a/packages/client-ts/src/models/UserVerificationEnum.ts +++ b/packages/client-ts/src/models/UserVerificationEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserWriteStage.ts b/packages/client-ts/src/models/UserWriteStage.ts index ad7c1f1275..6f6e28d56d 100644 --- a/packages/client-ts/src/models/UserWriteStage.ts +++ b/packages/client-ts/src/models/UserWriteStage.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/UserWriteStageRequest.ts b/packages/client-ts/src/models/UserWriteStageRequest.ts index 0d7faaa900..f71f4994c7 100644 --- a/packages/client-ts/src/models/UserWriteStageRequest.ts +++ b/packages/client-ts/src/models/UserWriteStageRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/ValidationError.ts b/packages/client-ts/src/models/ValidationError.ts index 70270f21b6..42c8fbbc13 100644 --- a/packages/client-ts/src/models/ValidationError.ts +++ b/packages/client-ts/src/models/ValidationError.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/VendorEnum.ts b/packages/client-ts/src/models/VendorEnum.ts index 3bc75ea31d..0481b291a9 100644 --- a/packages/client-ts/src/models/VendorEnum.ts +++ b/packages/client-ts/src/models/VendorEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Version.ts b/packages/client-ts/src/models/Version.ts index 99406e1e8d..93305970d1 100644 --- a/packages/client-ts/src/models/Version.ts +++ b/packages/client-ts/src/models/Version.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/VersionHistory.ts b/packages/client-ts/src/models/VersionHistory.ts index d936f52aa6..b55263a529 100644 --- a/packages/client-ts/src/models/VersionHistory.ts +++ b/packages/client-ts/src/models/VersionHistory.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WSFederationProvider.ts b/packages/client-ts/src/models/WSFederationProvider.ts index 5a9b69f59c..b55948e02a 100644 --- a/packages/client-ts/src/models/WSFederationProvider.ts +++ b/packages/client-ts/src/models/WSFederationProvider.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WSFederationProviderRequest.ts b/packages/client-ts/src/models/WSFederationProviderRequest.ts index d2258f9dda..3abd03bac5 100644 --- a/packages/client-ts/src/models/WSFederationProviderRequest.ts +++ b/packages/client-ts/src/models/WSFederationProviderRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WebAuthnDevice.ts b/packages/client-ts/src/models/WebAuthnDevice.ts index afad84cef0..0f598145a8 100644 --- a/packages/client-ts/src/models/WebAuthnDevice.ts +++ b/packages/client-ts/src/models/WebAuthnDevice.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WebAuthnDeviceRequest.ts b/packages/client-ts/src/models/WebAuthnDeviceRequest.ts index 52ba0d1c17..0b016fd633 100644 --- a/packages/client-ts/src/models/WebAuthnDeviceRequest.ts +++ b/packages/client-ts/src/models/WebAuthnDeviceRequest.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WebAuthnDeviceType.ts b/packages/client-ts/src/models/WebAuthnDeviceType.ts index 403a390936..d036769a0f 100644 --- a/packages/client-ts/src/models/WebAuthnDeviceType.ts +++ b/packages/client-ts/src/models/WebAuthnDeviceType.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/WebAuthnHintEnum.ts b/packages/client-ts/src/models/WebAuthnHintEnum.ts index 9150c7c618..4677f8bf19 100644 --- a/packages/client-ts/src/models/WebAuthnHintEnum.ts +++ b/packages/client-ts/src/models/WebAuthnHintEnum.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/models/Worker.ts b/packages/client-ts/src/models/Worker.ts index df16979fb2..92a75185c5 100644 --- a/packages/client-ts/src/models/Worker.ts +++ b/packages/client-ts/src/models/Worker.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/packages/client-ts/src/runtime.ts b/packages/client-ts/src/runtime.ts index 1c518ff4ff..ff7a458414 100644 --- a/packages/client-ts/src/runtime.ts +++ b/packages/client-ts/src/runtime.ts @@ -4,7 +4,7 @@ * authentik * Making authentication simple. * - * The version of the OpenAPI document: 2026.5.0-rc1 + * The version of the OpenAPI document: 2026.5.0-rc2 * Contact: hello@goauthentik.io * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). diff --git a/pyproject.toml b/pyproject.toml index 16b3d170da..08ec8b45f7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "authentik" -version = "2026.5.0-rc1" +version = "2026.5.0-rc2" description = "" authors = [{ name = "authentik Team", email = "hello@goauthentik.io" }] requires-python = "==3.14.*" diff --git a/schema.yml b/schema.yml index 4d5cf8b3ba..b598c27a9e 100644 --- a/schema.yml +++ b/schema.yml @@ -1,7 +1,7 @@ openapi: 3.0.3 info: title: authentik - version: 2026.5.0-rc1 + version: 2026.5.0-rc2 description: Making authentication simple. contact: email: hello@goauthentik.io diff --git a/uv.lock b/uv.lock index 217501e100..7e9b68f3ea 100644 --- a/uv.lock +++ b/uv.lock @@ -203,7 +203,7 @@ wheels = [ [[package]] name = "authentik" -version = "2026.5.0rc1" +version = "2026.5.0rc2" source = { editable = "." } dependencies = [ { name = "ak-guardian" }, diff --git a/web/package-lock.json b/web/package-lock.json index 76a437b849..0d9bf1ade6 100644 --- a/web/package-lock.json +++ b/web/package-lock.json @@ -1,12 +1,12 @@ { "name": "@goauthentik/web", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@goauthentik/web", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "license": "MIT", "workspaces": [ "./packages/*" diff --git a/web/package.json b/web/package.json index 0378e903e6..b6c1d54b2d 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "@goauthentik/web", - "version": "2026.5.0-rc1", + "version": "2026.5.0-rc2", "license": "MIT", "private": true, "scripts": {