UNPKG

ggez-banking-sdk

Version:

A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.

29 lines (28 loc) 669 B
interface ICreateEmailData { address: string; } interface IUpdateEmailData { id: number; address: string; } interface IDeleteEmailData { id: number; } interface IValidateEmailData { address: string; } interface IVerifyEmailData { address: string; } interface ISendEmailOTPData { address: string; authorizationRequestType: number; } interface IConfirmEmailData { address: string; verificationCode: string; } interface IMakeEmailPrimaryData { id: number; } export type { ICreateEmailData, IUpdateEmailData, IDeleteEmailData, IValidateEmailData, IVerifyEmailData, ISendEmailOTPData, IConfirmEmailData, IMakeEmailPrimaryData, };