diff --git a/docs/openapi.json b/docs/openapi.json
index fe534cb..42d59f5 100644
--- a/docs/openapi.json
+++ b/docs/openapi.json
@@ -2,7 +2,7 @@
"openapi" : "3.0.3",
"info" : {
"title" : "Keycloak Multi-Tenancy",
- "version" : "23.1.0"
+ "version" : "23.2.0"
},
"servers" : [ {
"url" : "{{keycloakUrl}}/auth/realms/{{realmName}}"
@@ -89,6 +89,24 @@
}
}
},
+ "put" : {
+ "summary" : "Update tenant",
+ "operationId" : "updateTenant",
+ "requestBody" : {
+ "content" : {
+ "application/json" : {
+ "schema" : {
+ "$ref" : "#/components/schemas/TenantRepresentation"
+ }
+ }
+ }
+ },
+ "responses" : {
+ "200" : {
+ "description" : "OK"
+ }
+ }
+ },
"delete" : {
"summary" : "Delete tenant",
"operationId" : "deleteTenant",
diff --git a/docs/openapi.yaml b/docs/openapi.yaml
index 0c87248..7651b70 100644
--- a/docs/openapi.yaml
+++ b/docs/openapi.yaml
@@ -2,7 +2,7 @@
openapi: 3.0.3
info:
title: Keycloak Multi-Tenancy
- version: 23.1.0
+ version: 23.2.0
servers:
- url: "{{keycloakUrl}}/auth/realms/{{realmName}}"
paths:
@@ -60,6 +60,17 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/TenantRepresentation'
+ put:
+ summary: Update tenant
+ operationId: updateTenant
+ requestBody:
+ content:
+ application/json:
+ schema:
+ $ref: '#/components/schemas/TenantRepresentation'
+ responses:
+ "200":
+ description: OK
delete:
summary: Delete tenant
operationId: deleteTenant
diff --git a/pom.xml b/pom.xml
index 98149c3..2dc961e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
dev.sultanov
keycloak-multi-tenancy
- 23.1.0
+ 23.2.0
jar
Keycloak Multi-Tenancy