authhero 0.272.0 → 0.273.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 +34 -34
- package/dist/authhero.d.ts +5 -0
- package/dist/authhero.mjs +7140 -7034
- package/dist/stats.html +1 -1
- package/package.json +10 -4
package/dist/authhero.d.ts
CHANGED
|
@@ -17488,6 +17488,7 @@ export type Strategy = {
|
|
|
17488
17488
|
Bindings: Bindings;
|
|
17489
17489
|
Variables: Variables;
|
|
17490
17490
|
}>, connection: Connection, code: string, codeVerifier?: string) => Promise<UserInfo>;
|
|
17491
|
+
disableEmbeddedBrowsers?: boolean;
|
|
17491
17492
|
};
|
|
17492
17493
|
export type SendSMSParams = {
|
|
17493
17494
|
to: string;
|
|
@@ -17615,6 +17616,8 @@ type Props$4 = {
|
|
|
17615
17616
|
loginSession: LoginSession;
|
|
17616
17617
|
email?: string;
|
|
17617
17618
|
client: LegacyClient;
|
|
17619
|
+
isEmbedded?: boolean;
|
|
17620
|
+
browserName?: string;
|
|
17618
17621
|
};
|
|
17619
17622
|
export declare const IdentifierPage: FC<Props$4>;
|
|
17620
17623
|
type Props$5 = {
|
|
@@ -17625,6 +17628,8 @@ type Props$5 = {
|
|
|
17625
17628
|
email?: string;
|
|
17626
17629
|
client: LegacyClient;
|
|
17627
17630
|
className?: string;
|
|
17631
|
+
isEmbedded?: boolean;
|
|
17632
|
+
browserName?: string;
|
|
17628
17633
|
};
|
|
17629
17634
|
export declare const IdentifierForm: FC<Props$5>;
|
|
17630
17635
|
type Props$6 = {
|