nestjs-multer-extended-aws-latest
Version:
Extended MulterModule for NestJS Latest AWS SDK
15 lines (14 loc) • 786 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.MulterExceptions = void 0;
var MulterExceptions;
(function (MulterExceptions) {
MulterExceptions["LIMIT_PART_COUNT"] = "Too many parts";
MulterExceptions["LIMIT_FILE_SIZE"] = "File too large";
MulterExceptions["LIMIT_FILE_COUNT"] = "Too many files";
MulterExceptions["LIMIT_FIELD_KEY"] = "Field name too long";
MulterExceptions["LIMIT_FIELD_VALUE"] = "Field value too long";
MulterExceptions["LIMIT_FIELD_COUNT"] = "Too many fields";
MulterExceptions["LIMIT_UNEXPECTED_FILE"] = "Unexpected field";
MulterExceptions["INVALID_IMAGE_FILE_TYPE"] = "Invalid Image File Type";
})(MulterExceptions = exports.MulterExceptions || (exports.MulterExceptions = {}));