@finverse/sdk-typescript 0.0.259 → 0.0.261
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 +36 -5
- package/dist/api.js +42 -8
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4802,7 +4802,23 @@ export interface ManualPaymentConfirmationResponse {
|
|
|
4802
4802
|
* @memberof ManualPaymentConfirmationResponse
|
|
4803
4803
|
*/
|
|
4804
4804
|
payment_id?: string;
|
|
4805
|
+
/**
|
|
4806
|
+
*
|
|
4807
|
+
* @type {string}
|
|
4808
|
+
* @memberof ManualPaymentConfirmationResponse
|
|
4809
|
+
*/
|
|
4810
|
+
status?: ManualPaymentConfirmationResponseStatusEnum;
|
|
4805
4811
|
}
|
|
4812
|
+
export declare const ManualPaymentConfirmationResponseStatusEnum: {
|
|
4813
|
+
readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
|
|
4814
|
+
readonly Authorizing: "AUTHORIZING";
|
|
4815
|
+
readonly Processing: "PROCESSING";
|
|
4816
|
+
readonly Submitted: "SUBMITTED";
|
|
4817
|
+
readonly Executed: "EXECUTED";
|
|
4818
|
+
readonly Failed: "FAILED";
|
|
4819
|
+
readonly Revoked: "REVOKED";
|
|
4820
|
+
};
|
|
4821
|
+
export declare type ManualPaymentConfirmationResponseStatusEnum = (typeof ManualPaymentConfirmationResponseStatusEnum)[keyof typeof ManualPaymentConfirmationResponseStatusEnum];
|
|
4806
4822
|
/**
|
|
4807
4823
|
*
|
|
4808
4824
|
* @export
|
|
@@ -8473,10 +8489,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8473
8489
|
createScheduledPayout: (idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8474
8490
|
/**
|
|
8475
8491
|
* Download the balance statement for the ledger (CSV)
|
|
8492
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
8493
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
8494
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
8476
8495
|
* @param {*} [options] Override http request option.
|
|
8477
8496
|
* @throws {RequiredError}
|
|
8478
8497
|
*/
|
|
8479
|
-
downloadBalanceStatement: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8498
|
+
downloadBalanceStatement: (dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8480
8499
|
/**
|
|
8481
8500
|
* Get the FPS QR code
|
|
8482
8501
|
* @param {*} [options] Override http request option.
|
|
@@ -8671,10 +8690,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8671
8690
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PayoutSnapshotResponse>>;
|
|
8672
8691
|
/**
|
|
8673
8692
|
* Download the balance statement for the ledger (CSV)
|
|
8693
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
8694
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
8695
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
8674
8696
|
* @param {*} [options] Override http request option.
|
|
8675
8697
|
* @throws {RequiredError}
|
|
8676
8698
|
*/
|
|
8677
|
-
downloadBalanceStatement(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadBalanceStatementResponse>>;
|
|
8699
|
+
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DownloadBalanceStatementResponse>>;
|
|
8678
8700
|
/**
|
|
8679
8701
|
* Get the FPS QR code
|
|
8680
8702
|
* @param {*} [options] Override http request option.
|
|
@@ -8869,10 +8891,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
8869
8891
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: any): AxiosPromise<PayoutSnapshotResponse>;
|
|
8870
8892
|
/**
|
|
8871
8893
|
* Download the balance statement for the ledger (CSV)
|
|
8894
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
8895
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
8896
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
8872
8897
|
* @param {*} [options] Override http request option.
|
|
8873
8898
|
* @throws {RequiredError}
|
|
8874
8899
|
*/
|
|
8875
|
-
downloadBalanceStatement(options?: any): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
8900
|
+
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: any): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
8876
8901
|
/**
|
|
8877
8902
|
* Get the FPS QR code
|
|
8878
8903
|
* @param {*} [options] Override http request option.
|
|
@@ -9080,11 +9105,14 @@ export interface DefaultApiInterface {
|
|
|
9080
9105
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: AxiosRequestConfig): AxiosPromise<PayoutSnapshotResponse>;
|
|
9081
9106
|
/**
|
|
9082
9107
|
* Download the balance statement for the ledger (CSV)
|
|
9108
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
9109
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
9110
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
9083
9111
|
* @param {*} [options] Override http request option.
|
|
9084
9112
|
* @throws {RequiredError}
|
|
9085
9113
|
* @memberof DefaultApiInterface
|
|
9086
9114
|
*/
|
|
9087
|
-
downloadBalanceStatement(options?: AxiosRequestConfig): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
9115
|
+
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: AxiosRequestConfig): AxiosPromise<DownloadBalanceStatementResponse>;
|
|
9088
9116
|
/**
|
|
9089
9117
|
* Get the FPS QR code
|
|
9090
9118
|
* @param {*} [options] Override http request option.
|
|
@@ -9305,11 +9333,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
9305
9333
|
createScheduledPayout(idempotencyKey: string, createScheduledPayoutRequest: CreateScheduledPayoutRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PayoutSnapshotResponse>>;
|
|
9306
9334
|
/**
|
|
9307
9335
|
* Download the balance statement for the ledger (CSV)
|
|
9336
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
9337
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
9338
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
9308
9339
|
* @param {*} [options] Override http request option.
|
|
9309
9340
|
* @throws {RequiredError}
|
|
9310
9341
|
* @memberof DefaultApi
|
|
9311
9342
|
*/
|
|
9312
|
-
downloadBalanceStatement(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DownloadBalanceStatementResponse>>;
|
|
9343
|
+
downloadBalanceStatement(dateFrom?: string, dateTo?: string, currencies?: Array<string>, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<DownloadBalanceStatementResponse>>;
|
|
9313
9344
|
/**
|
|
9314
9345
|
* Get the FPS QR code
|
|
9315
9346
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
25
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -247,6 +247,15 @@ exports.MandateRecipientAccountAccountTypeEnum = {
|
|
|
247
247
|
exports.MandateSenderAccountAccountTypeEnum = {
|
|
248
248
|
ExternalAccount: 'EXTERNAL_ACCOUNT',
|
|
249
249
|
};
|
|
250
|
+
exports.ManualPaymentConfirmationResponseStatusEnum = {
|
|
251
|
+
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
252
|
+
Authorizing: 'AUTHORIZING',
|
|
253
|
+
Processing: 'PROCESSING',
|
|
254
|
+
Submitted: 'SUBMITTED',
|
|
255
|
+
Executed: 'EXECUTED',
|
|
256
|
+
Failed: 'FAILED',
|
|
257
|
+
Revoked: 'REVOKED',
|
|
258
|
+
};
|
|
250
259
|
exports.PaymentAccountDetailsAccountTypeEnum = {
|
|
251
260
|
ExternalAccount: 'EXTERNAL_ACCOUNT',
|
|
252
261
|
SettlementAccount: 'SETTLEMENT_ACCOUNT',
|
|
@@ -2388,10 +2397,13 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2388
2397
|
}),
|
|
2389
2398
|
/**
|
|
2390
2399
|
* Download the balance statement for the ledger (CSV)
|
|
2400
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
2401
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
2402
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
2391
2403
|
* @param {*} [options] Override http request option.
|
|
2392
2404
|
* @throws {RequiredError}
|
|
2393
2405
|
*/
|
|
2394
|
-
downloadBalanceStatement: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2406
|
+
downloadBalanceStatement: (dateFrom, dateTo, currencies, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2395
2407
|
const localVarPath = `/ledger/statement`;
|
|
2396
2408
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2397
2409
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -2405,6 +2417,17 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2405
2417
|
// authentication Oauth2 required
|
|
2406
2418
|
// oauth required
|
|
2407
2419
|
yield common_1.setOAuthToObject(localVarHeaderParameter, 'Oauth2', [], configuration);
|
|
2420
|
+
if (dateFrom !== undefined) {
|
|
2421
|
+
localVarQueryParameter['date_from'] =
|
|
2422
|
+
dateFrom instanceof Date ? dateFrom.toISOString().substr(0, 10) : dateFrom;
|
|
2423
|
+
}
|
|
2424
|
+
if (dateTo !== undefined) {
|
|
2425
|
+
localVarQueryParameter['date_to'] =
|
|
2426
|
+
dateTo instanceof Date ? dateTo.toISOString().substr(0, 10) : dateTo;
|
|
2427
|
+
}
|
|
2428
|
+
if (currencies) {
|
|
2429
|
+
localVarQueryParameter['currencies'] = currencies.join(base_1.COLLECTION_FORMATS.csv);
|
|
2430
|
+
}
|
|
2408
2431
|
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2409
2432
|
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2410
2433
|
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
@@ -3019,12 +3042,15 @@ exports.DefaultApiFp = function (configuration) {
|
|
|
3019
3042
|
},
|
|
3020
3043
|
/**
|
|
3021
3044
|
* Download the balance statement for the ledger (CSV)
|
|
3045
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
3046
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
3047
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
3022
3048
|
* @param {*} [options] Override http request option.
|
|
3023
3049
|
* @throws {RequiredError}
|
|
3024
3050
|
*/
|
|
3025
|
-
downloadBalanceStatement(options) {
|
|
3051
|
+
downloadBalanceStatement(dateFrom, dateTo, currencies, options) {
|
|
3026
3052
|
return __awaiter(this, void 0, void 0, function* () {
|
|
3027
|
-
const localVarAxiosArgs = yield localVarAxiosParamCreator.downloadBalanceStatement(options);
|
|
3053
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.downloadBalanceStatement(dateFrom, dateTo, currencies, options);
|
|
3028
3054
|
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3029
3055
|
});
|
|
3030
3056
|
},
|
|
@@ -3321,11 +3347,16 @@ exports.DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3321
3347
|
},
|
|
3322
3348
|
/**
|
|
3323
3349
|
* Download the balance statement for the ledger (CSV)
|
|
3350
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
3351
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
3352
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
3324
3353
|
* @param {*} [options] Override http request option.
|
|
3325
3354
|
* @throws {RequiredError}
|
|
3326
3355
|
*/
|
|
3327
|
-
downloadBalanceStatement(options) {
|
|
3328
|
-
return localVarFp
|
|
3356
|
+
downloadBalanceStatement(dateFrom, dateTo, currencies, options) {
|
|
3357
|
+
return localVarFp
|
|
3358
|
+
.downloadBalanceStatement(dateFrom, dateTo, currencies, options)
|
|
3359
|
+
.then((request) => request(axios, basePath));
|
|
3329
3360
|
},
|
|
3330
3361
|
/**
|
|
3331
3362
|
* Get the FPS QR code
|
|
@@ -3616,13 +3647,16 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3616
3647
|
}
|
|
3617
3648
|
/**
|
|
3618
3649
|
* Download the balance statement for the ledger (CSV)
|
|
3650
|
+
* @param {string} [dateFrom] ISO format (YYYY-MM-DD)
|
|
3651
|
+
* @param {string} [dateTo] ISO format (YYYY-MM-DD)
|
|
3652
|
+
* @param {Array<string>} [currencies] The currencies to filter for
|
|
3619
3653
|
* @param {*} [options] Override http request option.
|
|
3620
3654
|
* @throws {RequiredError}
|
|
3621
3655
|
* @memberof DefaultApi
|
|
3622
3656
|
*/
|
|
3623
|
-
downloadBalanceStatement(options) {
|
|
3657
|
+
downloadBalanceStatement(dateFrom, dateTo, currencies, options) {
|
|
3624
3658
|
return exports.DefaultApiFp(this.configuration)
|
|
3625
|
-
.downloadBalanceStatement(options)
|
|
3659
|
+
.downloadBalanceStatement(dateFrom, dateTo, currencies, options)
|
|
3626
3660
|
.then((request) => request(this.axios, this.basePath));
|
|
3627
3661
|
}
|
|
3628
3662
|
/**
|