@keycloak/keycloak-admin-client 24.0.0 → 24.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -146,6 +146,7 @@ export declare class Realms extends Resource {
146
146
  deleteSession: (payload?: {
147
147
  realm: string;
148
148
  session: string;
149
+ isOffline: boolean;
149
150
  } | undefined, options?: Pick<import("./agent.js").RequestArgs, "catchNotFound"> | undefined) => Promise<void>;
150
151
  pushRevocation: (payload?: {
151
152
  realm: string;
@@ -177,6 +177,7 @@ export class Realms extends Resource {
177
177
  method: "DELETE",
178
178
  path: "/{realm}/sessions/{session}",
179
179
  urlParamKeys: ["realm", "session"],
180
+ queryParamKeys: ["isOffline"],
180
181
  });
181
182
  pushRevocation = this.makeRequest({
182
183
  method: "POST",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keycloak/keycloak-admin-client",
3
- "version": "24.0.0",
3
+ "version": "24.0.2",
4
4
  "description": "A client to interact with Keycloak's Administration API",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",