@finverse/sdk-typescript 0.0.90 → 0.0.92
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 -9
- 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}
|
|
@@ -3862,6 +3868,12 @@ export interface ProductStatus {
|
|
|
3862
3868
|
* @interface RecipientAccount
|
|
3863
3869
|
*/
|
|
3864
3870
|
export interface RecipientAccount {
|
|
3871
|
+
/**
|
|
3872
|
+
* A unique identifier generated after creating recipient
|
|
3873
|
+
* @type {string}
|
|
3874
|
+
* @memberof RecipientAccount
|
|
3875
|
+
*/
|
|
3876
|
+
recipient_account_id?: string;
|
|
3865
3877
|
/**
|
|
3866
3878
|
* Accountholder name of the recipient\'s account
|
|
3867
3879
|
* @type {string}
|
|
@@ -3927,12 +3939,6 @@ export declare type RecipientAccountNumberTypeEnum = typeof RecipientAccountNumb
|
|
|
3927
3939
|
* @interface RecipientResponse
|
|
3928
3940
|
*/
|
|
3929
3941
|
export interface RecipientResponse {
|
|
3930
|
-
/**
|
|
3931
|
-
* A unique identifier generated after creating recipient
|
|
3932
|
-
* @type {string}
|
|
3933
|
-
* @memberof RecipientResponse
|
|
3934
|
-
*/
|
|
3935
|
-
recipient_account_id?: string;
|
|
3936
3942
|
/**
|
|
3937
3943
|
* Recipient\'s name/nickname (note: this does not need to match the actual accountholder name of the recipient\'s account)
|
|
3938
3944
|
* @type {string}
|