@intuned/runtime-dev 0.1.0-test.33 → 0.1.0-test.34
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.
|
@@ -93,6 +93,7 @@ class AuthRequiredError extends RunAutomationError {
|
|
|
93
93
|
this.code = authRequiredErrorCode;
|
|
94
94
|
this.statusCode = 401;
|
|
95
95
|
this.message = "Authentication is required";
|
|
96
|
+
this.wrapped = true;
|
|
96
97
|
}
|
|
97
98
|
}
|
|
98
99
|
exports.AuthRequiredError = AuthRequiredError;
|
|
@@ -111,6 +112,7 @@ class AuthCheckFailedError extends RunAutomationError {
|
|
|
111
112
|
this.code = authCheckFailedErrorCode;
|
|
112
113
|
this.statusCode = 401;
|
|
113
114
|
this.message = "auth session check failed";
|
|
115
|
+
this.wrapped = true;
|
|
114
116
|
}
|
|
115
117
|
get apiResponse() {
|
|
116
118
|
return {
|