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.
101 lines (100 loc) • 4.82 kB
TypeScript
declare const BlockchainActions: {
readonly Send: "send";
readonly MultiSend: "multisend";
readonly Delegate: "delegate";
readonly Undelegate: "undelegate";
};
declare const StructTicketMessageDescriptionCodes: {
readonly Custom: "M000";
readonly Identification_Is_Being_Verified: "M100";
readonly Identification_Verification_Failed: "M101";
readonly Upload_Identification_With_Selfie_Picture: "M102";
readonly Identification_Upload_Succeeded: "M103";
readonly Upload_Identification_Failed: "M104";
readonly Identification_Verification_Succeeded: "M105";
readonly Upload_One_Identification: "M106";
readonly Upload_Two_Identifications: "M107";
readonly Update_One_Identification: "M108";
readonly Update_Two_Identifications: "M109";
readonly Update_Identification_With_Selfie_Picture: "M110";
readonly Upload_POA_Document: "M111";
readonly POA_Document_Is_Being_Verified: "M112";
readonly POA_Document_Accepted: "M113";
readonly POA_Document_Rejected: "M114";
readonly POA_Document_Canceled: "M115";
readonly Upload_Bank_Statement_Document: "M116";
readonly Upload_Credit_Card_Statement_Document: "M117";
readonly Upload_General_Requirements_Document: "M118";
readonly Bank_Account_Is_Being_Verified: "M119";
readonly Credit_Card_Is_Being_Verified: "M120";
readonly General_Requirements_Is_Being_Verified: "M121";
readonly Bank_Statement_Document_Accepted: "M122";
readonly Bank_Statement_Document_Rejected: "M123";
readonly Bank_Statement_Document_Canceled: "M124";
readonly Credit_Card_Statement_Document_Accepted: "M125";
readonly Credit_Card_Statement_Document_Rejected: "M126";
readonly Credit_Card_Statement_Document_Canceled: "M127";
readonly General_Requirements_Document_Accepted: "M128";
readonly General_Requirements_Document_Rejected: "M129";
readonly General_Requirements_Document_Canceled: "M130";
readonly Add_Bank_Account: "M131";
readonly Add_Credit_Card: "M132";
readonly Bank_Account_Added_Successfully: "M133";
readonly Credit_Card_Added_Successfully: "M134";
readonly Manual_Identification_Verification_Required: "M135";
readonly Address_Upload_Succeeded: "M136";
readonly Manual_Address_Verification_Required: "M137";
readonly Address_Verification_Succeeded: "M138";
readonly Address_Verification_Failed: "M139";
readonly Add_Identification: "M140";
readonly Identification_Added_Successfully: "M141";
readonly Upload_Identification_Document: "M142";
readonly Document_Has_Been_Rejected: "M143";
readonly Document_Has_Been_Accepted: "M144";
readonly Upload_Organization_Document: "M145";
readonly Organization_Is_Being_Verified: "M146";
readonly Add_Organization: "M147";
readonly Organization_Added_Successfully: "M148";
readonly Organization_Document_Accepted: "M149";
readonly Organization_Document_Rejected: "M150";
readonly Organization_Document_Canceled: "M151";
readonly Resolve_Issue_Related_To_Organization_Document: "M156";
readonly Resolve_Issue_Related_To_POA_Document: "M152";
readonly Resolve_Issue_Related_To_Credit_Card_Document: "M153";
readonly Resolve_Issue_Related_To_Bank_Account_Document: "M154";
readonly Resolve_Issue_Related_To_Identification_Document: "M155";
readonly Identification_Verification_Canceled: "M157";
readonly Phone_Verification: "M158";
};
declare const SystemResponses: {
readonly Approved: "0000";
readonly Create_User_Completed_Partially: "0100";
readonly Pending_Transaction: "0400";
readonly Invalid_Verification_Code: "2053";
readonly Verification_Code_Is_Expired: "2054";
readonly Invalid_Email_Or_Phone: "2585";
readonly Transaction_Hash_Already_Exists: "4180";
readonly Blockchain_Transaction_Amount_Difference_Exceeds_Allowed_Percentage: "4181";
readonly Payment_Service_Setup_Blockchain_Deposits_Auto_Approve_percent_Not_Found: "4182";
readonly Invalid_Token: "5025";
readonly Token_Is_Not_Active: "5035";
readonly Invalid_Authentication_Code: "6049";
readonly Internal_Server_Error: "7001";
};
declare const OpenPaydTransactionStatus: {
readonly Initiated: "INITIATED";
readonly Processing: "PROCESSING";
readonly Released: "RELEASED";
readonly Completed: "COMPLETED";
readonly Failed: "FAILED";
readonly Cancelled: "CANCELLED";
};
declare const OpenPaydTransactionType: {
readonly Adjustment: "ADJUSTMENT";
readonly Transfer: "TRANSFER";
readonly Exchange: "EXCHANGE";
readonly Withdraw: "WITHDRAW";
readonly Payout: "PAYOUT";
readonly PayIn: "PAYIN";
};
export { BlockchainActions, OpenPaydTransactionStatus, OpenPaydTransactionType, StructTicketMessageDescriptionCodes, SystemResponses, };