core: bump openapitools/openapi-generator-cli from v7.20.0 to v7.23.0 in /packages/client-rust (#22574)

Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
This commit is contained in:
dependabot[bot]
2026-06-17 13:48:26 +00:00
committed by GitHub
parent c755232f0a
commit 13f938cb64
13 changed files with 37 additions and 32 deletions
Generated
+5 -2
View File
@@ -219,6 +219,7 @@ name = "authentik-client"
version = "2026.8.0-rc1" version = "2026.8.0-rc1"
dependencies = [ dependencies = [
"aws-lc-rs", "aws-lc-rs",
"chrono",
"reqwest", "reqwest",
"reqwest-middleware", "reqwest-middleware",
"rustls", "rustls",
@@ -567,13 +568,15 @@ dependencies = [
[[package]] [[package]]
name = "chrono" name = "chrono"
version = "0.4.44" version = "0.4.45"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327"
dependencies = [ dependencies = [
"iana-time-zone", "iana-time-zone",
"js-sys",
"num-traits", "num-traits",
"serde", "serde",
"wasm-bindgen",
"windows-link", "windows-link",
] ]
+1
View File
@@ -26,6 +26,7 @@ aws-lc-rs = { version = "= 1.17.0", features = ["fips"] }
axum = { version = "= 0.8.9", features = ["http2", "macros", "ws"] } axum = { version = "= 0.8.9", features = ["http2", "macros", "ws"] }
clap = { version = "= 4.6.1", features = ["derive", "env"] } clap = { version = "= 4.6.1", features = ["derive", "env"] }
client-ip = { version = "0.2.1", features = ["forwarded-header"] } client-ip = { version = "0.2.1", features = ["forwarded-header"] }
chrono = { version = "0.4.45", features = ["serde"] }
color-eyre = "= 0.6.5" color-eyre = "= 0.6.5"
colored = "= 3.1.1" colored = "= 3.1.1"
config-rs = { package = "config", version = "= 0.15.22", default-features = false, features = [ config-rs = { package = "config", version = "= 0.15.22", default-features = false, features = [
+1
View File
@@ -12,6 +12,7 @@ publish = false
[dependencies] [dependencies]
aws-lc-rs.workspace = true aws-lc-rs.workspace = true
chrono.workspace = true
serde.workspace = true serde.workspace = true
serde_with.workspace = true serde_with.workspace = true
serde_json.workspace = true serde_json.workspace = true
+1 -1
View File
@@ -1,7 +1,7 @@
--- ---
services: services:
gen: gen:
image: docker.io/openapitools/openapi-generator-cli:v7.20.0 image: docker.io/openapitools/openapi-generator-cli:v7.23.0
restart: never restart: never
network_mode: none network_mode: none
volumes: volumes:
+9 -9
View File
@@ -385,9 +385,9 @@ pub async fn core_groups_list(
pub async fn core_users_list( pub async fn core_users_list(
configuration: &configuration::Configuration, configuration: &configuration::Configuration,
attributes: Option<&str>, attributes: Option<&str>,
date_joined: Option<String>, date_joined: Option<chrono::DateTime<chrono::FixedOffset>>,
date_joined__gt: Option<String>, date_joined__gt: Option<chrono::DateTime<chrono::FixedOffset>>,
date_joined__lt: Option<String>, date_joined__lt: Option<chrono::DateTime<chrono::FixedOffset>>,
email: Option<&str>, email: Option<&str>,
groups_by_name: Option<Vec<String>>, groups_by_name: Option<Vec<String>>,
groups_by_pk: Option<Vec<uuid::Uuid>>, groups_by_pk: Option<Vec<uuid::Uuid>>,
@@ -395,13 +395,13 @@ pub async fn core_users_list(
include_roles: Option<bool>, include_roles: Option<bool>,
is_active: Option<bool>, is_active: Option<bool>,
is_superuser: Option<bool>, is_superuser: Option<bool>,
last_login: Option<String>, last_login: Option<chrono::DateTime<chrono::FixedOffset>>,
last_login__gt: Option<String>, last_login__gt: Option<chrono::DateTime<chrono::FixedOffset>>,
last_login__isnull: Option<bool>, last_login__isnull: Option<bool>,
last_login__lt: Option<String>, last_login__lt: Option<chrono::DateTime<chrono::FixedOffset>>,
last_updated: Option<String>, last_updated: Option<chrono::DateTime<chrono::FixedOffset>>,
last_updated__gt: Option<String>, last_updated__gt: Option<chrono::DateTime<chrono::FixedOffset>>,
last_updated__lt: Option<String>, last_updated__lt: Option<chrono::DateTime<chrono::FixedOffset>>,
name: Option<&str>, name: Option<&str>,
ordering: Option<&str>, ordering: Option<&str>,
page: Option<i32>, page: Option<i32>,
+2 -2
View File
@@ -28,7 +28,7 @@ pub struct CertificateKeyPair {
pub fingerprint_sha1: Option<String>, pub fingerprint_sha1: Option<String>,
/// Certificate expiry date /// Certificate expiry date
#[serde(rename = "cert_expiry", deserialize_with = "Option::deserialize")] #[serde(rename = "cert_expiry", deserialize_with = "Option::deserialize")]
pub cert_expiry: Option<String>, pub cert_expiry: Option<chrono::DateTime<chrono::FixedOffset>>,
/// Certificate subject as RFC4514 string /// Certificate subject as RFC4514 string
#[serde(rename = "cert_subject", deserialize_with = "Option::deserialize")] #[serde(rename = "cert_subject", deserialize_with = "Option::deserialize")]
pub cert_subject: Option<String>, pub cert_subject: Option<String>,
@@ -58,7 +58,7 @@ impl CertificateKeyPair {
name: String, name: String,
fingerprint_sha256: Option<String>, fingerprint_sha256: Option<String>,
fingerprint_sha1: Option<String>, fingerprint_sha1: Option<String>,
cert_expiry: Option<String>, cert_expiry: Option<chrono::DateTime<chrono::FixedOffset>>,
cert_subject: Option<String>, cert_subject: Option<String>,
private_key_available: bool, private_key_available: bool,
key_type: Option<models::CertificateKeyPairKeyTypeEnum>, key_type: Option<models::CertificateKeyPairKeyTypeEnum>,
+2 -2
View File
@@ -20,7 +20,7 @@ pub struct DeviceChallenge {
#[serde(rename = "challenge")] #[serde(rename = "challenge")]
pub challenge: std::collections::HashMap<String, serde_json::Value>, pub challenge: std::collections::HashMap<String, serde_json::Value>,
#[serde(rename = "last_used", deserialize_with = "Option::deserialize")] #[serde(rename = "last_used", deserialize_with = "Option::deserialize")]
pub last_used: Option<String>, pub last_used: Option<chrono::DateTime<chrono::FixedOffset>>,
} }
impl DeviceChallenge { impl DeviceChallenge {
@@ -29,7 +29,7 @@ impl DeviceChallenge {
device_class: models::DeviceClassesEnum, device_class: models::DeviceClassesEnum,
device_uid: String, device_uid: String,
challenge: std::collections::HashMap<String, serde_json::Value>, challenge: std::collections::HashMap<String, serde_json::Value>,
last_used: Option<String>, last_used: Option<chrono::DateTime<chrono::FixedOffset>>,
) -> DeviceChallenge { ) -> DeviceChallenge {
DeviceChallenge { DeviceChallenge {
device_class, device_class,
+2 -2
View File
@@ -20,7 +20,7 @@ pub struct DeviceChallengeRequest {
#[serde(rename = "challenge")] #[serde(rename = "challenge")]
pub challenge: std::collections::HashMap<String, serde_json::Value>, pub challenge: std::collections::HashMap<String, serde_json::Value>,
#[serde(rename = "last_used", deserialize_with = "Option::deserialize")] #[serde(rename = "last_used", deserialize_with = "Option::deserialize")]
pub last_used: Option<String>, pub last_used: Option<chrono::DateTime<chrono::FixedOffset>>,
} }
impl DeviceChallengeRequest { impl DeviceChallengeRequest {
@@ -29,7 +29,7 @@ impl DeviceChallengeRequest {
device_class: models::DeviceClassesEnum, device_class: models::DeviceClassesEnum,
device_uid: String, device_uid: String,
challenge: std::collections::HashMap<String, serde_json::Value>, challenge: std::collections::HashMap<String, serde_json::Value>,
last_used: Option<String>, last_used: Option<chrono::DateTime<chrono::FixedOffset>>,
) -> DeviceChallengeRequest { ) -> DeviceChallengeRequest {
DeviceChallengeRequest { DeviceChallengeRequest {
device_class, device_class,
+3 -3
View File
@@ -31,9 +31,9 @@ pub struct Event {
)] )]
pub client_ip: Option<Option<String>>, pub client_ip: Option<Option<String>>,
#[serde(rename = "created")] #[serde(rename = "created")]
pub created: String, pub created: chrono::DateTime<chrono::FixedOffset>,
#[serde(rename = "expires", skip_serializing_if = "Option::is_none")] #[serde(rename = "expires", skip_serializing_if = "Option::is_none")]
pub expires: Option<String>, pub expires: Option<chrono::DateTime<chrono::FixedOffset>>,
#[serde(rename = "brand", skip_serializing_if = "Option::is_none")] #[serde(rename = "brand", skip_serializing_if = "Option::is_none")]
pub brand: Option<std::collections::HashMap<String, serde_json::Value>>, pub brand: Option<std::collections::HashMap<String, serde_json::Value>>,
} }
@@ -44,7 +44,7 @@ impl Event {
pk: uuid::Uuid, pk: uuid::Uuid,
action: models::EventActions, action: models::EventActions,
app: String, app: String,
created: String, created: chrono::DateTime<chrono::FixedOffset>,
) -> Event { ) -> Event {
Event { Event {
pk, pk,
+1 -1
View File
@@ -29,7 +29,7 @@ pub struct EventRequest {
)] )]
pub client_ip: Option<Option<String>>, pub client_ip: Option<Option<String>>,
#[serde(rename = "expires", skip_serializing_if = "Option::is_none")] #[serde(rename = "expires", skip_serializing_if = "Option::is_none")]
pub expires: Option<String>, pub expires: Option<chrono::DateTime<chrono::FixedOffset>>,
#[serde(rename = "brand", skip_serializing_if = "Option::is_none")] #[serde(rename = "brand", skip_serializing_if = "Option::is_none")]
pub brand: Option<std::collections::HashMap<String, serde_json::Value>>, pub brand: Option<std::collections::HashMap<String, serde_json::Value>>,
} }
+2 -2
View File
@@ -14,7 +14,7 @@ use crate::models;
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)] #[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct LogEvent { pub struct LogEvent {
#[serde(rename = "timestamp")] #[serde(rename = "timestamp")]
pub timestamp: String, pub timestamp: chrono::DateTime<chrono::FixedOffset>,
#[serde(rename = "log_level")] #[serde(rename = "log_level")]
pub log_level: models::LogLevelEnum, pub log_level: models::LogLevelEnum,
#[serde(rename = "logger")] #[serde(rename = "logger")]
@@ -28,7 +28,7 @@ pub struct LogEvent {
impl LogEvent { impl LogEvent {
/// Single log message with all context logged. /// Single log message with all context logged.
pub fn new( pub fn new(
timestamp: String, timestamp: chrono::DateTime<chrono::FixedOffset>,
log_level: models::LogLevelEnum, log_level: models::LogLevelEnum,
logger: String, logger: String,
event: String, event: String,
+1 -1
View File
@@ -31,7 +31,7 @@ pub struct PartialUser {
with = "::serde_with::rust::double_option", with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none" skip_serializing_if = "Option::is_none"
)] )]
pub last_login: Option<Option<String>>, pub last_login: Option<Option<chrono::DateTime<chrono::FixedOffset>>>,
#[serde(rename = "email", skip_serializing_if = "Option::is_none")] #[serde(rename = "email", skip_serializing_if = "Option::is_none")]
pub email: Option<String>, pub email: Option<String>,
#[serde(rename = "attributes", skip_serializing_if = "Option::is_none")] #[serde(rename = "attributes", skip_serializing_if = "Option::is_none")]
+7 -7
View File
@@ -30,9 +30,9 @@ pub struct User {
with = "::serde_with::rust::double_option", with = "::serde_with::rust::double_option",
skip_serializing_if = "Option::is_none" skip_serializing_if = "Option::is_none"
)] )]
pub last_login: Option<Option<String>>, pub last_login: Option<Option<chrono::DateTime<chrono::FixedOffset>>>,
#[serde(rename = "date_joined")] #[serde(rename = "date_joined")]
pub date_joined: String, pub date_joined: chrono::DateTime<chrono::FixedOffset>,
#[serde(rename = "is_superuser")] #[serde(rename = "is_superuser")]
pub is_superuser: bool, pub is_superuser: bool,
#[serde(rename = "groups", skip_serializing_if = "Option::is_none")] #[serde(rename = "groups", skip_serializing_if = "Option::is_none")]
@@ -59,9 +59,9 @@ pub struct User {
#[serde(rename = "uuid")] #[serde(rename = "uuid")]
pub uuid: uuid::Uuid, pub uuid: uuid::Uuid,
#[serde(rename = "password_change_date")] #[serde(rename = "password_change_date")]
pub password_change_date: String, pub password_change_date: chrono::DateTime<chrono::FixedOffset>,
#[serde(rename = "last_updated")] #[serde(rename = "last_updated")]
pub last_updated: String, pub last_updated: chrono::DateTime<chrono::FixedOffset>,
} }
impl User { impl User {
@@ -70,15 +70,15 @@ impl User {
pk: i32, pk: i32,
username: String, username: String,
name: String, name: String,
date_joined: String, date_joined: chrono::DateTime<chrono::FixedOffset>,
is_superuser: bool, is_superuser: bool,
groups_obj: Option<Vec<models::PartialGroup>>, groups_obj: Option<Vec<models::PartialGroup>>,
roles_obj: Option<Vec<models::Role>>, roles_obj: Option<Vec<models::Role>>,
avatar: String, avatar: String,
uid: String, uid: String,
uuid: uuid::Uuid, uuid: uuid::Uuid,
password_change_date: String, password_change_date: chrono::DateTime<chrono::FixedOffset>,
last_updated: String, last_updated: chrono::DateTime<chrono::FixedOffset>,
) -> User { ) -> User {
User { User {
pk, pk,