UNPKG

@transcend-io/typescript-webhook-example

Version:

Example of a webhook that can be integrated with Transcend.

19 lines 463 B
/** * Enrich the identity of a data subject. i.e. map an email address to a username * * @returns User identifiers */ export declare function enrichUser(): { /** email */ email: { /** Value of the email */ value: string; }[]; /** phone */ phone: { /** country code of the phone */ countryCode: string; /** value of the phone */ value: string; }[]; }; //# sourceMappingURL=enrichUser.d.ts.map