authhero 0.87.0 → 0.89.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 +33 -33
- package/dist/authhero.d.ts +6 -0
- package/dist/authhero.mjs +1956 -1940
- package/package.json +3 -3
package/dist/authhero.d.ts
CHANGED
|
@@ -2301,6 +2301,7 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
2301
2301
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
2302
2302
|
ip: z.ZodOptional<z.ZodString>;
|
|
2303
2303
|
useragent: z.ZodOptional<z.ZodString>;
|
|
2304
|
+
session: z.ZodOptional<z.ZodString>;
|
|
2304
2305
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
2305
2306
|
}, "strip", z.ZodTypeAny, {
|
|
2306
2307
|
expires_at: string;
|
|
@@ -2326,6 +2327,7 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
2326
2327
|
deleted_at?: string | undefined;
|
|
2327
2328
|
ip?: string | undefined;
|
|
2328
2329
|
useragent?: string | undefined;
|
|
2330
|
+
session?: string | undefined;
|
|
2329
2331
|
authorization_url?: string | undefined;
|
|
2330
2332
|
}, {
|
|
2331
2333
|
expires_at: string;
|
|
@@ -2351,6 +2353,7 @@ export declare const loginSessionInsertSchema: z.ZodObject<{
|
|
|
2351
2353
|
deleted_at?: string | undefined;
|
|
2352
2354
|
ip?: string | undefined;
|
|
2353
2355
|
useragent?: string | undefined;
|
|
2356
|
+
session?: string | undefined;
|
|
2354
2357
|
authorization_url?: string | undefined;
|
|
2355
2358
|
}>;
|
|
2356
2359
|
export type LoginSessionInsert = z.infer<typeof loginSessionInsertSchema>;
|
|
@@ -2415,6 +2418,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
2415
2418
|
deleted_at: z.ZodOptional<z.ZodString>;
|
|
2416
2419
|
ip: z.ZodOptional<z.ZodString>;
|
|
2417
2420
|
useragent: z.ZodOptional<z.ZodString>;
|
|
2421
|
+
session: z.ZodOptional<z.ZodString>;
|
|
2418
2422
|
authorization_url: z.ZodOptional<z.ZodString>;
|
|
2419
2423
|
}, "strip", z.ZodTypeAny, {
|
|
2420
2424
|
created_at: string;
|
|
@@ -2443,6 +2447,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
2443
2447
|
deleted_at?: string | undefined;
|
|
2444
2448
|
ip?: string | undefined;
|
|
2445
2449
|
useragent?: string | undefined;
|
|
2450
|
+
session?: string | undefined;
|
|
2446
2451
|
authorization_url?: string | undefined;
|
|
2447
2452
|
}, {
|
|
2448
2453
|
created_at: string;
|
|
@@ -2471,6 +2476,7 @@ export declare const loginSessionSchema: z.ZodObject<{
|
|
|
2471
2476
|
deleted_at?: string | undefined;
|
|
2472
2477
|
ip?: string | undefined;
|
|
2473
2478
|
useragent?: string | undefined;
|
|
2479
|
+
session?: string | undefined;
|
|
2474
2480
|
authorization_url?: string | undefined;
|
|
2475
2481
|
}>;
|
|
2476
2482
|
export type LoginSession = z.infer<typeof loginSessionSchema>;
|