authhero 0.62.0 → 0.64.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 +40 -40
- package/dist/authhero.d.ts +64 -4
- package/dist/authhero.mjs +8778 -7812
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -6704,13 +6704,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6704
6704
|
audience?: string | undefined;
|
|
6705
6705
|
scope?: string | undefined;
|
|
6706
6706
|
auth0Client?: string | undefined;
|
|
6707
|
+
login_ticket?: string | undefined;
|
|
6707
6708
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6708
6709
|
vendor_id?: string | undefined;
|
|
6709
6710
|
prompt?: string | undefined;
|
|
6710
6711
|
code_challenge?: string | undefined;
|
|
6711
6712
|
ui_locales?: string | undefined;
|
|
6712
6713
|
realm?: string | undefined;
|
|
6713
|
-
login_ticket?: string | undefined;
|
|
6714
6714
|
login_hint?: string | undefined;
|
|
6715
6715
|
max_age?: string | undefined;
|
|
6716
6716
|
};
|
|
@@ -6731,13 +6731,13 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6731
6731
|
audience?: string | undefined;
|
|
6732
6732
|
scope?: string | undefined;
|
|
6733
6733
|
auth0Client?: string | undefined;
|
|
6734
|
+
login_ticket?: string | undefined;
|
|
6734
6735
|
code_challenge_method?: CodeChallengeMethod | undefined;
|
|
6735
6736
|
vendor_id?: string | undefined;
|
|
6736
6737
|
prompt?: string | undefined;
|
|
6737
6738
|
code_challenge?: string | undefined;
|
|
6738
6739
|
ui_locales?: string | undefined;
|
|
6739
6740
|
realm?: string | undefined;
|
|
6740
|
-
login_ticket?: string | undefined;
|
|
6741
6741
|
login_hint?: string | undefined;
|
|
6742
6742
|
max_age?: string | undefined;
|
|
6743
6743
|
};
|
|
@@ -6989,7 +6989,67 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
6989
6989
|
Bindings: Bindings;
|
|
6990
6990
|
Variables: Variables;
|
|
6991
6991
|
}, import("hono/types").MergeSchemaPath<{
|
|
6992
|
-
"/enter-
|
|
6992
|
+
"/enter-password": {
|
|
6993
|
+
$get: {
|
|
6994
|
+
input: {
|
|
6995
|
+
query: {
|
|
6996
|
+
state: string;
|
|
6997
|
+
};
|
|
6998
|
+
};
|
|
6999
|
+
output: {};
|
|
7000
|
+
outputFormat: string;
|
|
7001
|
+
status: 200;
|
|
7002
|
+
};
|
|
7003
|
+
};
|
|
7004
|
+
} & {
|
|
7005
|
+
"/enter-password": {
|
|
7006
|
+
$post: {
|
|
7007
|
+
input: {
|
|
7008
|
+
query: {
|
|
7009
|
+
state: string;
|
|
7010
|
+
};
|
|
7011
|
+
} & {
|
|
7012
|
+
form: {
|
|
7013
|
+
password: string;
|
|
7014
|
+
};
|
|
7015
|
+
};
|
|
7016
|
+
output: {};
|
|
7017
|
+
outputFormat: string;
|
|
7018
|
+
status: 200;
|
|
7019
|
+
};
|
|
7020
|
+
};
|
|
7021
|
+
}, "/enter-password"> & import("hono/types").MergeSchemaPath<{
|
|
7022
|
+
"/": {
|
|
7023
|
+
$get: {
|
|
7024
|
+
input: {
|
|
7025
|
+
query: {
|
|
7026
|
+
state: string;
|
|
7027
|
+
};
|
|
7028
|
+
};
|
|
7029
|
+
output: {};
|
|
7030
|
+
outputFormat: string;
|
|
7031
|
+
status: 200;
|
|
7032
|
+
};
|
|
7033
|
+
};
|
|
7034
|
+
} & {
|
|
7035
|
+
"/": {
|
|
7036
|
+
$post: {
|
|
7037
|
+
input: {
|
|
7038
|
+
query: {
|
|
7039
|
+
state: string;
|
|
7040
|
+
};
|
|
7041
|
+
} & {
|
|
7042
|
+
form: {
|
|
7043
|
+
code: string;
|
|
7044
|
+
};
|
|
7045
|
+
};
|
|
7046
|
+
output: {};
|
|
7047
|
+
outputFormat: string;
|
|
7048
|
+
status: 200;
|
|
7049
|
+
};
|
|
7050
|
+
};
|
|
7051
|
+
}, "/enter-code"> & import("hono/types").MergeSchemaPath<{
|
|
7052
|
+
"/": {
|
|
6993
7053
|
$get: {
|
|
6994
7054
|
input: {
|
|
6995
7055
|
query: {
|
|
@@ -7003,7 +7063,7 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
7003
7063
|
};
|
|
7004
7064
|
};
|
|
7005
7065
|
} & {
|
|
7006
|
-
"/
|
|
7066
|
+
"/": {
|
|
7007
7067
|
$post: {
|
|
7008
7068
|
input: {
|
|
7009
7069
|
query: {
|