iam-client-lib
Version:
Library for Decentralized Identity and Access Management
27 lines (26 loc) • 576 B
TypeScript
import { AssetHistoryEventType } from '../assets';
import { SiweOptions } from '../auth';
export declare enum Order {
'ASC' = "ASC",
'DESC' = "DESC"
}
export interface CacheServerClientOptions {
url: string;
cacheServerSupportsAuth?: boolean;
auth: SiweOptions;
}
export type ClaimsFilter = {
isAccepted?: boolean;
namespace?: string;
};
export type AssetsFilter = {
order?: Order;
take?: number;
skip?: number;
type?: AssetHistoryEventType;
};
export declare enum SearchType {
App = "App",
Org = "Org",
Role = "Role"
}