@cosmicdrift/kumiko-server-runtime 0.249.0 → 0.251.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-server-runtime",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.251.0",
|
|
4
4
|
"description": "Production server-boot runtime for Kumiko apps: connections, schema-drift-gate, seeds, lifecycle, graceful shutdown. Symmetric to kumiko-dev-server's runDevApp, without dev/scaffold/codegen tooling.",
|
|
5
5
|
"license": "BUSL-1.1",
|
|
6
6
|
"author": "Marc Frost <marc@cosmicdriftgamestudio.com>",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
}
|
|
81
81
|
},
|
|
82
82
|
"dependencies": {
|
|
83
|
-
"@cosmicdrift/kumiko-bundled-features": "0.
|
|
84
|
-
"@cosmicdrift/kumiko-framework": "0.
|
|
83
|
+
"@cosmicdrift/kumiko-bundled-features": "0.251.0",
|
|
84
|
+
"@cosmicdrift/kumiko-framework": "0.251.0",
|
|
85
85
|
"temporal-polyfill": "^0.3.2"
|
|
86
86
|
},
|
|
87
87
|
"publishConfig": {
|
|
@@ -113,7 +113,9 @@ const widgetFeature = defineFeature("prod-probe", (r) => {
|
|
|
113
113
|
// multiStreamProjection jemals an (Prod hatte deshalb leere Projektionen
|
|
114
114
|
// + leere kumiko_event_consumers). Der Write appended das Event; die MSP
|
|
115
115
|
// schreibt async in prod_probe_pings — der Test pollt darauf.
|
|
116
|
-
const pingedEvent = r.defineEvent("probe-pinged", z.object({ note: z.string() })
|
|
116
|
+
const pingedEvent = r.defineEvent("probe-pinged", z.object({ note: z.string() }), {
|
|
117
|
+
piiFields: "none",
|
|
118
|
+
});
|
|
117
119
|
r.writeHandler({
|
|
118
120
|
name: "probe-append",
|
|
119
121
|
schema: z.object({ aggregateId: z.string(), note: z.string() }),
|