@finverse/sdk-typescript 0.0.337 → 0.0.339

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.
Files changed (3) hide show
  1. package/dist/api.d.ts +1 -188
  2. package/dist/api.js +4 -207
  3. package/package.json +1 -1
package/dist/api.d.ts CHANGED
@@ -1239,19 +1239,6 @@ export interface CreateCardRequestCardDetails {
1239
1239
  */
1240
1240
  expiry_year?: number;
1241
1241
  }
1242
- /**
1243
- *
1244
- * @export
1245
- * @interface CreateFpsTokenResponse
1246
- */
1247
- export interface CreateFpsTokenResponse {
1248
- /**
1249
- *
1250
- * @type {PaymentLinkTokenResponse}
1251
- * @memberof CreateFpsTokenResponse
1252
- */
1253
- fps_token: PaymentLinkTokenResponse;
1254
- }
1255
1242
  /**
1256
1243
  *
1257
1244
  * @export
@@ -1565,75 +1552,6 @@ export interface CreatePaymentInstructionResponse {
1565
1552
  */
1566
1553
  payment_instruction_id?: string;
1567
1554
  }
1568
- /**
1569
- *
1570
- * @export
1571
- * @interface CreatePaymentLinkCardPaymentRequest
1572
- */
1573
- export interface CreatePaymentLinkCardPaymentRequest {
1574
- /**
1575
- * Whether the request is from a mobile device
1576
- * @type {boolean}
1577
- * @memberof CreatePaymentLinkCardPaymentRequest
1578
- */
1579
- is_mobile: boolean;
1580
- }
1581
- /**
1582
- *
1583
- * @export
1584
- * @interface CreatePaymentLinkCardPaymentResponse
1585
- */
1586
- export interface CreatePaymentLinkCardPaymentResponse {
1587
- /**
1588
- * URL to redirect to for making the card payment (e.g. Stripe)
1589
- * @type {string}
1590
- * @memberof CreatePaymentLinkCardPaymentResponse
1591
- */
1592
- card_processor_redirect_uri: string;
1593
- /**
1594
- * Finverse Payment ID
1595
- * @type {string}
1596
- * @memberof CreatePaymentLinkCardPaymentResponse
1597
- */
1598
- payment_id?: string;
1599
- }
1600
- /**
1601
- *
1602
- * @export
1603
- * @interface CreatePaymentLinkMandateRequest
1604
- */
1605
- export interface CreatePaymentLinkMandateRequest {
1606
- /**
1607
- *
1608
- * @type {string}
1609
- * @memberof CreatePaymentLinkMandateRequest
1610
- */
1611
- payment_attempt_id: string;
1612
- /**
1613
- * The sender type of the mandate
1614
- * @type {string}
1615
- * @memberof CreatePaymentLinkMandateRequest
1616
- */
1617
- sender_type: CreatePaymentLinkMandateRequestSenderTypeEnum;
1618
- }
1619
- export declare const CreatePaymentLinkMandateRequestSenderTypeEnum: {
1620
- readonly Individual: "INDIVIDUAL";
1621
- readonly Business: "BUSINESS";
1622
- };
1623
- export type CreatePaymentLinkMandateRequestSenderTypeEnum = (typeof CreatePaymentLinkMandateRequestSenderTypeEnum)[keyof typeof CreatePaymentLinkMandateRequestSenderTypeEnum];
1624
- /**
1625
- *
1626
- * @export
1627
- * @interface CreatePaymentLinkMandateResponse
1628
- */
1629
- export interface CreatePaymentLinkMandateResponse {
1630
- /**
1631
- *
1632
- * @type {PaymentLinkTokenResponse}
1633
- * @memberof CreatePaymentLinkMandateResponse
1634
- */
1635
- mandate_link_token: PaymentLinkTokenResponse;
1636
- }
1637
1555
  /**
1638
1556
  *
1639
1557
  * @export
@@ -9956,6 +9874,7 @@ export declare class CustomerApi extends BaseAPI implements CustomerApiInterface
9956
9874
  export declare const GetLineItemsForDisplayPaymentTypeEnum: {
9957
9875
  readonly Mandate: "MANDATE";
9958
9876
  readonly Manual: "MANUAL";
9877
+ readonly Card: "CARD";
9959
9878
  };
9960
9879
  export type GetLineItemsForDisplayPaymentTypeEnum = (typeof GetLineItemsForDisplayPaymentTypeEnum)[keyof typeof GetLineItemsForDisplayPaymentTypeEnum];
9961
9880
  /**
@@ -10020,12 +9939,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
10020
9939
  * @throws {RequiredError}
10021
9940
  */
10022
9941
  confirmPayment: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10023
- /**
10024
- * Create token for fps flow
10025
- * @param {*} [options] Override http request option.
10026
- * @throws {RequiredError}
10027
- */
10028
- createFpsToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10029
9942
  /**
10030
9943
  * Create mandate for an existing sender account
10031
9944
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10041,20 +9954,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
10041
9954
  * @throws {RequiredError}
10042
9955
  */
10043
9956
  createPaymentLink: (createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10044
- /**
10045
- * Initiate Card Payment for a Payment Link
10046
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10047
- * @param {*} [options] Override http request option.
10048
- * @throws {RequiredError}
10049
- */
10050
- createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10051
- /**
10052
- * CREATE Mandate for payment link
10053
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10054
- * @param {*} [options] Override http request option.
10055
- * @throws {RequiredError}
10056
- */
10057
- createPaymentLinkMandate: (createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10058
9957
  /**
10059
9958
  * Create a Payment Method for a user
10060
9959
  * @param {string} paymentUserId Payment User ID
@@ -10300,12 +10199,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
10300
10199
  * @throws {RequiredError}
10301
10200
  */
10302
10201
  confirmPayment(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfirmPaymentResponse>>;
10303
- /**
10304
- * Create token for fps flow
10305
- * @param {*} [options] Override http request option.
10306
- * @throws {RequiredError}
10307
- */
10308
- createFpsToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFpsTokenResponse>>;
10309
10202
  /**
10310
10203
  * Create mandate for an existing sender account
10311
10204
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10321,20 +10214,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
10321
10214
  * @throws {RequiredError}
10322
10215
  */
10323
10216
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentLinkResponse>>;
10324
- /**
10325
- * Initiate Card Payment for a Payment Link
10326
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10327
- * @param {*} [options] Override http request option.
10328
- * @throws {RequiredError}
10329
- */
10330
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentLinkCardPaymentResponse>>;
10331
- /**
10332
- * CREATE Mandate for payment link
10333
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10334
- * @param {*} [options] Override http request option.
10335
- * @throws {RequiredError}
10336
- */
10337
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentLinkMandateResponse>>;
10338
10217
  /**
10339
10218
  * Create a Payment Method for a user
10340
10219
  * @param {string} paymentUserId Payment User ID
@@ -10580,12 +10459,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10580
10459
  * @throws {RequiredError}
10581
10460
  */
10582
10461
  confirmPayment(options?: RawAxiosRequestConfig): AxiosPromise<ConfirmPaymentResponse>;
10583
- /**
10584
- * Create token for fps flow
10585
- * @param {*} [options] Override http request option.
10586
- * @throws {RequiredError}
10587
- */
10588
- createFpsToken(options?: RawAxiosRequestConfig): AxiosPromise<CreateFpsTokenResponse>;
10589
10462
  /**
10590
10463
  * Create mandate for an existing sender account
10591
10464
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10601,20 +10474,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10601
10474
  * @throws {RequiredError}
10602
10475
  */
10603
10476
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
10604
- /**
10605
- * Initiate Card Payment for a Payment Link
10606
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10607
- * @param {*} [options] Override http request option.
10608
- * @throws {RequiredError}
10609
- */
10610
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
10611
- /**
10612
- * CREATE Mandate for payment link
10613
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10614
- * @param {*} [options] Override http request option.
10615
- * @throws {RequiredError}
10616
- */
10617
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkMandateResponse>;
10618
10477
  /**
10619
10478
  * Create a Payment Method for a user
10620
10479
  * @param {string} paymentUserId Payment User ID
@@ -10867,13 +10726,6 @@ export interface DefaultApiInterface {
10867
10726
  * @memberof DefaultApiInterface
10868
10727
  */
10869
10728
  confirmPayment(options?: RawAxiosRequestConfig): AxiosPromise<ConfirmPaymentResponse>;
10870
- /**
10871
- * Create token for fps flow
10872
- * @param {*} [options] Override http request option.
10873
- * @throws {RequiredError}
10874
- * @memberof DefaultApiInterface
10875
- */
10876
- createFpsToken(options?: RawAxiosRequestConfig): AxiosPromise<CreateFpsTokenResponse>;
10877
10729
  /**
10878
10730
  * Create mandate for an existing sender account
10879
10731
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -10891,22 +10743,6 @@ export interface DefaultApiInterface {
10891
10743
  * @memberof DefaultApiInterface
10892
10744
  */
10893
10745
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
10894
- /**
10895
- * Initiate Card Payment for a Payment Link
10896
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10897
- * @param {*} [options] Override http request option.
10898
- * @throws {RequiredError}
10899
- * @memberof DefaultApiInterface
10900
- */
10901
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
10902
- /**
10903
- * CREATE Mandate for payment link
10904
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10905
- * @param {*} [options] Override http request option.
10906
- * @throws {RequiredError}
10907
- * @memberof DefaultApiInterface
10908
- */
10909
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkMandateResponse>;
10910
10746
  /**
10911
10747
  * Create a Payment Method for a user
10912
10748
  * @param {string} paymentUserId Payment User ID
@@ -11183,13 +11019,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
11183
11019
  * @memberof DefaultApi
11184
11020
  */
11185
11021
  confirmPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfirmPaymentResponse, any, {}>>;
11186
- /**
11187
- * Create token for fps flow
11188
- * @param {*} [options] Override http request option.
11189
- * @throws {RequiredError}
11190
- * @memberof DefaultApi
11191
- */
11192
- createFpsToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFpsTokenResponse, any, {}>>;
11193
11022
  /**
11194
11023
  * Create mandate for an existing sender account
11195
11024
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -11207,22 +11036,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
11207
11036
  * @memberof DefaultApi
11208
11037
  */
11209
11038
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
11210
- /**
11211
- * Initiate Card Payment for a Payment Link
11212
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
11213
- * @param {*} [options] Override http request option.
11214
- * @throws {RequiredError}
11215
- * @memberof DefaultApi
11216
- */
11217
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkCardPaymentResponse, any, {}>>;
11218
- /**
11219
- * CREATE Mandate for payment link
11220
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
11221
- * @param {*} [options] Override http request option.
11222
- * @throws {RequiredError}
11223
- * @memberof DefaultApi
11224
- */
11225
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkMandateResponse, any, {}>>;
11226
11039
  /**
11227
11040
  * Create a Payment Method for a user
11228
11041
  * @param {string} paymentUserId Payment User ID
package/dist/api.js CHANGED
@@ -22,9 +22,9 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- 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.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.DisputeResponseDisputeStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CompleteKcpPaymentRequestCardPointUseEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
26
- exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.GetLineItemsForDisplayPaymentTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsResponsePeriodEnum = exports.TransactionLimitsRequestPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.SelectPaymentMethodRequestSenderTypeEnum = exports.SelectPaymentMethodRequestPaymentMethodTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = exports.PaymentSetupOptionsRequestFuturePaymentsEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataAdyenMetadataRecurringProcessingModelEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseTypeEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = void 0;
27
- exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = void 0;
25
+ 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.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.DisputeResponseDisputeStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CompleteKcpPaymentRequestCardPointUseEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
26
+ exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListInstitutionsInstitutionTypeEnum = exports.GetLineItemsForDisplayPaymentTypeEnum = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsResponsePeriodEnum = exports.TransactionLimitsRequestPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.SelectPaymentMethodRequestSenderTypeEnum = exports.SelectPaymentMethodRequestPaymentMethodTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PayoutSnapshotResponseTypeEnum = exports.PayoutSnapshotResponseStatusEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsRequestPaymentMethodTypesEnum = exports.PaymentSetupOptionsRequestFuturePaymentsEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataAdyenMetadataRecurringProcessingModelEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseTypeEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = void 0;
27
+ exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = void 0;
28
28
  const axios_1 = require("axios");
29
29
  // Some imports not used depending on template conditions
30
30
  // @ts-ignore
@@ -117,10 +117,6 @@ exports.CreateMandateSenderUserTypeEnum = {
117
117
  exports.CreatePaymentAccountRequestAccountTypeEnum = {
118
118
  ExternalAccount: 'EXTERNAL_ACCOUNT',
119
119
  };
120
- exports.CreatePaymentLinkMandateRequestSenderTypeEnum = {
121
- Individual: 'INDIVIDUAL',
122
- Business: 'BUSINESS',
123
- };
124
120
  exports.CreatePaymentLinkRequestModeEnum = {
125
121
  Payment: 'PAYMENT',
126
122
  Setup: 'SETUP',
@@ -2380,6 +2376,7 @@ exports.CustomerApi = CustomerApi;
2380
2376
  exports.GetLineItemsForDisplayPaymentTypeEnum = {
2381
2377
  Mandate: 'MANDATE',
2382
2378
  Manual: 'MANUAL',
2379
+ Card: 'CARD',
2383
2380
  };
2384
2381
  /**
2385
2382
  * @export
@@ -2580,33 +2577,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2580
2577
  options: localVarRequestOptions,
2581
2578
  };
2582
2579
  }),
2583
- /**
2584
- * Create token for fps flow
2585
- * @param {*} [options] Override http request option.
2586
- * @throws {RequiredError}
2587
- */
2588
- createFpsToken: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
2589
- const localVarPath = `/payment_links/fps/token`;
2590
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2591
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2592
- let baseOptions;
2593
- if (configuration) {
2594
- baseOptions = configuration.baseOptions;
2595
- }
2596
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2597
- const localVarHeaderParameter = {};
2598
- const localVarQueryParameter = {};
2599
- // authentication Oauth2 required
2600
- // oauth required
2601
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2602
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2603
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2604
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2605
- return {
2606
- url: (0, common_1.toPathString)(localVarUrlObj),
2607
- options: localVarRequestOptions,
2608
- };
2609
- }),
2610
2580
  /**
2611
2581
  * Create mandate for an existing sender account
2612
2582
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -2677,70 +2647,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2677
2647
  options: localVarRequestOptions,
2678
2648
  };
2679
2649
  }),
2680
- /**
2681
- * Initiate Card Payment for a Payment Link
2682
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
2683
- * @param {*} [options] Override http request option.
2684
- * @throws {RequiredError}
2685
- */
2686
- createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest_1, ...args_1) => __awaiter(this, [createPaymentLinkCardPaymentRequest_1, ...args_1], void 0, function* (createPaymentLinkCardPaymentRequest, options = {}) {
2687
- // verify required parameter 'createPaymentLinkCardPaymentRequest' is not null or undefined
2688
- (0, common_1.assertParamExists)('createPaymentLinkCardPayment', 'createPaymentLinkCardPaymentRequest', createPaymentLinkCardPaymentRequest);
2689
- const localVarPath = `/payment_links/card`;
2690
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2691
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2692
- let baseOptions;
2693
- if (configuration) {
2694
- baseOptions = configuration.baseOptions;
2695
- }
2696
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2697
- const localVarHeaderParameter = {};
2698
- const localVarQueryParameter = {};
2699
- // authentication Oauth2 required
2700
- // oauth required
2701
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2702
- localVarHeaderParameter['Content-Type'] = 'application/json';
2703
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2704
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2705
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2706
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPaymentLinkCardPaymentRequest, localVarRequestOptions, configuration);
2707
- return {
2708
- url: (0, common_1.toPathString)(localVarUrlObj),
2709
- options: localVarRequestOptions,
2710
- };
2711
- }),
2712
- /**
2713
- * CREATE Mandate for payment link
2714
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
2715
- * @param {*} [options] Override http request option.
2716
- * @throws {RequiredError}
2717
- */
2718
- createPaymentLinkMandate: (createPaymentLinkMandateRequest_1, ...args_1) => __awaiter(this, [createPaymentLinkMandateRequest_1, ...args_1], void 0, function* (createPaymentLinkMandateRequest, options = {}) {
2719
- // verify required parameter 'createPaymentLinkMandateRequest' is not null or undefined
2720
- (0, common_1.assertParamExists)('createPaymentLinkMandate', 'createPaymentLinkMandateRequest', createPaymentLinkMandateRequest);
2721
- const localVarPath = `/payment_links/mandates`;
2722
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2723
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2724
- let baseOptions;
2725
- if (configuration) {
2726
- baseOptions = configuration.baseOptions;
2727
- }
2728
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2729
- const localVarHeaderParameter = {};
2730
- const localVarQueryParameter = {};
2731
- // authentication Oauth2 required
2732
- // oauth required
2733
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2734
- localVarHeaderParameter['Content-Type'] = 'application/json';
2735
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2736
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2737
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2738
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPaymentLinkMandateRequest, localVarRequestOptions, configuration);
2739
- return {
2740
- url: (0, common_1.toPathString)(localVarUrlObj),
2741
- options: localVarRequestOptions,
2742
- };
2743
- }),
2744
2650
  /**
2745
2651
  * Create a Payment Method for a user
2746
2652
  * @param {string} paymentUserId Payment User ID
@@ -3717,20 +3623,6 @@ const DefaultApiFp = function (configuration) {
3717
3623
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3718
3624
  });
3719
3625
  },
3720
- /**
3721
- * Create token for fps flow
3722
- * @param {*} [options] Override http request option.
3723
- * @throws {RequiredError}
3724
- */
3725
- createFpsToken(options) {
3726
- return __awaiter(this, void 0, void 0, function* () {
3727
- var _a, _b, _c;
3728
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createFpsToken(options);
3729
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3730
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.createFpsToken']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
3731
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3732
- });
3733
- },
3734
3626
  /**
3735
3627
  * Create mandate for an existing sender account
3736
3628
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -3762,36 +3654,6 @@ const DefaultApiFp = function (configuration) {
3762
3654
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3763
3655
  });
3764
3656
  },
3765
- /**
3766
- * Initiate Card Payment for a Payment Link
3767
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
3768
- * @param {*} [options] Override http request option.
3769
- * @throws {RequiredError}
3770
- */
3771
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
3772
- return __awaiter(this, void 0, void 0, function* () {
3773
- var _a, _b, _c;
3774
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options);
3775
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3776
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.createPaymentLinkCardPayment']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
3777
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3778
- });
3779
- },
3780
- /**
3781
- * CREATE Mandate for payment link
3782
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
3783
- * @param {*} [options] Override http request option.
3784
- * @throws {RequiredError}
3785
- */
3786
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
3787
- return __awaiter(this, void 0, void 0, function* () {
3788
- var _a, _b, _c;
3789
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createPaymentLinkMandate(createPaymentLinkMandateRequest, options);
3790
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3791
- const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['DefaultApi.createPaymentLinkMandate']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
3792
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3793
- });
3794
- },
3795
3657
  /**
3796
3658
  * Create a Payment Method for a user
3797
3659
  * @param {string} paymentUserId Payment User ID
@@ -4241,14 +4103,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
4241
4103
  confirmPayment(options) {
4242
4104
  return localVarFp.confirmPayment(options).then((request) => request(axios, basePath));
4243
4105
  },
4244
- /**
4245
- * Create token for fps flow
4246
- * @param {*} [options] Override http request option.
4247
- * @throws {RequiredError}
4248
- */
4249
- createFpsToken(options) {
4250
- return localVarFp.createFpsToken(options).then((request) => request(axios, basePath));
4251
- },
4252
4106
  /**
4253
4107
  * Create mandate for an existing sender account
4254
4108
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -4272,28 +4126,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
4272
4126
  .createPaymentLink(createPaymentLinkRequest, options)
4273
4127
  .then((request) => request(axios, basePath));
4274
4128
  },
4275
- /**
4276
- * Initiate Card Payment for a Payment Link
4277
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
4278
- * @param {*} [options] Override http request option.
4279
- * @throws {RequiredError}
4280
- */
4281
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
4282
- return localVarFp
4283
- .createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options)
4284
- .then((request) => request(axios, basePath));
4285
- },
4286
- /**
4287
- * CREATE Mandate for payment link
4288
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
4289
- * @param {*} [options] Override http request option.
4290
- * @throws {RequiredError}
4291
- */
4292
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
4293
- return localVarFp
4294
- .createPaymentLinkMandate(createPaymentLinkMandateRequest, options)
4295
- .then((request) => request(axios, basePath));
4296
- },
4297
4129
  /**
4298
4130
  * Create a Payment Method for a user
4299
4131
  * @param {string} paymentUserId Payment User ID
@@ -4641,17 +4473,6 @@ class DefaultApi extends base_1.BaseAPI {
4641
4473
  .confirmPayment(options)
4642
4474
  .then((request) => request(this.axios, this.basePath));
4643
4475
  }
4644
- /**
4645
- * Create token for fps flow
4646
- * @param {*} [options] Override http request option.
4647
- * @throws {RequiredError}
4648
- * @memberof DefaultApi
4649
- */
4650
- createFpsToken(options) {
4651
- return (0, exports.DefaultApiFp)(this.configuration)
4652
- .createFpsToken(options)
4653
- .then((request) => request(this.axios, this.basePath));
4654
- }
4655
4476
  /**
4656
4477
  * Create mandate for an existing sender account
4657
4478
  * @param {string} idempotencyKey A random key provided by the customer, per unique payment. The purpose for the Idempotency key is to allow safe retrying without the operation being performed multiple times.
@@ -4677,30 +4498,6 @@ class DefaultApi extends base_1.BaseAPI {
4677
4498
  .createPaymentLink(createPaymentLinkRequest, options)
4678
4499
  .then((request) => request(this.axios, this.basePath));
4679
4500
  }
4680
- /**
4681
- * Initiate Card Payment for a Payment Link
4682
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
4683
- * @param {*} [options] Override http request option.
4684
- * @throws {RequiredError}
4685
- * @memberof DefaultApi
4686
- */
4687
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
4688
- return (0, exports.DefaultApiFp)(this.configuration)
4689
- .createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options)
4690
- .then((request) => request(this.axios, this.basePath));
4691
- }
4692
- /**
4693
- * CREATE Mandate for payment link
4694
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
4695
- * @param {*} [options] Override http request option.
4696
- * @throws {RequiredError}
4697
- * @memberof DefaultApi
4698
- */
4699
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
4700
- return (0, exports.DefaultApiFp)(this.configuration)
4701
- .createPaymentLinkMandate(createPaymentLinkMandateRequest, options)
4702
- .then((request) => request(this.axios, this.basePath));
4703
- }
4704
4501
  /**
4705
4502
  * Create a Payment Method for a user
4706
4503
  * @param {string} paymentUserId Payment User ID
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@finverse/sdk-typescript",
3
- "version": "0.0.337",
3
+ "version": "0.0.339",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {