@xh/hoist 73.0.0-SNAPSHOT.1740415339732 → 73.0.0-SNAPSHOT.1741714715638
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/CHANGELOG.md
CHANGED
|
@@ -63,11 +63,10 @@ export interface BaseOAuthClientConfig<S> {
|
|
|
63
63
|
* suitable concrete implementation to power a client-side OauthService. See `MsalClient` and
|
|
64
64
|
* `AuthZeroClient`
|
|
65
65
|
*
|
|
66
|
-
* Initialize such a service and this client within
|
|
67
|
-
*
|
|
68
|
-
*
|
|
69
|
-
*
|
|
70
|
-
* flow as necessary.
|
|
66
|
+
* Initialize such a service and this client within an app's primary {@link HoistAuthModel} to use
|
|
67
|
+
* the tokens it acquires to authenticate with the Hoist server. (Note this requires a suitable
|
|
68
|
+
* server-side `AuthenticationService` implementation to validate the token and actually resolve
|
|
69
|
+
* the user.) On init, the client impl will initiate a pop-up or redirect flow as necessary.
|
|
71
70
|
*/
|
|
72
71
|
export declare abstract class BaseOAuthClient<C extends BaseOAuthClientConfig<S>, S> extends HoistBase {
|
|
73
72
|
/** Config loaded from UI server + init method. */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@xh/hoist",
|
|
3
|
-
"version": "73.0.0-SNAPSHOT.
|
|
3
|
+
"version": "73.0.0-SNAPSHOT.1741714715638",
|
|
4
4
|
"description": "Hoist add-on for building and deploying React Applications.",
|
|
5
5
|
"repository": "github:xh/hoist-react",
|
|
6
6
|
"homepage": "https://xh.io",
|
|
@@ -89,11 +89,10 @@ export interface BaseOAuthClientConfig<S> {
|
|
|
89
89
|
* suitable concrete implementation to power a client-side OauthService. See `MsalClient` and
|
|
90
90
|
* `AuthZeroClient`
|
|
91
91
|
*
|
|
92
|
-
* Initialize such a service and this client within
|
|
93
|
-
*
|
|
94
|
-
*
|
|
95
|
-
*
|
|
96
|
-
* flow as necessary.
|
|
92
|
+
* Initialize such a service and this client within an app's primary {@link HoistAuthModel} to use
|
|
93
|
+
* the tokens it acquires to authenticate with the Hoist server. (Note this requires a suitable
|
|
94
|
+
* server-side `AuthenticationService` implementation to validate the token and actually resolve
|
|
95
|
+
* the user.) On init, the client impl will initiate a pop-up or redirect flow as necessary.
|
|
97
96
|
*/
|
|
98
97
|
export abstract class BaseOAuthClient<C extends BaseOAuthClientConfig<S>, S> extends HoistBase {
|
|
99
98
|
/** Config loaded from UI server + init method. */
|