@finverse/sdk-typescript 0.0.22 → 0.0.23
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 +17 -17
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1162,13 +1162,13 @@ export interface IncomeEstimate {
|
|
|
1162
1162
|
* @type {number}
|
|
1163
1163
|
* @memberof IncomeEstimate
|
|
1164
1164
|
*/
|
|
1165
|
-
amount
|
|
1165
|
+
amount: number;
|
|
1166
1166
|
/**
|
|
1167
1167
|
* Currency
|
|
1168
1168
|
* @type {string}
|
|
1169
1169
|
* @memberof IncomeEstimate
|
|
1170
1170
|
*/
|
|
1171
|
-
currency
|
|
1171
|
+
currency: string;
|
|
1172
1172
|
}
|
|
1173
1173
|
/**
|
|
1174
1174
|
*
|
|
@@ -1181,19 +1181,19 @@ export interface IncomeResponse {
|
|
|
1181
1181
|
* @type {Array<SingleSourceIncome>}
|
|
1182
1182
|
* @memberof IncomeResponse
|
|
1183
1183
|
*/
|
|
1184
|
-
income
|
|
1184
|
+
income: Array<SingleSourceIncome>;
|
|
1185
1185
|
/**
|
|
1186
1186
|
*
|
|
1187
1187
|
* @type {LoginIdentityShort}
|
|
1188
1188
|
* @memberof IncomeResponse
|
|
1189
1189
|
*/
|
|
1190
|
-
login_identity
|
|
1190
|
+
login_identity: LoginIdentityShort;
|
|
1191
1191
|
/**
|
|
1192
1192
|
*
|
|
1193
1193
|
* @type {InstitutionShort}
|
|
1194
1194
|
* @memberof IncomeResponse
|
|
1195
1195
|
*/
|
|
1196
|
-
institution
|
|
1196
|
+
institution: InstitutionShort;
|
|
1197
1197
|
}
|
|
1198
1198
|
/**
|
|
1199
1199
|
*
|
|
@@ -1206,7 +1206,7 @@ export interface IncomeStream {
|
|
|
1206
1206
|
* @type {string}
|
|
1207
1207
|
* @memberof IncomeStream
|
|
1208
1208
|
*/
|
|
1209
|
-
account_id
|
|
1209
|
+
account_id: string;
|
|
1210
1210
|
/**
|
|
1211
1211
|
*
|
|
1212
1212
|
* @type {IncomeEstimate}
|
|
@@ -1218,13 +1218,13 @@ export interface IncomeStream {
|
|
|
1218
1218
|
* @type {number}
|
|
1219
1219
|
* @memberof IncomeStream
|
|
1220
1220
|
*/
|
|
1221
|
-
transaction_count
|
|
1221
|
+
transaction_count: number;
|
|
1222
1222
|
/**
|
|
1223
1223
|
*
|
|
1224
1224
|
* @type {Array<MonthlyIncomeEstimate>}
|
|
1225
1225
|
* @memberof IncomeStream
|
|
1226
1226
|
*/
|
|
1227
|
-
monthly_history
|
|
1227
|
+
monthly_history: Array<MonthlyIncomeEstimate>;
|
|
1228
1228
|
}
|
|
1229
1229
|
/**
|
|
1230
1230
|
*
|
|
@@ -1243,13 +1243,13 @@ export interface IncomeTotal {
|
|
|
1243
1243
|
* @type {number}
|
|
1244
1244
|
* @memberof IncomeTotal
|
|
1245
1245
|
*/
|
|
1246
|
-
transaction_count
|
|
1246
|
+
transaction_count: number;
|
|
1247
1247
|
/**
|
|
1248
1248
|
*
|
|
1249
1249
|
* @type {Array<MonthlyIncomeEstimate>}
|
|
1250
1250
|
* @memberof IncomeTotal
|
|
1251
1251
|
*/
|
|
1252
|
-
monthly_history
|
|
1252
|
+
monthly_history: Array<MonthlyIncomeEstimate>;
|
|
1253
1253
|
}
|
|
1254
1254
|
/**
|
|
1255
1255
|
*
|
|
@@ -1968,19 +1968,19 @@ export interface MonthlyIncomeEstimate {
|
|
|
1968
1968
|
* @type {IncomeEstimate}
|
|
1969
1969
|
* @memberof MonthlyIncomeEstimate
|
|
1970
1970
|
*/
|
|
1971
|
-
estimated_income
|
|
1971
|
+
estimated_income: IncomeEstimate;
|
|
1972
1972
|
/**
|
|
1973
1973
|
* The numeric month
|
|
1974
1974
|
* @type {number}
|
|
1975
1975
|
* @memberof MonthlyIncomeEstimate
|
|
1976
1976
|
*/
|
|
1977
|
-
month
|
|
1977
|
+
month: number;
|
|
1978
1978
|
/**
|
|
1979
1979
|
* The year
|
|
1980
1980
|
* @type {number}
|
|
1981
1981
|
* @memberof MonthlyIncomeEstimate
|
|
1982
1982
|
*/
|
|
1983
|
-
year
|
|
1983
|
+
year: number;
|
|
1984
1984
|
}
|
|
1985
1985
|
/**
|
|
1986
1986
|
*
|
|
@@ -2299,25 +2299,25 @@ export interface SingleSourceIncome {
|
|
|
2299
2299
|
* @type {Array<IncomeStream>}
|
|
2300
2300
|
* @memberof SingleSourceIncome
|
|
2301
2301
|
*/
|
|
2302
|
-
income_streams
|
|
2302
|
+
income_streams: Array<IncomeStream>;
|
|
2303
2303
|
/**
|
|
2304
2304
|
*
|
|
2305
2305
|
* @type {IncomeTotal}
|
|
2306
2306
|
* @memberof SingleSourceIncome
|
|
2307
2307
|
*/
|
|
2308
|
-
income_total
|
|
2308
|
+
income_total: IncomeTotal;
|
|
2309
2309
|
/**
|
|
2310
2310
|
* Where the income estimate was sourced from
|
|
2311
2311
|
* @type {string}
|
|
2312
2312
|
* @memberof SingleSourceIncome
|
|
2313
2313
|
*/
|
|
2314
|
-
source
|
|
2314
|
+
source: string;
|
|
2315
2315
|
/**
|
|
2316
2316
|
* Unknown
|
|
2317
2317
|
* @type {string}
|
|
2318
2318
|
* @memberof SingleSourceIncome
|
|
2319
2319
|
*/
|
|
2320
|
-
source_id
|
|
2320
|
+
source_id: string;
|
|
2321
2321
|
}
|
|
2322
2322
|
/**
|
|
2323
2323
|
*
|