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.
20 lines (19 loc) • 533 B
TypeScript
interface ILoginUserCredentialsData {
email: string;
password: string;
installationId: string;
}
interface ILoginDeviceCredentialsData {
user_id: number;
device_id: number;
device_security_code: string;
}
interface ILoginGoogleCredentialsData {
token: string;
token_id?: string;
installationId: string;
}
interface IGenerateLimitedTokenData {
installationId: string;
}
export { ILoginUserCredentialsData, ILoginDeviceCredentialsData, ILoginGoogleCredentialsData, IGenerateLimitedTokenData, };