Skip to content

Commit

Permalink
Keycloak Admin REST API v26.0.700
Browse files Browse the repository at this point in the history
  • Loading branch information
kilork committed Dec 14, 2024
1 parent 4234089 commit 3943803
Show file tree
Hide file tree
Showing 6 changed files with 426 additions and 376 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keycloak"
version = "26.0.200"
version = "26.0.700"
authors = ["Alexander Korolev <alexander.korolev.germany@gmail.com>"]
edition = "2021"
categories = ["api-bindings", "asynchronous"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Dual-licensed under `MIT` or the [UNLICENSE](http://unlicense.org/).

## Features

Implements [Keycloak Admin REST API version 26.0.2](https://www.keycloak.org/docs-api/26.0.2/rest-api/index.html).
Implements [Keycloak Admin REST API version 26.0.7](https://www.keycloak.org/docs-api/26.0.7/rest-api/index.html).

### Feature flags

Expand Down
28 changes: 28 additions & 0 deletions api/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9953,6 +9953,14 @@
"tags" : [ "Organizations" ],
"summary" : "Returns a paginated list of organizations filtered according to the specified parameters",
"parameters" : [ {
"name" : "briefRepresentation",
"in" : "query",
"description" : "if true, return the full representation. Otherwise, only the basic fields are returned.",
"schema" : {
"default" : false,
"type" : "boolean"
}
}, {
"name" : "exact",
"in" : "query",
"description" : "Boolean which defines whether the param 'search' must match exactly or not",
Expand Down Expand Up @@ -10281,6 +10289,13 @@
"default" : "10",
"type" : "integer"
}
}, {
"name" : "membershipType",
"in" : "query",
"description" : "The membership type",
"schema" : {
"type" : "string"
}
}, {
"name" : "search",
"in" : "query",
Expand Down Expand Up @@ -13676,6 +13691,12 @@
},
"error" : {
"type" : "string"
},
"details" : {
"type" : "object",
"additionalProperties" : {
"type" : "string"
}
}
}
},
Expand Down Expand Up @@ -14075,6 +14096,10 @@
}
}
},
"BruteForceStrategy" : {
"enum" : [ "LINEAR", "MULTIPLE" ],
"type" : "string"
},
"CertificateRepresentation" : {
"type" : "object",
"properties" : {
Expand Down Expand Up @@ -16357,6 +16382,9 @@
"format" : "int32",
"type" : "integer"
},
"bruteForceStrategy" : {
"$ref" : "#/components/schemas/BruteForceStrategy"
},
"maxFailureWaitSeconds" : {
"format" : "int32",
"type" : "integer"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Dual-licensed under `MIT` or the [UNLICENSE](http://unlicense.org/).
## Features
Implements [Keycloak Admin REST API version 26.0.2](https://www.keycloak.org/docs-api/26.0.2/rest-api/index.html).
Implements [Keycloak Admin REST API version 26.0.7](https://www.keycloak.org/docs-api/26.0.7/rest-api/index.html).
### Feature flags
Expand Down
Loading

0 comments on commit 3943803

Please sign in to comment.