@finverse/sdk-typescript 0.0.115 → 0.0.117
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 -7
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -599,25 +599,25 @@ export interface BalanceHistory {
|
|
|
599
599
|
/**
|
|
600
600
|
*
|
|
601
601
|
* @export
|
|
602
|
-
* @interface
|
|
602
|
+
* @interface CategoryPredictions
|
|
603
603
|
*/
|
|
604
|
-
export interface
|
|
604
|
+
export interface CategoryPredictions {
|
|
605
605
|
/**
|
|
606
606
|
*
|
|
607
607
|
* @type {Array<string>}
|
|
608
|
-
* @memberof
|
|
608
|
+
* @memberof CategoryPredictions
|
|
609
609
|
*/
|
|
610
610
|
categories?: Array<string>;
|
|
611
611
|
/**
|
|
612
612
|
*
|
|
613
613
|
* @type {string}
|
|
614
|
-
* @memberof
|
|
614
|
+
* @memberof CategoryPredictions
|
|
615
615
|
*/
|
|
616
616
|
source?: string;
|
|
617
617
|
/**
|
|
618
618
|
*
|
|
619
619
|
* @type {string}
|
|
620
|
-
* @memberof
|
|
620
|
+
* @memberof CategoryPredictions
|
|
621
621
|
*/
|
|
622
622
|
source_id?: string;
|
|
623
623
|
}
|
|
@@ -1749,6 +1749,18 @@ export interface GetMandateAuthResponse {
|
|
|
1749
1749
|
* @memberof GetMandateAuthResponse
|
|
1750
1750
|
*/
|
|
1751
1751
|
error?: FvErrorModelV2;
|
|
1752
|
+
/**
|
|
1753
|
+
*
|
|
1754
|
+
* @type {MandateDetails}
|
|
1755
|
+
* @memberof GetMandateAuthResponse
|
|
1756
|
+
*/
|
|
1757
|
+
mandate_details?: MandateDetails;
|
|
1758
|
+
/**
|
|
1759
|
+
*
|
|
1760
|
+
* @type {MandateRecipient}
|
|
1761
|
+
* @memberof GetMandateAuthResponse
|
|
1762
|
+
*/
|
|
1763
|
+
recipient?: MandateRecipient;
|
|
1752
1764
|
}
|
|
1753
1765
|
export declare const GetMandateAuthResponseMandateStatusEnum: {
|
|
1754
1766
|
readonly Created: "CREATED";
|
|
@@ -5084,10 +5096,10 @@ export interface Transaction {
|
|
|
5084
5096
|
categories?: Array<string>;
|
|
5085
5097
|
/**
|
|
5086
5098
|
*
|
|
5087
|
-
* @type {Array<
|
|
5099
|
+
* @type {Array<CategoryPredictions>}
|
|
5088
5100
|
* @memberof Transaction
|
|
5089
5101
|
*/
|
|
5090
|
-
|
|
5102
|
+
category_predictions?: Array<CategoryPredictions>;
|
|
5091
5103
|
}
|
|
5092
5104
|
/**
|
|
5093
5105
|
*
|