@ikonai/sdk-react-ui 1.0.37 → 1.0.38
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/app/use-ikon-app.d.ts +5 -0
- package/index.js +578 -573
- package/package.json +1 -1
package/app/use-ikon-app.d.ts
CHANGED
|
@@ -88,6 +88,11 @@ export interface UseIkonAppResult {
|
|
|
88
88
|
* Current error message, if any.
|
|
89
89
|
*/
|
|
90
90
|
error: string | null;
|
|
91
|
+
/**
|
|
92
|
+
* Access denied reason, if the server rejected the user (e.g. domain allowlist).
|
|
93
|
+
* When set, the app should show an access denied screen instead of the normal UI.
|
|
94
|
+
*/
|
|
95
|
+
accessDeniedReason: string | null;
|
|
91
96
|
/**
|
|
92
97
|
* UI stores for rendering.
|
|
93
98
|
*/
|