@finverse/sdk-typescript 0.0.79 → 0.0.81
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 +8 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -3526,6 +3526,12 @@ export interface PaymentResponse {
|
|
|
3526
3526
|
* @memberof PaymentResponse
|
|
3527
3527
|
*/
|
|
3528
3528
|
sender?: GetMandateSender;
|
|
3529
|
+
/**
|
|
3530
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
3531
|
+
* @type {string}
|
|
3532
|
+
* @memberof PaymentResponse
|
|
3533
|
+
*/
|
|
3534
|
+
transaction_date?: string | null;
|
|
3529
3535
|
/**
|
|
3530
3536
|
*
|
|
3531
3537
|
* @type {FvErrorModel}
|
|
@@ -4148,10 +4154,10 @@ export interface Transaction {
|
|
|
4148
4154
|
categories?: Array<string>;
|
|
4149
4155
|
/**
|
|
4150
4156
|
*
|
|
4151
|
-
* @type {CategoryDetails}
|
|
4157
|
+
* @type {Array<CategoryDetails>}
|
|
4152
4158
|
* @memberof Transaction
|
|
4153
4159
|
*/
|
|
4154
|
-
category_details?: CategoryDetails
|
|
4160
|
+
category_details?: Array<CategoryDetails>;
|
|
4155
4161
|
}
|
|
4156
4162
|
/**
|
|
4157
4163
|
*
|