authhero 0.66.0 → 0.68.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 +32 -3
- package/dist/authhero.mjs +5985 -5611
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6706,9 +6706,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6706
6706
|
auth0Client?: string | undefined;
|
|
6707
6707
|
login_ticket?: string | undefined;
|
|
6708
6708
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6709
|
+
code_challenge?: string | undefined;
|
|
6709
6710
|
vendor_id?: string | undefined;
|
|
6710
6711
|
prompt?: string | undefined;
|
|
6711
|
-
code_challenge?: string | undefined;
|
|
6712
6712
|
ui_locales?: string | undefined;
|
|
6713
6713
|
realm?: string | undefined;
|
|
6714
6714
|
login_hint?: string | undefined;
|
|
@@ -6733,9 +6733,9 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6733
6733
|
auth0Client?: string | undefined;
|
|
6734
6734
|
login_ticket?: string | undefined;
|
|
6735
6735
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6736
|
+
code_challenge?: string | undefined;
|
|
6736
6737
|
vendor_id?: string | undefined;
|
|
6737
6738
|
prompt?: string | undefined;
|
|
6738
|
-
code_challenge?: string | undefined;
|
|
6739
6739
|
ui_locales?: string | undefined;
|
|
6740
6740
|
realm?: string | undefined;
|
|
6741
6741
|
login_hint?: string | undefined;
|
|
@@ -6790,10 +6790,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6790
6790
|
state?: string | undefined;
|
|
6791
6791
|
redirect_uri?: string | undefined;
|
|
6792
6792
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6793
|
+
code_challenge?: string | undefined;
|
|
6793
6794
|
vendor_id?: string | undefined;
|
|
6794
6795
|
act_as?: string | undefined;
|
|
6795
6796
|
prompt?: string | undefined;
|
|
6796
|
-
code_challenge?: string | undefined;
|
|
6797
6797
|
ui_locales?: string | undefined;
|
|
6798
6798
|
};
|
|
6799
6799
|
send: "code" | "link";
|
|
@@ -7041,9 +7041,38 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7041
7041
|
query: {
|
|
7042
7042
|
state: string;
|
|
7043
7043
|
};
|
|
7044
|
+
};
|
|
7045
|
+
output: {};
|
|
7046
|
+
outputFormat: string;
|
|
7047
|
+
status: 200;
|
|
7048
|
+
};
|
|
7049
|
+
};
|
|
7050
|
+
}, "/forgot-password"> & import("hono/types").MergeSchemaPath<{
|
|
7051
|
+
"/": {
|
|
7052
|
+
$get: {
|
|
7053
|
+
input: {
|
|
7054
|
+
query: {
|
|
7055
|
+
code: string;
|
|
7056
|
+
state: string;
|
|
7057
|
+
};
|
|
7058
|
+
};
|
|
7059
|
+
output: {};
|
|
7060
|
+
outputFormat: string;
|
|
7061
|
+
status: 200;
|
|
7062
|
+
};
|
|
7063
|
+
};
|
|
7064
|
+
} & {
|
|
7065
|
+
"/": {
|
|
7066
|
+
$post: {
|
|
7067
|
+
input: {
|
|
7068
|
+
query: {
|
|
7069
|
+
code: string;
|
|
7070
|
+
state: string;
|
|
7071
|
+
};
|
|
7044
7072
|
} & {
|
|
7045
7073
|
form: {
|
|
7046
7074
|
password: string;
|
|
7075
|
+
"re-enter-password": string;
|
|
7047
7076
|
};
|
|
7048
7077
|
};
|
|
7049
7078
|
output: {};
|