@finverse/sdk-typescript 0.0.15 → 0.0.16
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 +27 -27
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1124,6 +1124,31 @@ export interface IncomeStream {
|
|
|
1124
1124
|
*/
|
|
1125
1125
|
monthly_history?: Array<MonthlyIncomeEstimate>;
|
|
1126
1126
|
}
|
|
1127
|
+
/**
|
|
1128
|
+
*
|
|
1129
|
+
* @export
|
|
1130
|
+
* @interface IncomeTotal
|
|
1131
|
+
*/
|
|
1132
|
+
export interface IncomeTotal {
|
|
1133
|
+
/**
|
|
1134
|
+
*
|
|
1135
|
+
* @type {IncomeEstimate}
|
|
1136
|
+
* @memberof IncomeTotal
|
|
1137
|
+
*/
|
|
1138
|
+
estmated_monthly_income?: IncomeEstimate;
|
|
1139
|
+
/**
|
|
1140
|
+
* Number of transactions counted towards income
|
|
1141
|
+
* @type {number}
|
|
1142
|
+
* @memberof IncomeTotal
|
|
1143
|
+
*/
|
|
1144
|
+
transaction_count?: number;
|
|
1145
|
+
/**
|
|
1146
|
+
*
|
|
1147
|
+
* @type {Array<MonthlyIncomeEstimate>}
|
|
1148
|
+
* @memberof IncomeTotal
|
|
1149
|
+
*/
|
|
1150
|
+
monthly_history?: Array<MonthlyIncomeEstimate>;
|
|
1151
|
+
}
|
|
1127
1152
|
/**
|
|
1128
1153
|
*
|
|
1129
1154
|
* @export
|
|
@@ -2188,10 +2213,10 @@ export interface SingleSourceIncome {
|
|
|
2188
2213
|
income_streams?: Array<IncomeStream>;
|
|
2189
2214
|
/**
|
|
2190
2215
|
*
|
|
2191
|
-
* @type {
|
|
2216
|
+
* @type {IncomeTotal}
|
|
2192
2217
|
* @memberof SingleSourceIncome
|
|
2193
2218
|
*/
|
|
2194
|
-
income_total?:
|
|
2219
|
+
income_total?: IncomeTotal;
|
|
2195
2220
|
/**
|
|
2196
2221
|
* Where the income estimate was sourced from
|
|
2197
2222
|
* @type {string}
|
|
@@ -2205,31 +2230,6 @@ export interface SingleSourceIncome {
|
|
|
2205
2230
|
*/
|
|
2206
2231
|
source_id?: string;
|
|
2207
2232
|
}
|
|
2208
|
-
/**
|
|
2209
|
-
*
|
|
2210
|
-
* @export
|
|
2211
|
-
* @interface SingleSourceIncomeIncomeTotal
|
|
2212
|
-
*/
|
|
2213
|
-
export interface SingleSourceIncomeIncomeTotal {
|
|
2214
|
-
/**
|
|
2215
|
-
*
|
|
2216
|
-
* @type {IncomeEstimate}
|
|
2217
|
-
* @memberof SingleSourceIncomeIncomeTotal
|
|
2218
|
-
*/
|
|
2219
|
-
estmated_monthly_income?: IncomeEstimate;
|
|
2220
|
-
/**
|
|
2221
|
-
* Number of transactions counted towards income
|
|
2222
|
-
* @type {number}
|
|
2223
|
-
* @memberof SingleSourceIncomeIncomeTotal
|
|
2224
|
-
*/
|
|
2225
|
-
transaction_count?: number;
|
|
2226
|
-
/**
|
|
2227
|
-
*
|
|
2228
|
-
* @type {Array<MonthlyIncomeEstimate>}
|
|
2229
|
-
* @memberof SingleSourceIncomeIncomeTotal
|
|
2230
|
-
*/
|
|
2231
|
-
monthly_history?: Array<MonthlyIncomeEstimate>;
|
|
2232
|
-
}
|
|
2233
2233
|
/**
|
|
2234
2234
|
*
|
|
2235
2235
|
* @export
|