@finverse/sdk-typescript 0.0.23 → 0.0.24
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 +12 -0
- package/dist/api.js +6 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1561,6 +1561,12 @@ 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;
|
|
1564
1570
|
}
|
|
1565
1571
|
export declare const LinkTokenRequestUiModeEnum: {
|
|
1566
1572
|
readonly Iframe: "iframe";
|
|
@@ -1568,6 +1574,12 @@ export declare const LinkTokenRequestUiModeEnum: {
|
|
|
1568
1574
|
readonly AutoRedirect: "auto_redirect";
|
|
1569
1575
|
};
|
|
1570
1576
|
export declare type LinkTokenRequestUiModeEnum = typeof LinkTokenRequestUiModeEnum[keyof typeof LinkTokenRequestUiModeEnum];
|
|
1577
|
+
export declare const LinkTokenRequestAutomaticDataRefreshEnum: {
|
|
1578
|
+
readonly On: "ON";
|
|
1579
|
+
readonly Off: "OFF";
|
|
1580
|
+
readonly ForcedOn: "FORCED_ON";
|
|
1581
|
+
};
|
|
1582
|
+
export declare type LinkTokenRequestAutomaticDataRefreshEnum = typeof LinkTokenRequestAutomaticDataRefreshEnum[keyof typeof LinkTokenRequestAutomaticDataRefreshEnum];
|
|
1571
1583
|
/**
|
|
1572
1584
|
*
|
|
1573
1585
|
* @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.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.24",
|
|
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",
|