@finverse/sdk-typescript 0.0.213 → 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 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
@@ -1702,12 +1691,6 @@ export interface FVCard {
1702
1691
  * @memberof FVCard
1703
1692
  */
1704
1693
  updated_at?: string;
1705
- /**
1706
- * Finverse Card ID (ULID)
1707
- * @type {string}
1708
- * @memberof FVCard
1709
- */
1710
- card_id?: string;
1711
1694
  /**
1712
1695
  * Card Status
1713
1696
  * @type {string}
@@ -5160,6 +5143,7 @@ export interface PaymentResponse {
5160
5143
  export declare const PaymentResponseTypeEnum: {
5161
5144
  readonly Mandate: "MANDATE";
5162
5145
  readonly Single: "SINGLE";
5146
+ readonly Card: "CARD";
5163
5147
  };
5164
5148
  export declare type PaymentResponseTypeEnum = (typeof PaymentResponseTypeEnum)[keyof typeof PaymentResponseTypeEnum];
5165
5149
  export declare const PaymentResponseStatusEnum: {
@@ -7394,7 +7378,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
7394
7378
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7395
7379
  * @param {string} [userId] The user_id the mandate was setup for
7396
7380
  * @param {string} [institutionId] The institution the mandate was executed against
7397
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7381
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7398
7382
  * @param {string} [mandateId] The mandate the payment belongs to
7399
7383
  * @param {string} [currency] The currency the payment is made in
7400
7384
  * @param {number} [offset] default is 0
@@ -7402,7 +7386,7 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
7402
7386
  * @param {*} [options] Override http request option.
7403
7387
  * @throws {RequiredError}
7404
7388
  */
7405
- 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>;
7406
7390
  /**
7407
7391
  * Set autopay consent for payment user
7408
7392
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7545,7 +7529,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
7545
7529
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7546
7530
  * @param {string} [userId] The user_id the mandate was setup for
7547
7531
  * @param {string} [institutionId] The institution the mandate was executed against
7548
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7532
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7549
7533
  * @param {string} [mandateId] The mandate the payment belongs to
7550
7534
  * @param {string} [currency] The currency the payment is made in
7551
7535
  * @param {number} [offset] default is 0
@@ -7553,7 +7537,7 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
7553
7537
  * @param {*} [options] Override http request option.
7554
7538
  * @throws {RequiredError}
7555
7539
  */
7556
- 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>>;
7557
7541
  /**
7558
7542
  * Set autopay consent for payment user
7559
7543
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7696,7 +7680,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
7696
7680
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7697
7681
  * @param {string} [userId] The user_id the mandate was setup for
7698
7682
  * @param {string} [institutionId] The institution the mandate was executed against
7699
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7683
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7700
7684
  * @param {string} [mandateId] The mandate the payment belongs to
7701
7685
  * @param {string} [currency] The currency the payment is made in
7702
7686
  * @param {number} [offset] default is 0
@@ -7704,7 +7688,7 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
7704
7688
  * @param {*} [options] Override http request option.
7705
7689
  * @throws {RequiredError}
7706
7690
  */
7707
- 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>;
7708
7692
  /**
7709
7693
  * Set autopay consent for payment user
7710
7694
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -7865,7 +7849,7 @@ export interface DefaultApiInterface {
7865
7849
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
7866
7850
  * @param {string} [userId] The user_id the mandate was setup for
7867
7851
  * @param {string} [institutionId] The institution the mandate was executed against
7868
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
7852
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
7869
7853
  * @param {string} [mandateId] The mandate the payment belongs to
7870
7854
  * @param {string} [currency] The currency the payment is made in
7871
7855
  * @param {number} [offset] default is 0
@@ -7874,7 +7858,7 @@ export interface DefaultApiInterface {
7874
7858
  * @throws {RequiredError}
7875
7859
  * @memberof DefaultApiInterface
7876
7860
  */
7877
- 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>;
7878
7862
  /**
7879
7863
  * Set autopay consent for payment user
7880
7864
  * @param {SetAutopayConsentRequest} setAutopayConsentRequest
@@ -8037,7 +8021,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
8037
8021
  * @param {'INDIVIDUAL' | 'BUSINESS'} [senderType] The sender type of the mandate
8038
8022
  * @param {string} [userId] The user_id the mandate was setup for
8039
8023
  * @param {string} [institutionId] The institution the mandate was executed against
8040
- * @param {'MANDATE' | 'SINGLE'} [paymentType] The type of payment
8024
+ * @param {'MANDATE' | 'SINGLE' | 'CARD'} [paymentType] The type of payment
8041
8025
  * @param {string} [mandateId] The mandate the payment belongs to
8042
8026
  * @param {string} [currency] The currency the payment is made in
8043
8027
  * @param {number} [offset] default is 0
@@ -8046,7 +8030,7 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
8046
8030
  * @throws {RequiredError}
8047
8031
  * @memberof DefaultApi
8048
8032
  */
8049
- 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>>;
8050
8034
  /**
8051
8035
  * Set autopay consent for payment user
8052
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.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.213",
3
+ "version": "0.0.215",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "keywords": [