@asksuite/askflow-app-sdk 0.2.9 → 0.3.0
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/types.d.ts +5 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -111,6 +111,11 @@ export declare type IAuth = {
|
|
|
111
111
|
scopes?: string[];
|
|
112
112
|
};
|
|
113
113
|
};
|
|
114
|
+
export declare type IAuthValidationResult = {
|
|
115
|
+
key: string;
|
|
116
|
+
success: false;
|
|
117
|
+
error: string;
|
|
118
|
+
};
|
|
114
119
|
export declare type IProfileData = {
|
|
115
120
|
key: string;
|
|
116
121
|
label: II18nData;
|