@finverse/sdk-typescript 0.0.219 → 0.0.221
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 -1
- 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
|
|
@@ -4624,11 +4643,17 @@ export interface PaymentDetails2 {
|
|
|
4624
4643
|
*/
|
|
4625
4644
|
mandate_id?: string;
|
|
4626
4645
|
/**
|
|
4627
|
-
* Customer\'s ID for this transaction
|
|
4646
|
+
* Deprecated: Customer\'s ID for this transaction
|
|
4628
4647
|
* @type {string}
|
|
4629
4648
|
* @memberof PaymentDetails2
|
|
4630
4649
|
*/
|
|
4631
4650
|
transaction_reference_id?: string;
|
|
4651
|
+
/**
|
|
4652
|
+
* Customer reference for this transaction
|
|
4653
|
+
* @type {string}
|
|
4654
|
+
* @memberof PaymentDetails2
|
|
4655
|
+
*/
|
|
4656
|
+
external_transaction_reference?: string;
|
|
4632
4657
|
}
|
|
4633
4658
|
/**
|
|
4634
4659
|
*
|