@finverse/sdk-typescript 0.0.214 → 0.0.215
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 +11 -21
- package/dist/api.js +6 -9
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1295,12 +1295,6 @@ export interface CreatePaymentRequest {
|
|
|
1295
1295
|
* @memberof CreatePaymentRequest
|
|
1296
1296
|
*/
|
|
1297
1297
|
currency: string;
|
|
1298
|
-
/**
|
|
1299
|
-
* Indicates whether this is a mandate-based payment or one-off direct payment to an account. Possible values - MANDATE, SINGLE
|
|
1300
|
-
* @type {string}
|
|
1301
|
-
* @memberof CreatePaymentRequest
|
|
1302
|
-
*/
|
|
1303
|
-
type: CreatePaymentRequestTypeEnum;
|
|
1304
1298
|
/**
|
|
1305
1299
|
*
|
|
1306
1300
|
* @type {PaymentDetails2}
|
|
@@ -1316,11 +1310,6 @@ export interface CreatePaymentRequest {
|
|
|
1316
1310
|
[key: string]: string;
|
|
1317
1311
|
};
|
|
1318
1312
|
}
|
|
1319
|
-
export declare const CreatePaymentRequestTypeEnum: {
|
|
1320
|
-
readonly Mandate: "MANDATE";
|
|
1321
|
-
readonly Single: "SINGLE";
|
|
1322
|
-
};
|
|
1323
|
-
export declare type CreatePaymentRequestTypeEnum = (typeof CreatePaymentRequestTypeEnum)[keyof typeof CreatePaymentRequestTypeEnum];
|
|
1324
1313
|
/**
|
|
1325
1314
|
*
|
|
1326
1315
|
* @export
|
|
@@ -5154,6 +5143,7 @@ export interface PaymentResponse {
|
|
|
5154
5143
|
export declare const PaymentResponseTypeEnum: {
|
|
5155
5144
|
readonly Mandate: "MANDATE";
|
|
5156
5145
|
readonly Single: "SINGLE";
|
|
5146
|
+
readonly Card: "CARD";
|
|
5157
5147
|
};
|
|
5158
5148
|
export declare type PaymentResponseTypeEnum = (typeof PaymentResponseTypeEnum)[keyof typeof PaymentResponseTypeEnum];
|
|
5159
5149
|
export declare const PaymentResponseStatusEnum: {
|
|
@@ -7388,7 +7378,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7388
7378
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
7389
7379
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
7390
7380
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
7391
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
7381
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
7392
7382
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
7393
7383
|
* @param {string} [currency] The currency the payment is made in
|
|
7394
7384
|
* @param {number} [offset] default is 0
|
|
@@ -7396,7 +7386,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
7396
7386
|
* @param {*} [options] Override http request option.
|
|
7397
7387
|
* @throws {RequiredError}
|
|
7398
7388
|
*/
|
|
7399
|
-
listPayments: (dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7389
|
+
listPayments: (dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE' | 'CARD', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
7400
7390
|
/**
|
|
7401
7391
|
* Set autopay consent for payment user
|
|
7402
7392
|
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
@@ -7539,7 +7529,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
7539
7529
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
7540
7530
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
7541
7531
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
7542
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
7532
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
7543
7533
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
7544
7534
|
* @param {string} [currency] The currency the payment is made in
|
|
7545
7535
|
* @param {number} [offset] default is 0
|
|
@@ -7547,7 +7537,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
7547
7537
|
* @param {*} [options] Override http request option.
|
|
7548
7538
|
* @throws {RequiredError}
|
|
7549
7539
|
*/
|
|
7550
|
-
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentsResponse>>;
|
|
7540
|
+
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE' | 'CARD', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ListPaymentsResponse>>;
|
|
7551
7541
|
/**
|
|
7552
7542
|
* Set autopay consent for payment user
|
|
7553
7543
|
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
@@ -7690,7 +7680,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
7690
7680
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
7691
7681
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
7692
7682
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
7693
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
7683
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
7694
7684
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
7695
7685
|
* @param {string} [currency] The currency the payment is made in
|
|
7696
7686
|
* @param {number} [offset] default is 0
|
|
@@ -7698,7 +7688,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
7698
7688
|
* @param {*} [options] Override http request option.
|
|
7699
7689
|
* @throws {RequiredError}
|
|
7700
7690
|
*/
|
|
7701
|
-
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: any): AxiosPromise<ListPaymentsResponse>;
|
|
7691
|
+
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE' | 'CARD', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: any): AxiosPromise<ListPaymentsResponse>;
|
|
7702
7692
|
/**
|
|
7703
7693
|
* Set autopay consent for payment user
|
|
7704
7694
|
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
@@ -7859,7 +7849,7 @@ export interface DefaultApiInterface {
|
|
|
7859
7849
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
7860
7850
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
7861
7851
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
7862
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
7852
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
7863
7853
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
7864
7854
|
* @param {string} [currency] The currency the payment is made in
|
|
7865
7855
|
* @param {number} [offset] default is 0
|
|
@@ -7868,7 +7858,7 @@ export interface DefaultApiInterface {
|
|
|
7868
7858
|
* @throws {RequiredError}
|
|
7869
7859
|
* @memberof DefaultApiInterface
|
|
7870
7860
|
*/
|
|
7871
|
-
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): AxiosPromise<ListPaymentsResponse>;
|
|
7861
|
+
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE' | 'CARD', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): AxiosPromise<ListPaymentsResponse>;
|
|
7872
7862
|
/**
|
|
7873
7863
|
* Set autopay consent for payment user
|
|
7874
7864
|
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
|
@@ -8031,7 +8021,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
8031
8021
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
8032
8022
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
8033
8023
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
8034
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
8024
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
8035
8025
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
8036
8026
|
* @param {string} [currency] The currency the payment is made in
|
|
8037
8027
|
* @param {number} [offset] default is 0
|
|
@@ -8040,7 +8030,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
8040
8030
|
* @throws {RequiredError}
|
|
8041
8031
|
* @memberof DefaultApi
|
|
8042
8032
|
*/
|
|
8043
|
-
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentsResponse>>;
|
|
8033
|
+
listPayments(dateFrom?: string, dateTo?: string, statuses?: Array<'AUTHORIZATION_REQUIRED' | 'AUTHORIZING' | 'PROCESSING' | 'SUBMITTED' | 'EXECUTED' | 'FAILED' | 'REVOKED'>, senderType?: 'INDIVIDUAL' | 'BUSINESS', userId?: string, institutionId?: string, paymentType?: 'MANDATE' | 'SINGLE' | 'CARD', mandateId?: string, currency?: string, offset?: number, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ListPaymentsResponse>>;
|
|
8044
8034
|
/**
|
|
8045
8035
|
* Set autopay consent for payment user
|
|
8046
8036
|
* @param {SetAutopayConsentRequest} setAutopayConsentRequest
|
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.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = 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.
|
|
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.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = 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.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = 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
|
|
@@ -99,10 +99,6 @@ exports.CreatePaymentLinkRequestModeEnum = {
|
|
|
99
99
|
Payment: 'PAYMENT',
|
|
100
100
|
Setup: 'SETUP',
|
|
101
101
|
};
|
|
102
|
-
exports.CreatePaymentRequestTypeEnum = {
|
|
103
|
-
Mandate: 'MANDATE',
|
|
104
|
-
Single: 'SINGLE',
|
|
105
|
-
};
|
|
106
102
|
exports.CreatePaymentUserRequestUserTypeEnum = {
|
|
107
103
|
Individual: 'INDIVIDUAL',
|
|
108
104
|
Business: 'BUSINESS',
|
|
@@ -251,6 +247,7 @@ exports.PaymentLinkTokenResponseTokenTypeEnum = {
|
|
|
251
247
|
exports.PaymentResponseTypeEnum = {
|
|
252
248
|
Mandate: 'MANDATE',
|
|
253
249
|
Single: 'SINGLE',
|
|
250
|
+
Card: 'CARD',
|
|
254
251
|
};
|
|
255
252
|
exports.PaymentResponseStatusEnum = {
|
|
256
253
|
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
@@ -2421,7 +2418,7 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2421
2418
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
2422
2419
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
2423
2420
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
2424
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
2421
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
2425
2422
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
2426
2423
|
* @param {string} [currency] The currency the payment is made in
|
|
2427
2424
|
* @param {number} [offset] default is 0
|
|
@@ -2741,7 +2738,7 @@ exports.DefaultApiFp = function (configuration) {
|
|
|
2741
2738
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
2742
2739
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
2743
2740
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
2744
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
2741
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
2745
2742
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
2746
2743
|
* @param {string} [currency] The currency the payment is made in
|
|
2747
2744
|
* @param {number} [offset] default is 0
|
|
@@ -2951,7 +2948,7 @@ exports.DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
2951
2948
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
2952
2949
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
2953
2950
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
2954
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
2951
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
2955
2952
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
2956
2953
|
* @param {string} [currency] The currency the payment is made in
|
|
2957
2954
|
* @param {number} [offset] default is 0
|
|
@@ -3198,7 +3195,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3198
3195
|
* @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
|
|
3199
3196
|
* @param {string} [userId] The user_id the mandate was setup for
|
|
3200
3197
|
* @param {string} [institutionId] The institution the mandate was executed against
|
|
3201
|
-
* @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
|
|
3198
|
+
* @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
|
|
3202
3199
|
* @param {string} [mandateId] The mandate the payment belongs to
|
|
3203
3200
|
* @param {string} [currency] The currency the payment is made in
|
|
3204
3201
|
* @param {number} [offset] default is 0
|