@finverse/sdk-typescript 0.0.23 → 0.0.26
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 +37 -0
- package/dist/api.js +6 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1561,6 +1561,18 @@ export interface LinkTokenRequest {
|
|
|
1561
1561
|
* @memberof LinkTokenRequest
|
|
1562
1562
|
*/
|
|
1563
1563
|
payment_instruction_id?: string;
|
|
1564
|
+
/**
|
|
1565
|
+
* Controls the behavior of the automatic data refresh checkbox
|
|
1566
|
+
* @type {string}
|
|
1567
|
+
* @memberof LinkTokenRequest
|
|
1568
|
+
*/
|
|
1569
|
+
automatic_data_refresh?: LinkTokenRequestAutomaticDataRefreshEnum;
|
|
1570
|
+
/**
|
|
1571
|
+
* institution\'s status filter
|
|
1572
|
+
* @type {string}
|
|
1573
|
+
* @memberof LinkTokenRequest
|
|
1574
|
+
*/
|
|
1575
|
+
institution_status?: string;
|
|
1564
1576
|
}
|
|
1565
1577
|
export declare const LinkTokenRequestUiModeEnum: {
|
|
1566
1578
|
readonly Iframe: "iframe";
|
|
@@ -1568,6 +1580,12 @@ export declare const LinkTokenRequestUiModeEnum: {
|
|
|
1568
1580
|
readonly AutoRedirect: "auto_redirect";
|
|
1569
1581
|
};
|
|
1570
1582
|
export declare type LinkTokenRequestUiModeEnum = typeof LinkTokenRequestUiModeEnum[keyof typeof LinkTokenRequestUiModeEnum];
|
|
1583
|
+
export declare const LinkTokenRequestAutomaticDataRefreshEnum: {
|
|
1584
|
+
readonly On: "ON";
|
|
1585
|
+
readonly Off: "OFF";
|
|
1586
|
+
readonly ForcedOn: "FORCED_ON";
|
|
1587
|
+
};
|
|
1588
|
+
export declare type LinkTokenRequestAutomaticDataRefreshEnum = typeof LinkTokenRequestAutomaticDataRefreshEnum[keyof typeof LinkTokenRequestAutomaticDataRefreshEnum];
|
|
1571
1589
|
/**
|
|
1572
1590
|
*
|
|
1573
1591
|
* @export
|
|
@@ -1995,6 +2013,19 @@ export interface OtherInfo {
|
|
|
1995
2013
|
*/
|
|
1996
2014
|
bank_code?: string;
|
|
1997
2015
|
}
|
|
2016
|
+
/**
|
|
2017
|
+
*
|
|
2018
|
+
* @export
|
|
2019
|
+
* @interface PaymentAccount
|
|
2020
|
+
*/
|
|
2021
|
+
export interface PaymentAccount {
|
|
2022
|
+
/**
|
|
2023
|
+
* The raw value for the account the user selected when making payment request
|
|
2024
|
+
* @type {string}
|
|
2025
|
+
* @memberof PaymentAccount
|
|
2026
|
+
*/
|
|
2027
|
+
raw?: string;
|
|
2028
|
+
}
|
|
1998
2029
|
/**
|
|
1999
2030
|
*
|
|
2000
2031
|
* @export
|
|
@@ -2086,6 +2117,12 @@ export interface PaymentInstruction {
|
|
|
2086
2117
|
* @memberof PaymentInstruction
|
|
2087
2118
|
*/
|
|
2088
2119
|
sender_name?: string;
|
|
2120
|
+
/**
|
|
2121
|
+
*
|
|
2122
|
+
* @type {PaymentAccount}
|
|
2123
|
+
* @memberof PaymentInstruction
|
|
2124
|
+
*/
|
|
2125
|
+
sender_account?: PaymentAccount;
|
|
2089
2126
|
/**
|
|
2090
2127
|
* The sender account Id
|
|
2091
2128
|
* @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.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = 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.PaymentInstructionTypeEnum = exports.LinkTokenRequestUiModeEnum = exports.CustomerPaymentInstructionTypeEnum = void 0;
|
|
25
|
+
exports.PublicApi = exports.PublicApiFactory = exports.PublicApiFp = exports.PublicApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = 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.PaymentInstructionTypeEnum = exports.LinkTokenRequestAutomaticDataRefreshEnum = exports.LinkTokenRequestUiModeEnum = exports.CustomerPaymentInstructionTypeEnum = void 0;
|
|
26
26
|
const axios_1 = require("axios");
|
|
27
27
|
// Some imports not used depending on template conditions
|
|
28
28
|
// @ts-ignore
|
|
@@ -37,6 +37,11 @@ exports.LinkTokenRequestUiModeEnum = {
|
|
|
37
37
|
Redirect: 'redirect',
|
|
38
38
|
AutoRedirect: 'auto_redirect',
|
|
39
39
|
};
|
|
40
|
+
exports.LinkTokenRequestAutomaticDataRefreshEnum = {
|
|
41
|
+
On: 'ON',
|
|
42
|
+
Off: 'OFF',
|
|
43
|
+
ForcedOn: 'FORCED_ON',
|
|
44
|
+
};
|
|
40
45
|
exports.PaymentInstructionTypeEnum = {
|
|
41
46
|
DebitAuthorization: 'DEBIT_AUTHORIZATION',
|
|
42
47
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.26",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
24
|
"@types/chai": "^4.3.1",
|
|
25
|
-
"@types/mocha": "^9.1.
|
|
25
|
+
"@types/mocha": "^9.1.1",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.20.0",
|
|
28
28
|
"chai": "^4.3.6",
|