@finverse/sdk-typescript 0.0.204 → 0.0.205
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 +44 -1
- package/package.json +2 -2
package/dist/api.d.ts
CHANGED
|
@@ -4051,6 +4051,43 @@ export interface MandateDetails {
|
|
|
4051
4051
|
*/
|
|
4052
4052
|
mandate_bank_reference?: string;
|
|
4053
4053
|
}
|
|
4054
|
+
/**
|
|
4055
|
+
*
|
|
4056
|
+
* @export
|
|
4057
|
+
* @interface MandateDetailsForPaymentLink
|
|
4058
|
+
*/
|
|
4059
|
+
export interface MandateDetailsForPaymentLink {
|
|
4060
|
+
/**
|
|
4061
|
+
* YYYY-MM-DD, must be later than or the same as the date of creation. If unspecified, default to the date of creation.
|
|
4062
|
+
* @type {string}
|
|
4063
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4064
|
+
*/
|
|
4065
|
+
start_date?: string | null;
|
|
4066
|
+
/**
|
|
4067
|
+
* YYYY-MM-DD, must be later than the date of creation.
|
|
4068
|
+
* @type {string}
|
|
4069
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4070
|
+
*/
|
|
4071
|
+
end_date?: string | null;
|
|
4072
|
+
/**
|
|
4073
|
+
*
|
|
4074
|
+
* @type {TransactionLimits}
|
|
4075
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4076
|
+
*/
|
|
4077
|
+
transaction_limits?: TransactionLimits;
|
|
4078
|
+
/**
|
|
4079
|
+
* End-user facing description of the mandate (used in notifications, and in payments if no description is provided)
|
|
4080
|
+
* @type {string}
|
|
4081
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4082
|
+
*/
|
|
4083
|
+
description?: string;
|
|
4084
|
+
/**
|
|
4085
|
+
* A bank specific reference, what the end user may see
|
|
4086
|
+
* @type {string}
|
|
4087
|
+
* @memberof MandateDetailsForPaymentLink
|
|
4088
|
+
*/
|
|
4089
|
+
mandate_bank_reference?: string;
|
|
4090
|
+
}
|
|
4054
4091
|
/**
|
|
4055
4092
|
*
|
|
4056
4093
|
* @export
|
|
@@ -5118,7 +5155,13 @@ export interface PaymentSetupOptions {
|
|
|
5118
5155
|
* @type {string}
|
|
5119
5156
|
* @memberof PaymentSetupOptions
|
|
5120
5157
|
*/
|
|
5121
|
-
future_payments
|
|
5158
|
+
future_payments?: PaymentSetupOptionsFuturePaymentsEnum;
|
|
5159
|
+
/**
|
|
5160
|
+
*
|
|
5161
|
+
* @type {MandateDetailsForPaymentLink}
|
|
5162
|
+
* @memberof PaymentSetupOptions
|
|
5163
|
+
*/
|
|
5164
|
+
mandate_details?: MandateDetailsForPaymentLink;
|
|
5122
5165
|
}
|
|
5123
5166
|
export declare const PaymentSetupOptionsFuturePaymentsEnum: {
|
|
5124
5167
|
readonly Autopay: "AUTOPAY";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finverse/sdk-typescript",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.205",
|
|
4
4
|
"description": "OpenAPI client for @finverse/sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator Contributors",
|
|
6
6
|
"keywords": [
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"axios-mock-adapter": "^1.21.2",
|
|
28
28
|
"chai": "^4.3.10",
|
|
29
29
|
"mocha": "^10.2.0",
|
|
30
|
-
"ts-node": "^10.9.
|
|
30
|
+
"ts-node": "^10.9.2",
|
|
31
31
|
"typescript": "^3.6.4"
|
|
32
32
|
},
|
|
33
33
|
"files": [
|