pluggy-sdk
Version:
Official Node SDK for Pluggy API.
11 lines (10 loc) • 424 B
TypeScript
export declare type ConnectTokenOptions = {
/** Url where notifications will be sent at any item's event */
webhookUrl?: string;
/** A unique identifier of the user, usually used the UserId of your app */
clientUserId?: string;
/** Url where the user will be redirected to after the oauth flow */
oauthRedirectUri?: string;
/** Avoid duplicate items per user */
avoidDuplicates?: boolean;
};