@duckcodeailabs/dql-mcp 1.13.0 → 1.13.2

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.
@@ -162,7 +162,7 @@ export declare function explainRelationshipProof(ctx: DQLContext, args: {
162
162
  analyticalRole?: "event" | "dimension" | "snapshot" | "bridge" | "unknown";
163
163
  conceptRefs?: string[];
164
164
  owner?: string;
165
- status?: "draft" | "review" | "certified" | "deprecated";
165
+ status?: import("@duckcodeailabs/dql-core").ManifestModelLifecycle;
166
166
  sourcePath: string;
167
167
  identityFingerprint: string;
168
168
  } | undefined;
@@ -181,7 +181,7 @@ export declare function explainRelationshipProof(ctx: DQLContext, args: {
181
181
  analyticalRole?: "event" | "dimension" | "snapshot" | "bridge" | "unknown";
182
182
  conceptRefs?: string[];
183
183
  owner?: string;
184
- status?: "draft" | "review" | "certified" | "deprecated";
184
+ status?: import("@duckcodeailabs/dql-core").ManifestModelLifecycle;
185
185
  sourcePath: string;
186
186
  identityFingerprint: string;
187
187
  } | undefined;
@@ -52,7 +52,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
52
52
  rightColumn: string;
53
53
  reason: string;
54
54
  confidence: number;
55
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
55
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
56
56
  }[];
57
57
  schemaShapeCandidates: {
58
58
  objectKey: string;
@@ -107,7 +107,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
107
107
  rightColumn: string;
108
108
  reason: string;
109
109
  confidence: number;
110
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
110
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
111
111
  }[];
112
112
  schemaShapeCandidates: {
113
113
  objectKey: string;
@@ -206,7 +206,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
206
206
  rightColumn: string;
207
207
  reason: string;
208
208
  confidence: number;
209
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
209
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
210
210
  }[];
211
211
  schemaShapeCandidates: {
212
212
  objectKey: string;
@@ -303,7 +303,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
303
303
  rightColumn: string;
304
304
  reason: string;
305
305
  confidence: number;
306
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
306
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
307
307
  }[];
308
308
  schemaShapeCandidates: {
309
309
  objectKey: string;
@@ -399,7 +399,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
399
399
  rightColumn: string;
400
400
  reason: string;
401
401
  confidence: number;
402
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
402
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
403
403
  }[];
404
404
  schemaShapeCandidates: {
405
405
  objectKey: string;
@@ -491,7 +491,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
491
491
  rightColumn: string;
492
492
  reason: string;
493
493
  confidence: number;
494
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
494
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
495
495
  }[];
496
496
  schemaShapeCandidates: {
497
497
  objectKey: string;
@@ -599,7 +599,7 @@ export declare function queryViaMetadata(ctx: DQLContext, args: {
599
599
  rightColumn: string;
600
600
  reason: string;
601
601
  confidence: number;
602
- source?: "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
602
+ source?: "dql_relationship" | "dbt_lineage" | "metadata_guess" | "kg_path" | "datalex";
603
603
  }[];
604
604
  schemaShapeCandidates: {
605
605
  objectKey: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duckcodeailabs/dql-mcp",
3
- "version": "1.13.0",
3
+ "version": "1.13.2",
4
4
  "description": "DQL MCP server: expose certified blocks, semantic layer, lineage, and governance to LLM agents via the Model Context Protocol",
5
5
  "license": "Apache-2.0",
6
6
  "type": "module",
@@ -24,10 +24,10 @@
24
24
  "access": "public"
25
25
  },
26
26
  "dependencies": {
27
- "@duckcodeailabs/dql-agent": "^1.13.0",
28
- "@duckcodeailabs/dql-core": "^1.13.0",
29
- "@duckcodeailabs/dql-governance": "^1.13.0",
30
- "@duckcodeailabs/dql-project": "^1.13.0",
27
+ "@duckcodeailabs/dql-agent": "^1.13.2",
28
+ "@duckcodeailabs/dql-core": "^1.13.2",
29
+ "@duckcodeailabs/dql-governance": "^1.13.2",
30
+ "@duckcodeailabs/dql-project": "^1.13.2",
31
31
  "@modelcontextprotocol/sdk": "^1.0.4",
32
32
  "zod": "^3.25.0"
33
33
  },