Initial commit - Event Planner application
This commit is contained in:
60
node_modules/@nestjs/common/enums/http-status.enum.d.ts
generated
vendored
Normal file
60
node_modules/@nestjs/common/enums/http-status.enum.d.ts
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
/**
|
||||
* @publicApi
|
||||
*/
|
||||
export declare enum HttpStatus {
|
||||
CONTINUE = 100,
|
||||
SWITCHING_PROTOCOLS = 101,
|
||||
PROCESSING = 102,
|
||||
EARLYHINTS = 103,
|
||||
OK = 200,
|
||||
CREATED = 201,
|
||||
ACCEPTED = 202,
|
||||
NON_AUTHORITATIVE_INFORMATION = 203,
|
||||
NO_CONTENT = 204,
|
||||
RESET_CONTENT = 205,
|
||||
PARTIAL_CONTENT = 206,
|
||||
MULTI_STATUS = 207,
|
||||
ALREADY_REPORTED = 208,
|
||||
CONTENT_DIFFERENT = 210,
|
||||
AMBIGUOUS = 300,
|
||||
MOVED_PERMANENTLY = 301,
|
||||
FOUND = 302,
|
||||
SEE_OTHER = 303,
|
||||
NOT_MODIFIED = 304,
|
||||
TEMPORARY_REDIRECT = 307,
|
||||
PERMANENT_REDIRECT = 308,
|
||||
BAD_REQUEST = 400,
|
||||
UNAUTHORIZED = 401,
|
||||
PAYMENT_REQUIRED = 402,
|
||||
FORBIDDEN = 403,
|
||||
NOT_FOUND = 404,
|
||||
METHOD_NOT_ALLOWED = 405,
|
||||
NOT_ACCEPTABLE = 406,
|
||||
PROXY_AUTHENTICATION_REQUIRED = 407,
|
||||
REQUEST_TIMEOUT = 408,
|
||||
CONFLICT = 409,
|
||||
GONE = 410,
|
||||
LENGTH_REQUIRED = 411,
|
||||
PRECONDITION_FAILED = 412,
|
||||
PAYLOAD_TOO_LARGE = 413,
|
||||
URI_TOO_LONG = 414,
|
||||
UNSUPPORTED_MEDIA_TYPE = 415,
|
||||
REQUESTED_RANGE_NOT_SATISFIABLE = 416,
|
||||
EXPECTATION_FAILED = 417,
|
||||
I_AM_A_TEAPOT = 418,
|
||||
MISDIRECTED = 421,
|
||||
UNPROCESSABLE_ENTITY = 422,
|
||||
LOCKED = 423,
|
||||
FAILED_DEPENDENCY = 424,
|
||||
PRECONDITION_REQUIRED = 428,
|
||||
TOO_MANY_REQUESTS = 429,
|
||||
UNRECOVERABLE_ERROR = 456,
|
||||
INTERNAL_SERVER_ERROR = 500,
|
||||
NOT_IMPLEMENTED = 501,
|
||||
BAD_GATEWAY = 502,
|
||||
SERVICE_UNAVAILABLE = 503,
|
||||
GATEWAY_TIMEOUT = 504,
|
||||
HTTP_VERSION_NOT_SUPPORTED = 505,
|
||||
INSUFFICIENT_STORAGE = 507,
|
||||
LOOP_DETECTED = 508
|
||||
}
|
||||
64
node_modules/@nestjs/common/enums/http-status.enum.js
generated
vendored
Normal file
64
node_modules/@nestjs/common/enums/http-status.enum.js
generated
vendored
Normal file
@@ -0,0 +1,64 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.HttpStatus = void 0;
|
||||
/**
|
||||
* @publicApi
|
||||
*/
|
||||
var HttpStatus;
|
||||
(function (HttpStatus) {
|
||||
HttpStatus[HttpStatus["CONTINUE"] = 100] = "CONTINUE";
|
||||
HttpStatus[HttpStatus["SWITCHING_PROTOCOLS"] = 101] = "SWITCHING_PROTOCOLS";
|
||||
HttpStatus[HttpStatus["PROCESSING"] = 102] = "PROCESSING";
|
||||
HttpStatus[HttpStatus["EARLYHINTS"] = 103] = "EARLYHINTS";
|
||||
HttpStatus[HttpStatus["OK"] = 200] = "OK";
|
||||
HttpStatus[HttpStatus["CREATED"] = 201] = "CREATED";
|
||||
HttpStatus[HttpStatus["ACCEPTED"] = 202] = "ACCEPTED";
|
||||
HttpStatus[HttpStatus["NON_AUTHORITATIVE_INFORMATION"] = 203] = "NON_AUTHORITATIVE_INFORMATION";
|
||||
HttpStatus[HttpStatus["NO_CONTENT"] = 204] = "NO_CONTENT";
|
||||
HttpStatus[HttpStatus["RESET_CONTENT"] = 205] = "RESET_CONTENT";
|
||||
HttpStatus[HttpStatus["PARTIAL_CONTENT"] = 206] = "PARTIAL_CONTENT";
|
||||
HttpStatus[HttpStatus["MULTI_STATUS"] = 207] = "MULTI_STATUS";
|
||||
HttpStatus[HttpStatus["ALREADY_REPORTED"] = 208] = "ALREADY_REPORTED";
|
||||
HttpStatus[HttpStatus["CONTENT_DIFFERENT"] = 210] = "CONTENT_DIFFERENT";
|
||||
HttpStatus[HttpStatus["AMBIGUOUS"] = 300] = "AMBIGUOUS";
|
||||
HttpStatus[HttpStatus["MOVED_PERMANENTLY"] = 301] = "MOVED_PERMANENTLY";
|
||||
HttpStatus[HttpStatus["FOUND"] = 302] = "FOUND";
|
||||
HttpStatus[HttpStatus["SEE_OTHER"] = 303] = "SEE_OTHER";
|
||||
HttpStatus[HttpStatus["NOT_MODIFIED"] = 304] = "NOT_MODIFIED";
|
||||
HttpStatus[HttpStatus["TEMPORARY_REDIRECT"] = 307] = "TEMPORARY_REDIRECT";
|
||||
HttpStatus[HttpStatus["PERMANENT_REDIRECT"] = 308] = "PERMANENT_REDIRECT";
|
||||
HttpStatus[HttpStatus["BAD_REQUEST"] = 400] = "BAD_REQUEST";
|
||||
HttpStatus[HttpStatus["UNAUTHORIZED"] = 401] = "UNAUTHORIZED";
|
||||
HttpStatus[HttpStatus["PAYMENT_REQUIRED"] = 402] = "PAYMENT_REQUIRED";
|
||||
HttpStatus[HttpStatus["FORBIDDEN"] = 403] = "FORBIDDEN";
|
||||
HttpStatus[HttpStatus["NOT_FOUND"] = 404] = "NOT_FOUND";
|
||||
HttpStatus[HttpStatus["METHOD_NOT_ALLOWED"] = 405] = "METHOD_NOT_ALLOWED";
|
||||
HttpStatus[HttpStatus["NOT_ACCEPTABLE"] = 406] = "NOT_ACCEPTABLE";
|
||||
HttpStatus[HttpStatus["PROXY_AUTHENTICATION_REQUIRED"] = 407] = "PROXY_AUTHENTICATION_REQUIRED";
|
||||
HttpStatus[HttpStatus["REQUEST_TIMEOUT"] = 408] = "REQUEST_TIMEOUT";
|
||||
HttpStatus[HttpStatus["CONFLICT"] = 409] = "CONFLICT";
|
||||
HttpStatus[HttpStatus["GONE"] = 410] = "GONE";
|
||||
HttpStatus[HttpStatus["LENGTH_REQUIRED"] = 411] = "LENGTH_REQUIRED";
|
||||
HttpStatus[HttpStatus["PRECONDITION_FAILED"] = 412] = "PRECONDITION_FAILED";
|
||||
HttpStatus[HttpStatus["PAYLOAD_TOO_LARGE"] = 413] = "PAYLOAD_TOO_LARGE";
|
||||
HttpStatus[HttpStatus["URI_TOO_LONG"] = 414] = "URI_TOO_LONG";
|
||||
HttpStatus[HttpStatus["UNSUPPORTED_MEDIA_TYPE"] = 415] = "UNSUPPORTED_MEDIA_TYPE";
|
||||
HttpStatus[HttpStatus["REQUESTED_RANGE_NOT_SATISFIABLE"] = 416] = "REQUESTED_RANGE_NOT_SATISFIABLE";
|
||||
HttpStatus[HttpStatus["EXPECTATION_FAILED"] = 417] = "EXPECTATION_FAILED";
|
||||
HttpStatus[HttpStatus["I_AM_A_TEAPOT"] = 418] = "I_AM_A_TEAPOT";
|
||||
HttpStatus[HttpStatus["MISDIRECTED"] = 421] = "MISDIRECTED";
|
||||
HttpStatus[HttpStatus["UNPROCESSABLE_ENTITY"] = 422] = "UNPROCESSABLE_ENTITY";
|
||||
HttpStatus[HttpStatus["LOCKED"] = 423] = "LOCKED";
|
||||
HttpStatus[HttpStatus["FAILED_DEPENDENCY"] = 424] = "FAILED_DEPENDENCY";
|
||||
HttpStatus[HttpStatus["PRECONDITION_REQUIRED"] = 428] = "PRECONDITION_REQUIRED";
|
||||
HttpStatus[HttpStatus["TOO_MANY_REQUESTS"] = 429] = "TOO_MANY_REQUESTS";
|
||||
HttpStatus[HttpStatus["UNRECOVERABLE_ERROR"] = 456] = "UNRECOVERABLE_ERROR";
|
||||
HttpStatus[HttpStatus["INTERNAL_SERVER_ERROR"] = 500] = "INTERNAL_SERVER_ERROR";
|
||||
HttpStatus[HttpStatus["NOT_IMPLEMENTED"] = 501] = "NOT_IMPLEMENTED";
|
||||
HttpStatus[HttpStatus["BAD_GATEWAY"] = 502] = "BAD_GATEWAY";
|
||||
HttpStatus[HttpStatus["SERVICE_UNAVAILABLE"] = 503] = "SERVICE_UNAVAILABLE";
|
||||
HttpStatus[HttpStatus["GATEWAY_TIMEOUT"] = 504] = "GATEWAY_TIMEOUT";
|
||||
HttpStatus[HttpStatus["HTTP_VERSION_NOT_SUPPORTED"] = 505] = "HTTP_VERSION_NOT_SUPPORTED";
|
||||
HttpStatus[HttpStatus["INSUFFICIENT_STORAGE"] = 507] = "INSUFFICIENT_STORAGE";
|
||||
HttpStatus[HttpStatus["LOOP_DETECTED"] = 508] = "LOOP_DETECTED";
|
||||
})(HttpStatus || (exports.HttpStatus = HttpStatus = {}));
|
||||
4
node_modules/@nestjs/common/enums/index.d.ts
generated
vendored
Normal file
4
node_modules/@nestjs/common/enums/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
export * from './request-method.enum';
|
||||
export * from './http-status.enum';
|
||||
export * from './shutdown-signal.enum';
|
||||
export * from './version-type.enum';
|
||||
7
node_modules/@nestjs/common/enums/index.js
generated
vendored
Normal file
7
node_modules/@nestjs/common/enums/index.js
generated
vendored
Normal file
@@ -0,0 +1,7 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
const tslib_1 = require("tslib");
|
||||
tslib_1.__exportStar(require("./request-method.enum"), exports);
|
||||
tslib_1.__exportStar(require("./http-status.enum"), exports);
|
||||
tslib_1.__exportStar(require("./shutdown-signal.enum"), exports);
|
||||
tslib_1.__exportStar(require("./version-type.enum"), exports);
|
||||
18
node_modules/@nestjs/common/enums/request-method.enum.d.ts
generated
vendored
Normal file
18
node_modules/@nestjs/common/enums/request-method.enum.d.ts
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
export declare enum RequestMethod {
|
||||
GET = 0,
|
||||
POST = 1,
|
||||
PUT = 2,
|
||||
DELETE = 3,
|
||||
PATCH = 4,
|
||||
ALL = 5,
|
||||
OPTIONS = 6,
|
||||
HEAD = 7,
|
||||
SEARCH = 8,
|
||||
PROPFIND = 9,
|
||||
PROPPATCH = 10,
|
||||
MKCOL = 11,
|
||||
COPY = 12,
|
||||
MOVE = 13,
|
||||
LOCK = 14,
|
||||
UNLOCK = 15
|
||||
}
|
||||
22
node_modules/@nestjs/common/enums/request-method.enum.js
generated
vendored
Normal file
22
node_modules/@nestjs/common/enums/request-method.enum.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RequestMethod = void 0;
|
||||
var RequestMethod;
|
||||
(function (RequestMethod) {
|
||||
RequestMethod[RequestMethod["GET"] = 0] = "GET";
|
||||
RequestMethod[RequestMethod["POST"] = 1] = "POST";
|
||||
RequestMethod[RequestMethod["PUT"] = 2] = "PUT";
|
||||
RequestMethod[RequestMethod["DELETE"] = 3] = "DELETE";
|
||||
RequestMethod[RequestMethod["PATCH"] = 4] = "PATCH";
|
||||
RequestMethod[RequestMethod["ALL"] = 5] = "ALL";
|
||||
RequestMethod[RequestMethod["OPTIONS"] = 6] = "OPTIONS";
|
||||
RequestMethod[RequestMethod["HEAD"] = 7] = "HEAD";
|
||||
RequestMethod[RequestMethod["SEARCH"] = 8] = "SEARCH";
|
||||
RequestMethod[RequestMethod["PROPFIND"] = 9] = "PROPFIND";
|
||||
RequestMethod[RequestMethod["PROPPATCH"] = 10] = "PROPPATCH";
|
||||
RequestMethod[RequestMethod["MKCOL"] = 11] = "MKCOL";
|
||||
RequestMethod[RequestMethod["COPY"] = 12] = "COPY";
|
||||
RequestMethod[RequestMethod["MOVE"] = 13] = "MOVE";
|
||||
RequestMethod[RequestMethod["LOCK"] = 14] = "LOCK";
|
||||
RequestMethod[RequestMethod["UNLOCK"] = 15] = "UNLOCK";
|
||||
})(RequestMethod || (exports.RequestMethod = RequestMethod = {}));
|
||||
16
node_modules/@nestjs/common/enums/route-paramtypes.enum.d.ts
generated
vendored
Normal file
16
node_modules/@nestjs/common/enums/route-paramtypes.enum.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
export declare enum RouteParamtypes {
|
||||
REQUEST = 0,
|
||||
RESPONSE = 1,
|
||||
NEXT = 2,
|
||||
BODY = 3,
|
||||
QUERY = 4,
|
||||
PARAM = 5,
|
||||
HEADERS = 6,
|
||||
SESSION = 7,
|
||||
FILE = 8,
|
||||
FILES = 9,
|
||||
HOST = 10,
|
||||
IP = 11,
|
||||
RAW_BODY = 12,
|
||||
ACK = 13
|
||||
}
|
||||
20
node_modules/@nestjs/common/enums/route-paramtypes.enum.js
generated
vendored
Normal file
20
node_modules/@nestjs/common/enums/route-paramtypes.enum.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.RouteParamtypes = void 0;
|
||||
var RouteParamtypes;
|
||||
(function (RouteParamtypes) {
|
||||
RouteParamtypes[RouteParamtypes["REQUEST"] = 0] = "REQUEST";
|
||||
RouteParamtypes[RouteParamtypes["RESPONSE"] = 1] = "RESPONSE";
|
||||
RouteParamtypes[RouteParamtypes["NEXT"] = 2] = "NEXT";
|
||||
RouteParamtypes[RouteParamtypes["BODY"] = 3] = "BODY";
|
||||
RouteParamtypes[RouteParamtypes["QUERY"] = 4] = "QUERY";
|
||||
RouteParamtypes[RouteParamtypes["PARAM"] = 5] = "PARAM";
|
||||
RouteParamtypes[RouteParamtypes["HEADERS"] = 6] = "HEADERS";
|
||||
RouteParamtypes[RouteParamtypes["SESSION"] = 7] = "SESSION";
|
||||
RouteParamtypes[RouteParamtypes["FILE"] = 8] = "FILE";
|
||||
RouteParamtypes[RouteParamtypes["FILES"] = 9] = "FILES";
|
||||
RouteParamtypes[RouteParamtypes["HOST"] = 10] = "HOST";
|
||||
RouteParamtypes[RouteParamtypes["IP"] = 11] = "IP";
|
||||
RouteParamtypes[RouteParamtypes["RAW_BODY"] = 12] = "RAW_BODY";
|
||||
RouteParamtypes[RouteParamtypes["ACK"] = 13] = "ACK";
|
||||
})(RouteParamtypes || (exports.RouteParamtypes = RouteParamtypes = {}));
|
||||
16
node_modules/@nestjs/common/enums/shutdown-signal.enum.d.ts
generated
vendored
Normal file
16
node_modules/@nestjs/common/enums/shutdown-signal.enum.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
/**
|
||||
* System signals which shut down a process
|
||||
*/
|
||||
export declare enum ShutdownSignal {
|
||||
SIGHUP = "SIGHUP",
|
||||
SIGINT = "SIGINT",
|
||||
SIGQUIT = "SIGQUIT",
|
||||
SIGILL = "SIGILL",
|
||||
SIGTRAP = "SIGTRAP",
|
||||
SIGABRT = "SIGABRT",
|
||||
SIGBUS = "SIGBUS",
|
||||
SIGFPE = "SIGFPE",
|
||||
SIGSEGV = "SIGSEGV",
|
||||
SIGUSR2 = "SIGUSR2",
|
||||
SIGTERM = "SIGTERM"
|
||||
}
|
||||
20
node_modules/@nestjs/common/enums/shutdown-signal.enum.js
generated
vendored
Normal file
20
node_modules/@nestjs/common/enums/shutdown-signal.enum.js
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.ShutdownSignal = void 0;
|
||||
/**
|
||||
* System signals which shut down a process
|
||||
*/
|
||||
var ShutdownSignal;
|
||||
(function (ShutdownSignal) {
|
||||
ShutdownSignal["SIGHUP"] = "SIGHUP";
|
||||
ShutdownSignal["SIGINT"] = "SIGINT";
|
||||
ShutdownSignal["SIGQUIT"] = "SIGQUIT";
|
||||
ShutdownSignal["SIGILL"] = "SIGILL";
|
||||
ShutdownSignal["SIGTRAP"] = "SIGTRAP";
|
||||
ShutdownSignal["SIGABRT"] = "SIGABRT";
|
||||
ShutdownSignal["SIGBUS"] = "SIGBUS";
|
||||
ShutdownSignal["SIGFPE"] = "SIGFPE";
|
||||
ShutdownSignal["SIGSEGV"] = "SIGSEGV";
|
||||
ShutdownSignal["SIGUSR2"] = "SIGUSR2";
|
||||
ShutdownSignal["SIGTERM"] = "SIGTERM";
|
||||
})(ShutdownSignal || (exports.ShutdownSignal = ShutdownSignal = {}));
|
||||
9
node_modules/@nestjs/common/enums/version-type.enum.d.ts
generated
vendored
Normal file
9
node_modules/@nestjs/common/enums/version-type.enum.d.ts
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
/**
|
||||
* @publicApi
|
||||
*/
|
||||
export declare enum VersioningType {
|
||||
URI = 0,
|
||||
HEADER = 1,
|
||||
MEDIA_TYPE = 2,
|
||||
CUSTOM = 3
|
||||
}
|
||||
13
node_modules/@nestjs/common/enums/version-type.enum.js
generated
vendored
Normal file
13
node_modules/@nestjs/common/enums/version-type.enum.js
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.VersioningType = void 0;
|
||||
/**
|
||||
* @publicApi
|
||||
*/
|
||||
var VersioningType;
|
||||
(function (VersioningType) {
|
||||
VersioningType[VersioningType["URI"] = 0] = "URI";
|
||||
VersioningType[VersioningType["HEADER"] = 1] = "HEADER";
|
||||
VersioningType[VersioningType["MEDIA_TYPE"] = 2] = "MEDIA_TYPE";
|
||||
VersioningType[VersioningType["CUSTOM"] = 3] = "CUSTOM";
|
||||
})(VersioningType || (exports.VersioningType = VersioningType = {}));
|
||||
Reference in New Issue
Block a user