@neat.is/types 0.9.17-dev.20260915 → 0.9.17
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/dist/index.cjs +8 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +8 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8500,7 +8500,7 @@ type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
|
|
|
8500
8500
|
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch", "observed-failing", "deploy-mismatch"]>;
|
|
8501
8501
|
type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
|
|
8502
8502
|
|
|
8503
|
-
declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "get_incident_card", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
|
|
8503
|
+
declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "get_incident_card", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension", "neat_list_connectable", "neat_connect", "neat_connection_status", "neat_disconnect"];
|
|
8504
8504
|
type MCPToolName = (typeof MCP_TOOL_NAMES)[number];
|
|
8505
8505
|
|
|
8506
8506
|
declare const IncidentsResponseSchema: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -8500,7 +8500,7 @@ type DivergenceResult = z.infer<typeof DivergenceResultSchema>;
|
|
|
8500
8500
|
declare const DivergenceTypeSchema: z.ZodEnum<["missing-observed", "missing-extracted", "version-mismatch", "host-mismatch", "compat-violation", "observed-symbol-mismatch", "observed-failing", "deploy-mismatch"]>;
|
|
8501
8501
|
type DivergenceType = z.infer<typeof DivergenceTypeSchema>;
|
|
8502
8502
|
|
|
8503
|
-
declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "get_incident_card", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension"];
|
|
8503
|
+
declare const MCP_TOOL_NAMES: readonly ["get_root_cause", "get_blast_radius", "get_dependencies", "get_observed_dependencies", "get_incident_history", "get_incident_card", "semantic_search", "get_graph_diff", "get_recent_stale_edges", "check_policies", "get_divergences", "expand", "relate", "ask", "neat_list_uninstrumented", "neat_lookup_instrumentation", "neat_describe_project_instrumentation", "neat_apply_extension", "neat_dry_run_extension", "neat_rollback_extension", "neat_list_connectable", "neat_connect", "neat_connection_status", "neat_disconnect"];
|
|
8504
8504
|
type MCPToolName = (typeof MCP_TOOL_NAMES)[number];
|
|
8505
8505
|
|
|
8506
8506
|
declare const IncidentsResponseSchema: z.ZodObject<{
|
package/dist/index.js
CHANGED
|
@@ -1502,7 +1502,14 @@ var MCP_TOOL_NAMES = [
|
|
|
1502
1502
|
"neat_describe_project_instrumentation",
|
|
1503
1503
|
"neat_apply_extension",
|
|
1504
1504
|
"neat_dry_run_extension",
|
|
1505
|
-
"neat_rollback_extension"
|
|
1505
|
+
"neat_rollback_extension",
|
|
1506
|
+
// Four hosted connector tools (ADR-228): connect a provider to the hosted
|
|
1507
|
+
// project headlessly. The only tools that call the control plane rather than
|
|
1508
|
+
// the daemon; connect/disconnect write connection state, never the graph.
|
|
1509
|
+
"neat_list_connectable",
|
|
1510
|
+
"neat_connect",
|
|
1511
|
+
"neat_connection_status",
|
|
1512
|
+
"neat_disconnect"
|
|
1506
1513
|
];
|
|
1507
1514
|
|
|
1508
1515
|
// src/responses.ts
|