@finverse/sdk-typescript 0.0.251 → 0.0.252
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 +26 -2
- package/package.json +3 -3
package/dist/api.d.ts
CHANGED
|
@@ -762,17 +762,29 @@ export interface CardDetails {
|
|
|
762
762
|
*/
|
|
763
763
|
export interface CardFvLinkDetails {
|
|
764
764
|
/**
|
|
765
|
-
*
|
|
765
|
+
* The credit card brand
|
|
766
766
|
* @type {string}
|
|
767
767
|
* @memberof CardFvLinkDetails
|
|
768
768
|
*/
|
|
769
769
|
brand?: string;
|
|
770
770
|
/**
|
|
771
|
-
*
|
|
771
|
+
* Last 4 digits of the credit card number
|
|
772
772
|
* @type {string}
|
|
773
773
|
* @memberof CardFvLinkDetails
|
|
774
774
|
*/
|
|
775
775
|
last4?: string;
|
|
776
|
+
/**
|
|
777
|
+
* The credit card expiry month
|
|
778
|
+
* @type {number}
|
|
779
|
+
* @memberof CardFvLinkDetails
|
|
780
|
+
*/
|
|
781
|
+
expiry_month?: number;
|
|
782
|
+
/**
|
|
783
|
+
* The credit card expiry year
|
|
784
|
+
* @type {number}
|
|
785
|
+
* @memberof CardFvLinkDetails
|
|
786
|
+
*/
|
|
787
|
+
expiry_year?: number;
|
|
776
788
|
}
|
|
777
789
|
/**
|
|
778
790
|
*
|
|
@@ -1969,6 +1981,18 @@ export interface FVCardDetails {
|
|
|
1969
1981
|
* @memberof FVCardDetails
|
|
1970
1982
|
*/
|
|
1971
1983
|
last4?: string;
|
|
1984
|
+
/**
|
|
1985
|
+
* The credit card expiry month
|
|
1986
|
+
* @type {number}
|
|
1987
|
+
* @memberof FVCardDetails
|
|
1988
|
+
*/
|
|
1989
|
+
expiry_month?: number;
|
|
1990
|
+
/**
|
|
1991
|
+
* The credit card expiry year
|
|
1992
|
+
* @type {number}
|
|
1993
|
+
* @memberof FVCardDetails
|
|
1994
|
+
*/
|
|
1995
|
+
expiry_year?: number;
|
|
1972
1996
|
}
|
|
1973
1997
|
/**
|
|
1974
1998
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.252",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -21,12 +21,12 @@
|
|
|
21
21
|
"axios": "^0.21.4"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@types/chai": "^4.3.
|
|
24
|
+
"@types/chai": "^4.3.17",
|
|
25
25
|
"@types/mocha": "^10.0.7",
|
|
26
26
|
"@types/node": "^12.11.5",
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^5.1.1",
|
|
29
|
-
"mocha": "^10.
|
|
29
|
+
"mocha": "^10.7.0",
|
|
30
30
|
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|
|
32
32
|
},
|