8cb202eb29
* Add JavaScript admin client to repository * Apply review feedback Co-authored-by: Stian Thorgersen <stian@redhat.com> --------- Co-authored-by: Stian Thorgersen <stian@redhat.com>
14 lines
317 B
TypeScript
14 lines
317 B
TypeScript
import type ResourceRepresentation from "./resourceRepresentation.js";
|
|
|
|
export default interface ResourceEvaluation {
|
|
roleIds?: string[];
|
|
clientId: string;
|
|
userId: string;
|
|
resources?: ResourceRepresentation[];
|
|
entitlements: boolean;
|
|
context: {
|
|
attributes: {
|
|
[key: string]: string;
|
|
};
|
|
};
|
|
}
|