@finverse/sdk-typescript 0.0.208 → 0.0.210
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 +15 -3
- 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}
|
|
@@ -4727,13 +4739,13 @@ export interface PaymentLinkDetails {
|
|
|
4727
4739
|
* @type {string}
|
|
4728
4740
|
* @memberof PaymentLinkDetails
|
|
4729
4741
|
*/
|
|
4730
|
-
description
|
|
4742
|
+
description: string;
|
|
4731
4743
|
/**
|
|
4732
|
-
* For external invoice reference
|
|
4744
|
+
* For external invoice/transaction reference
|
|
4733
4745
|
* @type {string}
|
|
4734
4746
|
* @memberof PaymentLinkDetails
|
|
4735
4747
|
*/
|
|
4736
|
-
|
|
4748
|
+
external_transaction_reference: string;
|
|
4737
4749
|
}
|
|
4738
4750
|
/**
|
|
4739
4751
|
*
|