@cosmicdrift/kumiko-dev-server 0.166.0 → 0.167.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.
- package/package.json +4 -4
- package/src/run-dev-app.ts +6 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cosmicdrift/kumiko-dev-server",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.167.1",
|
|
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.
|
|
58
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
59
|
-
"@cosmicdrift/kumiko-server-runtime": "0.
|
|
57
|
+
"@cosmicdrift/kumiko-bundled-features": "0.167.1",
|
|
58
|
+
"@cosmicdrift/kumiko-framework": "0.167.1",
|
|
59
|
+
"@cosmicdrift/kumiko-server-runtime": "0.167.1",
|
|
60
60
|
"ts-morph": "^28.0.0"
|
|
61
61
|
},
|
|
62
62
|
"publishConfig": {
|
package/src/run-dev-app.ts
CHANGED
|
@@ -91,6 +91,7 @@ import { renderWelcomeBanner } from "./welcome-banner";
|
|
|
91
91
|
// @cosmicdrift/kumiko-server-runtime (single source of truth) — hier nur
|
|
92
92
|
// durchgereicht.
|
|
93
93
|
export type {
|
|
94
|
+
AccountLockoutSetup,
|
|
94
95
|
AccountUnlockSetup,
|
|
95
96
|
AuthMailOptions,
|
|
96
97
|
EmailVerificationSetup,
|
|
@@ -100,6 +101,7 @@ export type {
|
|
|
100
101
|
} from "@cosmicdrift/kumiko-server-runtime/run-prod-app";
|
|
101
102
|
|
|
102
103
|
import type {
|
|
104
|
+
AccountLockoutSetup,
|
|
103
105
|
AccountUnlockSetup,
|
|
104
106
|
AuthMailOptions,
|
|
105
107
|
EmailVerificationSetup,
|
|
@@ -140,6 +142,10 @@ export type RunDevAppAuthOptions = {
|
|
|
140
142
|
readonly invite?: InviteSetup;
|
|
141
143
|
/** Account-unlock flow (#1266). Symmetric to RunProdAppAuthOptions. */
|
|
142
144
|
readonly accountUnlock?: AccountUnlockSetup;
|
|
145
|
+
/** Brute-force guard on the login handler (maxFailedAttempts,
|
|
146
|
+
* lockoutDurationMinutes). Mounts no routes. Symmetric to
|
|
147
|
+
* RunProdAppAuthOptions.accountLockout (kumiko-framework#1627). */
|
|
148
|
+
readonly accountLockout?: AccountLockoutSetup;
|
|
143
149
|
/** Domain attribute for both auth cookies (see
|
|
144
150
|
* AuthRoutesConfig.cookieDomain). Symmetric to RunProdAppAuthOptions. */
|
|
145
151
|
readonly cookieDomain?: string;
|