authhero 0.142.0 → 0.143.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 +15 -9
- package/dist/authhero.mjs +3591 -3518
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -11265,6 +11265,7 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
11265
11265
|
useragent: z.ZodOptional<z.ZodString>;
|
|
11266
11266
|
session_id: z.ZodOptional<z.ZodString>;
|
|
11267
11267
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
11268
|
+
login_completed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11268
11269
|
}, "strip", z.ZodTypeAny, {
|
|
11269
11270
|
expires_at: string;
|
|
11270
11271
|
csrf_token: string;
|
|
@@ -11286,6 +11287,7 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
11286
11287
|
ui_locales?: string | undefined;
|
|
11287
11288
|
vendor_id?: string | undefined;
|
|
11288
11289
|
};
|
|
11290
|
+
login_completed: boolean;
|
|
11289
11291
|
auth0Client?: string | undefined;
|
|
11290
11292
|
deleted_at?: string | undefined;
|
|
11291
11293
|
ip?: string | undefined;
|
|
@@ -11319,8 +11321,9 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
11319
11321
|
useragent?: string | undefined;
|
|
11320
11322
|
session_id?: string | undefined;
|
|
11321
11323
|
authorization_url?: string | undefined;
|
|
11324
|
+
login_completed?: boolean | undefined;
|
|
11322
11325
|
}>;
|
|
11323
|
-
export type LoginSessionInsert = z.
|
|
11326
|
+
export type LoginSessionInsert = z.input<typeof loginSessionInsertSchema>;
|
|
11324
11327
|
export declare const loginSessionSchema: z.ZodObject<{
|
|
11325
11328
|
id: z.ZodString;
|
|
11326
11329
|
created_at: z.ZodString;
|
|
@@ -11385,6 +11388,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
11385
11388
|
useragent: z.ZodOptional<z.ZodString>;
|
|
11386
11389
|
session_id: z.ZodOptional<z.ZodString>;
|
|
11387
11390
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
11391
|
+
login_completed: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
11388
11392
|
}, "strip", z.ZodTypeAny, {
|
|
11389
11393
|
created_at: string;
|
|
11390
11394
|
updated_at: string;
|
|
@@ -11409,6 +11413,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
11409
11413
|
ui_locales?: string | undefined;
|
|
11410
11414
|
vendor_id?: string | undefined;
|
|
11411
11415
|
};
|
|
11416
|
+
login_completed: boolean;
|
|
11412
11417
|
auth0Client?: string | undefined;
|
|
11413
11418
|
deleted_at?: string | undefined;
|
|
11414
11419
|
ip?: string | undefined;
|
|
@@ -11445,6 +11450,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
11445
11450
|
useragent?: string | undefined;
|
|
11446
11451
|
session_id?: string | undefined;
|
|
11447
11452
|
authorization_url?: string | undefined;
|
|
11453
|
+
login_completed?: boolean | undefined;
|
|
11448
11454
|
}>;
|
|
11449
11455
|
export type LoginSession = z.infer<typeof loginSessionSchema>;
|
|
11450
11456
|
export declare enum LogTypes {
|
|
@@ -14452,10 +14458,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14452
14458
|
style?: {
|
|
14453
14459
|
css?: string | undefined;
|
|
14454
14460
|
} | undefined;
|
|
14455
|
-
languages?: {
|
|
14456
|
-
default?: string | undefined;
|
|
14457
|
-
primary?: string | undefined;
|
|
14458
|
-
} | undefined;
|
|
14459
14461
|
nodes?: ({
|
|
14460
14462
|
type: "FLOW";
|
|
14461
14463
|
id: string;
|
|
@@ -14524,6 +14526,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14524
14526
|
};
|
|
14525
14527
|
alias?: string | undefined;
|
|
14526
14528
|
})[] | undefined;
|
|
14529
|
+
languages?: {
|
|
14530
|
+
default?: string | undefined;
|
|
14531
|
+
primary?: string | undefined;
|
|
14532
|
+
} | undefined;
|
|
14527
14533
|
ending?: {
|
|
14528
14534
|
coordinates?: {
|
|
14529
14535
|
x: number;
|
|
@@ -14690,10 +14696,6 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14690
14696
|
style?: {
|
|
14691
14697
|
css?: string | undefined;
|
|
14692
14698
|
} | undefined;
|
|
14693
|
-
languages?: {
|
|
14694
|
-
default?: string | undefined;
|
|
14695
|
-
primary?: string | undefined;
|
|
14696
|
-
} | undefined;
|
|
14697
14699
|
nodes?: ({
|
|
14698
14700
|
type: "FLOW";
|
|
14699
14701
|
id: string;
|
|
@@ -14762,6 +14764,10 @@ export declare function init(config: AuthHeroConfig): {
|
|
|
14762
14764
|
};
|
|
14763
14765
|
alias?: string | undefined;
|
|
14764
14766
|
})[] | undefined;
|
|
14767
|
+
languages?: {
|
|
14768
|
+
default?: string | undefined;
|
|
14769
|
+
primary?: string | undefined;
|
|
14770
|
+
} | undefined;
|
|
14765
14771
|
ending?: {
|
|
14766
14772
|
coordinates?: {
|
|
14767
14773
|
x: number;
|