@cosmicdrift/kumiko-dev-server 0.161.0 → 0.163.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-dev-server",
3
- "version": "0.161.0",
3
+ "version": "0.163.0",
4
4
  "description": "Dev-tooling for Kumiko apps: local dev-server bootstrap (runDevApp), scaffolding, codegen. Not shipped into production node_modules — see @cosmicdrift/kumiko-server-runtime for the prod boot path.",
5
5
  "license": "BUSL-1.1",
6
6
  "author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
@@ -54,9 +54,9 @@
54
54
  "kumiko-schema-check": "./bin/kumiko-schema-check.ts"
55
55
  },
56
56
  "dependencies": {
57
- "@cosmicdrift/kumiko-bundled-features": "0.161.0",
58
- "@cosmicdrift/kumiko-framework": "0.161.0",
59
- "@cosmicdrift/kumiko-server-runtime": "0.161.0",
57
+ "@cosmicdrift/kumiko-bundled-features": "0.163.0",
58
+ "@cosmicdrift/kumiko-framework": "0.163.0",
59
+ "@cosmicdrift/kumiko-server-runtime": "0.163.0",
60
60
  "ts-morph": "^28.0.0"
61
61
  },
62
62
  "publishConfig": {
@@ -487,7 +487,11 @@ export async function runDevApp(options: RunDevAppOptions): Promise<KumikoServer
487
487
  ...sessionAuthFragment,
488
488
  ...patAuthFragment,
489
489
  ...tenantLifecycleAuthFragment,
490
- ...(mfaFeature && { mfaVerifyHandler: AuthMfaHandlers.verify }),
490
+ ...(mfaFeature && {
491
+ mfaVerifyHandler: AuthMfaHandlers.verify,
492
+ mfaPreauthEnableStartHandler: AuthMfaHandlers.enableStartPreauth,
493
+ mfaPreauthConfirmHandler: AuthMfaHandlers.enableConfirmPreauth,
494
+ }),
491
495
  ...(effectiveAuth.passwordReset && {
492
496
  passwordReset: {
493
497
  requestHandler: AuthHandlers.requestPasswordReset,