lakebed 0.0.12 → 0.0.13

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": "lakebed",
3
- "version": "0.0.12",
3
+ "version": "0.0.13",
4
4
  "description": "Agent-native CLI and runtime for building and deploying Lakebed capsules.",
5
5
  "license": "UNLICENSED",
6
6
  "type": "module",
@@ -3804,6 +3804,7 @@ async function serveInspect({ artifact, deploy, route, store, systemPath }, res)
3804
3804
  expiresAt: deploy.expiresAt,
3805
3805
  limits: deploy.limits,
3806
3806
  mutations: Object.keys(artifact.server.mutations ?? {}),
3807
+ name: artifact.name ?? "Lakebed Capsule",
3807
3808
  queries: Object.keys(artifact.server.queries ?? {}),
3808
3809
  schema: artifact.server.schema,
3809
3810
  slug: deploy.slug,
package/src/cli.js CHANGED
@@ -1301,6 +1301,8 @@ function todoTemplate(name) {
1301
1301
  import { cleanTodoText } from "../shared/todo";
1302
1302
 
1303
1303
  export default capsule({
1304
+ name: ${JSON.stringify(title)},
1305
+
1304
1306
  schema: {
1305
1307
  todos: table({
1306
1308
  text: string(),
package/src/version.js CHANGED
@@ -1 +1 @@
1
- export const LAKEBED_VERSION = "0.0.12";
1
+ export const LAKEBED_VERSION = "0.0.13";