@authhero/kysely-adapter 0.9.0 → 0.9.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.
@@ -3125,7 +3125,17 @@ i.object({
3125
3125
  const dr = i.object({
3126
3126
  id: i.string().optional(),
3127
3127
  name: i.string(),
3128
- strategy: i.enum(["google-oauth2", "facebook", "vipps", "apple", "email"]).optional(),
3128
+ strategy: i.enum([
3129
+ "google-oauth2",
3130
+ "facebook",
3131
+ "vipps",
3132
+ "apple",
3133
+ "email",
3134
+ "Username-Password-Authentication",
3135
+ "oidc",
3136
+ "oauth2",
3137
+ "custom"
3138
+ ]).optional(),
3129
3139
  options: i.object({
3130
3140
  kid: i.string().optional(),
3131
3141
  team_id: i.string().optional(),
@@ -3134,7 +3144,7 @@ const dr = i.object({
3134
3144
  client_secret: i.string().optional(),
3135
3145
  app_secret: i.string().optional(),
3136
3146
  scope: i.string().optional()
3137
- }),
3147
+ }).optional(),
3138
3148
  enabled_clients: i.array(i.string()).optional(),
3139
3149
  authorization_endpoint: i.string().optional(),
3140
3150
  response_type: i.custom().optional(),
package/package.json CHANGED
@@ -11,7 +11,7 @@
11
11
  "type": "git",
12
12
  "url": "https://github.com/markusahlstrand/authhero"
13
13
  },
14
- "version": "0.9.0",
14
+ "version": "0.9.1",
15
15
  "files": [
16
16
  "dist"
17
17
  ],
@@ -41,7 +41,7 @@
41
41
  "kysely-bun-sqlite": "^0.3.2",
42
42
  "kysely-planetscale": "^1.4.0",
43
43
  "nanoid": "^5.0.7",
44
- "@authhero/adapter-interfaces": "^0.15.0"
44
+ "@authhero/adapter-interfaces": "^0.15.1"
45
45
  },
46
46
  "scripts": {
47
47
  "build": "tsc && vite build && dts-bundle-generator --config ./dts-bundle-generator.config.ts",