@zuplo/errors 6.39.43 → 6.39.44
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 +2 -2
- package/package.json +1 -1
- package/src/problems.ts +2 -2
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.
|
|
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.
|
|
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
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.
|
|
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.
|
|
929
|
+
status: HttpStatusCode.FORBIDDEN,
|
|
930
930
|
};
|
|
931
931
|
|
|
932
932
|
export const FAILED_TO_REFRESH_SOURCE_CONTROL_CREDENTIALS: ProblemDetails = {
|