@finverse/sdk-typescript 0.0.49 → 0.0.50
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 +22 -0
- package/dist/api.js +9 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -559,7 +559,18 @@ export interface CreateMandateSender {
|
|
|
559
559
|
* @memberof CreateMandateSender
|
|
560
560
|
*/
|
|
561
561
|
sender_reference_id?: string;
|
|
562
|
+
/**
|
|
563
|
+
* Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
564
|
+
* @type {string}
|
|
565
|
+
* @memberof CreateMandateSender
|
|
566
|
+
*/
|
|
567
|
+
sender_type?: CreateMandateSenderSenderTypeEnum;
|
|
562
568
|
}
|
|
569
|
+
export declare const CreateMandateSenderSenderTypeEnum: {
|
|
570
|
+
readonly Personal: "PERSONAL";
|
|
571
|
+
readonly Business: "BUSINESS";
|
|
572
|
+
};
|
|
573
|
+
export declare type CreateMandateSenderSenderTypeEnum = typeof CreateMandateSenderSenderTypeEnum[keyof typeof CreateMandateSenderSenderTypeEnum];
|
|
563
574
|
/**
|
|
564
575
|
*
|
|
565
576
|
* @export
|
|
@@ -1188,7 +1199,18 @@ export interface GetMandateSender {
|
|
|
1188
1199
|
* @memberof GetMandateSender
|
|
1189
1200
|
*/
|
|
1190
1201
|
sender_account: PaymentAccount;
|
|
1202
|
+
/**
|
|
1203
|
+
* Type of account held by the Sender at the Institution. Required if institution.user_type is undefined. Possible values are PERSONAL, BUSINESS
|
|
1204
|
+
* @type {string}
|
|
1205
|
+
* @memberof GetMandateSender
|
|
1206
|
+
*/
|
|
1207
|
+
sender_type?: GetMandateSenderSenderTypeEnum;
|
|
1191
1208
|
}
|
|
1209
|
+
export declare const GetMandateSenderSenderTypeEnum: {
|
|
1210
|
+
readonly Personal: "PERSONAL";
|
|
1211
|
+
readonly Business: "BUSINESS";
|
|
1212
|
+
};
|
|
1213
|
+
export declare type GetMandateSenderSenderTypeEnum = typeof GetMandateSenderSenderTypeEnum[keyof typeof GetMandateSenderSenderTypeEnum];
|
|
1192
1214
|
/**
|
|
1193
1215
|
*
|
|
1194
1216
|
* @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.PaymentScheduleFrequencyEnum = exports.PaymentInstructionTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.GetPaymentResponseStatusEnum = exports.GetPaymentResponseTypeEnum = exports.GetMandateResponseMandateStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreatePaymentRequestTypeEnum = 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.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
|
|
@@ -48,6 +48,10 @@ exports.AuthChecklistOptionsSubmittedByEnum = {
|
|
|
48
48
|
CustomerApp: 'CUSTOMER_APP',
|
|
49
49
|
FinverseLink: 'FINVERSE_LINK',
|
|
50
50
|
};
|
|
51
|
+
exports.CreateMandateSenderSenderTypeEnum = {
|
|
52
|
+
Personal: 'PERSONAL',
|
|
53
|
+
Business: 'BUSINESS',
|
|
54
|
+
};
|
|
51
55
|
exports.CreatePaymentRequestTypeEnum = {
|
|
52
56
|
Mandate: 'MANDATE',
|
|
53
57
|
Single: 'SINGLE',
|
|
@@ -74,6 +78,10 @@ exports.GetMandateResponseMandateStatusEnum = {
|
|
|
74
78
|
Submitted: 'SUBMITTED',
|
|
75
79
|
Error: 'ERROR',
|
|
76
80
|
};
|
|
81
|
+
exports.GetMandateSenderSenderTypeEnum = {
|
|
82
|
+
Personal: 'PERSONAL',
|
|
83
|
+
Business: 'BUSINESS',
|
|
84
|
+
};
|
|
77
85
|
exports.GetPaymentResponseTypeEnum = {
|
|
78
86
|
Mandate: 'MANDATE',
|
|
79
87
|
Single: 'SINGLE',
|