@finverse/sdk-typescript 0.0.219 → 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 +19 -0
- 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
|