2023-12-06 19:36:57 -05:00
|
|
|
/**
|
|
|
|
|
* @typedef {Object} CacheKeys
|
|
|
|
|
* @property {'config'} CONFIG - Key for the config cache.
|
2023-12-14 07:49:27 -05:00
|
|
|
* @property {'plugins'} PLUGINS - Key for the plugins cache.
|
2023-12-06 19:36:57 -05:00
|
|
|
* @property {'modelsConfig'} MODELS_CONFIG - Key for the model config cache.
|
|
|
|
|
* @property {'defaultConfig'} DEFAULT_CONFIG - Key for the default config cache.
|
|
|
|
|
* @property {'overrideConfig'} OVERRIDE_CONFIG - Key for the override config cache.
|
|
|
|
|
*/
|
|
|
|
|
const CacheKeys = {
|
|
|
|
|
CONFIG: 'config',
|
2023-12-14 07:49:27 -05:00
|
|
|
PLUGINS: 'plugins',
|
2023-12-06 19:36:57 -05:00
|
|
|
MODELS_CONFIG: 'modelsConfig',
|
|
|
|
|
DEFAULT_CONFIG: 'defaultConfig',
|
|
|
|
|
OVERRIDE_CONFIG: 'overrideConfig',
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
module.exports = { CacheKeys };
|