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.
36 lines (35 loc) • 1.08 kB
TypeScript
import { ProvisionRequest, ProvisionResponse } from "..";
type Provision = {
wallet_id: number;
payload: ProvisionRequest;
response: ProvisionResponse;
apple_public_key: string;
apple_public_key_size: string;
ephemeral_public_key: string;
ephemeral_public_key_binary: string;
ephemeral_public_key_size: string;
ephemeral_public_key_base64: string;
ephemeral_public_key_base64_size: string;
ephemeral_private_key: string;
ephemeral_private_key_size: string;
secret_key: string;
secret_key_size: string;
kdf: string;
kdf_size: string;
aes_key: string;
aes_key_size: string;
payment_data: string;
payment_data_binary: string;
payment_data_size: string;
encrypted_data: string;
encrypted_data_binary: string;
encrypted_data_size: string;
encrypted_data_base64: string;
encrypted_data_base64_size: string;
decrypted_data: string;
decrypted_data_binary: string;
aes_gsm_mac: string;
aes_gsm_mac_size: string;
is_sample: boolean;
};
export type { Provision };