@fdm-monster/server
Version:
FDM Monster is a bulk OctoPrint manager to set up, configure and monitor 3D printers. Our aim is to provide extremely optimized websocket performance and reliability.
38 lines (37 loc) • 1.09 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
function _export(target, all) {
for(var name in all)Object.defineProperty(target, name, {
enumerable: true,
get: all[name]
});
}
_export(exports, {
apiKeyHeaderKey: function() {
return apiKeyHeaderKey;
},
authorizationHeaderKey: function() {
return authorizationHeaderKey;
},
contentTypeHeaderKey: function() {
return contentTypeHeaderKey;
},
jsonContentType: function() {
return jsonContentType;
},
multiPartContentType: function() {
return multiPartContentType;
},
wwwAuthenticationHeaderKey: function() {
return wwwAuthenticationHeaderKey;
}
});
const contentTypeHeaderKey = "content-type";
const authorizationHeaderKey = "Authorization";
const apiKeyHeaderKey = "x-api-key";
const jsonContentType = "application/json";
const wwwAuthenticationHeaderKey = "www-authenticate";
const multiPartContentType = "multipart/form-data";
//# sourceMappingURL=octoprint-service.constants.js.map