@finverse/sdk-typescript 0.0.233 → 0.0.235
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 +106 -2
- package/dist/api.js +5 -1
- package/package.json +2 -2
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
|
*
|
|
@@ -5576,6 +5576,92 @@ export declare const PaymentUserUserTypeEnum: {
|
|
|
5576
5576
|
readonly Business: "BUSINESS";
|
|
5577
5577
|
};
|
|
5578
5578
|
export declare type PaymentUserUserTypeEnum = (typeof PaymentUserUserTypeEnum)[keyof typeof PaymentUserUserTypeEnum];
|
|
5579
|
+
/**
|
|
5580
|
+
*
|
|
5581
|
+
* @export
|
|
5582
|
+
* @interface PaymentUserWithoutEmail
|
|
5583
|
+
*/
|
|
5584
|
+
export interface PaymentUserWithoutEmail {
|
|
5585
|
+
/**
|
|
5586
|
+
*
|
|
5587
|
+
* @type {string}
|
|
5588
|
+
* @memberof PaymentUserWithoutEmail
|
|
5589
|
+
*/
|
|
5590
|
+
created_at?: string;
|
|
5591
|
+
/**
|
|
5592
|
+
*
|
|
5593
|
+
* @type {string}
|
|
5594
|
+
* @memberof PaymentUserWithoutEmail
|
|
5595
|
+
*/
|
|
5596
|
+
email?: string;
|
|
5597
|
+
/**
|
|
5598
|
+
*
|
|
5599
|
+
* @type {string}
|
|
5600
|
+
* @memberof PaymentUserWithoutEmail
|
|
5601
|
+
*/
|
|
5602
|
+
external_user_id?: string;
|
|
5603
|
+
/**
|
|
5604
|
+
*
|
|
5605
|
+
* @type {{ [key: string]: string; }}
|
|
5606
|
+
* @memberof PaymentUserWithoutEmail
|
|
5607
|
+
*/
|
|
5608
|
+
metadata?: {
|
|
5609
|
+
[key: string]: string;
|
|
5610
|
+
};
|
|
5611
|
+
/**
|
|
5612
|
+
*
|
|
5613
|
+
* @type {string}
|
|
5614
|
+
* @memberof PaymentUserWithoutEmail
|
|
5615
|
+
*/
|
|
5616
|
+
name?: string;
|
|
5617
|
+
/**
|
|
5618
|
+
*
|
|
5619
|
+
* @type {Array<SenderDetail>}
|
|
5620
|
+
* @memberof PaymentUserWithoutEmail
|
|
5621
|
+
*/
|
|
5622
|
+
user_details?: Array<SenderDetail>;
|
|
5623
|
+
/**
|
|
5624
|
+
*
|
|
5625
|
+
* @type {string}
|
|
5626
|
+
* @memberof PaymentUserWithoutEmail
|
|
5627
|
+
*/
|
|
5628
|
+
updated_at?: string;
|
|
5629
|
+
/**
|
|
5630
|
+
*
|
|
5631
|
+
* @type {string}
|
|
5632
|
+
* @memberof PaymentUserWithoutEmail
|
|
5633
|
+
*/
|
|
5634
|
+
next_bill_update?: string | null;
|
|
5635
|
+
/**
|
|
5636
|
+
*
|
|
5637
|
+
* @type {string}
|
|
5638
|
+
* @memberof PaymentUserWithoutEmail
|
|
5639
|
+
*/
|
|
5640
|
+
user_id?: string;
|
|
5641
|
+
/**
|
|
5642
|
+
*
|
|
5643
|
+
* @type {string}
|
|
5644
|
+
* @memberof PaymentUserWithoutEmail
|
|
5645
|
+
*/
|
|
5646
|
+
user_type?: PaymentUserWithoutEmailUserTypeEnum;
|
|
5647
|
+
/**
|
|
5648
|
+
* Whether the user has given consent for autopay
|
|
5649
|
+
* @type {boolean}
|
|
5650
|
+
* @memberof PaymentUserWithoutEmail
|
|
5651
|
+
*/
|
|
5652
|
+
autopay_consent: boolean;
|
|
5653
|
+
/**
|
|
5654
|
+
*
|
|
5655
|
+
* @type {IntegrationMetadataResponse}
|
|
5656
|
+
* @memberof PaymentUserWithoutEmail
|
|
5657
|
+
*/
|
|
5658
|
+
integration_metadata?: IntegrationMetadataResponse;
|
|
5659
|
+
}
|
|
5660
|
+
export declare const PaymentUserWithoutEmailUserTypeEnum: {
|
|
5661
|
+
readonly Individual: "INDIVIDUAL";
|
|
5662
|
+
readonly Business: "BUSINESS";
|
|
5663
|
+
};
|
|
5664
|
+
export declare type PaymentUserWithoutEmailUserTypeEnum = (typeof PaymentUserWithoutEmailUserTypeEnum)[keyof typeof PaymentUserWithoutEmailUserTypeEnum];
|
|
5579
5665
|
/**
|
|
5580
5666
|
*
|
|
5581
5667
|
* @export
|
|
@@ -5857,6 +5943,24 @@ export interface Principal {
|
|
|
5857
5943
|
* @memberof Principal
|
|
5858
5944
|
*/
|
|
5859
5945
|
payment_method_id?: string;
|
|
5946
|
+
/**
|
|
5947
|
+
*
|
|
5948
|
+
* @type {string}
|
|
5949
|
+
* @memberof Principal
|
|
5950
|
+
*/
|
|
5951
|
+
tpp_name?: string;
|
|
5952
|
+
/**
|
|
5953
|
+
*
|
|
5954
|
+
* @type {string}
|
|
5955
|
+
* @memberof Principal
|
|
5956
|
+
*/
|
|
5957
|
+
retry_url?: string;
|
|
5958
|
+
/**
|
|
5959
|
+
*
|
|
5960
|
+
* @type {string}
|
|
5961
|
+
* @memberof Principal
|
|
5962
|
+
*/
|
|
5963
|
+
onboarding_flow?: string;
|
|
5860
5964
|
/**
|
|
5861
5965
|
* The qrCode text to be used to generate the image
|
|
5862
5966
|
* @type {string}
|
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.235",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,7 +21,7 @@
|
|
|
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",
|