reminder-mcp
Version:
A mcp server for scheduling and triggering reminders
37 lines (36 loc) • 1.69 kB
JavaScript
export var JobStatus;
(function (JobStatus) {
JobStatus[JobStatus["Unknown"] = 0] = "Unknown";
JobStatus[JobStatus["OK"] = 1] = "OK";
JobStatus[JobStatus["FailedDns"] = 2] = "FailedDns";
JobStatus[JobStatus["FailedConnect"] = 3] = "FailedConnect";
JobStatus[JobStatus["FailedHttp"] = 4] = "FailedHttp";
JobStatus[JobStatus["FailedTimeout"] = 5] = "FailedTimeout";
JobStatus[JobStatus["FailedTooMuchData"] = 6] = "FailedTooMuchData";
JobStatus[JobStatus["FailedInvalidUrl"] = 7] = "FailedInvalidUrl";
JobStatus[JobStatus["FailedInternal"] = 8] = "FailedInternal";
JobStatus[JobStatus["FailedUnknown"] = 9] = "FailedUnknown";
})(JobStatus || (JobStatus = {}));
export var JobType;
(function (JobType) {
JobType[JobType["Default"] = 0] = "Default";
JobType[JobType["Monitoring"] = 1] = "Monitoring";
})(JobType || (JobType = {}));
export var RequestMethod;
(function (RequestMethod) {
RequestMethod[RequestMethod["GET"] = 0] = "GET";
RequestMethod[RequestMethod["POST"] = 1] = "POST";
RequestMethod[RequestMethod["OPTIONS"] = 2] = "OPTIONS";
RequestMethod[RequestMethod["HEAD"] = 3] = "HEAD";
RequestMethod[RequestMethod["PUT"] = 4] = "PUT";
RequestMethod[RequestMethod["DELETE"] = 5] = "DELETE";
RequestMethod[RequestMethod["TRACE"] = 6] = "TRACE";
RequestMethod[RequestMethod["CONNECT"] = 7] = "CONNECT";
RequestMethod[RequestMethod["PATCH"] = 8] = "PATCH";
})(RequestMethod || (RequestMethod = {}));
export var DeletionType;
(function (DeletionType) {
DeletionType["Title"] = "title";
DeletionType["Processed"] = "processed";
DeletionType["All"] = "all";
})(DeletionType || (DeletionType = {}));