Generic Commit; Most likely a fix or small feature
This commit is contained in:
19
dist/types.js
vendored
Normal file
19
dist/types.js
vendored
Normal 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 = {}));
|
||||
Reference in New Issue
Block a user