@finverse/sdk-typescript 0.0.90 → 0.0.91
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 +9 -3
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -676,7 +676,7 @@ export interface CreateMandateResponse {
|
|
|
676
676
|
* @type {string}
|
|
677
677
|
* @memberof CreateMandateResponse
|
|
678
678
|
*/
|
|
679
|
-
|
|
679
|
+
updated_at: string;
|
|
680
680
|
/**
|
|
681
681
|
* Finverse Mandate ID (ULID)
|
|
682
682
|
* @type {string}
|
|
@@ -1490,7 +1490,7 @@ export interface GetMandateResponse {
|
|
|
1490
1490
|
* @type {string}
|
|
1491
1491
|
* @memberof GetMandateResponse
|
|
1492
1492
|
*/
|
|
1493
|
-
|
|
1493
|
+
updated_at: string;
|
|
1494
1494
|
/**
|
|
1495
1495
|
* Finverse Mandate ID (ULID)
|
|
1496
1496
|
* @type {string}
|
|
@@ -3609,7 +3609,7 @@ export interface PaymentResponse {
|
|
|
3609
3609
|
* @type {string}
|
|
3610
3610
|
* @memberof PaymentResponse
|
|
3611
3611
|
*/
|
|
3612
|
-
|
|
3612
|
+
updated_at?: string;
|
|
3613
3613
|
/**
|
|
3614
3614
|
* Possible values - CREATED, AUTHORIZED, SUBMITTED, EXECUTED, FAILED, REJECTED, CANCELLED.
|
|
3615
3615
|
* @type {string}
|
|
@@ -3634,6 +3634,12 @@ export interface PaymentResponse {
|
|
|
3634
3634
|
* @memberof PaymentResponse
|
|
3635
3635
|
*/
|
|
3636
3636
|
sender?: GetMandateSender;
|
|
3637
|
+
/**
|
|
3638
|
+
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
3639
|
+
* @type {string}
|
|
3640
|
+
* @memberof PaymentResponse
|
|
3641
|
+
*/
|
|
3642
|
+
created_at?: string;
|
|
3637
3643
|
/**
|
|
3638
3644
|
* Timestamp in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
3639
3645
|
* @type {string}
|