@finverse/sdk-typescript 0.0.386 → 0.0.387
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 +27 -2
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -4123,10 +4123,10 @@ export interface Institution {
|
|
|
4123
4123
|
login_url?: string;
|
|
4124
4124
|
/**
|
|
4125
4125
|
*
|
|
4126
|
-
* @type {
|
|
4126
|
+
* @type {LoginDetails}
|
|
4127
4127
|
* @memberof Institution
|
|
4128
4128
|
*/
|
|
4129
|
-
login_details
|
|
4129
|
+
login_details?: LoginDetails;
|
|
4130
4130
|
/**
|
|
4131
4131
|
*
|
|
4132
4132
|
* @type {Array<LoginMethod>}
|
|
@@ -5028,6 +5028,31 @@ export interface LoginAction {
|
|
|
5028
5028
|
*/
|
|
5029
5029
|
buttons?: Array<UserButton>;
|
|
5030
5030
|
}
|
|
5031
|
+
/**
|
|
5032
|
+
*
|
|
5033
|
+
* @export
|
|
5034
|
+
* @interface LoginDetails
|
|
5035
|
+
*/
|
|
5036
|
+
export interface LoginDetails {
|
|
5037
|
+
/**
|
|
5038
|
+
*
|
|
5039
|
+
* @type {string}
|
|
5040
|
+
* @memberof LoginDetails
|
|
5041
|
+
*/
|
|
5042
|
+
info_message?: string;
|
|
5043
|
+
/**
|
|
5044
|
+
*
|
|
5045
|
+
* @type {boolean}
|
|
5046
|
+
* @memberof LoginDetails
|
|
5047
|
+
*/
|
|
5048
|
+
secret_required?: boolean;
|
|
5049
|
+
/**
|
|
5050
|
+
*
|
|
5051
|
+
* @type {boolean}
|
|
5052
|
+
* @memberof LoginDetails
|
|
5053
|
+
*/
|
|
5054
|
+
refresh_supported?: boolean;
|
|
5055
|
+
}
|
|
5031
5056
|
/**
|
|
5032
5057
|
*
|
|
5033
5058
|
* @export
|