@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 CHANGED
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
3
  // src/config.ts
4
- var SDK_VERSION = "0.15.1";
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) {