@finverse/sdk-typescript 0.0.338 → 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 +0 -188
  2. package/dist/api.js +3 -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
@@ -10021,12 +9939,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
10021
9939
  * @throws {RequiredError}
10022
9940
  */
10023
9941
  confirmPayment: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10024
- /**
10025
- * Create token for fps flow
10026
- * @param {*} [options] Override http request option.
10027
- * @throws {RequiredError}
10028
- */
10029
- createFpsToken: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10030
9942
  /**
10031
9943
  * Create mandate for an existing sender account
10032
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.
@@ -10042,20 +9954,6 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
10042
9954
  * @throws {RequiredError}
10043
9955
  */
10044
9956
  createPaymentLink: (createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10045
- /**
10046
- * Initiate Card Payment for a Payment Link
10047
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10048
- * @param {*} [options] Override http request option.
10049
- * @throws {RequiredError}
10050
- */
10051
- createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10052
- /**
10053
- * CREATE Mandate for payment link
10054
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10055
- * @param {*} [options] Override http request option.
10056
- * @throws {RequiredError}
10057
- */
10058
- createPaymentLinkMandate: (createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
10059
9957
  /**
10060
9958
  * Create a Payment Method for a user
10061
9959
  * @param {string} paymentUserId Payment User ID
@@ -10301,12 +10199,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
10301
10199
  * @throws {RequiredError}
10302
10200
  */
10303
10201
  confirmPayment(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ConfirmPaymentResponse>>;
10304
- /**
10305
- * Create token for fps flow
10306
- * @param {*} [options] Override http request option.
10307
- * @throws {RequiredError}
10308
- */
10309
- createFpsToken(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateFpsTokenResponse>>;
10310
10202
  /**
10311
10203
  * Create mandate for an existing sender account
10312
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.
@@ -10322,20 +10214,6 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
10322
10214
  * @throws {RequiredError}
10323
10215
  */
10324
10216
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentLinkResponse>>;
10325
- /**
10326
- * Initiate Card Payment for a Payment Link
10327
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10328
- * @param {*} [options] Override http request option.
10329
- * @throws {RequiredError}
10330
- */
10331
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentLinkCardPaymentResponse>>;
10332
- /**
10333
- * CREATE Mandate for payment link
10334
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10335
- * @param {*} [options] Override http request option.
10336
- * @throws {RequiredError}
10337
- */
10338
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentLinkMandateResponse>>;
10339
10217
  /**
10340
10218
  * Create a Payment Method for a user
10341
10219
  * @param {string} paymentUserId Payment User ID
@@ -10581,12 +10459,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10581
10459
  * @throws {RequiredError}
10582
10460
  */
10583
10461
  confirmPayment(options?: RawAxiosRequestConfig): AxiosPromise<ConfirmPaymentResponse>;
10584
- /**
10585
- * Create token for fps flow
10586
- * @param {*} [options] Override http request option.
10587
- * @throws {RequiredError}
10588
- */
10589
- createFpsToken(options?: RawAxiosRequestConfig): AxiosPromise<CreateFpsTokenResponse>;
10590
10462
  /**
10591
10463
  * Create mandate for an existing sender account
10592
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.
@@ -10602,20 +10474,6 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
10602
10474
  * @throws {RequiredError}
10603
10475
  */
10604
10476
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
10605
- /**
10606
- * Initiate Card Payment for a Payment Link
10607
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10608
- * @param {*} [options] Override http request option.
10609
- * @throws {RequiredError}
10610
- */
10611
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
10612
- /**
10613
- * CREATE Mandate for payment link
10614
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10615
- * @param {*} [options] Override http request option.
10616
- * @throws {RequiredError}
10617
- */
10618
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkMandateResponse>;
10619
10477
  /**
10620
10478
  * Create a Payment Method for a user
10621
10479
  * @param {string} paymentUserId Payment User ID
@@ -10868,13 +10726,6 @@ export interface DefaultApiInterface {
10868
10726
  * @memberof DefaultApiInterface
10869
10727
  */
10870
10728
  confirmPayment(options?: RawAxiosRequestConfig): AxiosPromise<ConfirmPaymentResponse>;
10871
- /**
10872
- * Create token for fps flow
10873
- * @param {*} [options] Override http request option.
10874
- * @throws {RequiredError}
10875
- * @memberof DefaultApiInterface
10876
- */
10877
- createFpsToken(options?: RawAxiosRequestConfig): AxiosPromise<CreateFpsTokenResponse>;
10878
10729
  /**
10879
10730
  * Create mandate for an existing sender account
10880
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.
@@ -10892,22 +10743,6 @@ export interface DefaultApiInterface {
10892
10743
  * @memberof DefaultApiInterface
10893
10744
  */
10894
10745
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
10895
- /**
10896
- * Initiate Card Payment for a Payment Link
10897
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
10898
- * @param {*} [options] Override http request option.
10899
- * @throws {RequiredError}
10900
- * @memberof DefaultApiInterface
10901
- */
10902
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
10903
- /**
10904
- * CREATE Mandate for payment link
10905
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
10906
- * @param {*} [options] Override http request option.
10907
- * @throws {RequiredError}
10908
- * @memberof DefaultApiInterface
10909
- */
10910
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkMandateResponse>;
10911
10746
  /**
10912
10747
  * Create a Payment Method for a user
10913
10748
  * @param {string} paymentUserId Payment User ID
@@ -11184,13 +11019,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
11184
11019
  * @memberof DefaultApi
11185
11020
  */
11186
11021
  confirmPayment(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ConfirmPaymentResponse, any, {}>>;
11187
- /**
11188
- * Create token for fps flow
11189
- * @param {*} [options] Override http request option.
11190
- * @throws {RequiredError}
11191
- * @memberof DefaultApi
11192
- */
11193
- createFpsToken(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateFpsTokenResponse, any, {}>>;
11194
11022
  /**
11195
11023
  * Create mandate for an existing sender account
11196
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.
@@ -11208,22 +11036,6 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
11208
11036
  * @memberof DefaultApi
11209
11037
  */
11210
11038
  createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
11211
- /**
11212
- * Initiate Card Payment for a Payment Link
11213
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
11214
- * @param {*} [options] Override http request option.
11215
- * @throws {RequiredError}
11216
- * @memberof DefaultApi
11217
- */
11218
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkCardPaymentResponse, any, {}>>;
11219
- /**
11220
- * CREATE Mandate for payment link
11221
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
11222
- * @param {*} [options] Override http request option.
11223
- * @throws {RequiredError}
11224
- * @memberof DefaultApi
11225
- */
11226
- createPaymentLinkMandate(createPaymentLinkMandateRequest: CreatePaymentLinkMandateRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkMandateResponse, any, {}>>;
11227
11039
  /**
11228
11040
  * Create a Payment Method for a user
11229
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',
@@ -2581,33 +2577,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2581
2577
  options: localVarRequestOptions,
2582
2578
  };
2583
2579
  }),
2584
- /**
2585
- * Create token for fps flow
2586
- * @param {*} [options] Override http request option.
2587
- * @throws {RequiredError}
2588
- */
2589
- createFpsToken: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
2590
- const localVarPath = `/payment_links/fps/token`;
2591
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2592
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2593
- let baseOptions;
2594
- if (configuration) {
2595
- baseOptions = configuration.baseOptions;
2596
- }
2597
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2598
- const localVarHeaderParameter = {};
2599
- const localVarQueryParameter = {};
2600
- // authentication Oauth2 required
2601
- // oauth required
2602
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2603
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2604
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2605
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2606
- return {
2607
- url: (0, common_1.toPathString)(localVarUrlObj),
2608
- options: localVarRequestOptions,
2609
- };
2610
- }),
2611
2580
  /**
2612
2581
  * Create mandate for an existing sender account
2613
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.
@@ -2678,70 +2647,6 @@ const DefaultApiAxiosParamCreator = function (configuration) {
2678
2647
  options: localVarRequestOptions,
2679
2648
  };
2680
2649
  }),
2681
- /**
2682
- * Initiate Card Payment for a Payment Link
2683
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
2684
- * @param {*} [options] Override http request option.
2685
- * @throws {RequiredError}
2686
- */
2687
- createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest_1, ...args_1) => __awaiter(this, [createPaymentLinkCardPaymentRequest_1, ...args_1], void 0, function* (createPaymentLinkCardPaymentRequest, options = {}) {
2688
- // verify required parameter 'createPaymentLinkCardPaymentRequest' is not null or undefined
2689
- (0, common_1.assertParamExists)('createPaymentLinkCardPayment', 'createPaymentLinkCardPaymentRequest', createPaymentLinkCardPaymentRequest);
2690
- const localVarPath = `/payment_links/card`;
2691
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2692
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2693
- let baseOptions;
2694
- if (configuration) {
2695
- baseOptions = configuration.baseOptions;
2696
- }
2697
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2698
- const localVarHeaderParameter = {};
2699
- const localVarQueryParameter = {};
2700
- // authentication Oauth2 required
2701
- // oauth required
2702
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2703
- localVarHeaderParameter['Content-Type'] = 'application/json';
2704
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2705
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2706
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2707
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPaymentLinkCardPaymentRequest, localVarRequestOptions, configuration);
2708
- return {
2709
- url: (0, common_1.toPathString)(localVarUrlObj),
2710
- options: localVarRequestOptions,
2711
- };
2712
- }),
2713
- /**
2714
- * CREATE Mandate for payment link
2715
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
2716
- * @param {*} [options] Override http request option.
2717
- * @throws {RequiredError}
2718
- */
2719
- createPaymentLinkMandate: (createPaymentLinkMandateRequest_1, ...args_1) => __awaiter(this, [createPaymentLinkMandateRequest_1, ...args_1], void 0, function* (createPaymentLinkMandateRequest, options = {}) {
2720
- // verify required parameter 'createPaymentLinkMandateRequest' is not null or undefined
2721
- (0, common_1.assertParamExists)('createPaymentLinkMandate', 'createPaymentLinkMandateRequest', createPaymentLinkMandateRequest);
2722
- const localVarPath = `/payment_links/mandates`;
2723
- // use dummy base URL string because the URL constructor only accepts absolute URLs.
2724
- const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
2725
- let baseOptions;
2726
- if (configuration) {
2727
- baseOptions = configuration.baseOptions;
2728
- }
2729
- const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
2730
- const localVarHeaderParameter = {};
2731
- const localVarQueryParameter = {};
2732
- // authentication Oauth2 required
2733
- // oauth required
2734
- yield (0, common_1.setOAuthToObject)(localVarHeaderParameter, 'Oauth2', [], configuration);
2735
- localVarHeaderParameter['Content-Type'] = 'application/json';
2736
- (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2737
- let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2738
- localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2739
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(createPaymentLinkMandateRequest, localVarRequestOptions, configuration);
2740
- return {
2741
- url: (0, common_1.toPathString)(localVarUrlObj),
2742
- options: localVarRequestOptions,
2743
- };
2744
- }),
2745
2650
  /**
2746
2651
  * Create a Payment Method for a user
2747
2652
  * @param {string} paymentUserId Payment User ID
@@ -3718,20 +3623,6 @@ const DefaultApiFp = function (configuration) {
3718
3623
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3719
3624
  });
3720
3625
  },
3721
- /**
3722
- * Create token for fps flow
3723
- * @param {*} [options] Override http request option.
3724
- * @throws {RequiredError}
3725
- */
3726
- createFpsToken(options) {
3727
- return __awaiter(this, void 0, void 0, function* () {
3728
- var _a, _b, _c;
3729
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createFpsToken(options);
3730
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3731
- 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;
3732
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3733
- });
3734
- },
3735
3626
  /**
3736
3627
  * Create mandate for an existing sender account
3737
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.
@@ -3763,36 +3654,6 @@ const DefaultApiFp = function (configuration) {
3763
3654
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3764
3655
  });
3765
3656
  },
3766
- /**
3767
- * Initiate Card Payment for a Payment Link
3768
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
3769
- * @param {*} [options] Override http request option.
3770
- * @throws {RequiredError}
3771
- */
3772
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
3773
- return __awaiter(this, void 0, void 0, function* () {
3774
- var _a, _b, _c;
3775
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options);
3776
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3777
- 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;
3778
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3779
- });
3780
- },
3781
- /**
3782
- * CREATE Mandate for payment link
3783
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
3784
- * @param {*} [options] Override http request option.
3785
- * @throws {RequiredError}
3786
- */
3787
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
3788
- return __awaiter(this, void 0, void 0, function* () {
3789
- var _a, _b, _c;
3790
- const localVarAxiosArgs = yield localVarAxiosParamCreator.createPaymentLinkMandate(createPaymentLinkMandateRequest, options);
3791
- const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
3792
- 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;
3793
- return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3794
- });
3795
- },
3796
3657
  /**
3797
3658
  * Create a Payment Method for a user
3798
3659
  * @param {string} paymentUserId Payment User ID
@@ -4242,14 +4103,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
4242
4103
  confirmPayment(options) {
4243
4104
  return localVarFp.confirmPayment(options).then((request) => request(axios, basePath));
4244
4105
  },
4245
- /**
4246
- * Create token for fps flow
4247
- * @param {*} [options] Override http request option.
4248
- * @throws {RequiredError}
4249
- */
4250
- createFpsToken(options) {
4251
- return localVarFp.createFpsToken(options).then((request) => request(axios, basePath));
4252
- },
4253
4106
  /**
4254
4107
  * Create mandate for an existing sender account
4255
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.
@@ -4273,28 +4126,6 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
4273
4126
  .createPaymentLink(createPaymentLinkRequest, options)
4274
4127
  .then((request) => request(axios, basePath));
4275
4128
  },
4276
- /**
4277
- * Initiate Card Payment for a Payment Link
4278
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
4279
- * @param {*} [options] Override http request option.
4280
- * @throws {RequiredError}
4281
- */
4282
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
4283
- return localVarFp
4284
- .createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options)
4285
- .then((request) => request(axios, basePath));
4286
- },
4287
- /**
4288
- * CREATE Mandate for payment link
4289
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
4290
- * @param {*} [options] Override http request option.
4291
- * @throws {RequiredError}
4292
- */
4293
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
4294
- return localVarFp
4295
- .createPaymentLinkMandate(createPaymentLinkMandateRequest, options)
4296
- .then((request) => request(axios, basePath));
4297
- },
4298
4129
  /**
4299
4130
  * Create a Payment Method for a user
4300
4131
  * @param {string} paymentUserId Payment User ID
@@ -4642,17 +4473,6 @@ class DefaultApi extends base_1.BaseAPI {
4642
4473
  .confirmPayment(options)
4643
4474
  .then((request) => request(this.axios, this.basePath));
4644
4475
  }
4645
- /**
4646
- * Create token for fps flow
4647
- * @param {*} [options] Override http request option.
4648
- * @throws {RequiredError}
4649
- * @memberof DefaultApi
4650
- */
4651
- createFpsToken(options) {
4652
- return (0, exports.DefaultApiFp)(this.configuration)
4653
- .createFpsToken(options)
4654
- .then((request) => request(this.axios, this.basePath));
4655
- }
4656
4476
  /**
4657
4477
  * Create mandate for an existing sender account
4658
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.
@@ -4678,30 +4498,6 @@ class DefaultApi extends base_1.BaseAPI {
4678
4498
  .createPaymentLink(createPaymentLinkRequest, options)
4679
4499
  .then((request) => request(this.axios, this.basePath));
4680
4500
  }
4681
- /**
4682
- * Initiate Card Payment for a Payment Link
4683
- * @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
4684
- * @param {*} [options] Override http request option.
4685
- * @throws {RequiredError}
4686
- * @memberof DefaultApi
4687
- */
4688
- createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options) {
4689
- return (0, exports.DefaultApiFp)(this.configuration)
4690
- .createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest, options)
4691
- .then((request) => request(this.axios, this.basePath));
4692
- }
4693
- /**
4694
- * CREATE Mandate for payment link
4695
- * @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
4696
- * @param {*} [options] Override http request option.
4697
- * @throws {RequiredError}
4698
- * @memberof DefaultApi
4699
- */
4700
- createPaymentLinkMandate(createPaymentLinkMandateRequest, options) {
4701
- return (0, exports.DefaultApiFp)(this.configuration)
4702
- .createPaymentLinkMandate(createPaymentLinkMandateRequest, options)
4703
- .then((request) => request(this.axios, this.basePath));
4704
- }
4705
4501
  /**
4706
4502
  * Create a Payment Method for a user
4707
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.338",
3
+ "version": "0.0.339",
4
4
  "description": "OpenAPI client for @finverse/sdk-typescript",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {