Commit With Frontend and Backend in MERN

This commit is contained in:
sanikapendurkar
2025-02-10 14:24:56 +05:30
commit 0f4e1a3183
2518 changed files with 448667 additions and 0 deletions

41
backend/node_modules/mongoose/lib/validOptions.js generated vendored Normal file
View File

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