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.

44 lines (43 loc) 1.11 kB
import { BaseResult } from "../common"; type NodeTokenData = BaseResult & { data: { access_token: string; token_type: string; expires_in: number; cluster_id: string; program_id: string; user_id: string; device_id: string; role: string; role_type: string; user_type: string; ip_address: string; jwt_token: string; installation_id: string; device_status: string; device_verification_status: string; device_encryption_key: string; }; success: boolean; error: string; }; type TokenData = BaseResult & { access_token: string; token_type: string; expires_in: number; cluster_id: string; program_id: string; user_id: string; device_id: string; role: string; role_type: string; user_type: string; ip_address: string; jwt_token: string; installation_id: string; device_status: string; device_verification_status: string; device_encryption_key: string; error: string; }; export { TokenData, NodeTokenData };