@finverse/sdk-typescript 0.0.10 → 0.0.13
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 +18 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -225,6 +225,12 @@ export interface AllProductStatus {
|
|
|
225
225
|
* @memberof AllProductStatus
|
|
226
226
|
*/
|
|
227
227
|
balance_history?: ProductStatus;
|
|
228
|
+
/**
|
|
229
|
+
*
|
|
230
|
+
* @type {ProductStatus}
|
|
231
|
+
* @memberof AllProductStatus
|
|
232
|
+
*/
|
|
233
|
+
payments?: ProductStatus;
|
|
228
234
|
}
|
|
229
235
|
/**
|
|
230
236
|
*
|
|
@@ -2020,6 +2026,18 @@ export interface PaymentInstruction {
|
|
|
2020
2026
|
* @memberof PaymentInstruction
|
|
2021
2027
|
*/
|
|
2022
2028
|
idempotence_key?: string;
|
|
2029
|
+
/**
|
|
2030
|
+
* Status of the payment
|
|
2031
|
+
* @type {string}
|
|
2032
|
+
* @memberof PaymentInstruction
|
|
2033
|
+
*/
|
|
2034
|
+
payment_status?: string;
|
|
2035
|
+
/**
|
|
2036
|
+
* Reference identification returned by institution
|
|
2037
|
+
* @type {string}
|
|
2038
|
+
* @memberof PaymentInstruction
|
|
2039
|
+
*/
|
|
2040
|
+
reference_id?: string;
|
|
2023
2041
|
}
|
|
2024
2042
|
export declare const PaymentInstructionPaymentTypeEnum: {
|
|
2025
2043
|
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|