@telepath-computer/television 0.1.85 → 0.1.86

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/cli.cjs +3 -3
  2. package/package.json +1 -1
package/dist/cli.cjs CHANGED
@@ -48407,7 +48407,7 @@ function registerRoutes(app, store, options) {
48407
48407
  handleStoreError(res, error48, "Failed to read artifact content");
48408
48408
  }
48409
48409
  });
48410
- app.get("/artifacts/:id/content/*", ...auth, (req, res) => {
48410
+ app.get("/artifacts/:id/content/*", (req, res) => {
48411
48411
  const artifact = store.getArtifact(req.params.id);
48412
48412
  if (!artifact) {
48413
48413
  sendError(res, HTTP_NOT_FOUND, `Artifact not found: ${req.params.id}`);
@@ -50123,8 +50123,8 @@ function resolveVercelSkillsInstallerBin() {
50123
50123
  return localRequire.resolve("skills/bin/cli.mjs");
50124
50124
  }
50125
50125
  function readCLIVersion() {
50126
- if ("0.1.85".length > 0) {
50127
- return "0.1.85";
50126
+ if ("0.1.86".length > 0) {
50127
+ return "0.1.86";
50128
50128
  }
50129
50129
  const devPackageJsonPath = import_node_path7.default.join(getDevPackageDir(), "package.json");
50130
50130
  if (!(0, import_node_fs4.existsSync)(devPackageJsonPath)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@telepath-computer/television",
3
- "version": "0.1.85",
3
+ "version": "0.1.86",
4
4
  "type": "module",
5
5
  "main": "dist/cli.cjs",
6
6
  "bin": {