chore: add pre-built dist folder for npx usage

This commit is contained in:
thesved
2025-12-04 20:22:02 +02:00
committed by Romuald Członkowski
parent a70d96a373
commit 5057481e70
716 changed files with 48021 additions and 0 deletions

18
dist/telemetry/mutation-types.js vendored Normal file
View File

@@ -0,0 +1,18 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.MutationToolName = exports.IntentClassification = void 0;
var IntentClassification;
(function (IntentClassification) {
IntentClassification["ADD_FUNCTIONALITY"] = "add_functionality";
IntentClassification["MODIFY_CONFIGURATION"] = "modify_configuration";
IntentClassification["REWIRE_LOGIC"] = "rewire_logic";
IntentClassification["FIX_VALIDATION"] = "fix_validation";
IntentClassification["CLEANUP"] = "cleanup";
IntentClassification["UNKNOWN"] = "unknown";
})(IntentClassification || (exports.IntentClassification = IntentClassification = {}));
var MutationToolName;
(function (MutationToolName) {
MutationToolName["UPDATE_PARTIAL"] = "n8n_update_partial_workflow";
MutationToolName["UPDATE_FULL"] = "n8n_update_full_workflow";
})(MutationToolName || (exports.MutationToolName = MutationToolName = {}));
//# sourceMappingURL=mutation-types.js.map