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.

20 lines (19 loc) 734 B
import { AccountStatementData, BankAccount, ChainData, CreditLimit, AccountFulfilment, AccountInfo, Limits, Options, Provision, Tokenization, Archive, BaseResult, GeoCoordinates, SimplifiedAccessRule } from ".."; type AccountData = BaseResult & { info: AccountInfo; limits: Limits; archive: Archive; custom_field: Record<string, any>; geo_coordinates: GeoCoordinates; options: Options; bank_account: BankAccount[]; history: History[]; fulfilment: AccountFulfilment[]; access_rule: SimplifiedAccessRule[]; provision: Provision; credit_limit: CreditLimit; tokenization: Tokenization[]; chain_data: ChainData; statement: AccountStatementData[]; }; export type { AccountData };