From 7568d7eb1c0b703adfad1633f18bc5f935de9f48 Mon Sep 17 00:00:00 2001 From: art333 Date: Tue, 1 Sep 2020 13:08:02 +0200 Subject: [PATCH] add missing method to dist --- 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;