@esri/solutions-components 5.0.4-next.2 → 5.0.4-next.3
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/cdn/{UJUK6EU3.js → AHJUZVGX.js} +1 -1
- package/dist/cdn/{E44XREMR.js → OOICXNBQ.js} +1 -1
- package/dist/cdn/{6FABFHMW.js → UWTLP2OB.js} +1 -1
- package/dist/cdn/index.js +1 -1
- package/dist/chunks/Auth.js +2 -2
- package/dist/docs/api.json +1 -1
- package/dist/docs/docs.json +1 -1
- package/dist/docs/web-types.json +1 -1
- package/dist/solutions-components_commit.txt +4 -7
- package/dist/utils/Auth.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
Built 02/27/2026
|
|
1
|
+
Built 02/27/2026 14:31:12.18
|
|
2
2
|
release/5.0.0
|
|
3
|
-
commit
|
|
4
|
-
Merge: d19705b23 cae571822
|
|
3
|
+
commit f2248d70ddd1f89332a9822876ac2fd7bb44457c
|
|
5
4
|
Author: John Hauck <jhauck@esri.com>
|
|
6
|
-
Date: Fri Feb 27
|
|
5
|
+
Date: Fri Feb 27 15:24:09 2026 -0700
|
|
7
6
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
use immediate auth mode in ent
|
|
7
|
+
pass isEnterprise through
|
package/dist/utils/Auth.d.ts
CHANGED
|
@@ -27,9 +27,10 @@ export class Auth {
|
|
|
27
27
|
* Initializes the Auth object. This method must be called before any other Auth methods.
|
|
28
28
|
* If the user is not authorized to use the app, the page will be redirected to an error page.
|
|
29
29
|
*
|
|
30
|
+
* @param isEnterprise
|
|
30
31
|
* @returns Promise that resolves with the initialized Auth object
|
|
31
32
|
*/
|
|
32
|
-
initialize(): Promise<Auth>;
|
|
33
|
+
initialize(isEnterprise?: boolean): Promise<Auth>;
|
|
33
34
|
/** Refreshes the user session token */
|
|
34
35
|
refreshSession(): Promise<common.UserSession> | undefined;
|
|
35
36
|
/**
|