@finverse/sdk-typescript 0.0.234 → 0.0.236
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 +112 -2
- package/dist/api.js +5 -1
- package/package.json +3 -3
package/dist/api.d.ts
CHANGED
|
@@ -3709,10 +3709,10 @@ export interface ListPaymentMethodsResponse {
|
|
|
3709
3709
|
payment_methods?: Array<PaymentMethodResponse>;
|
|
3710
3710
|
/**
|
|
3711
3711
|
*
|
|
3712
|
-
* @type {
|
|
3712
|
+
* @type {PaymentUserWithoutEmail}
|
|
3713
3713
|
* @memberof ListPaymentMethodsResponse
|
|
3714
3714
|
*/
|
|
3715
|
-
sender?:
|
|
3715
|
+
sender?: PaymentUserWithoutEmail;
|
|
3716
3716
|
}
|
|
3717
3717
|
/**
|
|
3718
3718
|
*
|
|
@@ -4441,6 +4441,12 @@ export interface MandateSenderAccount {
|
|
|
4441
4441
|
* @memberof MandateSenderAccount
|
|
4442
4442
|
*/
|
|
4443
4443
|
institution_id?: string;
|
|
4444
|
+
/**
|
|
4445
|
+
* Institution Name for the sender’s institution.
|
|
4446
|
+
* @type {string}
|
|
4447
|
+
* @memberof MandateSenderAccount
|
|
4448
|
+
*/
|
|
4449
|
+
institution_name?: string;
|
|
4444
4450
|
/**
|
|
4445
4451
|
* A unique identifier generated after creating sender (Finverse Payment User ID)
|
|
4446
4452
|
* @type {string}
|
|
@@ -4623,6 +4629,12 @@ export interface PaymentAccountDetails {
|
|
|
4623
4629
|
* @memberof PaymentAccountDetails
|
|
4624
4630
|
*/
|
|
4625
4631
|
institution_id?: string;
|
|
4632
|
+
/**
|
|
4633
|
+
* Institution Name for the sender’s institution.
|
|
4634
|
+
* @type {string}
|
|
4635
|
+
* @memberof PaymentAccountDetails
|
|
4636
|
+
*/
|
|
4637
|
+
institution_name?: string;
|
|
4626
4638
|
/**
|
|
4627
4639
|
* A unique identifier generated after creating user (Finverse Payment User ID)
|
|
4628
4640
|
* @type {string}
|
|
@@ -5576,6 +5588,92 @@ export declare const PaymentUserUserTypeEnum: {
|
|
|
5576
5588
|
readonly Business: "BUSINESS";
|
|
5577
5589
|
};
|
|
5578
5590
|
export declare type PaymentUserUserTypeEnum = (typeof PaymentUserUserTypeEnum)[keyof typeof PaymentUserUserTypeEnum];
|
|
5591
|
+
/**
|
|
5592
|
+
*
|
|
5593
|
+
* @export
|
|
5594
|
+
* @interface PaymentUserWithoutEmail
|
|
5595
|
+
*/
|
|
5596
|
+
export interface PaymentUserWithoutEmail {
|
|
5597
|
+
/**
|
|
5598
|
+
*
|
|
5599
|
+
* @type {string}
|
|
5600
|
+
* @memberof PaymentUserWithoutEmail
|
|
5601
|
+
*/
|
|
5602
|
+
created_at?: string;
|
|
5603
|
+
/**
|
|
5604
|
+
*
|
|
5605
|
+
* @type {string}
|
|
5606
|
+
* @memberof PaymentUserWithoutEmail
|
|
5607
|
+
*/
|
|
5608
|
+
email?: string;
|
|
5609
|
+
/**
|
|
5610
|
+
*
|
|
5611
|
+
* @type {string}
|
|
5612
|
+
* @memberof PaymentUserWithoutEmail
|
|
5613
|
+
*/
|
|
5614
|
+
external_user_id?: string;
|
|
5615
|
+
/**
|
|
5616
|
+
*
|
|
5617
|
+
* @type {{ [key: string]: string; }}
|
|
5618
|
+
* @memberof PaymentUserWithoutEmail
|
|
5619
|
+
*/
|
|
5620
|
+
metadata?: {
|
|
5621
|
+
[key: string]: string;
|
|
5622
|
+
};
|
|
5623
|
+
/**
|
|
5624
|
+
*
|
|
5625
|
+
* @type {string}
|
|
5626
|
+
* @memberof PaymentUserWithoutEmail
|
|
5627
|
+
*/
|
|
5628
|
+
name?: string;
|
|
5629
|
+
/**
|
|
5630
|
+
*
|
|
5631
|
+
* @type {Array<SenderDetail>}
|
|
5632
|
+
* @memberof PaymentUserWithoutEmail
|
|
5633
|
+
*/
|
|
5634
|
+
user_details?: Array<SenderDetail>;
|
|
5635
|
+
/**
|
|
5636
|
+
*
|
|
5637
|
+
* @type {string}
|
|
5638
|
+
* @memberof PaymentUserWithoutEmail
|
|
5639
|
+
*/
|
|
5640
|
+
updated_at?: string;
|
|
5641
|
+
/**
|
|
5642
|
+
*
|
|
5643
|
+
* @type {string}
|
|
5644
|
+
* @memberof PaymentUserWithoutEmail
|
|
5645
|
+
*/
|
|
5646
|
+
next_bill_update?: string | null;
|
|
5647
|
+
/**
|
|
5648
|
+
*
|
|
5649
|
+
* @type {string}
|
|
5650
|
+
* @memberof PaymentUserWithoutEmail
|
|
5651
|
+
*/
|
|
5652
|
+
user_id?: string;
|
|
5653
|
+
/**
|
|
5654
|
+
*
|
|
5655
|
+
* @type {string}
|
|
5656
|
+
* @memberof PaymentUserWithoutEmail
|
|
5657
|
+
*/
|
|
5658
|
+
user_type?: PaymentUserWithoutEmailUserTypeEnum;
|
|
5659
|
+
/**
|
|
5660
|
+
* Whether the user has given consent for autopay
|
|
5661
|
+
* @type {boolean}
|
|
5662
|
+
* @memberof PaymentUserWithoutEmail
|
|
5663
|
+
*/
|
|
5664
|
+
autopay_consent: boolean;
|
|
5665
|
+
/**
|
|
5666
|
+
*
|
|
5667
|
+
* @type {IntegrationMetadataResponse}
|
|
5668
|
+
* @memberof PaymentUserWithoutEmail
|
|
5669
|
+
*/
|
|
5670
|
+
integration_metadata?: IntegrationMetadataResponse;
|
|
5671
|
+
}
|
|
5672
|
+
export declare const PaymentUserWithoutEmailUserTypeEnum: {
|
|
5673
|
+
readonly Individual: "INDIVIDUAL";
|
|
5674
|
+
readonly Business: "BUSINESS";
|
|
5675
|
+
};
|
|
5676
|
+
export declare type PaymentUserWithoutEmailUserTypeEnum = (typeof PaymentUserWithoutEmailUserTypeEnum)[keyof typeof PaymentUserWithoutEmailUserTypeEnum];
|
|
5579
5677
|
/**
|
|
5580
5678
|
*
|
|
5581
5679
|
* @export
|
|
@@ -6053,6 +6151,12 @@ export interface RecipientAccountResponse {
|
|
|
6053
6151
|
* @memberof RecipientAccountResponse
|
|
6054
6152
|
*/
|
|
6055
6153
|
institution_id?: string;
|
|
6154
|
+
/**
|
|
6155
|
+
* Institution Name for the sender’s institution.
|
|
6156
|
+
* @type {string}
|
|
6157
|
+
* @memberof RecipientAccountResponse
|
|
6158
|
+
*/
|
|
6159
|
+
institution_name?: string;
|
|
6056
6160
|
/**
|
|
6057
6161
|
* 3-digit code associated with bank
|
|
6058
6162
|
* @type {string}
|
|
@@ -6166,6 +6270,12 @@ export interface SenderAccountFvLinkResponse {
|
|
|
6166
6270
|
* @memberof SenderAccountFvLinkResponse
|
|
6167
6271
|
*/
|
|
6168
6272
|
institution_id?: string;
|
|
6273
|
+
/**
|
|
6274
|
+
*
|
|
6275
|
+
* @type {string}
|
|
6276
|
+
* @memberof SenderAccountFvLinkResponse
|
|
6277
|
+
*/
|
|
6278
|
+
institution_name?: string;
|
|
6169
6279
|
}
|
|
6170
6280
|
/**
|
|
6171
6281
|
*
|
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.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CardFvLinkResponseStatusEnum = 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.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CustomerApi = exports.CustomerApiFactory = exports.CustomerApiFp = exports.CustomerApiAxiosParamCreator = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.LineItemItemTypeEnum = exports.IntegrationMetadataResponseIntegrationIdEnum = exports.IntegrationMetadataRequestIntegrationIdEnum = exports.InstitutionStatusEnum = exports.InstitutionUserTypeEnum = exports.InstitutionProductsSupportedEnum = exports.InstitutionInstitutionTypeEnum = exports.InstitutionTagsEnum = exports.GetMandateSenderUserTypeEnum = exports.GetMandateResponseStatusEnum = exports.GetMandateAuthResponseSenderTypeEnum = exports.GetMandateAuthResponseMandateStatusEnum = exports.GetMandateAuthLinkResponseTokenTypeEnum = exports.GetBalanceHistoryResponseSourceEnum = exports.FvErrorModelV2TypeEnum = exports.FvErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CardFvLinkResponseStatusEnum = 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
|
|
@@ -297,6 +297,10 @@ exports.PaymentUserUserTypeEnum = {
|
|
|
297
297
|
Individual: 'INDIVIDUAL',
|
|
298
298
|
Business: 'BUSINESS',
|
|
299
299
|
};
|
|
300
|
+
exports.PaymentUserWithoutEmailUserTypeEnum = {
|
|
301
|
+
Individual: 'INDIVIDUAL',
|
|
302
|
+
Business: 'BUSINESS',
|
|
303
|
+
};
|
|
300
304
|
exports.RecipientAccountNumberTypeEnum = {
|
|
301
305
|
Local: 'LOCAL',
|
|
302
306
|
Iban: 'IBAN',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.236",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,11 +21,11 @@
|
|
|
21
21
|
"axios": "^0.21.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/chai": "^4.3.
|
|
24
|
+
"@types/chai": "^4.3.16",
|
|
25
25
|
"@types/mocha": "^10.0.6",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
|
-
"chai": "^5.1.
|
|
28
|
+
"chai": "^5.1.1",
|
|
29
29
|
"mocha": "^10.4.0",
|
|
30
30
|
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|