1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 08:43:33 +00:00

user public key apis

This commit is contained in:
Kyle Spearrin
2018-07-11 13:30:06 -04:00
parent e9518e104e
commit d7f3f9425e
5 changed files with 40 additions and 19 deletions

View File

@@ -71,6 +71,7 @@ import { TwoFactorProviderResponse } from '../models/response/twoFactorProviderR
import { TwoFactorRecoverResponse } from '../models/response/twoFactorRescoverResponse';
import { TwoFactorU2fResponse } from '../models/response/twoFactorU2fResponse';
import { TwoFactorYubiKeyResponse } from '../models/response/twoFactorYubiKeyResponse';
import { UserKeyResponse } from '../models/response/userKeyResponse';
export abstract class ApiService {
urlsSet: boolean;
@@ -195,5 +196,7 @@ export abstract class ApiService {
getEventsOrganizationUser: (organizationId: string, id: string,
start: string, end: string, token: string) => Promise<ListResponse<EventResponse>>;
getUserPublicKey: (id: string) => Promise<UserKeyResponse>;
fetch: (request: Request) => Promise<Response>;
}