@finverse/sdk-typescript 0.0.210 → 0.0.211
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 +31 -0
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -1684,6 +1684,31 @@ export interface ErrorResponse {
|
|
|
1684
1684
|
*/
|
|
1685
1685
|
request_id?: string;
|
|
1686
1686
|
}
|
|
1687
|
+
/**
|
|
1688
|
+
*
|
|
1689
|
+
* @export
|
|
1690
|
+
* @interface FVCard
|
|
1691
|
+
*/
|
|
1692
|
+
export interface FVCard {
|
|
1693
|
+
/**
|
|
1694
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof FVCard
|
|
1697
|
+
*/
|
|
1698
|
+
created_at?: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
1701
|
+
* @type {string}
|
|
1702
|
+
* @memberof FVCard
|
|
1703
|
+
*/
|
|
1704
|
+
updated_at?: string;
|
|
1705
|
+
/**
|
|
1706
|
+
* Finverse Card ID (ULID)
|
|
1707
|
+
* @type {string}
|
|
1708
|
+
* @memberof FVCard
|
|
1709
|
+
*/
|
|
1710
|
+
card_id?: string;
|
|
1711
|
+
}
|
|
1687
1712
|
/**
|
|
1688
1713
|
*
|
|
1689
1714
|
* @export
|
|
@@ -5014,6 +5039,12 @@ export interface PaymentMethodResponse {
|
|
|
5014
5039
|
* @memberof PaymentMethodResponse
|
|
5015
5040
|
*/
|
|
5016
5041
|
mandate?: GetMandateResponse;
|
|
5042
|
+
/**
|
|
5043
|
+
*
|
|
5044
|
+
* @type {FVCard}
|
|
5045
|
+
* @memberof PaymentMethodResponse
|
|
5046
|
+
*/
|
|
5047
|
+
card?: FVCard;
|
|
5017
5048
|
}
|
|
5018
5049
|
/**
|
|
5019
5050
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.211",
|
|
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": "^
|
|
28
|
+
"chai": "^5.0.0",
|
|
29
29
|
"mocha": "^10.2.0",
|
|
30
30
|
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|