"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.MAX_IMAGE_FILE_SIZE = exports.MAX_FILE_SIZE = exports.MAX_FILES_PER_CASE = exports.MAX_DELETE_FILES = exports.FILE_ATTACHMENT_TYPE = void 0; /* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ const FILE_ATTACHMENT_TYPE = '.files'; exports.FILE_ATTACHMENT_TYPE = FILE_ATTACHMENT_TYPE; const MAX_FILE_SIZE = 100 * 1024 * 1024; // 100 MiB exports.MAX_FILE_SIZE = MAX_FILE_SIZE; const MAX_IMAGE_FILE_SIZE = 10 * 1024 * 1024; // 10 MiB exports.MAX_IMAGE_FILE_SIZE = MAX_IMAGE_FILE_SIZE; const MAX_FILES_PER_CASE = 100; exports.MAX_FILES_PER_CASE = MAX_FILES_PER_CASE; const MAX_DELETE_FILES = 10; exports.MAX_DELETE_FILES = MAX_DELETE_FILES;