authhero 0.302.0 → 0.303.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/authhero.cjs +36 -36
- package/dist/authhero.d.ts +11 -0
- package/dist/authhero.mjs +5706 -5195
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -21035,6 +21035,13 @@ export interface EntityHooksWrapperOptions {
|
|
|
21035
21035
|
* ```
|
|
21036
21036
|
*/
|
|
21037
21037
|
export declare function addEntityHooks(data: DataAdapters, options: EntityHooksWrapperOptions): DataAdapters;
|
|
21038
|
+
/**
|
|
21039
|
+
* Management API scopes for the AuthHero Management API
|
|
21040
|
+
*/
|
|
21041
|
+
export declare const MANAGEMENT_API_SCOPES: {
|
|
21042
|
+
description: string;
|
|
21043
|
+
value: string;
|
|
21044
|
+
}[];
|
|
21038
21045
|
export interface SeedOptions {
|
|
21039
21046
|
/**
|
|
21040
21047
|
* The admin user's email address
|
|
@@ -21072,6 +21079,10 @@ export interface SeedOptions {
|
|
|
21072
21079
|
* Whether to log progress (defaults to true)
|
|
21073
21080
|
*/
|
|
21074
21081
|
debug?: boolean;
|
|
21082
|
+
/**
|
|
21083
|
+
* The issuer URL (used to construct the Management API identifier)
|
|
21084
|
+
*/
|
|
21085
|
+
issuer?: string;
|
|
21075
21086
|
}
|
|
21076
21087
|
export interface SeedResult {
|
|
21077
21088
|
tenantId: string;
|