You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
641 B
JavaScript

/*!
* Valid mongoose options
*/
'use strict';
const VALID_OPTIONS = Object.freeze([
'allowDiskUse',
'applyPluginsToChildSchemas',
'applyPluginsToDiscriminators',
'autoCreate',
'autoIndex',
'bufferCommands',
'bufferTimeoutMS',
'cloneSchemas',
'debug',
'id',
'timestamps.createdAt.immutable',
'maxTimeMS',
'objectIdGetter',
'overwriteModels',
'returnOriginal',
'runValidators',
'sanitizeFilter',
'sanitizeProjection',
'selectPopulatedPaths',
'setDefaultsOnInsert',
'strict',
'strictPopulate',
'strictQuery',
'toJSON',
'toObject',
'translateAliases'
]);
module.exports = VALID_OPTIONS;