@finverse/sdk-typescript 0.0.69 → 0.0.71
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 +34 -23
- package/dist/api.js +9 -5
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -664,12 +664,6 @@ export interface CreateMandateRequest {
|
|
|
664
664
|
* @memberof CreateMandateRequest
|
|
665
665
|
*/
|
|
666
666
|
mandate_details: MandateDetails;
|
|
667
|
-
/**
|
|
668
|
-
* Sender details which will be used for fraud checking.
|
|
669
|
-
* @type {Array<SenderDetail>}
|
|
670
|
-
* @memberof CreateMandateRequest
|
|
671
|
-
*/
|
|
672
|
-
sender_details: Array<SenderDetail>;
|
|
673
667
|
}
|
|
674
668
|
/**
|
|
675
669
|
*
|
|
@@ -754,7 +748,24 @@ export interface CreateMandateSender {
|
|
|
754
748
|
* @memberof CreateMandateSender
|
|
755
749
|
*/
|
|
756
750
|
sender_reference_id?: string;
|
|
751
|
+
/**
|
|
752
|
+
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
753
|
+
* @type {string}
|
|
754
|
+
* @memberof CreateMandateSender
|
|
755
|
+
*/
|
|
756
|
+
sender_type: CreateMandateSenderSenderTypeEnum;
|
|
757
|
+
/**
|
|
758
|
+
* Sender details which will be used for fraud checking.
|
|
759
|
+
* @type {Array<SenderDetail>}
|
|
760
|
+
* @memberof CreateMandateSender
|
|
761
|
+
*/
|
|
762
|
+
sender_details: Array<SenderDetail>;
|
|
757
763
|
}
|
|
764
|
+
export declare const CreateMandateSenderSenderTypeEnum: {
|
|
765
|
+
readonly Individual: "INDIVIDUAL";
|
|
766
|
+
readonly Business: "BUSINESS";
|
|
767
|
+
};
|
|
768
|
+
export declare type CreateMandateSenderSenderTypeEnum = typeof CreateMandateSenderSenderTypeEnum[keyof typeof CreateMandateSenderSenderTypeEnum];
|
|
758
769
|
/**
|
|
759
770
|
*
|
|
760
771
|
* @export
|
|
@@ -1421,12 +1432,6 @@ export interface GetMandateResponse {
|
|
|
1421
1432
|
* @memberof GetMandateResponse
|
|
1422
1433
|
*/
|
|
1423
1434
|
mandate_details: MandateDetails;
|
|
1424
|
-
/**
|
|
1425
|
-
* Sender details which will be used for fraud checking.
|
|
1426
|
-
* @type {Array<SenderDetail>}
|
|
1427
|
-
* @memberof GetMandateResponse
|
|
1428
|
-
*/
|
|
1429
|
-
sender_details?: Array<SenderDetail>;
|
|
1430
1435
|
/**
|
|
1431
1436
|
*
|
|
1432
1437
|
* @type {FvErrorModel}
|
|
@@ -1474,7 +1479,24 @@ export interface GetMandateSender {
|
|
|
1474
1479
|
* @memberof GetMandateSender
|
|
1475
1480
|
*/
|
|
1476
1481
|
sender_account: PaymentAccount;
|
|
1482
|
+
/**
|
|
1483
|
+
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
1484
|
+
* @type {string}
|
|
1485
|
+
* @memberof GetMandateSender
|
|
1486
|
+
*/
|
|
1487
|
+
sender_type: GetMandateSenderSenderTypeEnum;
|
|
1488
|
+
/**
|
|
1489
|
+
* Sender details which will be used for fraud checking.
|
|
1490
|
+
* @type {Array<SenderDetail>}
|
|
1491
|
+
* @memberof GetMandateSender
|
|
1492
|
+
*/
|
|
1493
|
+
sender_details?: Array<SenderDetail>;
|
|
1477
1494
|
}
|
|
1495
|
+
export declare const GetMandateSenderSenderTypeEnum: {
|
|
1496
|
+
readonly Individual: "INDIVIDUAL";
|
|
1497
|
+
readonly Business: "BUSINESS";
|
|
1498
|
+
};
|
|
1499
|
+
export declare type GetMandateSenderSenderTypeEnum = typeof GetMandateSenderSenderTypeEnum[keyof typeof GetMandateSenderSenderTypeEnum];
|
|
1478
1500
|
/**
|
|
1479
1501
|
*
|
|
1480
1502
|
* @export
|
|
@@ -3068,18 +3090,7 @@ export interface MandateDetails {
|
|
|
3068
3090
|
* @memberof MandateDetails
|
|
3069
3091
|
*/
|
|
3070
3092
|
description?: string;
|
|
3071
|
-
/**
|
|
3072
|
-
* Type of account held by the Sender at the Institution. Possible values are INDIVIDUAL, BUSINESS
|
|
3073
|
-
* @type {string}
|
|
3074
|
-
* @memberof MandateDetails
|
|
3075
|
-
*/
|
|
3076
|
-
sender_type: MandateDetailsSenderTypeEnum;
|
|
3077
3093
|
}
|
|
3078
|
-
export declare const MandateDetailsSenderTypeEnum: {
|
|
3079
|
-
readonly Individual: "INDIVIDUAL";
|
|
3080
|
-
readonly Business: "BUSINESS";
|
|
3081
|
-
};
|
|
3082
|
-
export declare type MandateDetailsSenderTypeEnum = typeof MandateDetailsSenderTypeEnum[keyof typeof MandateDetailsSenderTypeEnum];
|
|
3083
3094
|
/**
|
|
3084
3095
|
*
|
|
3085
3096
|
* @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.SenderDetailDetailsTypeEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentInstructionTypeEnum = exports.
|
|
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;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -84,6 +84,10 @@ exports.CreateMandateResponseMandateStatusEnum = {
|
|
|
84
84
|
Failed: 'FAILED',
|
|
85
85
|
Revoked: 'REVOKED',
|
|
86
86
|
};
|
|
87
|
+
exports.CreateMandateSenderSenderTypeEnum = {
|
|
88
|
+
Individual: 'INDIVIDUAL',
|
|
89
|
+
Business: 'BUSINESS',
|
|
90
|
+
};
|
|
87
91
|
exports.CreatePaymentRequestTypeEnum = {
|
|
88
92
|
Mandate: 'MANDATE',
|
|
89
93
|
Single: 'SINGLE',
|
|
@@ -121,6 +125,10 @@ exports.GetMandateResponseMandateStatusEnum = {
|
|
|
121
125
|
Failed: 'FAILED',
|
|
122
126
|
Revoked: 'REVOKED',
|
|
123
127
|
};
|
|
128
|
+
exports.GetMandateSenderSenderTypeEnum = {
|
|
129
|
+
Individual: 'INDIVIDUAL',
|
|
130
|
+
Business: 'BUSINESS',
|
|
131
|
+
};
|
|
124
132
|
exports.InstitutionTagsEnum = {
|
|
125
133
|
Real: 'real',
|
|
126
134
|
Test: 'test',
|
|
@@ -169,10 +177,6 @@ exports.MandateAuthLinkCustomizationsUiModeEnum = {
|
|
|
169
177
|
AutoRedirect: 'auto_redirect',
|
|
170
178
|
Standalone: 'standalone',
|
|
171
179
|
};
|
|
172
|
-
exports.MandateDetailsSenderTypeEnum = {
|
|
173
|
-
Individual: 'INDIVIDUAL',
|
|
174
|
-
Business: 'BUSINESS',
|
|
175
|
-
};
|
|
176
180
|
exports.PaymentInstructionTypeEnum = {
|
|
177
181
|
DebitAuthorization: 'DEBIT_AUTHORIZATION',
|
|
178
182
|
};
|