@unified-product-graph/cloud-server 0.8.15 → 0.9.0

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.js CHANGED
@@ -4481,7 +4481,7 @@ var TOOL_DEFINITIONS = [
4481
4481
  },
4482
4482
  {
4483
4483
  name: "list_cross_edge_types",
4484
- description: "List the canonical cross-product edge types from UPG_CROSS_EDGE_TYPES (shares_persona, shares_competitor, shares_metric, depends_on_product, cannibalises, succeeds). Portfolio-level relationships between entities in different products, separate from the within-product UPG_EDGE_CATALOG.",
4484
+ description: "List the canonical cross-product edge types from UPG_CROSS_EDGE_TYPES (shares_persona, shares_competitor, shares_metric, depends_on_product, cannibalises, succeeds, hosts). Portfolio-level relationships between entities in different products, separate from the within-product UPG_EDGE_CATALOG.",
4485
4485
  inputSchema: { type: "object", properties: {} }
4486
4486
  },
4487
4487
  {
@@ -4844,14 +4844,14 @@ var TOOL_DEFINITIONS = [
4844
4844
  },
4845
4845
  {
4846
4846
  "name": "create_cross_product_edge",
4847
- "description": "Create a cross-product edge linking entities across different products. Type must be one of the canonical UPG cross-edge types: shares_persona, shares_competitor, shares_metric, depends_on_product, cannibalises, succeeds.",
4847
+ "description": "Create a cross-product edge linking entities across different products. Type must be one of the canonical UPG cross-edge types: shares_persona, shares_competitor, shares_metric, depends_on_product, cannibalises, succeeds, hosts.",
4848
4848
  "inputSchema": {
4849
4849
  "type": "object",
4850
4850
  "properties": {
4851
4851
  "product_id": { "type": "string", "description": "The product creating this cross-edge" },
4852
4852
  "source": { "type": "string", "description": "Qualified source: {product_id}/{node_id}" },
4853
4853
  "target": { "type": "string", "description": "Qualified target: {product_id}/{node_id}" },
4854
- "type": { "type": "string", "description": "Cross-edge type", "enum": ["shares_persona", "shares_competitor", "shares_metric", "depends_on_product", "cannibalises", "succeeds"] }
4854
+ "type": { "type": "string", "description": "Cross-edge type", "enum": ["shares_persona", "shares_competitor", "shares_metric", "depends_on_product", "cannibalises", "succeeds", "hosts"] }
4855
4855
  },
4856
4856
  "required": ["product_id", "source", "target", "type"]
4857
4857
  }