@finverse/sdk-typescript 0.0.73 → 0.0.74
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 +11 -0
- package/dist/api.js +5 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -2020,6 +2020,12 @@ export interface Institution {
|
|
|
2020
2020
|
* @memberof Institution
|
|
2021
2021
|
*/
|
|
2022
2022
|
products_supported: Array<InstitutionProductsSupportedEnum>;
|
|
2023
|
+
/**
|
|
2024
|
+
*
|
|
2025
|
+
* @type {Array<string>}
|
|
2026
|
+
* @memberof Institution
|
|
2027
|
+
*/
|
|
2028
|
+
payments_supported: Array<InstitutionPaymentsSupportedEnum>;
|
|
2023
2029
|
/**
|
|
2024
2030
|
*
|
|
2025
2031
|
* @type {string}
|
|
@@ -2118,6 +2124,11 @@ export declare const InstitutionProductsSupportedEnum: {
|
|
|
2118
2124
|
readonly Identity: "IDENTITY";
|
|
2119
2125
|
};
|
|
2120
2126
|
export declare type InstitutionProductsSupportedEnum = typeof InstitutionProductsSupportedEnum[keyof typeof InstitutionProductsSupportedEnum];
|
|
2127
|
+
export declare const InstitutionPaymentsSupportedEnum: {
|
|
2128
|
+
readonly Mandate: "MANDATE";
|
|
2129
|
+
readonly DebitAuthorization: "DEBIT_AUTHORIZATION";
|
|
2130
|
+
};
|
|
2131
|
+
export declare type InstitutionPaymentsSupportedEnum = typeof InstitutionPaymentsSupportedEnum[keyof typeof InstitutionPaymentsSupportedEnum];
|
|
2121
2132
|
export declare const InstitutionUserTypeEnum: {
|
|
2122
2133
|
readonly Personal: "PERSONAL";
|
|
2123
2134
|
readonly Individual: "INDIVIDUAL";
|
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.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderSenderTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.CreateMandateSenderSenderTypeEnum = exports.CreateMandateResponseMandateStatusEnum = 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.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionPaymentsSupportedEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderSenderTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.CreateMandateSenderSenderTypeEnum = exports.CreateMandateResponseMandateStatusEnum = exports.BadRequestModelV2ErrorTypeEnum = 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
|
|
@@ -145,6 +145,10 @@ exports.InstitutionProductsSupportedEnum = {
|
|
|
145
145
|
AccountNumbers: 'ACCOUNT_NUMBERS',
|
|
146
146
|
Identity: 'IDENTITY',
|
|
147
147
|
};
|
|
148
|
+
exports.InstitutionPaymentsSupportedEnum = {
|
|
149
|
+
Mandate: 'MANDATE',
|
|
150
|
+
DebitAuthorization: 'DEBIT_AUTHORIZATION',
|
|
151
|
+
};
|
|
148
152
|
exports.InstitutionUserTypeEnum = {
|
|
149
153
|
Personal: 'PERSONAL',
|
|
150
154
|
Individual: 'INDIVIDUAL',
|