@finverse/sdk-typescript 0.0.12 → 0.0.15

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
@@ -225,6 +225,12 @@ export interface AllProductStatus {
225
225
  * @memberof AllProductStatus
226
226
  */
227
227
  balance_history?: ProductStatus;
228
+ /**
229
+ *
230
+ * @type {ProductStatus}
231
+ * @memberof AllProductStatus
232
+ */
233
+ payments?: ProductStatus;
228
234
  }
229
235
  /**
230
236
  *
@@ -1943,17 +1949,17 @@ export interface PaymentDetails {
1943
1949
  */
1944
1950
  export interface PaymentInstruction {
1945
1951
  /**
1946
- * What type of payment is being created
1952
+ * The user id to which the payment instruction will refer
1947
1953
  * @type {string}
1948
1954
  * @memberof PaymentInstruction
1949
1955
  */
1950
- payment_type: PaymentInstructionPaymentTypeEnum;
1956
+ user_id: string;
1951
1957
  /**
1952
- * The customer provided userId that needs to match the one passed when generating link token
1958
+ * What type of payment is being created
1953
1959
  * @type {string}
1954
1960
  * @memberof PaymentInstruction
1955
1961
  */
1956
- user_id: string;
1962
+ payment_type: PaymentInstructionPaymentTypeEnum;
1957
1963
  /**
1958
1964
  * The recipient name
1959
1965
  * @type {string}
@@ -3039,7 +3045,7 @@ export declare const LoginIdentityApiAxiosParamCreator: (configuration?: Configu
3039
3045
  * @param {*} [options] Override http request option.
3040
3046
  * @throws {RequiredError}
3041
3047
  */
3042
- getIncomeByLoginIdentityId: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3048
+ getIncomeEstimateByLoginIdentityId: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
3043
3049
  /**
3044
3050
  * Get a specific loginIdentity
3045
3051
  * @param {*} [options] Override http request option.
@@ -3152,7 +3158,7 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
3152
3158
  * @param {*} [options] Override http request option.
3153
3159
  * @throws {RequiredError}
3154
3160
  */
3155
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncomeResponse>>;
3161
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncomeResponse>>;
3156
3162
  /**
3157
3163
  * Get a specific loginIdentity
3158
3164
  * @param {*} [options] Override http request option.
@@ -3265,7 +3271,7 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
3265
3271
  * @param {*} [options] Override http request option.
3266
3272
  * @throws {RequiredError}
3267
3273
  */
3268
- getIncomeByLoginIdentityId(options?: any): AxiosPromise<IncomeResponse>;
3274
+ getIncomeEstimateByLoginIdentityId(options?: any): AxiosPromise<IncomeResponse>;
3269
3275
  /**
3270
3276
  * Get a specific loginIdentity
3271
3277
  * @param {*} [options] Override http request option.
@@ -3386,7 +3392,7 @@ export interface LoginIdentityApiInterface {
3386
3392
  * @throws {RequiredError}
3387
3393
  * @memberof LoginIdentityApiInterface
3388
3394
  */
3389
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): AxiosPromise<IncomeResponse>;
3395
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): AxiosPromise<IncomeResponse>;
3390
3396
  /**
3391
3397
  * Get a specific loginIdentity
3392
3398
  * @param {*} [options] Override http request option.
@@ -3517,7 +3523,7 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
3517
3523
  * @throws {RequiredError}
3518
3524
  * @memberof LoginIdentityApi
3519
3525
  */
3520
- getIncomeByLoginIdentityId(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse>>;
3526
+ getIncomeEstimateByLoginIdentityId(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<IncomeResponse>>;
3521
3527
  /**
3522
3528
  * Get a specific loginIdentity
3523
3529
  * @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);
@@ -1308,7 +1308,7 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
1308
1308
  * @throws {RequiredError}
1309
1309
  */
1310
1310
  listPaymentInstructions: (options = {}) => __awaiter(this, void 0, void 0, function* () {
1311
- const localVarPath = `/payments/instruction/`;
1311
+ const localVarPath = `/payments/instruction`;
1312
1312
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
1313
1313
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
1314
1314
  let baseOptions;
@@ -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.12",
3
+ "version": "0.0.15",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [