@finverse/sdk-typescript 0.0.322 → 0.0.324
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 +24 -11
- package/dist/api.js +14 -6
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1520,7 +1520,7 @@ export interface CreatePaymentLinkCardPaymentRequest {
|
|
|
1520
1520
|
* @type {boolean}
|
|
1521
1521
|
* @memberof CreatePaymentLinkCardPaymentRequest
|
|
1522
1522
|
*/
|
|
1523
|
-
is_mobile
|
|
1523
|
+
is_mobile: boolean;
|
|
1524
1524
|
}
|
|
1525
1525
|
/**
|
|
1526
1526
|
*
|
|
@@ -5963,6 +5963,12 @@ export interface PaymentFvLinkResponse {
|
|
|
5963
5963
|
* @memberof PaymentFvLinkResponse
|
|
5964
5964
|
*/
|
|
5965
5965
|
status?: PaymentFvLinkResponseStatusEnum;
|
|
5966
|
+
/**
|
|
5967
|
+
*
|
|
5968
|
+
* @type {string}
|
|
5969
|
+
* @memberof PaymentFvLinkResponse
|
|
5970
|
+
*/
|
|
5971
|
+
type?: PaymentFvLinkResponseTypeEnum;
|
|
5966
5972
|
/**
|
|
5967
5973
|
*
|
|
5968
5974
|
* @type {PaymentFvLinkDetails}
|
|
@@ -5988,6 +5994,13 @@ export declare const PaymentFvLinkResponseStatusEnum: {
|
|
|
5988
5994
|
readonly Created: "CREATED";
|
|
5989
5995
|
};
|
|
5990
5996
|
export type PaymentFvLinkResponseStatusEnum = (typeof PaymentFvLinkResponseStatusEnum)[keyof typeof PaymentFvLinkResponseStatusEnum];
|
|
5997
|
+
export declare const PaymentFvLinkResponseTypeEnum: {
|
|
5998
|
+
readonly Mandate: "MANDATE";
|
|
5999
|
+
readonly Single: "SINGLE";
|
|
6000
|
+
readonly Card: "CARD";
|
|
6001
|
+
readonly Manual: "MANUAL";
|
|
6002
|
+
};
|
|
6003
|
+
export type PaymentFvLinkResponseTypeEnum = (typeof PaymentFvLinkResponseTypeEnum)[keyof typeof PaymentFvLinkResponseTypeEnum];
|
|
5991
6004
|
/**
|
|
5992
6005
|
*
|
|
5993
6006
|
* @export
|
|
@@ -9850,11 +9863,11 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
9850
9863
|
createPaymentLink: (createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9851
9864
|
/**
|
|
9852
9865
|
* Initiate Card Payment for a Payment Link
|
|
9853
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
9866
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
9854
9867
|
* @param {*} [options] Override http request option.
|
|
9855
9868
|
* @throws {RequiredError}
|
|
9856
9869
|
*/
|
|
9857
|
-
createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest
|
|
9870
|
+
createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9858
9871
|
/**
|
|
9859
9872
|
* CREATE Mandate for payment link
|
|
9860
9873
|
* @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
|
|
@@ -10117,11 +10130,11 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
10117
10130
|
createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentLinkResponse>>;
|
|
10118
10131
|
/**
|
|
10119
10132
|
* Initiate Card Payment for a Payment Link
|
|
10120
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
10133
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
10121
10134
|
* @param {*} [options] Override http request option.
|
|
10122
10135
|
* @throws {RequiredError}
|
|
10123
10136
|
*/
|
|
10124
|
-
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest
|
|
10137
|
+
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreatePaymentLinkCardPaymentResponse>>;
|
|
10125
10138
|
/**
|
|
10126
10139
|
* CREATE Mandate for payment link
|
|
10127
10140
|
* @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
|
|
@@ -10384,11 +10397,11 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
10384
10397
|
createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
|
|
10385
10398
|
/**
|
|
10386
10399
|
* Initiate Card Payment for a Payment Link
|
|
10387
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
10400
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
10388
10401
|
* @param {*} [options] Override http request option.
|
|
10389
10402
|
* @throws {RequiredError}
|
|
10390
10403
|
*/
|
|
10391
|
-
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest
|
|
10404
|
+
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
|
|
10392
10405
|
/**
|
|
10393
10406
|
* CREATE Mandate for payment link
|
|
10394
10407
|
* @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
|
|
@@ -10661,12 +10674,12 @@ export interface DefaultApiInterface {
|
|
|
10661
10674
|
createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
|
|
10662
10675
|
/**
|
|
10663
10676
|
* Initiate Card Payment for a Payment Link
|
|
10664
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
10677
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
10665
10678
|
* @param {*} [options] Override http request option.
|
|
10666
10679
|
* @throws {RequiredError}
|
|
10667
10680
|
* @memberof DefaultApiInterface
|
|
10668
10681
|
*/
|
|
10669
|
-
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest
|
|
10682
|
+
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreatePaymentLinkCardPaymentResponse>;
|
|
10670
10683
|
/**
|
|
10671
10684
|
* CREATE Mandate for payment link
|
|
10672
10685
|
* @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
|
|
@@ -10962,12 +10975,12 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
10962
10975
|
createPaymentLink(createPaymentLinkRequest: CreatePaymentLinkRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse, any, {}>>;
|
|
10963
10976
|
/**
|
|
10964
10977
|
* Initiate Card Payment for a Payment Link
|
|
10965
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
10978
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
10966
10979
|
* @param {*} [options] Override http request option.
|
|
10967
10980
|
* @throws {RequiredError}
|
|
10968
10981
|
* @memberof DefaultApi
|
|
10969
10982
|
*/
|
|
10970
|
-
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest
|
|
10983
|
+
createPaymentLinkCardPayment(createPaymentLinkCardPaymentRequest: CreatePaymentLinkCardPaymentRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreatePaymentLinkCardPaymentResponse, any, {}>>;
|
|
10971
10984
|
/**
|
|
10972
10985
|
* CREATE Mandate for payment link
|
|
10973
10986
|
* @param {CreatePaymentLinkMandateRequest} createPaymentLinkMandateRequest request body for creating mandate for payment-link
|
package/dist/api.js
CHANGED
|
@@ -23,8 +23,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
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.
|
|
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 = void 0;
|
|
26
|
+
exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = 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.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.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 = void 0;
|
|
28
28
|
const axios_1 = require("axios");
|
|
29
29
|
// Some imports not used depending on template conditions
|
|
30
30
|
// @ts-ignore
|
|
@@ -316,6 +316,12 @@ exports.PaymentFvLinkResponseStatusEnum = {
|
|
|
316
316
|
Cancelled: 'CANCELLED',
|
|
317
317
|
Created: 'CREATED',
|
|
318
318
|
};
|
|
319
|
+
exports.PaymentFvLinkResponseTypeEnum = {
|
|
320
|
+
Mandate: 'MANDATE',
|
|
321
|
+
Single: 'SINGLE',
|
|
322
|
+
Card: 'CARD',
|
|
323
|
+
Manual: 'MANUAL',
|
|
324
|
+
};
|
|
319
325
|
exports.PaymentInfoPaymentsSupportedEnum = {
|
|
320
326
|
Mandate: 'MANDATE',
|
|
321
327
|
DebitAuthorization: 'DEBIT_AUTHORIZATION',
|
|
@@ -2657,11 +2663,13 @@ const DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2657
2663
|
}),
|
|
2658
2664
|
/**
|
|
2659
2665
|
* Initiate Card Payment for a Payment Link
|
|
2660
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
2666
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
2661
2667
|
* @param {*} [options] Override http request option.
|
|
2662
2668
|
* @throws {RequiredError}
|
|
2663
2669
|
*/
|
|
2664
2670
|
createPaymentLinkCardPayment: (createPaymentLinkCardPaymentRequest_1, ...args_1) => __awaiter(this, [createPaymentLinkCardPaymentRequest_1, ...args_1], void 0, function* (createPaymentLinkCardPaymentRequest, options = {}) {
|
|
2671
|
+
// verify required parameter 'createPaymentLinkCardPaymentRequest' is not null or undefined
|
|
2672
|
+
(0, common_1.assertParamExists)('createPaymentLinkCardPayment', 'createPaymentLinkCardPaymentRequest', createPaymentLinkCardPaymentRequest);
|
|
2665
2673
|
const localVarPath = `/payment_links/card`;
|
|
2666
2674
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2667
2675
|
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
@@ -3681,7 +3689,7 @@ const DefaultApiFp = function (configuration) {
|
|
|
3681
3689
|
},
|
|
3682
3690
|
/**
|
|
3683
3691
|
* Initiate Card Payment for a Payment Link
|
|
3684
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
3692
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
3685
3693
|
* @param {*} [options] Override http request option.
|
|
3686
3694
|
* @throws {RequiredError}
|
|
3687
3695
|
*/
|
|
@@ -4162,7 +4170,7 @@ const DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
4162
4170
|
},
|
|
4163
4171
|
/**
|
|
4164
4172
|
* Initiate Card Payment for a Payment Link
|
|
4165
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
4173
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
4166
4174
|
* @param {*} [options] Override http request option.
|
|
4167
4175
|
* @throws {RequiredError}
|
|
4168
4176
|
*/
|
|
@@ -4548,7 +4556,7 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
4548
4556
|
}
|
|
4549
4557
|
/**
|
|
4550
4558
|
* Initiate Card Payment for a Payment Link
|
|
4551
|
-
* @param {CreatePaymentLinkCardPaymentRequest}
|
|
4559
|
+
* @param {CreatePaymentLinkCardPaymentRequest} createPaymentLinkCardPaymentRequest request body for initiating card payment for a payment link
|
|
4552
4560
|
* @param {*} [options] Override http request option.
|
|
4553
4561
|
* @throws {RequiredError}
|
|
4554
4562
|
* @memberof DefaultApi
|