@authhero/cloudflare-adapter 2.17.0 → 2.17.2

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.
@@ -314,13 +314,13 @@ declare const logInsertSchema: z.ZodObject<{
314
314
  date: string;
315
315
  isMobile: boolean;
316
316
  description?: string | undefined;
317
- connection?: string | undefined;
317
+ connection_id?: string | undefined;
318
318
  user_id?: string | undefined;
319
+ connection?: string | undefined;
319
320
  client_id?: string | undefined;
320
321
  audience?: string | undefined;
321
322
  scope?: string | undefined;
322
323
  strategy?: string | undefined;
323
- connection_id?: string | undefined;
324
324
  ip?: string | undefined;
325
325
  user_agent?: string | undefined;
326
326
  details?: any;
@@ -349,13 +349,13 @@ declare const logInsertSchema: z.ZodObject<{
349
349
  date: string;
350
350
  isMobile: boolean;
351
351
  description?: string | undefined;
352
- connection?: string | undefined;
352
+ connection_id?: string | undefined;
353
353
  user_id?: string | undefined;
354
+ connection?: string | undefined;
354
355
  client_id?: string | undefined;
355
356
  audience?: string | undefined;
356
357
  scope?: string | undefined;
357
358
  strategy?: string | undefined;
358
- connection_id?: string | undefined;
359
359
  ip?: string | undefined;
360
360
  user_agent?: string | undefined;
361
361
  details?: any;
@@ -452,13 +452,13 @@ declare const logSchema: z.ZodObject<{
452
452
  isMobile: boolean;
453
453
  log_id: string;
454
454
  description?: string | undefined;
455
- connection?: string | undefined;
455
+ connection_id?: string | undefined;
456
456
  user_id?: string | undefined;
457
+ connection?: string | undefined;
457
458
  client_id?: string | undefined;
458
459
  audience?: string | undefined;
459
460
  scope?: string | undefined;
460
461
  strategy?: string | undefined;
461
- connection_id?: string | undefined;
462
462
  ip?: string | undefined;
463
463
  user_agent?: string | undefined;
464
464
  details?: any;
@@ -487,13 +487,13 @@ declare const logSchema: z.ZodObject<{
487
487
  isMobile: boolean;
488
488
  log_id: string;
489
489
  description?: string | undefined;
490
- connection?: string | undefined;
490
+ connection_id?: string | undefined;
491
491
  user_id?: string | undefined;
492
+ connection?: string | undefined;
492
493
  client_id?: string | undefined;
493
494
  audience?: string | undefined;
494
495
  scope?: string | undefined;
495
496
  strategy?: string | undefined;
496
- connection_id?: string | undefined;
497
497
  ip?: string | undefined;
498
498
  user_agent?: string | undefined;
499
499
  details?: any;
@@ -526,16 +526,16 @@ declare const dailyStatsSchema: z.ZodObject<{
526
526
  updated_at: z.ZodString;
527
527
  created_at: z.ZodString;
528
528
  }, "strip", z.ZodTypeAny, {
529
- date: string;
530
529
  created_at: string;
531
530
  updated_at: string;
531
+ date: string;
532
532
  logins: number;
533
533
  signups: number;
534
534
  leaked_passwords: number;
535
535
  }, {
536
- date: string;
537
536
  created_at: string;
538
537
  updated_at: string;
538
+ date: string;
539
539
  logins: number;
540
540
  signups: number;
541
541
  leaked_passwords: number;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "2.17.0",
14
+ "version": "2.17.2",
15
15
  "files": [
16
16
  "dist"
17
17
  ],
@@ -46,8 +46,8 @@
46
46
  "dependencies": {
47
47
  "nanoid": "^5.1.6",
48
48
  "wretch": "^3.0.2",
49
- "@authhero/kysely-adapter": "10.67.0",
50
- "@authhero/adapter-interfaces": "0.109.0"
49
+ "@authhero/adapter-interfaces": "0.111.0",
50
+ "@authhero/kysely-adapter": "10.69.0"
51
51
  },
52
52
  "scripts": {
53
53
  "build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",