@finverse/sdk-typescript 0.0.217 → 0.0.218
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 +41 -15
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -758,27 +758,40 @@ export interface CardDetails {
|
|
|
758
758
|
/**
|
|
759
759
|
*
|
|
760
760
|
* @export
|
|
761
|
-
* @interface
|
|
761
|
+
* @interface CardFvLinkDetails
|
|
762
762
|
*/
|
|
763
|
-
export interface
|
|
763
|
+
export interface CardFvLinkDetails {
|
|
764
764
|
/**
|
|
765
765
|
*
|
|
766
766
|
* @type {string}
|
|
767
|
-
* @memberof
|
|
767
|
+
* @memberof CardFvLinkDetails
|
|
768
768
|
*/
|
|
769
|
-
|
|
769
|
+
brand?: string;
|
|
770
770
|
/**
|
|
771
771
|
*
|
|
772
772
|
* @type {string}
|
|
773
|
-
* @memberof
|
|
773
|
+
* @memberof CardFvLinkDetails
|
|
774
774
|
*/
|
|
775
|
-
|
|
775
|
+
last4?: string;
|
|
776
|
+
}
|
|
777
|
+
/**
|
|
778
|
+
*
|
|
779
|
+
* @export
|
|
780
|
+
* @interface CardFvLinkResponse
|
|
781
|
+
*/
|
|
782
|
+
export interface CardFvLinkResponse {
|
|
776
783
|
/**
|
|
777
784
|
*
|
|
778
785
|
* @type {string}
|
|
779
786
|
* @memberof CardFvLinkResponse
|
|
780
787
|
*/
|
|
781
|
-
|
|
788
|
+
status?: CardFvLinkResponseStatusEnum;
|
|
789
|
+
/**
|
|
790
|
+
*
|
|
791
|
+
* @type {CardFvLinkDetails}
|
|
792
|
+
* @memberof CardFvLinkResponse
|
|
793
|
+
*/
|
|
794
|
+
card_details?: CardFvLinkDetails;
|
|
782
795
|
}
|
|
783
796
|
export declare const CardFvLinkResponseStatusEnum: {
|
|
784
797
|
readonly Unknown: "UNKNOWN";
|
|
@@ -1728,25 +1741,38 @@ export interface FVCard {
|
|
|
1728
1741
|
* @memberof FVCard
|
|
1729
1742
|
*/
|
|
1730
1743
|
status?: FVCardStatusEnum;
|
|
1744
|
+
/**
|
|
1745
|
+
*
|
|
1746
|
+
* @type {FVCardDetails}
|
|
1747
|
+
* @memberof FVCard
|
|
1748
|
+
*/
|
|
1749
|
+
card_details?: FVCardDetails;
|
|
1750
|
+
}
|
|
1751
|
+
export declare const FVCardStatusEnum: {
|
|
1752
|
+
readonly Unknown: "UNKNOWN";
|
|
1753
|
+
readonly Processing: "PROCESSING";
|
|
1754
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1755
|
+
};
|
|
1756
|
+
export declare type FVCardStatusEnum = (typeof FVCardStatusEnum)[keyof typeof FVCardStatusEnum];
|
|
1757
|
+
/**
|
|
1758
|
+
*
|
|
1759
|
+
* @export
|
|
1760
|
+
* @interface FVCardDetails
|
|
1761
|
+
*/
|
|
1762
|
+
export interface FVCardDetails {
|
|
1731
1763
|
/**
|
|
1732
1764
|
* The credit card brand
|
|
1733
1765
|
* @type {string}
|
|
1734
|
-
* @memberof
|
|
1766
|
+
* @memberof FVCardDetails
|
|
1735
1767
|
*/
|
|
1736
1768
|
brand?: string;
|
|
1737
1769
|
/**
|
|
1738
1770
|
* Last 4 digits of the credit card number
|
|
1739
1771
|
* @type {string}
|
|
1740
|
-
* @memberof
|
|
1772
|
+
* @memberof FVCardDetails
|
|
1741
1773
|
*/
|
|
1742
1774
|
last4?: string;
|
|
1743
1775
|
}
|
|
1744
|
-
export declare const FVCardStatusEnum: {
|
|
1745
|
-
readonly Unknown: "UNKNOWN";
|
|
1746
|
-
readonly Processing: "PROCESSING";
|
|
1747
|
-
readonly Succeeded: "SUCCEEDED";
|
|
1748
|
-
};
|
|
1749
|
-
export declare type FVCardStatusEnum = (typeof FVCardStatusEnum)[keyof typeof FVCardStatusEnum];
|
|
1750
1776
|
/**
|
|
1751
1777
|
*
|
|
1752
1778
|
* @export
|