@zuplo/errors 6.39.43 → 6.39.45

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/dist/problems.js CHANGED
@@ -701,12 +701,12 @@ export const SOURCE_CONTROL_REPO_WRITE_ACCESS_ISSUE = {
701
701
  export const SOURCE_CONTROL_CONFIGURATION_NOT_FOUND = {
702
702
  type: "https://zup.fail/source-control-configuration-not-found",
703
703
  title: "Source control configuration not found for this account.",
704
- status: HttpStatusCode.NOT_FOUND,
704
+ status: HttpStatusCode.FORBIDDEN,
705
705
  };
706
706
  export const SOURCE_CONTROL_CREDENTIALS_NOT_FOUND = {
707
707
  type: "https://zup.fail/source-control-credentials-not-found",
708
708
  title: "Source control credentials not found for this user. Verify your user's source control connection and try again.",
709
- status: HttpStatusCode.NOT_FOUND,
709
+ status: HttpStatusCode.FORBIDDEN,
710
710
  };
711
711
  export const FAILED_TO_REFRESH_SOURCE_CONTROL_CREDENTIALS = {
712
712
  type: "https://zup.fail/failed-to-refresh-source-control-credentials",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@zuplo/errors",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "6.39.43",
5
+ "version": "6.39.45",
6
6
  "description": "Error types",
7
7
  "repository": {
8
8
  "type": "git",
package/src/problems.ts CHANGED
@@ -919,14 +919,14 @@ export const SOURCE_CONTROL_REPO_WRITE_ACCESS_ISSUE: ProblemDetails = {
919
919
  export const SOURCE_CONTROL_CONFIGURATION_NOT_FOUND: ProblemDetails = {
920
920
  type: "https://zup.fail/source-control-configuration-not-found",
921
921
  title: "Source control configuration not found for this account.",
922
- status: HttpStatusCode.NOT_FOUND,
922
+ status: HttpStatusCode.FORBIDDEN,
923
923
  };
924
924
 
925
925
  export const SOURCE_CONTROL_CREDENTIALS_NOT_FOUND: ProblemDetails = {
926
926
  type: "https://zup.fail/source-control-credentials-not-found",
927
927
  title:
928
928
  "Source control credentials not found for this user. Verify your user's source control connection and try again.",
929
- status: HttpStatusCode.NOT_FOUND,
929
+ status: HttpStatusCode.FORBIDDEN,
930
930
  };
931
931
 
932
932
  export const FAILED_TO_REFRESH_SOURCE_CONTROL_CREDENTIALS: ProblemDetails = {