@finverse/sdk-typescript 0.0.25 → 0.0.26
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.
- package/dist/api.d.ts +19 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2013,6 +2013,19 @@ export interface OtherInfo {
|
|
|
2013
2013
|
*/
|
|
2014
2014
|
bank_code?: string;
|
|
2015
2015
|
}
|
|
2016
|
+
/**
|
|
2017
|
+
*
|
|
2018
|
+
* @export
|
|
2019
|
+
* @interface PaymentAccount
|
|
2020
|
+
*/
|
|
2021
|
+
export interface PaymentAccount {
|
|
2022
|
+
/**
|
|
2023
|
+
* The raw value for the account the user selected when making payment request
|
|
2024
|
+
* @type {string}
|
|
2025
|
+
* @memberof PaymentAccount
|
|
2026
|
+
*/
|
|
2027
|
+
raw?: string;
|
|
2028
|
+
}
|
|
2016
2029
|
/**
|
|
2017
2030
|
*
|
|
2018
2031
|
* @export
|
|
@@ -2104,6 +2117,12 @@ export interface PaymentInstruction {
|
|
|
2104
2117
|
* @memberof PaymentInstruction
|
|
2105
2118
|
*/
|
|
2106
2119
|
sender_name?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {PaymentAccount}
|
|
2123
|
+
* @memberof PaymentInstruction
|
|
2124
|
+
*/
|
|
2125
|
+
sender_account?: PaymentAccount;
|
|
2107
2126
|
/**
|
|
2108
2127
|
* The sender account Id
|
|
2109
2128
|
* @type {string}
|