@valbuild/server 0.73.0 → 0.73.1

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.
@@ -4443,7 +4443,7 @@ async function getSettings(projectName, auth) {
4443
4443
  if (response.status === 404) {
4444
4444
  return {
4445
4445
  success: false,
4446
- message: `Project ${projectName} not found. Verify that user has access to project and that it exists.`
4446
+ message: `Project '${projectName}' not found: verify that this project exists and that you have access to it.`
4447
4447
  };
4448
4448
  }
4449
4449
  if (response.status !== 200) {
@@ -4443,7 +4443,7 @@ async function getSettings(projectName, auth) {
4443
4443
  if (response.status === 404) {
4444
4444
  return {
4445
4445
  success: false,
4446
- message: `Project ${projectName} not found. Verify that user has access to project and that it exists.`
4446
+ message: `Project '${projectName}' not found: verify that this project exists and that you have access to it.`
4447
4447
  };
4448
4448
  }
4449
4449
  if (response.status !== 200) {
@@ -4412,7 +4412,7 @@ async function getSettings(projectName, auth) {
4412
4412
  if (response.status === 404) {
4413
4413
  return {
4414
4414
  success: false,
4415
- message: `Project ${projectName} not found. Verify that user has access to project and that it exists.`
4415
+ message: `Project '${projectName}' not found: verify that this project exists and that you have access to it.`
4416
4416
  };
4417
4417
  }
4418
4418
  if (response.status !== 200) {
package/package.json CHANGED
@@ -12,7 +12,7 @@
12
12
  "./package.json": "./package.json"
13
13
  },
14
14
  "types": "dist/valbuild-server.cjs.d.ts",
15
- "version": "0.73.0",
15
+ "version": "0.73.1",
16
16
  "scripts": {
17
17
  "typecheck": "tsc --noEmit",
18
18
  "test": "jest",
@@ -23,9 +23,9 @@
23
23
  "@types/jest": "^29.2.5"
24
24
  },
25
25
  "dependencies": {
26
- "@valbuild/core": "~0.73.0",
27
- "@valbuild/shared": "~0.73.0",
28
- "@valbuild/ui": "~0.73.0",
26
+ "@valbuild/core": "~0.73.1",
27
+ "@valbuild/shared": "~0.73.1",
28
+ "@valbuild/ui": "~0.73.1",
29
29
  "chokidar": "^4.0.1",
30
30
  "image-size": "^1.0.2",
31
31
  "minimatch": "^3.0.4",