@finverse/sdk-typescript 0.0.217 → 0.0.219
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 +53 -21
- 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";
|
|
@@ -1326,6 +1339,12 @@ export interface CreatePaymentRequest {
|
|
|
1326
1339
|
* @memberof CreatePaymentRequest
|
|
1327
1340
|
*/
|
|
1328
1341
|
currency: string;
|
|
1342
|
+
/**
|
|
1343
|
+
* ID of the payment method this pament is referring to.
|
|
1344
|
+
* @type {string}
|
|
1345
|
+
* @memberof CreatePaymentRequest
|
|
1346
|
+
*/
|
|
1347
|
+
payment_method_id?: string;
|
|
1329
1348
|
/**
|
|
1330
1349
|
*
|
|
1331
1350
|
* @type {PaymentDetails2}
|
|
@@ -1728,25 +1747,38 @@ export interface FVCard {
|
|
|
1728
1747
|
* @memberof FVCard
|
|
1729
1748
|
*/
|
|
1730
1749
|
status?: FVCardStatusEnum;
|
|
1750
|
+
/**
|
|
1751
|
+
*
|
|
1752
|
+
* @type {FVCardDetails}
|
|
1753
|
+
* @memberof FVCard
|
|
1754
|
+
*/
|
|
1755
|
+
card_details?: FVCardDetails;
|
|
1756
|
+
}
|
|
1757
|
+
export declare const FVCardStatusEnum: {
|
|
1758
|
+
readonly Unknown: "UNKNOWN";
|
|
1759
|
+
readonly Processing: "PROCESSING";
|
|
1760
|
+
readonly Succeeded: "SUCCEEDED";
|
|
1761
|
+
};
|
|
1762
|
+
export declare type FVCardStatusEnum = (typeof FVCardStatusEnum)[keyof typeof FVCardStatusEnum];
|
|
1763
|
+
/**
|
|
1764
|
+
*
|
|
1765
|
+
* @export
|
|
1766
|
+
* @interface FVCardDetails
|
|
1767
|
+
*/
|
|
1768
|
+
export interface FVCardDetails {
|
|
1731
1769
|
/**
|
|
1732
1770
|
* The credit card brand
|
|
1733
1771
|
* @type {string}
|
|
1734
|
-
* @memberof
|
|
1772
|
+
* @memberof FVCardDetails
|
|
1735
1773
|
*/
|
|
1736
1774
|
brand?: string;
|
|
1737
1775
|
/**
|
|
1738
1776
|
* Last 4 digits of the credit card number
|
|
1739
1777
|
* @type {string}
|
|
1740
|
-
* @memberof
|
|
1778
|
+
* @memberof FVCardDetails
|
|
1741
1779
|
*/
|
|
1742
1780
|
last4?: string;
|
|
1743
1781
|
}
|
|
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
1782
|
/**
|
|
1751
1783
|
*
|
|
1752
1784
|
* @export
|
|
@@ -4591,12 +4623,6 @@ export interface PaymentDetails2 {
|
|
|
4591
4623
|
* @memberof PaymentDetails2
|
|
4592
4624
|
*/
|
|
4593
4625
|
mandate_id?: string;
|
|
4594
|
-
/**
|
|
4595
|
-
* ID of the payment method this pament is referring to.
|
|
4596
|
-
* @type {string}
|
|
4597
|
-
* @memberof PaymentDetails2
|
|
4598
|
-
*/
|
|
4599
|
-
payment_method_id?: string;
|
|
4600
4626
|
/**
|
|
4601
4627
|
* Customer\'s ID for this transaction
|
|
4602
4628
|
* @type {string}
|
|
@@ -5132,6 +5158,12 @@ export interface PaymentResponse {
|
|
|
5132
5158
|
* @memberof PaymentResponse
|
|
5133
5159
|
*/
|
|
5134
5160
|
status?: PaymentResponseStatusEnum;
|
|
5161
|
+
/**
|
|
5162
|
+
* ID of the payment method this pament is referring to.
|
|
5163
|
+
* @type {string}
|
|
5164
|
+
* @memberof PaymentResponse
|
|
5165
|
+
*/
|
|
5166
|
+
payment_method_id?: string;
|
|
5135
5167
|
/**
|
|
5136
5168
|
*
|
|
5137
5169
|
* @type {PaymentDetails2}
|