@finverse/sdk-typescript 0.0.221 → 0.0.223
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 +120 -0
- package/dist/api.js +7 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1334,6 +1334,12 @@ export interface CreatePaymentLinkRequest {
|
|
|
1334
1334
|
metadata?: {
|
|
1335
1335
|
[key: string]: string;
|
|
1336
1336
|
};
|
|
1337
|
+
/**
|
|
1338
|
+
*
|
|
1339
|
+
* @type {IntegrationMetadataRequest}
|
|
1340
|
+
* @memberof CreatePaymentLinkRequest
|
|
1341
|
+
*/
|
|
1342
|
+
integration_metadata?: IntegrationMetadataRequest;
|
|
1337
1343
|
}
|
|
1338
1344
|
export declare const CreatePaymentLinkRequestModeEnum: {
|
|
1339
1345
|
readonly Payment: "PAYMENT";
|
|
@@ -3128,6 +3134,52 @@ export interface InstitutionShort {
|
|
|
3128
3134
|
*/
|
|
3129
3135
|
portal_name?: string;
|
|
3130
3136
|
}
|
|
3137
|
+
/**
|
|
3138
|
+
*
|
|
3139
|
+
* @export
|
|
3140
|
+
* @interface IntegrationMetadataRequest
|
|
3141
|
+
*/
|
|
3142
|
+
export interface IntegrationMetadataRequest {
|
|
3143
|
+
/**
|
|
3144
|
+
*
|
|
3145
|
+
* @type {string}
|
|
3146
|
+
* @memberof IntegrationMetadataRequest
|
|
3147
|
+
*/
|
|
3148
|
+
integration_id: IntegrationMetadataRequestIntegrationIdEnum;
|
|
3149
|
+
/**
|
|
3150
|
+
*
|
|
3151
|
+
* @type {RapidstorMetadataRequest}
|
|
3152
|
+
* @memberof IntegrationMetadataRequest
|
|
3153
|
+
*/
|
|
3154
|
+
rapidstor_metadata?: RapidstorMetadataRequest;
|
|
3155
|
+
}
|
|
3156
|
+
export declare const IntegrationMetadataRequestIntegrationIdEnum: {
|
|
3157
|
+
readonly Rapidstor: "RAPIDSTOR";
|
|
3158
|
+
};
|
|
3159
|
+
export declare type IntegrationMetadataRequestIntegrationIdEnum = (typeof IntegrationMetadataRequestIntegrationIdEnum)[keyof typeof IntegrationMetadataRequestIntegrationIdEnum];
|
|
3160
|
+
/**
|
|
3161
|
+
*
|
|
3162
|
+
* @export
|
|
3163
|
+
* @interface IntegrationMetadataResponse
|
|
3164
|
+
*/
|
|
3165
|
+
export interface IntegrationMetadataResponse {
|
|
3166
|
+
/**
|
|
3167
|
+
*
|
|
3168
|
+
* @type {string}
|
|
3169
|
+
* @memberof IntegrationMetadataResponse
|
|
3170
|
+
*/
|
|
3171
|
+
integration_id?: IntegrationMetadataResponseIntegrationIdEnum;
|
|
3172
|
+
/**
|
|
3173
|
+
*
|
|
3174
|
+
* @type {RapidstorMetadataResponse}
|
|
3175
|
+
* @memberof IntegrationMetadataResponse
|
|
3176
|
+
*/
|
|
3177
|
+
rapidstor_metadata?: RapidstorMetadataResponse;
|
|
3178
|
+
}
|
|
3179
|
+
export declare const IntegrationMetadataResponseIntegrationIdEnum: {
|
|
3180
|
+
readonly Rapidstor: "RAPIDSTOR";
|
|
3181
|
+
};
|
|
3182
|
+
export declare type IntegrationMetadataResponseIntegrationIdEnum = (typeof IntegrationMetadataResponseIntegrationIdEnum)[keyof typeof IntegrationMetadataResponseIntegrationIdEnum];
|
|
3131
3183
|
/**
|
|
3132
3184
|
*
|
|
3133
3185
|
* @export
|
|
@@ -4971,6 +5023,12 @@ export interface PaymentLinkResponse {
|
|
|
4971
5023
|
* @memberof PaymentLinkResponse
|
|
4972
5024
|
*/
|
|
4973
5025
|
payment_method?: PaymentMethodResponse;
|
|
5026
|
+
/**
|
|
5027
|
+
*
|
|
5028
|
+
* @type {IntegrationMetadataResponse}
|
|
5029
|
+
* @memberof PaymentLinkResponse
|
|
5030
|
+
*/
|
|
5031
|
+
integration_metadata?: IntegrationMetadataResponse;
|
|
4974
5032
|
}
|
|
4975
5033
|
export declare const PaymentLinkResponseModeEnum: {
|
|
4976
5034
|
readonly Payment: "PAYMENT";
|
|
@@ -5381,6 +5439,12 @@ export interface PaymentUser {
|
|
|
5381
5439
|
* @memberof PaymentUser
|
|
5382
5440
|
*/
|
|
5383
5441
|
autopay_consent: boolean;
|
|
5442
|
+
/**
|
|
5443
|
+
*
|
|
5444
|
+
* @type {IntegrationMetadataResponse}
|
|
5445
|
+
* @memberof PaymentUser
|
|
5446
|
+
*/
|
|
5447
|
+
integration_metadata?: IntegrationMetadataResponse;
|
|
5384
5448
|
}
|
|
5385
5449
|
export declare const PaymentUserUserTypeEnum: {
|
|
5386
5450
|
readonly Individual: "INDIVIDUAL";
|
|
@@ -5706,6 +5770,62 @@ export interface ProductStatus {
|
|
|
5706
5770
|
*/
|
|
5707
5771
|
last_successful_update?: string | null;
|
|
5708
5772
|
}
|
|
5773
|
+
/**
|
|
5774
|
+
*
|
|
5775
|
+
* @export
|
|
5776
|
+
* @interface RapidstorMetadataRequest
|
|
5777
|
+
*/
|
|
5778
|
+
export interface RapidstorMetadataRequest {
|
|
5779
|
+
/**
|
|
5780
|
+
*
|
|
5781
|
+
* @type {string}
|
|
5782
|
+
* @memberof RapidstorMetadataRequest
|
|
5783
|
+
*/
|
|
5784
|
+
corp_code: string;
|
|
5785
|
+
/**
|
|
5786
|
+
*
|
|
5787
|
+
* @type {string}
|
|
5788
|
+
* @memberof RapidstorMetadataRequest
|
|
5789
|
+
*/
|
|
5790
|
+
s_location_code: string;
|
|
5791
|
+
/**
|
|
5792
|
+
*
|
|
5793
|
+
* @type {string}
|
|
5794
|
+
* @memberof RapidstorMetadataRequest
|
|
5795
|
+
*/
|
|
5796
|
+
tenant_id: string;
|
|
5797
|
+
}
|
|
5798
|
+
/**
|
|
5799
|
+
*
|
|
5800
|
+
* @export
|
|
5801
|
+
* @interface RapidstorMetadataResponse
|
|
5802
|
+
*/
|
|
5803
|
+
export interface RapidstorMetadataResponse {
|
|
5804
|
+
/**
|
|
5805
|
+
*
|
|
5806
|
+
* @type {string}
|
|
5807
|
+
* @memberof RapidstorMetadataResponse
|
|
5808
|
+
*/
|
|
5809
|
+
corp_code?: string;
|
|
5810
|
+
/**
|
|
5811
|
+
*
|
|
5812
|
+
* @type {string}
|
|
5813
|
+
* @memberof RapidstorMetadataResponse
|
|
5814
|
+
*/
|
|
5815
|
+
s_location_code?: string;
|
|
5816
|
+
/**
|
|
5817
|
+
*
|
|
5818
|
+
* @type {string}
|
|
5819
|
+
* @memberof RapidstorMetadataResponse
|
|
5820
|
+
*/
|
|
5821
|
+
tenant_id?: string;
|
|
5822
|
+
/**
|
|
5823
|
+
*
|
|
5824
|
+
* @type {number}
|
|
5825
|
+
* @memberof RapidstorMetadataResponse
|
|
5826
|
+
*/
|
|
5827
|
+
iAnnivDays?: number;
|
|
5828
|
+
}
|
|
5709
5829
|
/**
|
|
5710
5830
|
*
|
|
5711
5831
|
* @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.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.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = 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.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.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = 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
|
|
@@ -187,6 +187,12 @@ exports.InstitutionStatusEnum = {
|
|
|
187
187
|
Alpha: 'ALPHA',
|
|
188
188
|
Beta: 'BETA',
|
|
189
189
|
};
|
|
190
|
+
exports.IntegrationMetadataRequestIntegrationIdEnum = {
|
|
191
|
+
Rapidstor: 'RAPIDSTOR',
|
|
192
|
+
};
|
|
193
|
+
exports.IntegrationMetadataResponseIntegrationIdEnum = {
|
|
194
|
+
Rapidstor: 'RAPIDSTOR',
|
|
195
|
+
};
|
|
190
196
|
exports.LineItemItemTypeEnum = {
|
|
191
197
|
AmountDue: 'AMOUNT_DUE',
|
|
192
198
|
Surcharge: 'SURCHARGE',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.223",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -25,7 +25,7 @@
|
|
|
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.0.
|
|
28
|
+
"chai": "^5.0.3",
|
|
29
29
|
"mocha": "^10.2.0",
|
|
30
30
|
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|