@malloydata/malloyyo 0.2.10 → 0.2.11

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.
Files changed (2) hide show
  1. package/dist/index.js +3 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -1676,8 +1676,8 @@ async function lintDashboards(root) {
1676
1676
  errors.push(`manifest: every given needs a string "name"`);
1677
1677
  continue;
1678
1678
  }
1679
- if (g.type !== "string" && g.type !== "number") {
1680
- errors.push(`given "${g.name}": "type" must be "string" or "number"`);
1679
+ if (g.type !== "string" && g.type !== "number" && g.type !== "boolean") {
1680
+ errors.push(`given "${g.name}": "type" must be "string", "number", or "boolean"`);
1681
1681
  }
1682
1682
  if (g.default !== void 0) givenValues[g.name] = g.default;
1683
1683
  }
@@ -2409,7 +2409,7 @@ async function serveDashboard(opts) {
2409
2409
  }
2410
2410
 
2411
2411
  // package.json
2412
- var version = "0.2.10";
2412
+ var version = "0.2.11";
2413
2413
 
2414
2414
  // src/index.ts
2415
2415
  function shortSha(sha) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@malloydata/malloyyo",
3
- "version": "0.2.10",
3
+ "version": "0.2.11",
4
4
  "description": "Publish Malloy models to a Malloyyo instance",
5
5
  "license": "MIT",
6
6
  "repository": {