Generic Commit; Most likely a fix or small feature

This commit is contained in:
Darius
2025-11-17 21:38:41 +01:00
parent 2b3ee60633
commit 079227ee29
13 changed files with 127 additions and 3 deletions

19
dist/types.js vendored Normal file
View File

@@ -0,0 +1,19 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.HttpMethod = exports.Status = void 0;
// Status enums
var Status;
(function (Status) {
Status["Active"] = "active";
Status["Inactive"] = "inactive";
Status["Pending"] = "pending";
Status["Archived"] = "archived";
})(Status || (exports.Status = Status = {}));
var HttpMethod;
(function (HttpMethod) {
HttpMethod["GET"] = "GET";
HttpMethod["POST"] = "POST";
HttpMethod["PUT"] = "PUT";
HttpMethod["PATCH"] = "PATCH";
HttpMethod["DELETE"] = "DELETE";
})(HttpMethod || (exports.HttpMethod = HttpMethod = {}));