@axiom-lattice/protocols 2.1.18 → 2.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @axiom-lattice/protocols@2.1.18 build /home/runner/work/agentic/agentic/packages/protocols
2
+ > @axiom-lattice/protocols@2.1.19 build /home/runner/work/agentic/agentic/packages/protocols
3
3
  > tsup src/index.ts --format cjs,esm --dts --sourcemap
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,11 +10,11 @@
10
10
  ESM Build start
11
11
  CJS dist/index.js 5.20 KB
12
12
  CJS dist/index.js.map 31.69 KB
13
- CJS ⚡️ Build success in 63ms
13
+ CJS ⚡️ Build success in 66ms
14
14
  ESM dist/index.mjs 3.67 KB
15
15
  ESM dist/index.mjs.map 30.42 KB
16
- ESM ⚡️ Build success in 64ms
16
+ ESM ⚡️ Build success in 66ms
17
17
  DTS Build start
18
- DTS ⚡️ Build success in 3102ms
19
- DTS dist/index.d.ts 71.50 KB
20
- DTS dist/index.d.mts 71.50 KB
18
+ DTS ⚡️ Build success in 2806ms
19
+ DTS dist/index.d.ts 71.37 KB
20
+ DTS dist/index.d.mts 71.37 KB
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @axiom-lattice/protocols
2
2
 
3
+ ## 2.1.19
4
+
5
+ ### Patch Changes
6
+
7
+ - cea3047: fix issue
8
+
3
9
  ## 2.1.18
4
10
 
5
11
  ### Patch Changes
package/dist/index.d.mts CHANGED
@@ -2182,16 +2182,13 @@ interface ExecuteSqlQueryResponse {
2182
2182
  datasourceId: string | number;
2183
2183
  /** Data source name */
2184
2184
  datasourceName?: string;
2185
- /** Column names */
2186
- columns: string[];
2187
- /** Query result rows */
2188
- rows: Array<Record<string, unknown>>;
2189
- /** Total row count */
2190
- rowCount: number;
2191
- /** Execution time in milliseconds */
2192
- executionTimeMs: number;
2193
- /** The actual executed SQL (for debugging) */
2194
- executedSql?: string;
2185
+ result: {
2186
+ executedSql: string;
2187
+ columns: string[];
2188
+ rows: Array<Record<string, unknown>>;
2189
+ rowCount: number;
2190
+ executionTimeMs: number;
2191
+ };
2195
2192
  }
2196
2193
  /**
2197
2194
  * MetricsServerConfigStore interface
package/dist/index.d.ts CHANGED
@@ -2182,16 +2182,13 @@ interface ExecuteSqlQueryResponse {
2182
2182
  datasourceId: string | number;
2183
2183
  /** Data source name */
2184
2184
  datasourceName?: string;
2185
- /** Column names */
2186
- columns: string[];
2187
- /** Query result rows */
2188
- rows: Array<Record<string, unknown>>;
2189
- /** Total row count */
2190
- rowCount: number;
2191
- /** Execution time in milliseconds */
2192
- executionTimeMs: number;
2193
- /** The actual executed SQL (for debugging) */
2194
- executedSql?: string;
2185
+ result: {
2186
+ executedSql: string;
2187
+ columns: string[];
2188
+ rows: Array<Record<string, unknown>>;
2189
+ rowCount: number;
2190
+ executionTimeMs: number;
2191
+ };
2195
2192
  }
2196
2193
  /**
2197
2194
  * MetricsServerConfigStore interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axiom-lattice/protocols",
3
- "version": "2.1.18",
3
+ "version": "2.1.19",
4
4
  "description": "Unified protocol type definitions for Axiom Lattice framework",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",
@@ -319,16 +319,13 @@ export interface ExecuteSqlQueryResponse {
319
319
  datasourceId: string | number;
320
320
  /** Data source name */
321
321
  datasourceName?: string;
322
- /** Column names */
323
- columns: string[];
324
- /** Query result rows */
325
- rows: Array<Record<string, unknown>>;
326
- /** Total row count */
327
- rowCount: number;
328
- /** Execution time in milliseconds */
329
- executionTimeMs: number;
330
- /** The actual executed SQL (for debugging) */
331
- executedSql?: string;
322
+ result: {
323
+ executedSql: string;
324
+ columns: string[];
325
+ rows: Array<Record<string, unknown>>;
326
+ rowCount: number;
327
+ executionTimeMs: number;
328
+ }
332
329
  }
333
330
 
334
331
  /**