@finverse/sdk-typescript 0.0.207 → 0.0.209
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 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -943,6 +943,12 @@ export interface CreateMandateResponse {
|
|
|
943
943
|
* @memberof CreateMandateResponse
|
|
944
944
|
*/
|
|
945
945
|
mandate_id: string;
|
|
946
|
+
/**
|
|
947
|
+
* Finverse Payment Method ID (ULID)
|
|
948
|
+
* @type {string}
|
|
949
|
+
* @memberof CreateMandateResponse
|
|
950
|
+
*/
|
|
951
|
+
payment_method_id?: string;
|
|
946
952
|
/**
|
|
947
953
|
* Mandate status
|
|
948
954
|
* @type {string}
|
|
@@ -2198,6 +2204,12 @@ export interface GetMandateResponse {
|
|
|
2198
2204
|
* @memberof GetMandateResponse
|
|
2199
2205
|
*/
|
|
2200
2206
|
mandate_id: string;
|
|
2207
|
+
/**
|
|
2208
|
+
* Finverse Payment Method ID (ULID)
|
|
2209
|
+
* @type {string}
|
|
2210
|
+
* @memberof GetMandateResponse
|
|
2211
|
+
*/
|
|
2212
|
+
payment_method_id?: string;
|
|
2201
2213
|
/**
|
|
2202
2214
|
* Mandate Status
|
|
2203
2215
|
* @type {string}
|
|
@@ -4515,7 +4527,13 @@ export interface PaymentDetails2 {
|
|
|
4515
4527
|
* @type {string}
|
|
4516
4528
|
* @memberof PaymentDetails2
|
|
4517
4529
|
*/
|
|
4518
|
-
mandate_id
|
|
4530
|
+
mandate_id?: string;
|
|
4531
|
+
/**
|
|
4532
|
+
* ID of the payment method this pament is referring to.
|
|
4533
|
+
* @type {string}
|
|
4534
|
+
* @memberof PaymentDetails2
|
|
4535
|
+
*/
|
|
4536
|
+
payment_method_id?: string;
|
|
4519
4537
|
/**
|
|
4520
4538
|
* Customer\'s ID for this transaction
|
|
4521
4539
|
* @type {string}
|