@cosmicdrift/kumiko-server-runtime 0.269.1 → 0.270.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.269.1",
3
+ "version": "0.270.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.269.1",
84
- "@cosmicdrift/kumiko-framework": "0.269.1",
83
+ "@cosmicdrift/kumiko-bundled-features": "0.270.0",
84
+ "@cosmicdrift/kumiko-framework": "0.270.0",
85
85
  "temporal-polyfill": "^0.3.2"
86
86
  },
87
87
  "publishConfig": {
@@ -124,11 +124,11 @@ const attachDispatcherFeature = defineFeature("jobattach", (r) => {
124
124
  });
125
125
  return crud.create(event.payload, event.user, ctx.db);
126
126
  },
127
- { access: { openToAll: true } },
127
+ { access: { openToAll: { reason: "test handler callable by any signed-in test user" } } },
128
128
  );
129
129
 
130
130
  r.queryHandler("list", z.object({}), async (_query, ctx) => selectMany(ctx.db, attachNoteTable), {
131
- access: { openToAll: true },
131
+ access: { openToAll: { reason: "test handler callable by any signed-in test user" } },
132
132
  });
133
133
 
134
134
  r.job("record", { trigger: { manual: true }, retries: 0 }, async (payload, ctx) => {