@finverse/sdk-typescript 0.0.218 → 0.0.220
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 -6
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -792,6 +792,12 @@ export interface CardFvLinkResponse {
|
|
|
792
792
|
* @memberof CardFvLinkResponse
|
|
793
793
|
*/
|
|
794
794
|
card_details?: CardFvLinkDetails;
|
|
795
|
+
/**
|
|
796
|
+
*
|
|
797
|
+
* @type {CardRecipient}
|
|
798
|
+
* @memberof CardFvLinkResponse
|
|
799
|
+
*/
|
|
800
|
+
recipient?: CardRecipient;
|
|
795
801
|
}
|
|
796
802
|
export declare const CardFvLinkResponseStatusEnum: {
|
|
797
803
|
readonly Unknown: "UNKNOWN";
|
|
@@ -799,6 +805,19 @@ export declare const CardFvLinkResponseStatusEnum: {
|
|
|
799
805
|
readonly Succeeded: "SUCCEEDED";
|
|
800
806
|
};
|
|
801
807
|
export declare type CardFvLinkResponseStatusEnum = (typeof CardFvLinkResponseStatusEnum)[keyof typeof CardFvLinkResponseStatusEnum];
|
|
808
|
+
/**
|
|
809
|
+
*
|
|
810
|
+
* @export
|
|
811
|
+
* @interface CardRecipient
|
|
812
|
+
*/
|
|
813
|
+
export interface CardRecipient {
|
|
814
|
+
/**
|
|
815
|
+
* Merchant account name
|
|
816
|
+
* @type {string}
|
|
817
|
+
* @memberof CardRecipient
|
|
818
|
+
*/
|
|
819
|
+
name?: string;
|
|
820
|
+
}
|
|
802
821
|
/**
|
|
803
822
|
*
|
|
804
823
|
* @export
|
|
@@ -1339,6 +1358,12 @@ export interface CreatePaymentRequest {
|
|
|
1339
1358
|
* @memberof CreatePaymentRequest
|
|
1340
1359
|
*/
|
|
1341
1360
|
currency: string;
|
|
1361
|
+
/**
|
|
1362
|
+
* ID of the payment method this pament is referring to.
|
|
1363
|
+
* @type {string}
|
|
1364
|
+
* @memberof CreatePaymentRequest
|
|
1365
|
+
*/
|
|
1366
|
+
payment_method_id?: string;
|
|
1342
1367
|
/**
|
|
1343
1368
|
*
|
|
1344
1369
|
* @type {PaymentDetails2}
|
|
@@ -4617,12 +4642,6 @@ export interface PaymentDetails2 {
|
|
|
4617
4642
|
* @memberof PaymentDetails2
|
|
4618
4643
|
*/
|
|
4619
4644
|
mandate_id?: string;
|
|
4620
|
-
/**
|
|
4621
|
-
* ID of the payment method this pament is referring to.
|
|
4622
|
-
* @type {string}
|
|
4623
|
-
* @memberof PaymentDetails2
|
|
4624
|
-
*/
|
|
4625
|
-
payment_method_id?: string;
|
|
4626
4645
|
/**
|
|
4627
4646
|
* Customer\'s ID for this transaction
|
|
4628
4647
|
* @type {string}
|
|
@@ -5158,6 +5177,12 @@ export interface PaymentResponse {
|
|
|
5158
5177
|
* @memberof PaymentResponse
|
|
5159
5178
|
*/
|
|
5160
5179
|
status?: PaymentResponseStatusEnum;
|
|
5180
|
+
/**
|
|
5181
|
+
* ID of the payment method this pament is referring to.
|
|
5182
|
+
* @type {string}
|
|
5183
|
+
* @memberof PaymentResponse
|
|
5184
|
+
*/
|
|
5185
|
+
payment_method_id?: string;
|
|
5161
5186
|
/**
|
|
5162
5187
|
*
|
|
5163
5188
|
* @type {PaymentDetails2}
|