@finverse/sdk-typescript 0.0.149 → 0.0.150
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 +12 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -957,6 +957,12 @@ export interface CreatePaymentLinkRequest {
|
|
|
957
957
|
metadata?: {
|
|
958
958
|
[key: string]: string;
|
|
959
959
|
};
|
|
960
|
+
/**
|
|
961
|
+
* URI to redirect to. Only needed if ui_mode = redirect
|
|
962
|
+
* @type {string}
|
|
963
|
+
* @memberof CreatePaymentLinkRequest
|
|
964
|
+
*/
|
|
965
|
+
redirect_uri?: string;
|
|
960
966
|
}
|
|
961
967
|
export declare const CreatePaymentLinkRequestModeEnum: {
|
|
962
968
|
readonly Payment: "PAYMENT";
|
|
@@ -4151,6 +4157,12 @@ export interface PaymentLinkResponse {
|
|
|
4151
4157
|
* @memberof PaymentLinkResponse
|
|
4152
4158
|
*/
|
|
4153
4159
|
sender?: PaymentLinkSenderResponse;
|
|
4160
|
+
/**
|
|
4161
|
+
*
|
|
4162
|
+
* @type {string}
|
|
4163
|
+
* @memberof PaymentLinkResponse
|
|
4164
|
+
*/
|
|
4165
|
+
redirect_uri?: string;
|
|
4154
4166
|
}
|
|
4155
4167
|
export declare const PaymentLinkResponseModeEnum: {
|
|
4156
4168
|
readonly Payment: "PAYMENT";
|