@finverse/sdk-typescript 0.0.27 → 0.0.30
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 +25 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1403,6 +1403,12 @@ export interface LinkRequest {
|
|
|
1403
1403
|
* @memberof LinkRequest
|
|
1404
1404
|
*/
|
|
1405
1405
|
store_credential: boolean;
|
|
1406
|
+
/**
|
|
1407
|
+
* this is a mandatory field
|
|
1408
|
+
* @type {boolean}
|
|
1409
|
+
* @memberof LinkRequest
|
|
1410
|
+
*/
|
|
1411
|
+
consent?: boolean | null;
|
|
1406
1412
|
/**
|
|
1407
1413
|
* products that is requested
|
|
1408
1414
|
* @type {Array<string>}
|
|
@@ -1806,6 +1812,12 @@ export interface LoginIdentity {
|
|
|
1806
1812
|
* @memberof LoginIdentity
|
|
1807
1813
|
*/
|
|
1808
1814
|
webhook?: string;
|
|
1815
|
+
/**
|
|
1816
|
+
*
|
|
1817
|
+
* @type {string}
|
|
1818
|
+
* @memberof LoginIdentity
|
|
1819
|
+
*/
|
|
1820
|
+
session_status?: string;
|
|
1809
1821
|
/**
|
|
1810
1822
|
*
|
|
1811
1823
|
* @type {string}
|
|
@@ -2082,7 +2094,13 @@ export interface PaymentDetails {
|
|
|
2082
2094
|
*/
|
|
2083
2095
|
export interface PaymentInstruction {
|
|
2084
2096
|
/**
|
|
2085
|
-
*
|
|
2097
|
+
* An id of the this payment
|
|
2098
|
+
* @type {string}
|
|
2099
|
+
* @memberof PaymentInstruction
|
|
2100
|
+
*/
|
|
2101
|
+
payment_instruction_id?: string;
|
|
2102
|
+
/**
|
|
2103
|
+
* An id of the user of this payment, need to equal to userId when creating link
|
|
2086
2104
|
* @type {string}
|
|
2087
2105
|
* @memberof PaymentInstruction
|
|
2088
2106
|
*/
|
|
@@ -2324,6 +2342,12 @@ export interface RelinkRequest {
|
|
|
2324
2342
|
* @memberof RelinkRequest
|
|
2325
2343
|
*/
|
|
2326
2344
|
store_credential: boolean;
|
|
2345
|
+
/**
|
|
2346
|
+
* this is a mandatory field
|
|
2347
|
+
* @type {boolean}
|
|
2348
|
+
* @memberof RelinkRequest
|
|
2349
|
+
*/
|
|
2350
|
+
consent?: boolean | null;
|
|
2327
2351
|
}
|
|
2328
2352
|
/**
|
|
2329
2353
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.30",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.20.0",
|
|
28
28
|
"chai": "^4.3.6",
|
|
29
|
-
"mocha": "^
|
|
29
|
+
"mocha": "^10.0.0",
|
|
30
30
|
"ts-node": "^10.7.0",
|
|
31
31
|
"typescript": "^3.6.4"
|
|
32
32
|
},
|