- Add .gitignore: exclude compiled binaries, build artifacts, and Helm values files containing real secrets (authentik, prometheus) - Add all Kubernetes deployment manifests (deployment/) - Add services source code: ha-sync, device-inventory, games-console, paperclip, parts-inventory - Add Ansible orchestration: playbooks, roles, inventory, cloud-init - Add hardware specs, execution plans, scripts, HOMELAB.md - Add skills/homelab/SKILL.md + skills/install.sh to preserve Copilot skill - Remove previously-tracked inventory-cli binary from git index Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
46 lines
1.6 KiB
JavaScript
46 lines
1.6 KiB
JavaScript
/*!
|
|
* Dependencies
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const StateMachine = require('./stateMachine');
|
|
const ActiveRoster = StateMachine.ctor('require', 'modify', 'init', 'default', 'ignore');
|
|
|
|
module.exports = exports = InternalCache;
|
|
|
|
function InternalCache() {
|
|
this.activePaths = new ActiveRoster();
|
|
}
|
|
|
|
InternalCache.prototype.strictMode = true;
|
|
|
|
InternalCache.prototype.fullPath = undefined;
|
|
InternalCache.prototype.selected = undefined;
|
|
InternalCache.prototype.shardval = undefined;
|
|
InternalCache.prototype.saveError = undefined;
|
|
InternalCache.prototype.validationError = undefined;
|
|
InternalCache.prototype.adhocPaths = undefined;
|
|
InternalCache.prototype.removing = undefined;
|
|
InternalCache.prototype.inserting = undefined;
|
|
InternalCache.prototype.saving = undefined;
|
|
InternalCache.prototype.version = undefined;
|
|
InternalCache.prototype._id = undefined;
|
|
InternalCache.prototype.ownerDocument = undefined;
|
|
InternalCache.prototype.populate = undefined; // what we want to populate in this doc
|
|
InternalCache.prototype.populated = undefined;// the _ids that have been populated
|
|
InternalCache.prototype.primitiveAtomics = undefined;
|
|
|
|
/**
|
|
* If `false`, this document was not the result of population.
|
|
* If `true`, this document is a populated doc underneath another doc
|
|
* If an object, this document is a populated doc and the `value` property of the
|
|
* object contains the original depopulated value.
|
|
*/
|
|
InternalCache.prototype.wasPopulated = false;
|
|
|
|
InternalCache.prototype.scope = undefined;
|
|
|
|
InternalCache.prototype.session = null;
|
|
InternalCache.prototype.pathsToScopes = null;
|
|
InternalCache.prototype.cachedRequired = null;
|