@finverse/sdk-typescript 0.0.55 → 0.0.56
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
|
@@ -3216,6 +3216,12 @@ export interface SubmitAuthChecklistRequest {
|
|
|
3216
3216
|
* @memberof SubmitAuthChecklistRequest
|
|
3217
3217
|
*/
|
|
3218
3218
|
institution_id: string;
|
|
3219
|
+
/**
|
|
3220
|
+
* Type of account held by the Sender at the Institution. Possible values are PERSONAL, BUSINESS
|
|
3221
|
+
* @type {string}
|
|
3222
|
+
* @memberof SubmitAuthChecklistRequest
|
|
3223
|
+
*/
|
|
3224
|
+
sender_type?: SubmitAuthChecklistRequestSenderTypeEnum;
|
|
3219
3225
|
/**
|
|
3220
3226
|
* The encrypted envelope key
|
|
3221
3227
|
* @type {string}
|
|
@@ -3241,6 +3247,11 @@ export interface SubmitAuthChecklistRequest {
|
|
|
3241
3247
|
*/
|
|
3242
3248
|
ciphertext: string;
|
|
3243
3249
|
}
|
|
3250
|
+
export declare const SubmitAuthChecklistRequestSenderTypeEnum: {
|
|
3251
|
+
readonly Personal: "PERSONAL";
|
|
3252
|
+
readonly Business: "BUSINESS";
|
|
3253
|
+
};
|
|
3254
|
+
export declare type SubmitAuthChecklistRequestSenderTypeEnum = typeof SubmitAuthChecklistRequestSenderTypeEnum[keyof typeof SubmitAuthChecklistRequestSenderTypeEnum];
|
|
3244
3255
|
/**
|
|
3245
3256
|
*
|
|
3246
3257
|
* @export
|
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.PaymentScheduleFrequencyEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.GetPaymentResponseStatusEnum = exports.GetPaymentResponseTypeEnum = exports.GetMandateSenderSenderTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.CreateMandateSenderSenderTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = 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.SubmitAuthChecklistRequestSenderTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.GetPaymentResponseStatusEnum = exports.GetPaymentResponseTypeEnum = exports.GetMandateSenderSenderTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = exports.CreateMandateSenderSenderTypeEnum = exports.AuthChecklistOptionsSubmittedByEnum = exports.AuthChecklistOptionsNameEnum = exports.AuthChecklistFactorRequiredEnum = exports.AuthChecklistFactorTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -122,6 +122,10 @@ exports.PaymentScheduleFrequencyEnum = {
|
|
|
122
122
|
Quarterly: 'QUARTERLY',
|
|
123
123
|
Yearly: 'YEARLY',
|
|
124
124
|
};
|
|
125
|
+
exports.SubmitAuthChecklistRequestSenderTypeEnum = {
|
|
126
|
+
Personal: 'PERSONAL',
|
|
127
|
+
Business: 'BUSINESS',
|
|
128
|
+
};
|
|
125
129
|
exports.SubmitAuthChecklistResponseMandateStatusEnum = {
|
|
126
130
|
Created: 'CREATED',
|
|
127
131
|
Processing: 'PROCESSING',
|