@continuoussecuritytooling/keycloak-auditor
Advanced tools
Comparing version 2.0.11 to 2.0.12
@@ -48,2 +48,3 @@ export interface AuditedClientRepresentation extends ClientRepresentation { | ||
decisionStrategy: DecisionStrategy; | ||
authorizationSchema: AuthorizationSchema; | ||
} | ||
@@ -263,2 +264,7 @@ export interface ClientRepresentation { | ||
} | ||
export interface AuthorizationSchema { | ||
resourceTypes: { | ||
[index: string]: ResourceType; | ||
}; | ||
} | ||
export interface UserProfileAttributeMetadata { | ||
@@ -315,5 +321,10 @@ name: string; | ||
owner: string; | ||
resourceType: string; | ||
resourcesData: ResourceRepresentation[]; | ||
scopesData: ScopeRepresentation[]; | ||
} | ||
export interface ResourceType { | ||
type: string; | ||
scopes: string[]; | ||
} | ||
export declare const enum ConfigConstants { | ||
@@ -320,0 +331,0 @@ DISABLE_EXTERNAL_ACCESS = "KC_AUD_DISABLE_EXTERNAL_ACCESS", |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
// Generated using typescript-generator version 3.2.1263 on 2025-01-15 07:28:51. | ||
// Generated using typescript-generator version 3.2.1263 on 2025-02-07 13:02:47. | ||
export var ConfigConstants; | ||
@@ -5,0 +5,0 @@ (function (ConfigConstants) { |
{ | ||
"name": "@continuoussecuritytooling/keycloak-auditor", | ||
"version": "2.0.11", | ||
"version": "2.0.12", | ||
"description": "Auditing Tools for Keycloak", | ||
@@ -5,0 +5,0 @@ "typings": "dist/index.d.ts", |
/* tslint:disable */ | ||
/* eslint-disable */ | ||
// Generated using typescript-generator version 3.2.1263 on 2025-01-15 07:28:51. | ||
// Generated using typescript-generator version 3.2.1263 on 2025-02-07 13:02:47. | ||
@@ -51,2 +51,3 @@ export interface AuditedClientRepresentation extends ClientRepresentation { | ||
decisionStrategy: DecisionStrategy; | ||
authorizationSchema: AuthorizationSchema; | ||
} | ||
@@ -257,2 +258,6 @@ | ||
export interface AuthorizationSchema { | ||
resourceTypes: { [index: string]: ResourceType }; | ||
} | ||
export interface UserProfileAttributeMetadata { | ||
@@ -303,2 +308,3 @@ name: string; | ||
owner: string; | ||
resourceType: string; | ||
resourcesData: ResourceRepresentation[]; | ||
@@ -308,2 +314,7 @@ scopesData: ScopeRepresentation[]; | ||
export interface ResourceType { | ||
type: string; | ||
scopes: string[]; | ||
} | ||
export const enum ConfigConstants { | ||
@@ -310,0 +321,0 @@ DISABLE_EXTERNAL_ACCESS = "KC_AUD_DISABLE_EXTERNAL_ACCESS", |
107220
2975