authhero 0.281.0 → 0.282.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 +27 -27
- package/dist/authhero.d.ts +29 -10
- package/dist/authhero.mjs +5874 -5907
- package/dist/stats.html +1 -1
- package/package.json +1 -1
package/dist/authhero.d.ts
CHANGED
|
@@ -5,18 +5,37 @@ import { Context } from 'hono';
|
|
|
5
5
|
import { FC, JSXNode, PropsWithChildren } from 'hono/jsx';
|
|
6
6
|
import { CountryCode } from 'libphonenumber-js';
|
|
7
7
|
|
|
8
|
+
export declare const auth0QuerySchema: z.ZodObject<{
|
|
9
|
+
page: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, number, string | undefined>;
|
|
10
|
+
per_page: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, number, string | undefined>;
|
|
11
|
+
include_totals: z.ZodEffects<z.ZodDefault<z.ZodOptional<z.ZodString>>, boolean, string | undefined>;
|
|
12
|
+
sort: z.ZodOptional<z.ZodString>;
|
|
13
|
+
q: z.ZodOptional<z.ZodString>;
|
|
14
|
+
}, "strip", z.ZodTypeAny, {
|
|
15
|
+
page: number;
|
|
16
|
+
per_page: number;
|
|
17
|
+
include_totals: boolean;
|
|
18
|
+
sort?: string | undefined;
|
|
19
|
+
q?: string | undefined;
|
|
20
|
+
}, {
|
|
21
|
+
page?: string | undefined;
|
|
22
|
+
sort?: string | undefined;
|
|
23
|
+
per_page?: string | undefined;
|
|
24
|
+
include_totals?: string | undefined;
|
|
25
|
+
q?: string | undefined;
|
|
26
|
+
}>;
|
|
8
27
|
export declare const totalsSchema: z.ZodObject<{
|
|
9
28
|
start: z.ZodNumber;
|
|
10
29
|
limit: z.ZodNumber;
|
|
11
30
|
length: z.ZodNumber;
|
|
12
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
+
length: number;
|
|
13
33
|
start: number;
|
|
14
34
|
limit: number;
|
|
15
|
-
length: number;
|
|
16
35
|
}, {
|
|
36
|
+
length: number;
|
|
17
37
|
start: number;
|
|
18
38
|
limit: number;
|
|
19
|
-
length: number;
|
|
20
39
|
}>;
|
|
21
40
|
export interface Totals {
|
|
22
41
|
start: number;
|
|
@@ -8181,29 +8200,29 @@ export declare const brandingSchema: z.ZodObject<{
|
|
|
8181
8200
|
end: z.ZodOptional<z.ZodString>;
|
|
8182
8201
|
angle_deg: z.ZodOptional<z.ZodNumber>;
|
|
8183
8202
|
}, "strip", z.ZodTypeAny, {
|
|
8184
|
-
start?: string | undefined;
|
|
8185
8203
|
type?: string | undefined;
|
|
8204
|
+
start?: string | undefined;
|
|
8186
8205
|
end?: string | undefined;
|
|
8187
8206
|
angle_deg?: number | undefined;
|
|
8188
8207
|
}, {
|
|
8189
|
-
start?: string | undefined;
|
|
8190
8208
|
type?: string | undefined;
|
|
8209
|
+
start?: string | undefined;
|
|
8191
8210
|
end?: string | undefined;
|
|
8192
8211
|
angle_deg?: number | undefined;
|
|
8193
8212
|
}>>;
|
|
8194
8213
|
}, "strip", z.ZodTypeAny, {
|
|
8195
8214
|
primary: string;
|
|
8196
8215
|
page_background?: {
|
|
8197
|
-
start?: string | undefined;
|
|
8198
8216
|
type?: string | undefined;
|
|
8217
|
+
start?: string | undefined;
|
|
8199
8218
|
end?: string | undefined;
|
|
8200
8219
|
angle_deg?: number | undefined;
|
|
8201
8220
|
} | undefined;
|
|
8202
8221
|
}, {
|
|
8203
8222
|
primary: string;
|
|
8204
8223
|
page_background?: {
|
|
8205
|
-
start?: string | undefined;
|
|
8206
8224
|
type?: string | undefined;
|
|
8225
|
+
start?: string | undefined;
|
|
8207
8226
|
end?: string | undefined;
|
|
8208
8227
|
angle_deg?: number | undefined;
|
|
8209
8228
|
} | undefined;
|
|
@@ -8222,8 +8241,8 @@ export declare const brandingSchema: z.ZodObject<{
|
|
|
8222
8241
|
colors?: {
|
|
8223
8242
|
primary: string;
|
|
8224
8243
|
page_background?: {
|
|
8225
|
-
start?: string | undefined;
|
|
8226
8244
|
type?: string | undefined;
|
|
8245
|
+
start?: string | undefined;
|
|
8227
8246
|
end?: string | undefined;
|
|
8228
8247
|
angle_deg?: number | undefined;
|
|
8229
8248
|
} | undefined;
|
|
@@ -8238,8 +8257,8 @@ export declare const brandingSchema: z.ZodObject<{
|
|
|
8238
8257
|
colors?: {
|
|
8239
8258
|
primary: string;
|
|
8240
8259
|
page_background?: {
|
|
8241
|
-
start?: string | undefined;
|
|
8242
8260
|
type?: string | undefined;
|
|
8261
|
+
start?: string | undefined;
|
|
8243
8262
|
end?: string | undefined;
|
|
8244
8263
|
angle_deg?: number | undefined;
|
|
8245
8264
|
} | undefined;
|
|
@@ -23884,8 +23903,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23884
23903
|
colors?: {
|
|
23885
23904
|
primary: string;
|
|
23886
23905
|
page_background?: {
|
|
23887
|
-
start?: string | undefined | undefined;
|
|
23888
23906
|
type?: string | undefined | undefined;
|
|
23907
|
+
start?: string | undefined | undefined;
|
|
23889
23908
|
end?: string | undefined | undefined;
|
|
23890
23909
|
angle_deg?: number | undefined | undefined;
|
|
23891
23910
|
} | undefined;
|
|
@@ -23913,8 +23932,8 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
23913
23932
|
colors?: {
|
|
23914
23933
|
primary: string;
|
|
23915
23934
|
page_background?: {
|
|
23916
|
-
start?: string | undefined;
|
|
23917
23935
|
type?: string | undefined;
|
|
23936
|
+
start?: string | undefined;
|
|
23918
23937
|
end?: string | undefined;
|
|
23919
23938
|
angle_deg?: number | undefined;
|
|
23920
23939
|
} | undefined;
|