@checkstack/auth-github-backend 0.0.19 → 0.0.21

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/CHANGELOG.md CHANGED
@@ -1,5 +1,26 @@
1
1
  # @checkstack/auth-github-backend
2
2
 
3
+ ## 0.0.21
4
+
5
+ ### Patch Changes
6
+
7
+ - c0c0ed2: Introduce generic "Login Flows" to allow authentication strategies to define their own interaction patterns (form, redirect, or oauth) during registration. This fixes an issue where LDAP login attempts were incorrectly routed through the standard social login flow by instead providing a dedicated credential collection form for LDAP.
8
+ - Updated dependencies [c0c0ed2]
9
+ - Updated dependencies [c0c0ed2]
10
+ - @checkstack/backend-api@0.9.0
11
+ - @checkstack/auth-backend@0.4.12
12
+
13
+ ## 0.0.20
14
+
15
+ ### Patch Changes
16
+
17
+ - 67158e2: Standardize package metadata, unify AJV versions to 8.18.0, and enforce monorepo architecture rules via updated ESLint configuration. This ensures consistent package discovery and runtime dependency safety across the platform.
18
+ - Updated dependencies [67158e2]
19
+ - Updated dependencies [b839ccb]
20
+ - @checkstack/auth-backend@0.4.11
21
+ - @checkstack/backend-api@0.8.2
22
+ - @checkstack/common@0.6.4
23
+
3
24
  ## 0.0.19
4
25
 
5
26
  ### Patch Changes
package/package.json CHANGED
@@ -1,8 +1,11 @@
1
1
  {
2
2
  "name": "@checkstack/auth-github-backend",
3
- "version": "0.0.19",
3
+ "version": "0.0.21",
4
4
  "type": "module",
5
5
  "main": "src/index.ts",
6
+ "checkstack": {
7
+ "type": "backend"
8
+ },
6
9
  "exports": {
7
10
  ".": "./src/index.ts"
8
11
  },
@@ -10,13 +13,13 @@
10
13
  "typecheck": "tsc --noEmit"
11
14
  },
12
15
  "dependencies": {
13
- "@checkstack/backend-api": "0.8.0",
14
- "@checkstack/auth-backend": "0.4.8",
15
- "@checkstack/common": "0.6.2",
16
+ "@checkstack/backend-api": "0.8.2",
17
+ "@checkstack/auth-backend": "0.4.11",
18
+ "@checkstack/common": "0.6.4",
16
19
  "zod": "^4.2.1"
17
20
  },
18
21
  "devDependencies": {
19
- "@checkstack/tsconfig": "0.0.3",
22
+ "@checkstack/tsconfig": "0.0.4",
20
23
  "typescript": "^5.9.3"
21
24
  }
22
25
  }
package/src/index.ts CHANGED
@@ -38,6 +38,7 @@ const githubStrategy: AuthStrategy<z.infer<typeof githubConfigV2>> = {
38
38
  configVersion: 2,
39
39
  configSchema: githubConfigV2,
40
40
  requiresManualRegistration: false,
41
+ clientFlow: { type: "oauth" },
41
42
  adminInstructions: `
42
43
  ## GitHub OAuth App Setup
43
44