@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.cjs
CHANGED
|
@@ -7,7 +7,7 @@ var __export = (target, all) => {
|
|
|
7
7
|
};
|
|
8
8
|
|
|
9
9
|
// src/config.ts
|
|
10
|
-
var SDK_VERSION = "1.12.
|
|
10
|
+
var SDK_VERSION = "1.12.1";
|
|
11
11
|
function resolveConfig(config) {
|
|
12
12
|
if (!config.baseUrl) {
|
|
13
13
|
throw new Error("ClientConfig.baseUrl is required");
|
|
@@ -22618,7 +22618,11 @@ function TurnDtoFromApiToFront(dto) {
|
|
|
22618
22618
|
// Generated contract types this as `any[]` — the wire shape is ClaimAnnotationDto.
|
|
22619
22619
|
claimAnnotations: dto.claim_annotations?.map(
|
|
22620
22620
|
ClaimAnnotationDtoFromApiToFront
|
|
22621
|
-
)
|
|
22621
|
+
),
|
|
22622
|
+
// `query_results` isn't on the (stale) generated TurnDto contract yet, but the
|
|
22623
|
+
// backend now persists & returns it on assistant turns. Pass the rows straight
|
|
22624
|
+
// through like the message-response mapper does, so a reloaded turn keeps its table.
|
|
22625
|
+
queryResults: dto.query_results ?? void 0
|
|
22622
22626
|
};
|
|
22623
22627
|
}
|
|
22624
22628
|
function ConversationSummaryDtoFromApiToFront(dto) {
|