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.

27 lines (26 loc) 712 B
interface IResetPasswordData { currentPassword: string; newPassword: string; authenticationType: number; code: string; } interface IResetSecurityQuestionsData { code: string; currentPassword: string; questionOne: string; questionOneAnswer: string; questionTwo: string; questionTwoAnswer: string; authenticationType: number; } interface IResetSecurityCodeData { currentPassword: string; userSecurityCode: string; authenticationType: number; code: string; } interface IValidateSecurityCodeData { type: number; securityCode: string; } export { IResetPasswordData, IResetSecurityQuestionsData, IResetSecurityCodeData, IValidateSecurityCodeData, };