@finverse/sdk-typescript 0.0.214 → 0.0.216

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
@@ -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
@@ -1708,6 +1697,18 @@ export interface FVCard {
1708
1697
  * @memberof FVCard
1709
1698
  */
1710
1699
  status?: FVCardStatusEnum;
1700
+ /**
1701
+ * The credit card brand
1702
+ * @type {string}
1703
+ * @memberof FVCard
1704
+ */
1705
+ brand?: string;
1706
+ /**
1707
+ * Last 4 digits of the credit card number
1708
+ * @type {string}
1709
+ * @memberof FVCard
1710
+ */
1711
+ last4?: string;
1711
1712
  }
1712
1713
  export declare const FVCardStatusEnum: {
1713
1714
  readonly Unknown: "UNKNOWN";
@@ -5154,6 +5155,7 @@ export interface PaymentResponse {
5154
5155
  export declare const PaymentResponseTypeEnum: {
5155
5156
  readonly Mandate: "MANDATE";
5156
5157
  readonly Single: "SINGLE";
5158
+ readonly Card: "CARD";
5157
5159
  };
5158
5160
  export declare type PaymentResponseTypeEnum = (typeof PaymentResponseTypeEnum)[keyof typeof PaymentResponseTypeEnum];
5159
5161
  export declare const PaymentResponseStatusEnum: {
@@ -7388,7 +7390,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
7388
7390
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7389
7391
  * @param {string} [userId] The user_id the mandate was setup for
7390
7392
  * @param {string} [institutionId] The institution the mandate was executed against
7391
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7393
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7392
7394
  * @param {string} [mandateId] The mandate the payment belongs to
7393
7395
  * @param {string} [currency] The currency the payment is made in
7394
7396
  * @param {number} [offset] default is 0
@@ -7396,7 +7398,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
7396
7398
  * @param {*} [options] Override http request option.
7397
7399
  * @throws {RequiredError}
7398
7400
  */
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>;
7401
+ 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
7402
  /**
7401
7403
  * Set autopay consent for payment user
7402
7404
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7539,7 +7541,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
7539
7541
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7540
7542
  * @param {string} [userId] The user_id the mandate was setup for
7541
7543
  * @param {string} [institutionId] The institution the mandate was executed against
7542
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7544
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7543
7545
  * @param {string} [mandateId] The mandate the payment belongs to
7544
7546
  * @param {string} [currency] The currency the payment is made in
7545
7547
  * @param {number} [offset] default is 0
@@ -7547,7 +7549,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
7547
7549
  * @param {*} [options] Override http request option.
7548
7550
  * @throws {RequiredError}
7549
7551
  */
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>>;
7552
+ 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
7553
  /**
7552
7554
  * Set autopay consent for payment user
7553
7555
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7690,7 +7692,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
7690
7692
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7691
7693
  * @param {string} [userId] The user_id the mandate was setup for
7692
7694
  * @param {string} [institutionId] The institution the mandate was executed against
7693
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7695
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7694
7696
  * @param {string} [mandateId] The mandate the payment belongs to
7695
7697
  * @param {string} [currency] The currency the payment is made in
7696
7698
  * @param {number} [offset] default is 0
@@ -7698,7 +7700,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
7698
7700
  * @param {*} [options] Override http request option.
7699
7701
  * @throws {RequiredError}
7700
7702
  */
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>;
7703
+ 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
7704
  /**
7703
7705
  * Set autopay consent for payment user
7704
7706
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7859,7 +7861,7 @@ export interface DefaultApiInterface {
7859
7861
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7860
7862
  * @param {string} [userId] The user_id the mandate was setup for
7861
7863
  * @param {string} [institutionId] The institution the mandate was executed against
7862
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7864
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7863
7865
  * @param {string} [mandateId] The mandate the payment belongs to
7864
7866
  * @param {string} [currency] The currency the payment is made in
7865
7867
  * @param {number} [offset] default is 0
@@ -7868,7 +7870,7 @@ export interface DefaultApiInterface {
7868
7870
  * @throws {RequiredError}
7869
7871
  * @memberof DefaultApiInterface
7870
7872
  */
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>;
7873
+ 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
7874
  /**
7873
7875
  * Set autopay consent for payment user
7874
7876
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -8031,7 +8033,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
8031
8033
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
8032
8034
  * @param {string} [userId] The user_id the mandate was setup for
8033
8035
  * @param {string} [institutionId] The institution the mandate was executed against
8034
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
8036
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
8035
8037
  * @param {string} [mandateId] The mandate the payment belongs to
8036
8038
  * @param {string} [currency] The currency the payment is made in
8037
8039
  * @param {number} [offset] default is 0
@@ -8040,7 +8042,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
8040
8042
  * @throws {RequiredError}
8041
8043
  * @memberof DefaultApi
8042
8044
  */
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>>;
8045
+ 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
8046
  /**
8045
8047
  * Set autopay consent for payment user
8046
8048
  * @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.CreatePaymentRequestTypeEnum = 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;
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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.214",
3
+ "version": "0.0.216",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [