squarefi-bff-api-module 1.36.48 → 1.36.49
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -12610,22 +12610,22 @@ export interface components {
|
|
|
12610
12610
|
/** @description Card / sub-account transaction (GET /cards/{card_id}/transactions and GET /sub-accounts/{sub_account_id}/transactions). */
|
|
12611
12611
|
IssuingTransaction: {
|
|
12612
12612
|
/** @description Transaction id in the issuing vendor */
|
|
12613
|
-
vendor_transaction_id
|
|
12613
|
+
vendor_transaction_id: string;
|
|
12614
12614
|
title?: string;
|
|
12615
12615
|
last4?: string;
|
|
12616
12616
|
/** @example APPROVED */
|
|
12617
|
-
status
|
|
12617
|
+
status: string;
|
|
12618
12618
|
/** @example CLEARING */
|
|
12619
12619
|
transaction_type?: string;
|
|
12620
12620
|
/** @example Purchase */
|
|
12621
12621
|
group?: string;
|
|
12622
|
-
is_credit
|
|
12623
|
-
billing_amount
|
|
12622
|
+
is_credit: boolean;
|
|
12623
|
+
billing_amount: number;
|
|
12624
12624
|
/** @example USD */
|
|
12625
|
-
billing_currency
|
|
12626
|
-
transaction_amount
|
|
12625
|
+
billing_currency: string;
|
|
12626
|
+
transaction_amount: number;
|
|
12627
12627
|
/** @example USD */
|
|
12628
|
-
transaction_currency
|
|
12628
|
+
transaction_currency: string;
|
|
12629
12629
|
/** @description What actually left the card: `billing_amount` plus `fee` for a debit. Show this one when a fee sits inside the operation. */
|
|
12630
12630
|
total_amount?: number;
|
|
12631
12631
|
/** @description Fee charged inside this operation, in billing currency. 0 for vendors that bill fees as their own transactions (those arrive as separate rows with `transaction_type: FEE`). */
|
|
@@ -12646,7 +12646,7 @@ export interface components {
|
|
|
12646
12646
|
has_receipt?: boolean;
|
|
12647
12647
|
merchant?: components["schemas"]["TransactionMerchant"];
|
|
12648
12648
|
/** Format: date-time */
|
|
12649
|
-
created_at
|
|
12649
|
+
created_at: string;
|
|
12650
12650
|
/** Format: date-time */
|
|
12651
12651
|
cleared_at?: string | null;
|
|
12652
12652
|
};
|