@cosmicdrift/kumiko-server-runtime 0.258.0 → 0.258.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cosmicdrift/kumiko-server-runtime",
3
- "version": "0.258.0",
3
+ "version": "0.258.1",
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.258.0",
84
- "@cosmicdrift/kumiko-framework": "0.258.0",
83
+ "@cosmicdrift/kumiko-bundled-features": "0.258.1",
84
+ "@cosmicdrift/kumiko-framework": "0.258.1",
85
85
  "temporal-polyfill": "^0.3.2"
86
86
  },
87
87
  "publishConfig": {
@@ -22,7 +22,7 @@ export function makeProbeFeature(opts: {
22
22
  }): FeatureDefinition {
23
23
  const probeEntity = createEntity({
24
24
  fields: {
25
- name: createTextField({ required: true }),
25
+ name: createTextField({ personal: false, reason: "test_fixture", required: true }),
26
26
  active: createBooleanField({ default: true }),
27
27
  },
28
28
  table: opts.table,
@@ -15,7 +15,10 @@ const piiFeature = defineFeature("gate-pii", (r) => {
15
15
  const plainFeature = defineFeature("gate-plain", (r) => {
16
16
  r.entity(
17
17
  "thing",
18
- createEntity({ table: "read_gate_things", fields: { name: createTextField() } }),
18
+ createEntity({
19
+ table: "read_gate_things",
20
+ fields: { name: createTextField({ personal: false, reason: "test_fixture" }) },
21
+ }),
19
22
  );
20
23
  });
21
24
 
@@ -72,7 +72,7 @@ async function createTempStaticDir(files: Record<string, string>): Promise<strin
72
72
 
73
73
  const widgetEntity = createEntity({
74
74
  fields: {
75
- name: createTextField({ required: true }),
75
+ name: createTextField({ personal: false, reason: "test_fixture", required: true }),
76
76
  active: createBooleanField({ default: true }),
77
77
  },
78
78
  table: "prod_widgets",
@@ -31,7 +31,7 @@ import { runWorkerApp, type WorkerAppHandle } from "../run-worker-app";
31
31
  const jobRuns: Array<{ note: string; temporalWasDefined: boolean }> = [];
32
32
 
33
33
  const workerProbeEntity = createEntity({
34
- fields: { note: createTextField({ required: true }) },
34
+ fields: { note: createTextField({ personal: false, reason: "test_fixture", required: true }) },
35
35
  table: "worker_probes",
36
36
  });
37
37
 
@@ -105,7 +105,7 @@ describe("startDevJobRunners", () => {
105
105
  // ctx.write and ctx.queryAs end-to-end.
106
106
  const attachNoteEntity = createEntity({
107
107
  table: "job_attach_notes",
108
- fields: { text: createTextField({ required: true }) },
108
+ fields: { text: createTextField({ personal: false, reason: "test_fixture", required: true }) },
109
109
  });
110
110
  const attachNoteTable = buildEntityTable("note", attachNoteEntity);
111
111