From ef79190ccb2966dd3c206e28957acffc2d507763 Mon Sep 17 00:00:00 2001 From: Artur Bujnicki Date: Tue, 1 Sep 2020 13:12:54 +0200 Subject: [PATCH] add missing method to dist (#20) --- dist/ps-web-apis.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/dist/ps-web-apis.d.ts b/dist/ps-web-apis.d.ts index c536b31..b016d16 100644 --- a/dist/ps-web-apis.d.ts +++ b/dist/ps-web-apis.d.ts @@ -43,5 +43,10 @@ export interface WhoamiV1 { * @return {WhoamiUserInfo} some relevant userdata */ getUserInfo(): Promise; + /** + * will request customer pseudo id for currently logged user from consent backend + * @param clientId The string identifier of the client for which the customer id is requested. + */ + getCustomerId(clientId: string): Promise; } export declare function whoamiV1(): Promise;