@finverse/sdk-typescript 0.0.104 → 0.0.106
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 +22 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -988,6 +988,14 @@ export interface CreateSenderAccountRequest {
|
|
|
988
988
|
* @memberof CreateSenderAccountRequest
|
|
989
989
|
*/
|
|
990
990
|
sender_id: string;
|
|
991
|
+
/**
|
|
992
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
993
|
+
* @type {{ [key: string]: string; }}
|
|
994
|
+
* @memberof CreateSenderAccountRequest
|
|
995
|
+
*/
|
|
996
|
+
metadata?: {
|
|
997
|
+
[key: string]: string;
|
|
998
|
+
};
|
|
991
999
|
}
|
|
992
1000
|
export declare const CreateSenderAccountRequestAccountTypeEnum: {
|
|
993
1001
|
readonly ExternalAccount: "EXTERNAL_ACCOUNT";
|
|
@@ -1709,6 +1717,12 @@ export interface GetMandateResponse {
|
|
|
1709
1717
|
* @memberof GetMandateResponse
|
|
1710
1718
|
*/
|
|
1711
1719
|
sender: GetMandateSender;
|
|
1720
|
+
/**
|
|
1721
|
+
*
|
|
1722
|
+
* @type {SenderAccountResponse}
|
|
1723
|
+
* @memberof GetMandateResponse
|
|
1724
|
+
*/
|
|
1725
|
+
sender_account?: SenderAccountResponse;
|
|
1712
1726
|
/**
|
|
1713
1727
|
*
|
|
1714
1728
|
* @type {MandateDetails}
|
|
@@ -4382,6 +4396,14 @@ export interface SenderAccountResponse {
|
|
|
4382
4396
|
* @memberof SenderAccountResponse
|
|
4383
4397
|
*/
|
|
4384
4398
|
sender_id?: string;
|
|
4399
|
+
/**
|
|
4400
|
+
* Additional attributes of the sender account in key:value format (e.g. sender_id: 1234). It supports up to 10 key:value pairs, whereas the key and value supports up to 50 and 500 characters respectively.
|
|
4401
|
+
* @type {{ [key: string]: string; }}
|
|
4402
|
+
* @memberof SenderAccountResponse
|
|
4403
|
+
*/
|
|
4404
|
+
metadata?: {
|
|
4405
|
+
[key: string]: string;
|
|
4406
|
+
};
|
|
4385
4407
|
/**
|
|
4386
4408
|
* Timestamp of when the sender was created in ISO format (YYYY-MM-DDTHH:MM:SS.SSSZ)
|
|
4387
4409
|
* @type {string}
|