pet-adoption-mcp
Version:
A Model Context Protocol (MCP) server that helps users find adoptable pets through the Petfinder API
45 lines • 1.37 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Status = exports.Sort = exports.Coat = exports.Gender = exports.Age = exports.Size = void 0;
var Size;
(function (Size) {
Size["Small"] = "small";
Size["Medium"] = "medium";
Size["Large"] = "large";
Size["XLarge"] = "xlarge";
})(Size || (exports.Size = Size = {}));
var Age;
(function (Age) {
Age["Baby"] = "baby";
Age["Young"] = "young";
Age["Adult"] = "adult";
Age["Senior"] = "senior";
})(Age || (exports.Age = Age = {}));
var Gender;
(function (Gender) {
Gender["Male"] = "male";
Gender["Female"] = "female";
})(Gender || (exports.Gender = Gender = {}));
var Coat;
(function (Coat) {
Coat["Short"] = "short";
Coat["Medium"] = "medium";
Coat["Long"] = "long";
Coat["Wire"] = "wire";
Coat["Hairless"] = "hairless";
Coat["Curly"] = "curly";
})(Coat || (exports.Coat = Coat = {}));
var Sort;
(function (Sort) {
Sort["Recent"] = "recent";
Sort["Distance"] = "distance";
Sort["ReversedRecent"] = "-recent";
Sort["ReversedDistance"] = "-distance";
})(Sort || (exports.Sort = Sort = {}));
var Status;
(function (Status) {
Status["Adoptable"] = "adoptable";
Status["Pending"] = "pending";
Status["Adopted"] = "adopted";
})(Status || (exports.Status = Status = {}));
//# sourceMappingURL=types.js.map