@finverse/sdk-typescript 0.0.66 → 0.0.67

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
@@ -5343,10 +5343,11 @@ export declare const LoginIdentityApiAxiosParamCreator: (configuration?: Configu
5343
5343
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
5344
5344
  * @param {number} [offset] default is 0
5345
5345
  * @param {number} [limit] default is 500, max is 1000
5346
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
5346
5347
  * @param {*} [options] Override http request option.
5347
5348
  * @throws {RequiredError}
5348
5349
  */
5349
- listTransactionsByLoginIdentityId: (offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5350
+ listTransactionsByLoginIdentityId: (offset?: number, limit?: number, enrichedTransactions?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
5350
5351
  /**
5351
5352
  * Create a refresh job for a login identity
5352
5353
  * @param {*} [options] Override http request option.
@@ -5452,10 +5453,11 @@ export declare const LoginIdentityApiFp: (configuration?: Configuration) => {
5452
5453
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
5453
5454
  * @param {number} [offset] default is 0
5454
5455
  * @param {number} [limit] default is 500, max is 1000
5456
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
5455
5457
  * @param {*} [options] Override http request option.
5456
5458
  * @throws {RequiredError}
5457
5459
  */
5458
- listTransactionsByLoginIdentityId(offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTransactionsResponse>>;
5460
+ listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichedTransactions?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListTransactionsResponse>>;
5459
5461
  /**
5460
5462
  * Create a refresh job for a login identity
5461
5463
  * @param {*} [options] Override http request option.
@@ -5561,10 +5563,11 @@ export declare const LoginIdentityApiFactory: (configuration?: Configuration, ba
5561
5563
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
5562
5564
  * @param {number} [offset] default is 0
5563
5565
  * @param {number} [limit] default is 500, max is 1000
5566
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
5564
5567
  * @param {*} [options] Override http request option.
5565
5568
  * @throws {RequiredError}
5566
5569
  */
5567
- listTransactionsByLoginIdentityId(offset?: number, limit?: number, options?: any): AxiosPromise<ListTransactionsResponse>;
5570
+ listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichedTransactions?: boolean, options?: any): AxiosPromise<ListTransactionsResponse>;
5568
5571
  /**
5569
5572
  * Create a refresh job for a login identity
5570
5573
  * @param {*} [options] Override http request option.
@@ -5684,11 +5687,12 @@ export interface LoginIdentityApiInterface {
5684
5687
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
5685
5688
  * @param {number} [offset] default is 0
5686
5689
  * @param {number} [limit] default is 500, max is 1000
5690
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
5687
5691
  * @param {*} [options] Override http request option.
5688
5692
  * @throws {RequiredError}
5689
5693
  * @memberof LoginIdentityApiInterface
5690
5694
  */
5691
- listTransactionsByLoginIdentityId(offset?: number, limit?: number, options?: AxiosRequestConfig): AxiosPromise<ListTransactionsResponse>;
5695
+ listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichedTransactions?: boolean, options?: AxiosRequestConfig): AxiosPromise<ListTransactionsResponse>;
5692
5696
  /**
5693
5697
  * Create a refresh job for a login identity
5694
5698
  * @param {*} [options] Override http request option.
@@ -5810,11 +5814,12 @@ export declare class LoginIdentityApi extends BaseAPI implements LoginIdentityAp
5810
5814
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
5811
5815
  * @param {number} [offset] default is 0
5812
5816
  * @param {number} [limit] default is 500, max is 1000
5817
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
5813
5818
  * @param {*} [options] Override http request option.
5814
5819
  * @throws {RequiredError}
5815
5820
  * @memberof LoginIdentityApi
5816
5821
  */
5817
- listTransactionsByLoginIdentityId(offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse>>;
5822
+ listTransactionsByLoginIdentityId(offset?: number, limit?: number, enrichedTransactions?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListTransactionsResponse>>;
5818
5823
  /**
5819
5824
  * Create a refresh job for a login identity
5820
5825
  * @param {*} [options] Override http request option.
package/dist/api.js CHANGED
@@ -2398,10 +2398,11 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
2398
2398
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
2399
2399
  * @param {number} [offset] default is 0
2400
2400
  * @param {number} [limit] default is 500, max is 1000
2401
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
2401
2402
  * @param {*} [options] Override http request option.
2402
2403
  * @throws {RequiredError}
2403
2404
  */
2404
- listTransactionsByLoginIdentityId: (offset, limit, options = {}) => __awaiter(this, void 0, void 0, function* () {
2405
+ listTransactionsByLoginIdentityId: (offset, limit, enrichedTransactions, options = {}) => __awaiter(this, void 0, void 0, function* () {
2405
2406
  const localVarPath = `/transactions`;
2406
2407
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
2407
2408
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -2421,6 +2422,9 @@ exports.LoginIdentityApiAxiosParamCreator = function (configuration) {
2421
2422
  if (limit !== undefined) {
2422
2423
  localVarQueryParameter['limit'] = limit;
2423
2424
  }
2425
+ if (enrichedTransactions !== undefined) {
2426
+ localVarQueryParameter['enrichedTransactions'] = enrichedTransactions;
2427
+ }
2424
2428
  common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
2425
2429
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2426
2430
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -2623,12 +2627,13 @@ exports.LoginIdentityApiFp = function (configuration) {
2623
2627
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
2624
2628
  * @param {number} [offset] default is 0
2625
2629
  * @param {number} [limit] default is 500, max is 1000
2630
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
2626
2631
  * @param {*} [options] Override http request option.
2627
2632
  * @throws {RequiredError}
2628
2633
  */
2629
- listTransactionsByLoginIdentityId(offset, limit, options) {
2634
+ listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options) {
2630
2635
  return __awaiter(this, void 0, void 0, function* () {
2631
- const localVarAxiosArgs = yield localVarAxiosParamCreator.listTransactionsByLoginIdentityId(offset, limit, options);
2636
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options);
2632
2637
  return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
2633
2638
  });
2634
2639
  },
@@ -2773,12 +2778,13 @@ exports.LoginIdentityApiFactory = function (configuration, basePath, axios) {
2773
2778
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
2774
2779
  * @param {number} [offset] default is 0
2775
2780
  * @param {number} [limit] default is 500, max is 1000
2781
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
2776
2782
  * @param {*} [options] Override http request option.
2777
2783
  * @throws {RequiredError}
2778
2784
  */
2779
- listTransactionsByLoginIdentityId(offset, limit, options) {
2785
+ listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options) {
2780
2786
  return localVarFp
2781
- .listTransactionsByLoginIdentityId(offset, limit, options)
2787
+ .listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options)
2782
2788
  .then((request) => request(axios, basePath));
2783
2789
  },
2784
2790
  /**
@@ -2956,13 +2962,14 @@ class LoginIdentityApi extends base_1.BaseAPI {
2956
2962
  * Get a list of transactions for a login identity. The transactions are returned in sorted order, with the most recent one appearing first.
2957
2963
  * @param {number} [offset] default is 0
2958
2964
  * @param {number} [limit] default is 500, max is 1000
2965
+ * @param {boolean} [enrichedTransactions] when true, response will be enriched transactions; otherwise it will be raw transactions
2959
2966
  * @param {*} [options] Override http request option.
2960
2967
  * @throws {RequiredError}
2961
2968
  * @memberof LoginIdentityApi
2962
2969
  */
2963
- listTransactionsByLoginIdentityId(offset, limit, options) {
2970
+ listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options) {
2964
2971
  return exports.LoginIdentityApiFp(this.configuration)
2965
- .listTransactionsByLoginIdentityId(offset, limit, options)
2972
+ .listTransactionsByLoginIdentityId(offset, limit, enrichedTransactions, options)
2966
2973
  .then((request) => request(this.axios, this.basePath));
2967
2974
  }
2968
2975
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [