@kortexya/reasoninglayer 1.12.0 → 1.12.1
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 +6 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +4 -1
- package/dist/index.d.ts +4 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -109,7 +109,7 @@ type JsonValue$1 = string | number | boolean | null | JsonValue$1[] | object;
|
|
|
109
109
|
* This is the single source of truth for the version constant.
|
|
110
110
|
* The `scripts/release.sh` script updates this value alongside `package.json`.
|
|
111
111
|
*/
|
|
112
|
-
declare const SDK_VERSION = "1.12.
|
|
112
|
+
declare const SDK_VERSION = "1.12.1";
|
|
113
113
|
/**
|
|
114
114
|
* Authentication mode for the SDK.
|
|
115
115
|
*
|
|
@@ -44108,6 +44108,9 @@ interface TurnDto {
|
|
|
44108
44108
|
osfql?: string | null;
|
|
44109
44109
|
/** Per-claim provenance annotations (assistant turns only). */
|
|
44110
44110
|
claimAnnotations?: ClaimAnnotationDto[] | null;
|
|
44111
|
+
/** MATCH result rows (assistant turns only), persisted by the backend so a
|
|
44112
|
+
* "show me a table of X" answer keeps its table across a reload. */
|
|
44113
|
+
queryResults?: Record<string, OsfqlValue>[] | null;
|
|
44111
44114
|
}
|
|
44112
44115
|
/**
|
|
44113
44116
|
* A conversation summary.
|
package/dist/index.d.ts
CHANGED
|
@@ -109,7 +109,7 @@ type JsonValue$1 = string | number | boolean | null | JsonValue$1[] | object;
|
|
|
109
109
|
* This is the single source of truth for the version constant.
|
|
110
110
|
* The `scripts/release.sh` script updates this value alongside `package.json`.
|
|
111
111
|
*/
|
|
112
|
-
declare const SDK_VERSION = "1.12.
|
|
112
|
+
declare const SDK_VERSION = "1.12.1";
|
|
113
113
|
/**
|
|
114
114
|
* Authentication mode for the SDK.
|
|
115
115
|
*
|
|
@@ -44108,6 +44108,9 @@ interface TurnDto {
|
|
|
44108
44108
|
osfql?: string | null;
|
|
44109
44109
|
/** Per-claim provenance annotations (assistant turns only). */
|
|
44110
44110
|
claimAnnotations?: ClaimAnnotationDto[] | null;
|
|
44111
|
+
/** MATCH result rows (assistant turns only), persisted by the backend so a
|
|
44112
|
+
* "show me a table of X" answer keeps its table across a reload. */
|
|
44113
|
+
queryResults?: Record<string, OsfqlValue>[] | null;
|
|
44111
44114
|
}
|
|
44112
44115
|
/**
|
|
44113
44116
|
* A conversation summary.
|
package/dist/index.js
CHANGED
|
@@ -5,7 +5,7 @@ var __export = (target, all) => {
|
|
|
5
5
|
};
|
|
6
6
|
|
|
7
7
|
// src/config.ts
|
|
8
|
-
var SDK_VERSION = "1.12.
|
|
8
|
+
var SDK_VERSION = "1.12.1";
|
|
9
9
|
function resolveConfig(config) {
|
|
10
10
|
if (!config.baseUrl) {
|
|
11
11
|
throw new Error("ClientConfig.baseUrl is required");
|
|
@@ -22616,7 +22616,11 @@ function TurnDtoFromApiToFront(dto) {
|
|
|
22616
22616
|
// Generated contract types this as `any[]` — the wire shape is ClaimAnnotationDto.
|
|
22617
22617
|
claimAnnotations: dto.claim_annotations?.map(
|
|
22618
22618
|
ClaimAnnotationDtoFromApiToFront
|
|
22619
|
-
)
|
|
22619
|
+
),
|
|
22620
|
+
// `query_results` isn't on the (stale) generated TurnDto contract yet, but the
|
|
22621
|
+
// backend now persists & returns it on assistant turns. Pass the rows straight
|
|
22622
|
+
// through like the message-response mapper does, so a reloaded turn keeps its table.
|
|
22623
|
+
queryResults: dto.query_results ?? void 0
|
|
22620
22624
|
};
|
|
22621
22625
|
}
|
|
22622
22626
|
function ConversationSummaryDtoFromApiToFront(dto) {
|