nextemos 3.3.8 → 3.3.9
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.
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Hypertext Transfer Protocol (HTTP) response status codes.
|
|
3
3
|
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
|
|
4
4
|
*/
|
|
5
|
-
declare enum HttpStatusCode {
|
|
5
|
+
export declare enum HttpStatusCode {
|
|
6
6
|
/**
|
|
7
7
|
* The server has received the request headers and the client should proceed to send the request body
|
|
8
8
|
* (in the case of a request for which a body needs to be sent; for example, a POST request).
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.HttpStatusCode = void 0;
|
|
3
4
|
/**
|
|
4
5
|
* Hypertext Transfer Protocol (HTTP) response status codes.
|
|
5
6
|
* @see {@link https://en.wikipedia.org/wiki/List_of_HTTP_status_codes}
|
|
@@ -318,5 +319,5 @@ var HttpStatusCode;
|
|
|
318
319
|
* to require agreement to Terms of Service before granting full Internet access via a Wi-Fi hotspot).
|
|
319
320
|
*/
|
|
320
321
|
HttpStatusCode[HttpStatusCode["NETWORK_AUTHENTICATION_REQUIRED"] = 511] = "NETWORK_AUTHENTICATION_REQUIRED";
|
|
321
|
-
})(HttpStatusCode || (HttpStatusCode = {}));
|
|
322
|
+
})(HttpStatusCode || (exports.HttpStatusCode = HttpStatusCode = {}));
|
|
322
323
|
exports.default = HttpStatusCode;
|