@kortexya/reasoninglayer 0.15.1 → 0.15.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.
- package/dist/index.cjs +3 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +34 -4
- package/dist/index.d.ts +34 -4
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
// src/config.ts
|
|
4
|
-
var SDK_VERSION = "0.15.
|
|
4
|
+
var SDK_VERSION = "0.15.2";
|
|
5
5
|
function resolveConfig(config) {
|
|
6
6
|
if (!config.baseUrl) {
|
|
7
7
|
throw new Error("ClientConfig.baseUrl is required");
|
|
@@ -15492,7 +15492,8 @@ function SpaceSearchRequestFromFrontToApi(model) {
|
|
|
15492
15492
|
function VariableFeasibilityDtoFromApiToFront(dto) {
|
|
15493
15493
|
return {
|
|
15494
15494
|
canBeTrue: dto.can_be_true,
|
|
15495
|
-
canBeFalse: dto.can_be_false
|
|
15495
|
+
canBeFalse: dto.can_be_false,
|
|
15496
|
+
verified: dto.verified ?? true
|
|
15496
15497
|
};
|
|
15497
15498
|
}
|
|
15498
15499
|
function SpaceSearchResponseFromApiToFront(dto) {
|