@finverse/sdk-typescript 0.0.383 → 0.0.385
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 +37 -7
- package/dist/api.js +7 -3
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1586,7 +1586,7 @@ export interface CreateMandateResponse {
|
|
|
1586
1586
|
*/
|
|
1587
1587
|
fees?: Array<Fee>;
|
|
1588
1588
|
/**
|
|
1589
|
-
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to
|
|
1589
|
+
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
1590
1590
|
* @type {{ [key: string]: string; }}
|
|
1591
1591
|
* @memberof CreateMandateResponse
|
|
1592
1592
|
*/
|
|
@@ -3478,7 +3478,7 @@ export interface GetMandateResponse {
|
|
|
3478
3478
|
*/
|
|
3479
3479
|
error?: FvEmbeddedErrorModel;
|
|
3480
3480
|
/**
|
|
3481
|
-
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to
|
|
3481
|
+
* Additional attributes of the mandate in key:value format (e.g. mandate_internal_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
3482
3482
|
* @type {{ [key: string]: string; }}
|
|
3483
3483
|
* @memberof GetMandateResponse
|
|
3484
3484
|
*/
|
|
@@ -4333,6 +4333,30 @@ export interface JWKSKey {
|
|
|
4333
4333
|
*/
|
|
4334
4334
|
x5c?: Array<string>;
|
|
4335
4335
|
}
|
|
4336
|
+
/**
|
|
4337
|
+
* KCP virtual account metadata
|
|
4338
|
+
* @export
|
|
4339
|
+
* @interface KcpVaMetadata
|
|
4340
|
+
*/
|
|
4341
|
+
export interface KcpVaMetadata {
|
|
4342
|
+
/**
|
|
4343
|
+
* Cash receipt type; \"0\" = income tax deduction (for individuals), \"1\" = proof of expenditure (for businesses)
|
|
4344
|
+
* @type {string}
|
|
4345
|
+
* @memberof KcpVaMetadata
|
|
4346
|
+
*/
|
|
4347
|
+
va_receipt_gubn: KcpVaMetadataVaReceiptGubnEnum;
|
|
4348
|
+
/**
|
|
4349
|
+
* ID number for cash receipt issuance
|
|
4350
|
+
* @type {string}
|
|
4351
|
+
* @memberof KcpVaMetadata
|
|
4352
|
+
*/
|
|
4353
|
+
va_taxno: string;
|
|
4354
|
+
}
|
|
4355
|
+
export declare const KcpVaMetadataVaReceiptGubnEnum: {
|
|
4356
|
+
readonly _0: "0";
|
|
4357
|
+
readonly _1: "1";
|
|
4358
|
+
};
|
|
4359
|
+
export type KcpVaMetadataVaReceiptGubnEnum = (typeof KcpVaMetadataVaReceiptGubnEnum)[keyof typeof KcpVaMetadataVaReceiptGubnEnum];
|
|
4336
4360
|
/**
|
|
4337
4361
|
*
|
|
4338
4362
|
* @export
|
|
@@ -5824,7 +5848,7 @@ export interface MandateSenderAccount {
|
|
|
5824
5848
|
*/
|
|
5825
5849
|
bank_code?: string;
|
|
5826
5850
|
/**
|
|
5827
|
-
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to
|
|
5851
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
5828
5852
|
* @type {{ [key: string]: string; }}
|
|
5829
5853
|
* @memberof MandateSenderAccount
|
|
5830
5854
|
*/
|
|
@@ -6097,7 +6121,7 @@ export interface PaymentAccountDetails {
|
|
|
6097
6121
|
*/
|
|
6098
6122
|
legal_entity_name?: string;
|
|
6099
6123
|
/**
|
|
6100
|
-
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to
|
|
6124
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
6101
6125
|
* @type {{ [key: string]: string; }}
|
|
6102
6126
|
* @memberof PaymentAccountDetails
|
|
6103
6127
|
*/
|
|
@@ -6213,7 +6237,7 @@ export interface PaymentAccountDetailsWithEnrichedData {
|
|
|
6213
6237
|
*/
|
|
6214
6238
|
legal_entity_name?: string;
|
|
6215
6239
|
/**
|
|
6216
|
-
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to
|
|
6240
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
6217
6241
|
* @type {{ [key: string]: string; }}
|
|
6218
6242
|
* @memberof PaymentAccountDetailsWithEnrichedData
|
|
6219
6243
|
*/
|
|
@@ -6598,7 +6622,7 @@ export interface PaymentLinkResponse {
|
|
|
6598
6622
|
*/
|
|
6599
6623
|
payment_setup_options?: PaymentSetupOptions;
|
|
6600
6624
|
/**
|
|
6601
|
-
* Additional attributes of the payment link in key:value format (e.g. payment_id: 1234). It supports up to
|
|
6625
|
+
* Additional attributes of the payment link in key:value format (e.g. payment_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
6602
6626
|
* @type {{ [key: string]: string; }}
|
|
6603
6627
|
* @memberof PaymentLinkResponse
|
|
6604
6628
|
*/
|
|
@@ -7470,7 +7494,7 @@ export interface PaymentResponse {
|
|
|
7470
7494
|
*/
|
|
7471
7495
|
created_at?: string;
|
|
7472
7496
|
/**
|
|
7473
|
-
* Additional attributes of the payment in key:value format (e.g. payment_internal_id: 1234). It supports up to
|
|
7497
|
+
* Additional attributes of the payment in key:value format (e.g. payment_internal_id: 1234). It supports up to 20 key:value pairs, whereas the key and value supports up to 50 and 1000 characters respectively.
|
|
7474
7498
|
* @type {{ [key: string]: string; }}
|
|
7475
7499
|
* @memberof PaymentResponse
|
|
7476
7500
|
*/
|
|
@@ -8871,6 +8895,12 @@ export interface SelectPaymentMethodRequest {
|
|
|
8871
8895
|
* @memberof SelectPaymentMethodRequest
|
|
8872
8896
|
*/
|
|
8873
8897
|
institution_id?: string;
|
|
8898
|
+
/**
|
|
8899
|
+
*
|
|
8900
|
+
* @type {KcpVaMetadata}
|
|
8901
|
+
* @memberof SelectPaymentMethodRequest
|
|
8902
|
+
*/
|
|
8903
|
+
kcp_va_metadata?: KcpVaMetadata;
|
|
8874
8904
|
}
|
|
8875
8905
|
export declare const SelectPaymentMethodRequestPaymentMethodTypeEnum: {
|
|
8876
8906
|
readonly Mandate: "MANDATE";
|
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.
|
|
26
|
-
exports.
|
|
27
|
-
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.ListBillsStatusesEnum = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = void 0;
|
|
25
|
+
exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.KcpVaMetadataVaReceiptGubnEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.IntegrationMetadataPaymentUserRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBillResponseStatusEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardDetailsFundingEnum = exports.FVCardStatusEnum = exports.FVBillStatusEnum = exports.DisputeResponseDisputeStatusEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestCardDetailsFundingEnum = 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.LinkApiFactory = exports.LinkApiFp = exports.LinkApiAxiosParamCreator = exports.ListInstitutionsInstitutionTypeEnum = 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.PaymentMethodIntegrationMetadataGocardlessMetadataFundsSettlementEnum = exports.PaymentMethodIntegrationMetadataGocardlessMetadataStatusEnum = exports.PaymentMethodIntegrationMetadataAdyenMetadataRecurringProcessingModelEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseTypeEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsWithEnrichedDataAccountTypeEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = void 0;
|
|
27
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.ListPayoutsPayoutTypesEnum = exports.ListPayoutsStatusesEnum = exports.ListPaymentsPaymentTypesEnum = exports.ListPaymentsPaymentTypeEnum = exports.ListPaymentsSenderTypeEnum = exports.ListPaymentsStatusesEnum = exports.ListPaymentAccountsWithEnrichedDataAccountTypeEnum = exports.ListMandatesSenderTypeEnum = exports.ListMandatesStatusesEnum = exports.ListDisputesStatusesEnum = exports.ListDetokenizedMandatesSenderTypeEnum = exports.ListDetokenizedMandatesStatusesEnum = exports.ListBillsStatusesEnum = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.GetBalanceHistorySourceEnum = exports.LoginIdentityApi = exports.LoginIdentityApiFactory = exports.LoginIdentityApiFp = exports.LoginIdentityApiAxiosParamCreator = exports.TokenGrantTypeEnum = exports.LinkApi = void 0;
|
|
28
28
|
const axios_1 = require("axios");
|
|
29
29
|
// Some imports not used depending on template conditions
|
|
30
30
|
// @ts-ignore
|
|
@@ -256,6 +256,10 @@ exports.IntegrationMetadataRequestIntegrationIdEnum = {
|
|
|
256
256
|
exports.IntegrationMetadataResponseIntegrationIdEnum = {
|
|
257
257
|
Rapidstor: 'RAPIDSTOR',
|
|
258
258
|
};
|
|
259
|
+
exports.KcpVaMetadataVaReceiptGubnEnum = {
|
|
260
|
+
_0: '0',
|
|
261
|
+
_1: '1',
|
|
262
|
+
};
|
|
259
263
|
exports.LineItemItemTypeEnum = {
|
|
260
264
|
AmountDue: 'AMOUNT_DUE',
|
|
261
265
|
Surcharge: 'SURCHARGE',
|