@finverse/sdk-typescript 0.0.32 → 0.0.33
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 +2 -1
- package/dist/api.js +1 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -1496,7 +1496,7 @@ export interface LinkTokenRequest {
|
|
|
1496
1496
|
*/
|
|
1497
1497
|
link_mode?: string;
|
|
1498
1498
|
/**
|
|
1499
|
-
* The UI mode link is intended to be used in - \"iframe\" (default), \"auto_redirect\" or \"redirect\"
|
|
1499
|
+
* The UI mode link is intended to be used in - \"iframe\" (default), \"auto_redirect\" or \"redirect\" or \"standalone\"
|
|
1500
1500
|
* @type {string}
|
|
1501
1501
|
* @memberof LinkTokenRequest
|
|
1502
1502
|
*/
|
|
@@ -1584,6 +1584,7 @@ export declare const LinkTokenRequestUiModeEnum: {
|
|
|
1584
1584
|
readonly Iframe: "iframe";
|
|
1585
1585
|
readonly Redirect: "redirect";
|
|
1586
1586
|
readonly AutoRedirect: "auto_redirect";
|
|
1587
|
+
readonly Standalone: "standalone";
|
|
1587
1588
|
};
|
|
1588
1589
|
export declare type LinkTokenRequestUiModeEnum = typeof LinkTokenRequestUiModeEnum[keyof typeof LinkTokenRequestUiModeEnum];
|
|
1589
1590
|
export declare const LinkTokenRequestAutomaticDataRefreshEnum: {
|
package/dist/api.js
CHANGED