@finverse/sdk-typescript 0.0.202 → 0.0.203
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 +2 -1
- package/dist/api.js +1 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1214,7 +1214,7 @@ export interface CreatePaymentLinkRequest {
|
|
|
1214
1214
|
* @type {number}
|
|
1215
1215
|
* @memberof CreatePaymentLinkRequest
|
|
1216
1216
|
*/
|
|
1217
|
-
amount
|
|
1217
|
+
amount?: number;
|
|
1218
1218
|
/**
|
|
1219
1219
|
*
|
|
1220
1220
|
* @type {string}
|
|
@@ -1268,6 +1268,7 @@ export interface CreatePaymentLinkRequest {
|
|
|
1268
1268
|
}
|
|
1269
1269
|
export declare const CreatePaymentLinkRequestModeEnum: {
|
|
1270
1270
|
readonly Payment: "PAYMENT";
|
|
1271
|
+
readonly Setup: "SETUP";
|
|
1271
1272
|
};
|
|
1272
1273
|
export declare type CreatePaymentLinkRequestModeEnum = (typeof CreatePaymentLinkRequestModeEnum)[keyof typeof CreatePaymentLinkRequestModeEnum];
|
|
1273
1274
|
/**
|
package/dist/api.js
CHANGED