@cosmicdrift/kumiko-server-runtime 0.209.1 → 0.210.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.209.1",
3
+ "version": "0.210.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.209.1",
84
- "@cosmicdrift/kumiko-framework": "0.209.1",
83
+ "@cosmicdrift/kumiko-bundled-features": "0.210.0",
84
+ "@cosmicdrift/kumiko-framework": "0.210.0",
85
85
  "temporal-polyfill": "^0.3.2"
86
86
  },
87
87
  "publishConfig": {
@@ -8,7 +8,7 @@ const piiFeature = defineFeature("gate-pii", (r) => {
8
8
  "person",
9
9
  createEntity({
10
10
  table: "read_gate_persons",
11
- fields: { email: createTextField({ required: true, pii: true, lookupable: true }) },
11
+ fields: { email: createTextField({ required: true, personal: "self", find: "exact" }) },
12
12
  }),
13
13
  );
14
14
  });
@@ -1049,7 +1049,7 @@ describe("hard PII boot gate (#818 step 2)", () => {
1049
1049
  "gate-person",
1050
1050
  createEntity({
1051
1051
  table: "read_gate_persons",
1052
- fields: { email: createTextField({ required: true, pii: true }) },
1052
+ fields: { email: createTextField({ required: true, personal: "self", find: "none" }) },
1053
1053
  }),
1054
1054
  );
1055
1055
  });