@finverse/sdk-typescript 0.0.4 → 0.0.5
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 +12 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1329,6 +1329,18 @@ export interface LinkTokenRequest {
|
|
|
1329
1329
|
* @memberof LinkTokenRequest
|
|
1330
1330
|
*/
|
|
1331
1331
|
products_supported?: Array<string>;
|
|
1332
|
+
/**
|
|
1333
|
+
* products that is requested
|
|
1334
|
+
* @type {Array<string>}
|
|
1335
|
+
* @memberof LinkTokenRequest
|
|
1336
|
+
*/
|
|
1337
|
+
products_requested?: Array<string>;
|
|
1338
|
+
/**
|
|
1339
|
+
* The identifier returned after creating payment instruction
|
|
1340
|
+
* @type {string}
|
|
1341
|
+
* @memberof LinkTokenRequest
|
|
1342
|
+
*/
|
|
1343
|
+
payment_instruction_id?: string;
|
|
1332
1344
|
}
|
|
1333
1345
|
export declare const LinkTokenRequestUiModeEnum: {
|
|
1334
1346
|
readonly Iframe: "iframe";
|