kinto
Version:
An Offline-First JavaScript client for Kinto.
31 lines (30 loc) • 975 B
JavaScript
/**
* Kinto server error code descriptors.
* @type {Object}
*/
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = {
104: "Missing Authorization Token",
105: "Invalid Authorization Token",
106: "Request body was not valid JSON",
107: "Invalid request parameter",
108: "Missing request parameter",
109: "Invalid posted data",
110: "Invalid Token / id",
111: "Missing Token / id",
112: "Content-Length header was not provided",
113: "Request body too large",
114: "Resource was modified meanwhile",
115: "Method not allowed on this end point",
116: "Requested version not available on this server",
117: "Client has sent too many requests",
121: "Resource access is forbidden for this user",
122: "Another resource violates constraint",
201: "Service Temporary unavailable due to high load",
202: "Service deprecated",
999: "Internal Server Error"
};
module.exports = exports["default"];