@authhero/kysely-adapter 10.50.0 → 10.50.1

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.
@@ -780,6 +780,7 @@ declare const brandingSchema: z.ZodObject<{
780
780
  }>>;
781
781
  logo_url: z.ZodOptional<z.ZodString>;
782
782
  favicon_url: z.ZodOptional<z.ZodString>;
783
+ powered_by_logo_url: z.ZodOptional<z.ZodString>;
783
784
  font: z.ZodOptional<z.ZodObject<{
784
785
  url: z.ZodString;
785
786
  }, "strip", z.ZodTypeAny, {
@@ -799,6 +800,7 @@ declare const brandingSchema: z.ZodObject<{
799
800
  } | undefined;
800
801
  logo_url?: string | undefined;
801
802
  favicon_url?: string | undefined;
803
+ powered_by_logo_url?: string | undefined;
802
804
  font?: {
803
805
  url: string;
804
806
  } | undefined;
@@ -814,6 +816,7 @@ declare const brandingSchema: z.ZodObject<{
814
816
  } | undefined;
815
817
  logo_url?: string | undefined;
816
818
  favicon_url?: string | undefined;
819
+ powered_by_logo_url?: string | undefined;
817
820
  font?: {
818
821
  url: string;
819
822
  } | undefined;
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "10.50.0",
14
+ "version": "10.50.1",
15
15
  "files": [
16
16
  "dist"
17
17
  ],
@@ -38,7 +38,7 @@
38
38
  "typescript": "^5.6.3",
39
39
  "vite": "^5.4.11",
40
40
  "vitest": "^2.1.5",
41
- "@authhero/adapter-interfaces": "0.92.0"
41
+ "@authhero/adapter-interfaces": "0.93.0"
42
42
  },
43
43
  "dependencies": {
44
44
  "kysely": "^0.27.4",
@@ -49,7 +49,7 @@
49
49
  "hono": "^4.6.8",
50
50
  "kysely-bun-sqlite": "^0.3.2",
51
51
  "kysely-planetscale": "^1.5.0",
52
- "@authhero/adapter-interfaces": "0.92.0"
52
+ "@authhero/adapter-interfaces": "0.93.0"
53
53
  },
54
54
  "scripts": {
55
55
  "build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",