@hotmeshio/long-tail 0.1.18 → 0.1.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/index.d.ts +0 -1
- package/build/index.js +1 -5
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -32,7 +32,6 @@ export * as McpVisionServer from './system/mcp-servers/vision';
|
|
|
32
32
|
export { escalationStrategyRegistry } from './services/escalation-strategy';
|
|
33
33
|
export { DefaultEscalationStrategy } from './services/escalation-strategy/default';
|
|
34
34
|
export { McpEscalationStrategy } from './services/escalation-strategy/mcp';
|
|
35
|
-
export { exampleWorkers, seedExamples } from './examples';
|
|
36
35
|
export { getActivityIdentity } from './services/iam/activity';
|
|
37
36
|
export { getToolContext } from './services/iam/context';
|
|
38
37
|
export { registerMcpTool } from './services/mcp/register-tool';
|
package/build/index.js
CHANGED
|
@@ -36,8 +36,7 @@ var __importStar = (this && this.__importStar) || (function () {
|
|
|
36
36
|
};
|
|
37
37
|
})();
|
|
38
38
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
|
-
exports.getFreshAccessToken = exports.createClient = exports.CallbackEventAdapter = exports.builtinMcpServerFactories = exports.getSystemWorkers = exports.registerMcpTool = exports.getToolContext = exports.getActivityIdentity = exports.
|
|
40
|
-
exports.api = void 0;
|
|
39
|
+
exports.api = exports.getFreshAccessToken = exports.createClient = exports.CallbackEventAdapter = exports.builtinMcpServerFactories = exports.getSystemWorkers = exports.registerMcpTool = exports.getToolContext = exports.getActivityIdentity = exports.McpEscalationStrategy = exports.DefaultEscalationStrategy = exports.escalationStrategyRegistry = exports.McpVisionServer = exports.McpTranslationServer = exports.McpServer = exports.McpClient = exports.McpService = exports.BuiltInMcpAdapter = exports.mcpRegistry = exports.defaultMaintenanceConfig = exports.maintenanceRegistry = exports.PinoLoggerAdapter = exports.loggerRegistry = exports.HoneycombTelemetryAdapter = exports.telemetryRegistry = exports.publishWorkflowEvent = exports.publishEscalationEvent = exports.publishTaskEvent = exports.publishMilestoneEvent = exports.SocketIOEventAdapter = exports.InMemoryEventAdapter = exports.NatsEventAdapter = exports.eventRegistry = exports.ltConfig = exports.UserService = exports.ConfigService = exports.EscalationService = exports.TaskService = exports.signToken = exports.requireAdmin = exports.requireAuth = exports.createAuthMiddleware = exports.JwtAuthAdapter = exports.conditionLT = exports.executeLT = exports.createLTActivityInterceptor = exports.createLTInterceptor = exports.registerLT = exports.start = void 0;
|
|
41
40
|
const config_1 = require("./modules/config");
|
|
42
41
|
const logger_1 = require("./lib/logger");
|
|
43
42
|
const start_1 = require("./start");
|
|
@@ -106,9 +105,6 @@ var default_1 = require("./services/escalation-strategy/default");
|
|
|
106
105
|
Object.defineProperty(exports, "DefaultEscalationStrategy", { enumerable: true, get: function () { return default_1.DefaultEscalationStrategy; } });
|
|
107
106
|
var mcp_2 = require("./services/escalation-strategy/mcp");
|
|
108
107
|
Object.defineProperty(exports, "McpEscalationStrategy", { enumerable: true, get: function () { return mcp_2.McpEscalationStrategy; } });
|
|
109
|
-
var examples_1 = require("./examples");
|
|
110
|
-
Object.defineProperty(exports, "exampleWorkers", { enumerable: true, get: function () { return examples_1.exampleWorkers; } });
|
|
111
|
-
Object.defineProperty(exports, "seedExamples", { enumerable: true, get: function () { return examples_1.seedExamples; } });
|
|
112
108
|
var activity_1 = require("./services/iam/activity");
|
|
113
109
|
Object.defineProperty(exports, "getActivityIdentity", { enumerable: true, get: function () { return activity_1.getActivityIdentity; } });
|
|
114
110
|
var context_1 = require("./services/iam/context");
|
package/package.json
CHANGED