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 +1 -1
- package/src/anonymous-server.js +1 -0
- package/src/cli.js +2 -0
- package/src/version.js +1 -1
package/package.json
CHANGED
package/src/anonymous-server.js
CHANGED
|
@@ -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
package/src/version.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export const LAKEBED_VERSION = "0.0.
|
|
1
|
+
export const LAKEBED_VERSION = "0.0.13";
|