@finverse/sdk-typescript 0.0.270 → 0.0.272
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 +67 -0
- package/dist/api.js +68 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -497,6 +497,30 @@ export interface AuthorizeMandateRequest {
|
|
|
497
497
|
*/
|
|
498
498
|
enduser_consent: boolean;
|
|
499
499
|
}
|
|
500
|
+
/**
|
|
501
|
+
*
|
|
502
|
+
* @export
|
|
503
|
+
* @interface AutopayEnrollmentConfiguration
|
|
504
|
+
*/
|
|
505
|
+
export interface AutopayEnrollmentConfiguration {
|
|
506
|
+
/**
|
|
507
|
+
* Indicate whether the autopay enrollment screen should be prompted to the end user
|
|
508
|
+
* @type {boolean}
|
|
509
|
+
* @memberof AutopayEnrollmentConfiguration
|
|
510
|
+
*/
|
|
511
|
+
display_enrollment_screen: boolean;
|
|
512
|
+
/**
|
|
513
|
+
* Indicate what value should be prefilled on the autopay enrollment screen
|
|
514
|
+
* @type {string}
|
|
515
|
+
* @memberof AutopayEnrollmentConfiguration
|
|
516
|
+
*/
|
|
517
|
+
enrollment_prefill_value: AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum;
|
|
518
|
+
}
|
|
519
|
+
export declare const AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum: {
|
|
520
|
+
readonly Yes: "YES";
|
|
521
|
+
readonly No: "NO";
|
|
522
|
+
};
|
|
523
|
+
export declare type AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = (typeof AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum)[keyof typeof AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum];
|
|
500
524
|
/**
|
|
501
525
|
*
|
|
502
526
|
* @export
|
|
@@ -6015,6 +6039,12 @@ export interface PaymentSetupOptions {
|
|
|
6015
6039
|
* @memberof PaymentSetupOptions
|
|
6016
6040
|
*/
|
|
6017
6041
|
recipient_account_filters?: RecipientAccountFilters;
|
|
6042
|
+
/**
|
|
6043
|
+
*
|
|
6044
|
+
* @type {AutopayEnrollmentConfiguration}
|
|
6045
|
+
* @memberof PaymentSetupOptions
|
|
6046
|
+
*/
|
|
6047
|
+
autopay_enrollment_configurations?: AutopayEnrollmentConfiguration;
|
|
6018
6048
|
}
|
|
6019
6049
|
export declare const PaymentSetupOptionsFuturePaymentsEnum: {
|
|
6020
6050
|
readonly Autopay: "AUTOPAY";
|
|
@@ -8686,6 +8716,13 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8686
8716
|
* @throws {RequiredError}
|
|
8687
8717
|
*/
|
|
8688
8718
|
getPaymentLink: (paymentLinkId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8719
|
+
/**
|
|
8720
|
+
* Get a payment method
|
|
8721
|
+
* @param {string} paymentMethodId
|
|
8722
|
+
* @param {*} [options] Override http request option.
|
|
8723
|
+
* @throws {RequiredError}
|
|
8724
|
+
*/
|
|
8725
|
+
getPaymentMethod: (paymentMethodId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8689
8726
|
/**
|
|
8690
8727
|
* Get payment method in payment link flow
|
|
8691
8728
|
* @param {*} [options] Override http request option.
|
|
@@ -8907,6 +8944,13 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8907
8944
|
* @throws {RequiredError}
|
|
8908
8945
|
*/
|
|
8909
8946
|
getPaymentLink(paymentLinkId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentLinkResponse>>;
|
|
8947
|
+
/**
|
|
8948
|
+
* Get a payment method
|
|
8949
|
+
* @param {string} paymentMethodId
|
|
8950
|
+
* @param {*} [options] Override http request option.
|
|
8951
|
+
* @throws {RequiredError}
|
|
8952
|
+
*/
|
|
8953
|
+
getPaymentMethod(paymentMethodId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentMethodResponse>>;
|
|
8910
8954
|
/**
|
|
8911
8955
|
* Get payment method in payment link flow
|
|
8912
8956
|
* @param {*} [options] Override http request option.
|
|
@@ -9128,6 +9172,13 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9128
9172
|
* @throws {RequiredError}
|
|
9129
9173
|
*/
|
|
9130
9174
|
getPaymentLink(paymentLinkId: string, options?: any): AxiosPromise<PaymentLinkResponse>;
|
|
9175
|
+
/**
|
|
9176
|
+
* Get a payment method
|
|
9177
|
+
* @param {string} paymentMethodId
|
|
9178
|
+
* @param {*} [options] Override http request option.
|
|
9179
|
+
* @throws {RequiredError}
|
|
9180
|
+
*/
|
|
9181
|
+
getPaymentMethod(paymentMethodId: string, options?: any): AxiosPromise<PaymentMethodResponse>;
|
|
9131
9182
|
/**
|
|
9132
9183
|
* Get payment method in payment link flow
|
|
9133
9184
|
* @param {*} [options] Override http request option.
|
|
@@ -9367,6 +9418,14 @@ export interface DefaultApiInterface {
|
|
|
9367
9418
|
* @memberof DefaultApiInterface
|
|
9368
9419
|
*/
|
|
9369
9420
|
getPaymentLink(paymentLinkId: string, options?: AxiosRequestConfig): AxiosPromise<PaymentLinkResponse>;
|
|
9421
|
+
/**
|
|
9422
|
+
* Get a payment method
|
|
9423
|
+
* @param {string} paymentMethodId
|
|
9424
|
+
* @param {*} [options] Override http request option.
|
|
9425
|
+
* @throws {RequiredError}
|
|
9426
|
+
* @memberof DefaultApiInterface
|
|
9427
|
+
*/
|
|
9428
|
+
getPaymentMethod(paymentMethodId: string, options?: AxiosRequestConfig): AxiosPromise<PaymentMethodResponse>;
|
|
9370
9429
|
/**
|
|
9371
9430
|
* Get payment method in payment link flow
|
|
9372
9431
|
* @param {*} [options] Override http request option.
|
|
@@ -9618,6 +9677,14 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
9618
9677
|
* @memberof DefaultApi
|
|
9619
9678
|
*/
|
|
9620
9679
|
getPaymentLink(paymentLinkId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentLinkResponse>>;
|
|
9680
|
+
/**
|
|
9681
|
+
* Get a payment method
|
|
9682
|
+
* @param {string} paymentMethodId
|
|
9683
|
+
* @param {*} [options] Override http request option.
|
|
9684
|
+
* @throws {RequiredError}
|
|
9685
|
+
* @memberof DefaultApi
|
|
9686
|
+
*/
|
|
9687
|
+
getPaymentMethod(paymentMethodId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodResponse>>;
|
|
9621
9688
|
/**
|
|
9622
9689
|
* Get payment method in payment link flow
|
|
9623
9690
|
* @param {*} [options] Override http request option.
|
package/dist/api.js
CHANGED
|
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = 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.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsAccountTypeEnum = 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.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
25
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.LinkApi = exports.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = 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.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsAccountTypeEnum = 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.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = exports.CardFvLinkResponseStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = exports.AccountTypeSubtypeEnum = exports.AccountTypeTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -71,6 +71,10 @@ exports.AuthChecklistOptionsSubmittedByEnum = {
|
|
|
71
71
|
CustomerApp: 'CUSTOMER_APP',
|
|
72
72
|
FinverseLink: 'FINVERSE_LINK',
|
|
73
73
|
};
|
|
74
|
+
exports.AutopayEnrollmentConfigurationEnrollmentPrefillValueEnum = {
|
|
75
|
+
Yes: 'YES',
|
|
76
|
+
No: 'NO',
|
|
77
|
+
};
|
|
74
78
|
exports.BadRequestModelV2ErrorTypeEnum = {
|
|
75
79
|
LinkError: 'LINK_ERROR',
|
|
76
80
|
ApiError: 'API_ERROR',
|
|
@@ -2565,6 +2569,36 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2565
2569
|
options: localVarRequestOptions,
|
|
2566
2570
|
};
|
|
2567
2571
|
}),
|
|
2572
|
+
/**
|
|
2573
|
+
* Get a payment method
|
|
2574
|
+
* @param {string} paymentMethodId
|
|
2575
|
+
* @param {*} [options] Override http request option.
|
|
2576
|
+
* @throws {RequiredError}
|
|
2577
|
+
*/
|
|
2578
|
+
getPaymentMethod: (paymentMethodId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2579
|
+
// verify required parameter 'paymentMethodId' is not null or undefined
|
|
2580
|
+
common_1.assertParamExists('getPaymentMethod', 'paymentMethodId', paymentMethodId);
|
|
2581
|
+
const localVarPath = `/payment_methods/{paymentMethodId}`.replace(`{${'paymentMethodId'}}`, encodeURIComponent(String(paymentMethodId)));
|
|
2582
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2583
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2584
|
+
let baseOptions;
|
|
2585
|
+
if (configuration) {
|
|
2586
|
+
baseOptions = configuration.baseOptions;
|
|
2587
|
+
}
|
|
2588
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2589
|
+
const localVarHeaderParameter = {};
|
|
2590
|
+
const localVarQueryParameter = {};
|
|
2591
|
+
// authentication Oauth2 required
|
|
2592
|
+
// oauth required
|
|
2593
|
+
yield common_1.setOAuthToObject(localVarHeaderParameter, 'Oauth2', [], configuration);
|
|
2594
|
+
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2595
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2596
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2597
|
+
return {
|
|
2598
|
+
url: common_1.toPathString(localVarUrlObj),
|
|
2599
|
+
options: localVarRequestOptions,
|
|
2600
|
+
};
|
|
2601
|
+
}),
|
|
2568
2602
|
/**
|
|
2569
2603
|
* Get payment method in payment link flow
|
|
2570
2604
|
* @param {*} [options] Override http request option.
|
|
@@ -3206,6 +3240,18 @@ exports.DefaultApiFp = function (configuration) {
|
|
|
3206
3240
|
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3207
3241
|
});
|
|
3208
3242
|
},
|
|
3243
|
+
/**
|
|
3244
|
+
* Get a payment method
|
|
3245
|
+
* @param {string} paymentMethodId
|
|
3246
|
+
* @param {*} [options] Override http request option.
|
|
3247
|
+
* @throws {RequiredError}
|
|
3248
|
+
*/
|
|
3249
|
+
getPaymentMethod(paymentMethodId, options) {
|
|
3250
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3251
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getPaymentMethod(paymentMethodId, options);
|
|
3252
|
+
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3253
|
+
});
|
|
3254
|
+
},
|
|
3209
3255
|
/**
|
|
3210
3256
|
* Get payment method in payment link flow
|
|
3211
3257
|
* @param {*} [options] Override http request option.
|
|
@@ -3533,6 +3579,15 @@ exports.DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3533
3579
|
getPaymentLink(paymentLinkId, options) {
|
|
3534
3580
|
return localVarFp.getPaymentLink(paymentLinkId, options).then((request) => request(axios, basePath));
|
|
3535
3581
|
},
|
|
3582
|
+
/**
|
|
3583
|
+
* Get a payment method
|
|
3584
|
+
* @param {string} paymentMethodId
|
|
3585
|
+
* @param {*} [options] Override http request option.
|
|
3586
|
+
* @throws {RequiredError}
|
|
3587
|
+
*/
|
|
3588
|
+
getPaymentMethod(paymentMethodId, options) {
|
|
3589
|
+
return localVarFp.getPaymentMethod(paymentMethodId, options).then((request) => request(axios, basePath));
|
|
3590
|
+
},
|
|
3536
3591
|
/**
|
|
3537
3592
|
* Get payment method in payment link flow
|
|
3538
3593
|
* @param {*} [options] Override http request option.
|
|
@@ -3874,6 +3929,18 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3874
3929
|
.getPaymentLink(paymentLinkId, options)
|
|
3875
3930
|
.then((request) => request(this.axios, this.basePath));
|
|
3876
3931
|
}
|
|
3932
|
+
/**
|
|
3933
|
+
* Get a payment method
|
|
3934
|
+
* @param {string} paymentMethodId
|
|
3935
|
+
* @param {*} [options] Override http request option.
|
|
3936
|
+
* @throws {RequiredError}
|
|
3937
|
+
* @memberof DefaultApi
|
|
3938
|
+
*/
|
|
3939
|
+
getPaymentMethod(paymentMethodId, options) {
|
|
3940
|
+
return exports.DefaultApiFp(this.configuration)
|
|
3941
|
+
.getPaymentMethod(paymentMethodId, options)
|
|
3942
|
+
.then((request) => request(this.axios, this.basePath));
|
|
3943
|
+
}
|
|
3877
3944
|
/**
|
|
3878
3945
|
* Get payment method in payment link flow
|
|
3879
3946
|
* @param {*} [options] Override http request option.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.272",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/chai": "^5.0.1",
|
|
25
|
-
"@types/mocha": "^10.0.
|
|
25
|
+
"@types/mocha": "^10.0.10",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^5.1.2",
|