@finverse/sdk-typescript 0.0.267 → 0.0.268
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 +67 -0
- package/dist/api.js +67 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -5183,6 +5183,41 @@ export interface PaymentDetailsReferences {
|
|
|
5183
5183
|
*/
|
|
5184
5184
|
finverse_transaction_reference?: string;
|
|
5185
5185
|
}
|
|
5186
|
+
/**
|
|
5187
|
+
*
|
|
5188
|
+
* @export
|
|
5189
|
+
* @interface PaymentFvLinkResponse
|
|
5190
|
+
*/
|
|
5191
|
+
export interface PaymentFvLinkResponse {
|
|
5192
|
+
/**
|
|
5193
|
+
*
|
|
5194
|
+
* @type {string}
|
|
5195
|
+
* @memberof PaymentFvLinkResponse
|
|
5196
|
+
*/
|
|
5197
|
+
payment_id?: string;
|
|
5198
|
+
/**
|
|
5199
|
+
*
|
|
5200
|
+
* @type {string}
|
|
5201
|
+
* @memberof PaymentFvLinkResponse
|
|
5202
|
+
*/
|
|
5203
|
+
status?: PaymentFvLinkResponseStatusEnum;
|
|
5204
|
+
/**
|
|
5205
|
+
*
|
|
5206
|
+
* @type {FvEmbeddedErrorModel}
|
|
5207
|
+
* @memberof PaymentFvLinkResponse
|
|
5208
|
+
*/
|
|
5209
|
+
error?: FvEmbeddedErrorModel;
|
|
5210
|
+
}
|
|
5211
|
+
export declare const PaymentFvLinkResponseStatusEnum: {
|
|
5212
|
+
readonly AuthorizationRequired: "AUTHORIZATION_REQUIRED";
|
|
5213
|
+
readonly Authorizing: "AUTHORIZING";
|
|
5214
|
+
readonly Processing: "PROCESSING";
|
|
5215
|
+
readonly Submitted: "SUBMITTED";
|
|
5216
|
+
readonly Executed: "EXECUTED";
|
|
5217
|
+
readonly Failed: "FAILED";
|
|
5218
|
+
readonly Revoked: "REVOKED";
|
|
5219
|
+
};
|
|
5220
|
+
export declare type PaymentFvLinkResponseStatusEnum = (typeof PaymentFvLinkResponseStatusEnum)[keyof typeof PaymentFvLinkResponseStatusEnum];
|
|
5186
5221
|
/**
|
|
5187
5222
|
*
|
|
5188
5223
|
* @export
|
|
@@ -8639,6 +8674,12 @@ export declare const DefaultApiAxiosParamCreator: (configuration?: Configuration
|
|
|
8639
8674
|
* @throws {RequiredError}
|
|
8640
8675
|
*/
|
|
8641
8676
|
getPaymentMethodPaymentLink: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8677
|
+
/**
|
|
8678
|
+
* Get payment (if exists) on the payment link for front-end
|
|
8679
|
+
* @param {*} [options] Override http request option.
|
|
8680
|
+
* @throws {RequiredError}
|
|
8681
|
+
*/
|
|
8682
|
+
getPaymentPaymentLink: (options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
8642
8683
|
/**
|
|
8643
8684
|
* Get payout by payout_id
|
|
8644
8685
|
* @param {string} payoutId payout id
|
|
@@ -8848,6 +8889,12 @@ export declare const DefaultApiFp: (configuration?: Configuration) => {
|
|
|
8848
8889
|
* @throws {RequiredError}
|
|
8849
8890
|
*/
|
|
8850
8891
|
getPaymentMethodPaymentLink(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentMethodFvLinkResponse>>;
|
|
8892
|
+
/**
|
|
8893
|
+
* Get payment (if exists) on the payment link for front-end
|
|
8894
|
+
* @param {*} [options] Override http request option.
|
|
8895
|
+
* @throws {RequiredError}
|
|
8896
|
+
*/
|
|
8897
|
+
getPaymentPaymentLink(options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PaymentFvLinkResponse>>;
|
|
8851
8898
|
/**
|
|
8852
8899
|
* Get payout by payout_id
|
|
8853
8900
|
* @param {string} payoutId payout id
|
|
@@ -9057,6 +9104,12 @@ export declare const DefaultApiFactory: (configuration?: Configuration, basePath
|
|
|
9057
9104
|
* @throws {RequiredError}
|
|
9058
9105
|
*/
|
|
9059
9106
|
getPaymentMethodPaymentLink(options?: any): AxiosPromise<PaymentMethodFvLinkResponse>;
|
|
9107
|
+
/**
|
|
9108
|
+
* Get payment (if exists) on the payment link for front-end
|
|
9109
|
+
* @param {*} [options] Override http request option.
|
|
9110
|
+
* @throws {RequiredError}
|
|
9111
|
+
*/
|
|
9112
|
+
getPaymentPaymentLink(options?: any): AxiosPromise<PaymentFvLinkResponse>;
|
|
9060
9113
|
/**
|
|
9061
9114
|
* Get payout by payout_id
|
|
9062
9115
|
* @param {string} payoutId payout id
|
|
@@ -9284,6 +9337,13 @@ export interface DefaultApiInterface {
|
|
|
9284
9337
|
* @memberof DefaultApiInterface
|
|
9285
9338
|
*/
|
|
9286
9339
|
getPaymentMethodPaymentLink(options?: AxiosRequestConfig): AxiosPromise<PaymentMethodFvLinkResponse>;
|
|
9340
|
+
/**
|
|
9341
|
+
* Get payment (if exists) on the payment link for front-end
|
|
9342
|
+
* @param {*} [options] Override http request option.
|
|
9343
|
+
* @throws {RequiredError}
|
|
9344
|
+
* @memberof DefaultApiInterface
|
|
9345
|
+
*/
|
|
9346
|
+
getPaymentPaymentLink(options?: AxiosRequestConfig): AxiosPromise<PaymentFvLinkResponse>;
|
|
9287
9347
|
/**
|
|
9288
9348
|
* Get payout by payout_id
|
|
9289
9349
|
* @param {string} payoutId payout id
|
|
@@ -9521,6 +9581,13 @@ export declare class DefaultApi extends BaseAPI implements DefaultApiInterface {
|
|
|
9521
9581
|
* @memberof DefaultApi
|
|
9522
9582
|
*/
|
|
9523
9583
|
getPaymentMethodPaymentLink(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentMethodFvLinkResponse>>;
|
|
9584
|
+
/**
|
|
9585
|
+
* Get payment (if exists) on the payment link for front-end
|
|
9586
|
+
* @param {*} [options] Override http request option.
|
|
9587
|
+
* @throws {RequiredError}
|
|
9588
|
+
* @memberof DefaultApi
|
|
9589
|
+
*/
|
|
9590
|
+
getPaymentPaymentLink(options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<PaymentFvLinkResponse>>;
|
|
9524
9591
|
/**
|
|
9525
9592
|
* Get payout by payout_id
|
|
9526
9593
|
* @param {string} payoutId payout id
|
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.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = 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.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = 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.UpdateTestPaymentStatusRequestStatusEnum = exports.UpdatePaymentUserRequestUserTypeEnum = exports.TransactionLimitsPeriodEnum = exports.SubmitAuthChecklistResponseMandateStatusEnum = exports.SenderDetailDetailsTypeEnum = exports.RefreshLoginIdentityLinkCustomizationsUiModeEnum = exports.RefreshLoginIdentityLinkCustomizationsLanguageEnum = exports.RecipientAccountResponseAccountTypeEnum = exports.RecipientAccountNumberTypeEnum = exports.PaymentUserWithoutEmailUserTypeEnum = exports.PaymentUserUserTypeEnum = exports.PaymentSetupOptionsPaymentMethodTypesEnum = exports.PaymentSetupOptionsFuturePaymentsEnum = exports.PaymentScheduleFrequencyEnum = exports.PaymentResponseStatusEnum = exports.PaymentResponseTypeEnum = exports.PaymentMethodIntegrationMetadataIntegrationIdEnum = exports.PaymentLinkTokenResponseTokenTypeEnum = exports.PaymentLinkResponseSessionStatusEnum = exports.PaymentLinkResponseStatusEnum = exports.PaymentLinkResponseModeEnum = exports.PaymentLinkCustomizationsUiModeEnum = exports.PaymentLinkCustomizationsLanguageEnum = exports.PaymentInstructionTypeEnum = exports.PaymentInfoPaymentsSupportedEnum = exports.PaymentFvLinkResponseStatusEnum = exports.PaymentAccountDetailsAccountTypeEnum = exports.ManualPaymentConfirmationResponseStatusEnum = exports.MandateSenderAccountAccountTypeEnum = exports.MandateRecipientAccountAccountTypeEnum = exports.MandateAuthLinkCustomizationsUiModeEnum = exports.MandateAuthLinkCustomizationsLanguageEnum = exports.LoginMethodStatusEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestLanguageEnum = 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.FvEmbeddedErrorModelTypeEnum = exports.FeePaidByEnum = exports.FVCardStatusEnum = exports.CustomerPaymentInstructionTypeEnum = exports.CreateRecipientAccountAccountTypeEnum = exports.CreatePaymentUserRequestUserTypeEnum = exports.CreatePaymentMethodRequestPaymentMethodTypeEnum = exports.CreatePaymentLinkRequestModeEnum = exports.CreatePaymentLinkMandateRequestSenderTypeEnum = exports.CreatePaymentAccountRequestAccountTypeEnum = exports.CreateMandateSenderUserTypeEnum = exports.CreateMandateResponseStatusEnum = exports.CreateMandateRequestWithDdaReferenceStatusEnum = exports.CreateCardRequestStatusEnum = 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
|
|
@@ -264,6 +264,15 @@ exports.PaymentAccountDetailsAccountTypeEnum = {
|
|
|
264
264
|
ExternalAccount: 'EXTERNAL_ACCOUNT',
|
|
265
265
|
SettlementAccount: 'SETTLEMENT_ACCOUNT',
|
|
266
266
|
};
|
|
267
|
+
exports.PaymentFvLinkResponseStatusEnum = {
|
|
268
|
+
AuthorizationRequired: 'AUTHORIZATION_REQUIRED',
|
|
269
|
+
Authorizing: 'AUTHORIZING',
|
|
270
|
+
Processing: 'PROCESSING',
|
|
271
|
+
Submitted: 'SUBMITTED',
|
|
272
|
+
Executed: 'EXECUTED',
|
|
273
|
+
Failed: 'FAILED',
|
|
274
|
+
Revoked: 'REVOKED',
|
|
275
|
+
};
|
|
267
276
|
exports.PaymentInfoPaymentsSupportedEnum = {
|
|
268
277
|
Mandate: 'MANDATE',
|
|
269
278
|
DebitAuthorization: 'DEBIT_AUTHORIZATION',
|
|
@@ -2556,6 +2565,33 @@ exports.DefaultApiAxiosParamCreator = function (configuration) {
|
|
|
2556
2565
|
options: localVarRequestOptions,
|
|
2557
2566
|
};
|
|
2558
2567
|
}),
|
|
2568
|
+
/**
|
|
2569
|
+
* Get payment (if exists) on the payment link for front-end
|
|
2570
|
+
* @param {*} [options] Override http request option.
|
|
2571
|
+
* @throws {RequiredError}
|
|
2572
|
+
*/
|
|
2573
|
+
getPaymentPaymentLink: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
2574
|
+
const localVarPath = `/payment_link/fvlink/payment`;
|
|
2575
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
2576
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
2577
|
+
let baseOptions;
|
|
2578
|
+
if (configuration) {
|
|
2579
|
+
baseOptions = configuration.baseOptions;
|
|
2580
|
+
}
|
|
2581
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
2582
|
+
const localVarHeaderParameter = {};
|
|
2583
|
+
const localVarQueryParameter = {};
|
|
2584
|
+
// authentication Oauth2 required
|
|
2585
|
+
// oauth required
|
|
2586
|
+
yield common_1.setOAuthToObject(localVarHeaderParameter, 'Oauth2', [], configuration);
|
|
2587
|
+
common_1.setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
2588
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
2589
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
2590
|
+
return {
|
|
2591
|
+
url: common_1.toPathString(localVarUrlObj),
|
|
2592
|
+
options: localVarRequestOptions,
|
|
2593
|
+
};
|
|
2594
|
+
}),
|
|
2559
2595
|
/**
|
|
2560
2596
|
* Get payout by payout_id
|
|
2561
2597
|
* @param {string} payoutId payout id
|
|
@@ -3143,6 +3179,17 @@ exports.DefaultApiFp = function (configuration) {
|
|
|
3143
3179
|
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3144
3180
|
});
|
|
3145
3181
|
},
|
|
3182
|
+
/**
|
|
3183
|
+
* Get payment (if exists) on the payment link for front-end
|
|
3184
|
+
* @param {*} [options] Override http request option.
|
|
3185
|
+
* @throws {RequiredError}
|
|
3186
|
+
*/
|
|
3187
|
+
getPaymentPaymentLink(options) {
|
|
3188
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
3189
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getPaymentPaymentLink(options);
|
|
3190
|
+
return common_1.createRequestFunction(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration);
|
|
3191
|
+
});
|
|
3192
|
+
},
|
|
3146
3193
|
/**
|
|
3147
3194
|
* Get payout by payout_id
|
|
3148
3195
|
* @param {string} payoutId payout id
|
|
@@ -3448,6 +3495,14 @@ exports.DefaultApiFactory = function (configuration, basePath, axios) {
|
|
|
3448
3495
|
getPaymentMethodPaymentLink(options) {
|
|
3449
3496
|
return localVarFp.getPaymentMethodPaymentLink(options).then((request) => request(axios, basePath));
|
|
3450
3497
|
},
|
|
3498
|
+
/**
|
|
3499
|
+
* Get payment (if exists) on the payment link for front-end
|
|
3500
|
+
* @param {*} [options] Override http request option.
|
|
3501
|
+
* @throws {RequiredError}
|
|
3502
|
+
*/
|
|
3503
|
+
getPaymentPaymentLink(options) {
|
|
3504
|
+
return localVarFp.getPaymentPaymentLink(options).then((request) => request(axios, basePath));
|
|
3505
|
+
},
|
|
3451
3506
|
/**
|
|
3452
3507
|
* Get payout by payout_id
|
|
3453
3508
|
* @param {string} payoutId payout id
|
|
@@ -3773,6 +3828,17 @@ class DefaultApi extends base_1.BaseAPI {
|
|
|
3773
3828
|
.getPaymentMethodPaymentLink(options)
|
|
3774
3829
|
.then((request) => request(this.axios, this.basePath));
|
|
3775
3830
|
}
|
|
3831
|
+
/**
|
|
3832
|
+
* Get payment (if exists) on the payment link for front-end
|
|
3833
|
+
* @param {*} [options] Override http request option.
|
|
3834
|
+
* @throws {RequiredError}
|
|
3835
|
+
* @memberof DefaultApi
|
|
3836
|
+
*/
|
|
3837
|
+
getPaymentPaymentLink(options) {
|
|
3838
|
+
return exports.DefaultApiFp(this.configuration)
|
|
3839
|
+
.getPaymentPaymentLink(options)
|
|
3840
|
+
.then((request) => request(this.axios, this.basePath));
|
|
3841
|
+
}
|
|
3776
3842
|
/**
|
|
3777
3843
|
* Get payout by payout_id
|
|
3778
3844
|
* @param {string} payoutId payout id
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.268",
|
|
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.9",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
|
-
"chai": "^5.1.
|
|
28
|
+
"chai": "^5.1.2",
|
|
29
29
|
"mocha": "^10.7.3",
|
|
30
30
|
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|