@finverse/sdk-typescript 0.0.14 → 0.0.17

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 CHANGED
@@ -231,6 +231,12 @@ export interface AllProductStatus {
231
231
  * @memberof AllProductStatus
232
232
  */
233
233
  payments?: ProductStatus;
234
+ /**
235
+ *
236
+ * @type {ProductStatus}
237
+ * @memberof AllProductStatus
238
+ */
239
+ income_estimation?: ProductStatus;
234
240
  }
235
241
  /**
236
242
  *
@@ -1124,6 +1130,31 @@ export interface IncomeStream {
1124
1130
  */
1125
1131
  monthly_history?: Array<MonthlyIncomeEstimate>;
1126
1132
  }
1133
+ /**
1134
+ *
1135
+ * @export
1136
+ * @interface IncomeTotal
1137
+ */
1138
+ export interface IncomeTotal {
1139
+ /**
1140
+ *
1141
+ * @type {IncomeEstimate}
1142
+ * @memberof IncomeTotal
1143
+ */
1144
+ estmated_monthly_income?: IncomeEstimate;
1145
+ /**
1146
+ * Number of transactions counted towards income
1147
+ * @type {number}
1148
+ * @memberof IncomeTotal
1149
+ */
1150
+ transaction_count?: number;
1151
+ /**
1152
+ *
1153
+ * @type {Array<MonthlyIncomeEstimate>}
1154
+ * @memberof IncomeTotal
1155
+ */
1156
+ monthly_history?: Array<MonthlyIncomeEstimate>;
1157
+ }
1127
1158
  /**
1128
1159
  *
1129
1160
  * @export
@@ -2188,10 +2219,10 @@ export interface SingleSourceIncome {
2188
2219
  income_streams?: Array<IncomeStream>;
2189
2220
  /**
2190
2221
  *
2191
- * @type {SingleSourceIncomeIncomeTotal}
2222
+ * @type {IncomeTotal}
2192
2223
  * @memberof SingleSourceIncome
2193
2224
  */
2194
- income_total?: SingleSourceIncomeIncomeTotal;
2225
+ income_total?: IncomeTotal;
2195
2226
  /**
2196
2227
  * Where the income estimate was sourced from
2197
2228
  * @type {string}
@@ -2205,31 +2236,6 @@ export interface SingleSourceIncome {
2205
2236
  */
2206
2237
  source_id?: string;
2207
2238
  }
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
2239
  /**
2234
2240
  *
2235
2241
  * @export
@@ -3045,7 +3051,7 @@ export declare const LoginIdentityApiAxiosParamCreator: (configuration?: Configu
3045
3051
  * @param {*} [options] Override http request option.
3046
3052
  * @throws {RequiredError}
3047
3053
  */
3048
- getIncomeByLoginIdentityId: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3054
+ getIncomeEstimateByLoginIdentityId: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3049
3055
  /**
3050
3056
  * Get a specific loginIdentity
3051
3057
  * @param {*} [options] Override http request option.
@@ -3158,7 +3164,7 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
3158
3164
  * @param {*} [options] Override http request option.
3159
3165
  * @throws {RequiredError}
3160
3166
  */
3161
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncomeResponse>>;
3167
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncomeResponse>>;
3162
3168
  /**
3163
3169
  * Get a specific loginIdentity
3164
3170
  * @param {*} [options] Override http request option.
@@ -3271,7 +3277,7 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
3271
3277
  * @param {*} [options] Override http request option.
3272
3278
  * @throws {RequiredError}
3273
3279
  */
3274
- getIncomeByLoginIdentityId(options?: any): AxiosPromise<IncomeResponse>;
3280
+ getIncomeEstimateByLoginIdentityId(options?: any): AxiosPromise<IncomeResponse>;
3275
3281
  /**
3276
3282
  * Get a specific loginIdentity
3277
3283
  * @param {*} [options] Override http request option.
@@ -3392,7 +3398,7 @@ export interface LoginIdentityApiInterface {
3392
3398
  * @throws {RequiredError}
3393
3399
  * @memberof LoginIdentityApiInterface
3394
3400
  */
3395
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): AxiosPromise<IncomeResponse>;
3401
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): AxiosPromise<IncomeResponse>;
3396
3402
  /**
3397
3403
  * Get a specific loginIdentity
3398
3404
  * @param {*} [options] Override http request option.
@@ -3523,7 +3529,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
3523
3529
  * @throws {RequiredError}
3524
3530
  * @memberof LoginIdentityApi
3525
3531
  */
3526
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse>>;
3532
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse>>;
3527
3533
  /**
3528
3534
  * Get a specific loginIdentity
3529
3535
  * @param {*} [options] Override http request option.
package/dist/api.js CHANGED
@@ -1139,7 +1139,7 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
1139
1139
  * @param {*} [options] Override http request option.
1140
1140
  * @throws {RequiredError}
1141
1141
  */
1142
- getIncomeByLoginIdentityId: (options = {}) => __awaiter(this, void 0, void 0, function* () {
1142
+ getIncomeEstimateByLoginIdentityId: (options = {}) => __awaiter(this, void 0, void 0, function* () {
1143
1143
  const localVarPath = `/income`;
1144
1144
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1145
1145
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -1513,9 +1513,9 @@ exports.LoginIdentityApiFp = function (configuration) {
1513
1513
  * @param {*} [options] Override http request option.
1514
1514
  * @throws {RequiredError}
1515
1515
  */
1516
- getIncomeByLoginIdentityId(options) {
1516
+ getIncomeEstimateByLoginIdentityId(options) {
1517
1517
  return __awaiter(this, void 0, void 0, function* () {
1518
- const localVarAxiosArgs = yield localVarAxiosParamCreator.getIncomeByLoginIdentityId(options);
1518
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.getIncomeEstimateByLoginIdentityId(options);
1519
1519
  return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
1520
1520
  });
1521
1521
  },
@@ -1691,8 +1691,8 @@ exports.LoginIdentityApiFactory = function (configuration, basePath, axios) {
1691
1691
  * @param {*} [options] Override http request option.
1692
1692
  * @throws {RequiredError}
1693
1693
  */
1694
- getIncomeByLoginIdentityId(options) {
1695
- return localVarFp.getIncomeByLoginIdentityId(options).then((request) => request(axios, basePath));
1694
+ getIncomeEstimateByLoginIdentityId(options) {
1695
+ return localVarFp.getIncomeEstimateByLoginIdentityId(options).then((request) => request(axios, basePath));
1696
1696
  },
1697
1697
  /**
1698
1698
  * Get a specific loginIdentity
@@ -1862,9 +1862,9 @@ class LoginIdentityApi extends base_1.BaseAPI {
1862
1862
  * @throws {RequiredError}
1863
1863
  * @memberof LoginIdentityApi
1864
1864
  */
1865
- getIncomeByLoginIdentityId(options) {
1865
+ getIncomeEstimateByLoginIdentityId(options) {
1866
1866
  return exports.LoginIdentityApiFp(this.configuration)
1867
- .getIncomeByLoginIdentityId(options)
1867
+ .getIncomeEstimateByLoginIdentityId(options)
1868
1868
  .then((request) => request(this.axios, this.basePath));
1869
1869
  }
1870
1870
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.14",
3
+ "version": "0.0.17",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [