@kortexya/reasoninglayer 0.2.3 → 0.2.4

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.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 = "0.2.3";
112
+ declare const SDK_VERSION = "0.2.4";
113
113
  /**
114
114
  * Configuration for the Reasoning Layer client.
115
115
  *
@@ -2375,7 +2375,7 @@ interface ComputeGlbRequest {
2375
2375
  sort2_id: string;
2376
2376
  }
2377
2377
  /** Response for GLB computation */
2378
- interface ComputeGlbResponse {
2378
+ interface ComputeGlbResponse$1 {
2379
2379
  /**
2380
2380
  * GLB sort ID if exists
2381
2381
  * @format uuid
@@ -2396,7 +2396,7 @@ interface ComputeLubRequest {
2396
2396
  sort2_id: string;
2397
2397
  }
2398
2398
  /** Response for LUB computation */
2399
- interface ComputeLubResponse {
2399
+ interface ComputeLubResponse$1 {
2400
2400
  /**
2401
2401
  * LUB sort ID if exists
2402
2402
  * @format uuid
@@ -4513,7 +4513,7 @@ interface E2ETrainingResponse$1 {
4513
4513
  triggered: boolean;
4514
4514
  }
4515
4515
  /** Edge type in the graph */
4516
- type EdgeTypeDto$1 = "subtype" | "multiple_inheritance" | "glb_path" | "lub_path" | "constraint_dependency" | "propagation" | "feature" | "coreference" | "trigger_dependency" | {
4516
+ type EdgeTypeDto$1 = "subtype" | "multiple_inheritance" | "glb_path" | "lub_path" | "constraint_dependency" | "propagation" | "feature" | "coreference" | "trigger_dependency" | "relation_source" | "relation_target" | {
4517
4517
  custom: string;
4518
4518
  };
4519
4519
  /** FuzzyNumber shape for effect prediction response */
@@ -5620,7 +5620,7 @@ interface FindRulesResponse$1 {
5620
5620
  matching_rules: RuleDto$1[];
5621
5621
  }
5622
5622
  /** Request for similarity search */
5623
- type FindSimilarRequest = QueryTerm$1 & {
5623
+ type FindSimilarRequest$1 = QueryTerm$1 & {
5624
5624
  /**
5625
5625
  * Whether to fail unification when encountering unknown data (Uninstantiated) with constraints
5626
5626
  * When true: recipes with unknown allergen data will be filtered out (safety-critical mode)
@@ -6559,7 +6559,7 @@ interface GetCausalModelResponse$1 {
6559
6559
  variables: string[];
6560
6560
  }
6561
6561
  /** Request to get episode statistics. */
6562
- interface GetEpisodeStatsRequest {
6562
+ interface GetEpisodeStatsRequest$1 {
6563
6563
  /**
6564
6564
  * Agent ID
6565
6565
  * @format uuid
@@ -7251,6 +7251,8 @@ interface HypergraphRequest$1 {
7251
7251
  generate_dot?: boolean;
7252
7252
  /** Whether to include hyperedges */
7253
7253
  include_hyperedges?: boolean;
7254
+ /** Whether to include relation Psi-terms as intermediate hypergraph nodes */
7255
+ include_relations?: boolean;
7254
7256
  /**
7255
7257
  * Maximum depth to traverse
7256
7258
  * @format int32
@@ -7545,7 +7547,7 @@ interface IngestDocumentResponse$1 {
7545
7547
  /** Document parsing statistics */
7546
7548
  parse_stats: DocumentParseStatsDto$1;
7547
7549
  /** Entities that need human review */
7548
- pending_review?: PendingReviewDto$1[];
7550
+ pending_review?: PendingReviewDto$2[];
7549
7551
  /**
7550
7552
  * Session ID for tracking and resumption (if session tracking is enabled)
7551
7553
  * Use this ID with /api/v1/ingest/sessions/{id} endpoints to check status or resume
@@ -9955,7 +9957,7 @@ interface NlQueryResultItem$1 {
9955
9957
  sort_name: string;
9956
9958
  }
9957
9959
  /** Node type in the graph */
9958
- type NodeTypeDto$1 = "sort" | "synthetic_sort" | "root_sort" | "bottom_sort" | "constraint" | "fd_variable" | "term" | "feature" | "reference" | "residuated_term" | "trigger" | {
9960
+ type NodeTypeDto$1 = "sort" | "synthetic_sort" | "root_sort" | "bottom_sort" | "constraint" | "fd_variable" | "term" | "feature" | "reference" | "residuated_term" | "trigger" | "relation" | {
9959
9961
  custom: string;
9960
9962
  };
9961
9963
  /** Number format options */
@@ -10392,7 +10394,7 @@ interface PendingInvocationDto$1 {
10392
10394
  timeout_at: string;
10393
10395
  }
10394
10396
  /** Entity pending human review */
10395
- interface PendingReviewDto$1 {
10397
+ interface PendingReviewDto$2 {
10396
10398
  /** Candidate matches for deduplication */
10397
10399
  candidates: CandidateMatchDto$1[];
10398
10400
  /** Entity local identifier */
@@ -11823,7 +11825,7 @@ interface ResumeDocumentIngestionResponse$1 {
11823
11825
  /** Error message if resume failed */
11824
11826
  error?: string | null;
11825
11827
  /** Entities pending human review */
11826
- pending_review?: PendingReviewDto$1[];
11828
+ pending_review?: PendingReviewDto$2[];
11827
11829
  /**
11828
11830
  * Chunk that was resumed from
11829
11831
  * @min 0
@@ -12882,7 +12884,7 @@ interface SortInfoDto$1 {
12882
12884
  name?: string | null;
12883
12885
  }
12884
12886
  /** Response for sort list operations */
12885
- interface SortListResponse {
12887
+ interface SortListResponse$1 {
12886
12888
  /**
12887
12889
  * Total count
12888
12890
  * @min 0
@@ -12948,7 +12950,7 @@ interface SortRecommendationDto {
12948
12950
  term_count: number;
12949
12951
  }
12950
12952
  /** Response for sort operations */
12951
- interface SortResponse {
12953
+ interface SortResponse$1 {
12952
12954
  /** The sort */
12953
12955
  sort: SortDto$1;
12954
12956
  }
@@ -14025,7 +14027,7 @@ interface UnificationQueryRequest {
14025
14027
  pattern: TermPatternDto$1;
14026
14028
  }
14027
14029
  /** Response for unification query */
14028
- interface UnificationQueryResponse {
14030
+ interface UnificationQueryResponse$1 {
14029
14031
  /**
14030
14032
  * Total count
14031
14033
  * @min 0
@@ -14761,7 +14763,7 @@ declare class Sorts<SecurityDataType = unknown> {
14761
14763
  * @request POST:/api/v1/sorts
14762
14764
  * @secure
14763
14765
  */
14764
- addSort: (data: CreateSortRequest$1, params?: RequestParams) => Promise<HttpResponse<SortResponse, void>>;
14766
+ addSort: (data: CreateSortRequest$1, params?: RequestParams) => Promise<HttpResponse<SortResponse$1, void>>;
14765
14767
  /**
14766
14768
  * @description POST /api/v1/sorts/learned-similarities/approve Approves a proposed or conflicted learned similarity. Once approved, the similarity is added to the active similarity relation and will be used in reasoning.
14767
14769
  *
@@ -14798,7 +14800,7 @@ declare class Sorts<SecurityDataType = unknown> {
14798
14800
  * @summary Compute GLB (Greatest Lower Bound) of two sorts
14799
14801
  * @request POST:/api/v1/sorts/glb
14800
14802
  */
14801
- computeGlb: (data: ComputeGlbRequest, params?: RequestParams) => Promise<HttpResponse<ComputeGlbResponse, any>>;
14803
+ computeGlb: (data: ComputeGlbRequest, params?: RequestParams) => Promise<HttpResponse<ComputeGlbResponse$1, any>>;
14802
14804
  /**
14803
14805
  * No description
14804
14806
  *
@@ -14807,7 +14809,7 @@ declare class Sorts<SecurityDataType = unknown> {
14807
14809
  * @summary Compute LUB (Least Upper Bound) of two sorts
14808
14810
  * @request POST:/api/v1/sorts/lub
14809
14811
  */
14810
- computeLub: (data: ComputeLubRequest, params?: RequestParams) => Promise<HttpResponse<ComputeLubResponse, any>>;
14812
+ computeLub: (data: ComputeLubRequest, params?: RequestParams) => Promise<HttpResponse<ComputeLubResponse$1, any>>;
14811
14813
  /**
14812
14814
  * @description Computes the bit-vector intersection (GLB) and decodes it into a human-readable type disjunction. This is Life1.0's decode() function. # Returns - `sort_ids`: List of sort IDs in the disjunction - `sort_names`: List of sort names in the disjunction - `formatted`: Human-readable format (e.g., "int | real") - `is_bottom`: True if the GLB is empty (incompatible sorts)
14813
14815
  *
@@ -14835,7 +14837,7 @@ declare class Sorts<SecurityDataType = unknown> {
14835
14837
  * @summary Get compatible sorts for a given sort
14836
14838
  * @request GET:/api/v1/sorts/{id}/compatible
14837
14839
  */
14838
- getCompatibleSorts: (id: string, params?: RequestParams) => Promise<HttpResponse<SortListResponse, any>>;
14840
+ getCompatibleSorts: (id: string, params?: RequestParams) => Promise<HttpResponse<SortListResponse$1, any>>;
14839
14841
  /**
14840
14842
  * @description Per Definition IV.9 (Milanese & Pasi 2024): s₁ ≈ s₂ ⇔ ≾̇(s₁, s₂) > 0 AND ≾̇(s₂, s₁) > 0
14841
14843
  *
@@ -14862,7 +14864,7 @@ declare class Sorts<SecurityDataType = unknown> {
14862
14864
  * @summary Get a sort by ID
14863
14865
  * @request GET:/api/v1/sorts/{id}
14864
14866
  */
14865
- getSort: (id: string, params?: RequestParams) => Promise<HttpResponse<SortResponse, void>>;
14867
+ getSort: (id: string, params?: RequestParams) => Promise<HttpResponse<SortResponse$1, void>>;
14866
14868
  /**
14867
14869
  * No description
14868
14870
  *
@@ -14929,7 +14931,7 @@ declare class Sorts<SecurityDataType = unknown> {
14929
14931
  llm_extracted?: boolean | null;
14930
14932
  /** Filter to only show sorts needing review */
14931
14933
  needs_review?: boolean | null;
14932
- }, params?: RequestParams) => Promise<HttpResponse<SortListResponse, any>>;
14934
+ }, params?: RequestParams) => Promise<HttpResponse<SortListResponse$1, any>>;
14933
14935
  /**
14934
14936
  * @description POST /api/v1/sorts/learned-similarities/reject Rejects a proposed or conflicted learned similarity with a reason. Rejected similarities are not used in reasoning.
14935
14937
  *
@@ -14956,7 +14958,7 @@ declare class Sorts<SecurityDataType = unknown> {
14956
14958
  * @summary Update the review status of a sort (approve or mark for review)
14957
14959
  * @request POST:/api/v1/sorts/{id}/review
14958
14960
  */
14959
- updateSortReview: (id: string, data: UpdateSortReviewRequest, params?: RequestParams) => Promise<HttpResponse<SortResponse, any>>;
14961
+ updateSortReview: (id: string, data: UpdateSortReviewRequest, params?: RequestParams) => Promise<HttpResponse<SortResponse$1, any>>;
14960
14962
  }
14961
14963
 
14962
14964
  declare class Types<SecurityDataType = unknown> {
@@ -15204,6 +15206,38 @@ interface CyclicGaussianShape {
15204
15206
  * ```
15205
15207
  */
15206
15208
  type FuzzyShapeDto = TriangularShape | TrapezoidalShape | GaussianShape | CyclicGaussianShape;
15209
+ /**
15210
+ * Tagged feature value types used in OsfConstraintDto Feature variant.
15211
+ *
15212
+ * @remarks
15213
+ * Similar to {@link ValueDto} but only includes 6 variants (no Uninstantiated,
15214
+ * FuzzyScalar, FuzzyNumber, or Set). Discriminated by `"type"` field.
15215
+ */
15216
+ type TaggedFeatureValueDto = {
15217
+ type: 'String';
15218
+ value: string;
15219
+ } | {
15220
+ type: 'Integer';
15221
+ value: number;
15222
+ } | {
15223
+ type: 'Real';
15224
+ value: number;
15225
+ } | {
15226
+ type: 'Boolean';
15227
+ value: boolean;
15228
+ } | {
15229
+ type: 'Reference';
15230
+ value: string;
15231
+ } | {
15232
+ type: 'List';
15233
+ value: TaggedFeatureValueDto[];
15234
+ };
15235
+ /**
15236
+ * Feature target type used in OsfConstraintDto.
15237
+ *
15238
+ * Either a {@link TaggedFeatureValueDto} or a plain string (feature path reference).
15239
+ */
15240
+ type FeatureTargetDto = TaggedFeatureValueDto | string;
15207
15241
  /**
15208
15242
  * Untagged value type used by homoiconic inference endpoints.
15209
15243
  *
@@ -15428,6 +15462,24 @@ interface SortDto {
15428
15462
  /** Whether this sort needs human review. */
15429
15463
  needs_review?: boolean;
15430
15464
  }
15465
+ /**
15466
+ * Response wrapper for sort endpoints.
15467
+ *
15468
+ * @remarks
15469
+ * Sort CRUD endpoints (create, get) return `SortResponse`, not raw `SortDto`.
15470
+ * The SDK unwraps this internally for convenience.
15471
+ */
15472
+ interface SortResponse {
15473
+ /** The sort. */
15474
+ sort: SortDto;
15475
+ }
15476
+ /** Response for sort list operations. */
15477
+ interface SortListResponse {
15478
+ /** List of sorts. */
15479
+ sorts: SortDto[];
15480
+ /** Total count. */
15481
+ count: number;
15482
+ }
15431
15483
  /**
15432
15484
  * Request to create a new sort.
15433
15485
  *
@@ -15533,6 +15585,20 @@ interface LubResponse {
15533
15585
  /** The LUB sort UUID, or null if no common upper bound exists. */
15534
15586
  lub?: string | null;
15535
15587
  }
15588
+ /**
15589
+ * Response from computing the Greatest Lower Bound (GLB).
15590
+ *
15591
+ * @remarks
15592
+ * Alias of GlbResponse — the backend exposes this under the `/compute-glb` endpoint.
15593
+ */
15594
+ type ComputeGlbResponse = GlbResponse;
15595
+ /**
15596
+ * Response from computing the Least Upper Bound (LUB).
15597
+ *
15598
+ * @remarks
15599
+ * Alias of LubResponse — the backend exposes this under the `/compute-lub` endpoint.
15600
+ */
15601
+ type ComputeLubResponse = LubResponse;
15536
15602
  /**
15537
15603
  * Result of decoding a GLB as a type disjunction.
15538
15604
  *
@@ -16550,6 +16616,18 @@ interface TermListResponse {
16550
16616
  /** Total count. */
16551
16617
  count: number;
16552
16618
  }
16619
+ /**
16620
+ * Response wrapper for unification queries (e.g., `findUnifiable`).
16621
+ *
16622
+ * @remarks
16623
+ * The SDK unwraps this internally, returning `TermDto[]` to the caller.
16624
+ */
16625
+ interface UnificationQueryResponse {
16626
+ /** Matching terms. */
16627
+ results: TermDto[];
16628
+ /** Total count. */
16629
+ count: number;
16630
+ }
16553
16631
  /**
16554
16632
  * Request to find terms unifiable with a given pattern.
16555
16633
  *
@@ -17984,7 +18062,7 @@ declare class Query<SecurityDataType = unknown> {
17984
18062
  * @request POST:/api/v1/query/unifiable
17985
18063
  * @secure
17986
18064
  */
17987
- findUnifiable: (data: UnificationQueryRequest, params?: RequestParams) => Promise<HttpResponse<UnificationQueryResponse, any>>;
18065
+ findUnifiable: (data: UnificationQueryRequest, params?: RequestParams) => Promise<HttpResponse<UnificationQueryResponse$1, any>>;
17988
18066
  /**
17989
18067
  * @description Supports two modes: - "llm" (default): Uses LLM prompt engineering (Anthropic/local) - "constraint": Uses fine-tuned FunctionGemma constraint model Both modes translate NL → constraints → execution → results
17990
18068
  *
@@ -18286,7 +18364,7 @@ declare class CognitiveAgentsEpisodicMemory<SecurityDataType = unknown> {
18286
18364
  * @summary Get episode statistics.
18287
18365
  * @request POST:/api/v1/cognitive/agents/episodes/stats
18288
18366
  */
18289
- getEpisodeStats: (data: GetEpisodeStatsRequest, params?: RequestParams) => Promise<HttpResponse<EpisodeStatsResponse$1, void>>;
18367
+ getEpisodeStats: (data: GetEpisodeStatsRequest$1, params?: RequestParams) => Promise<HttpResponse<EpisodeStatsResponse$1, void>>;
18290
18368
  /**
18291
18369
  * No description
18292
18370
  *
@@ -18574,6 +18652,19 @@ interface SortSuggestionDto {
18574
18652
  /** Suggested name for the new sort. */
18575
18653
  suggested_name: string;
18576
18654
  }
18655
+ /**
18656
+ * An entity pending human review.
18657
+ */
18658
+ interface PendingReviewDto$1 {
18659
+ /** Candidate matches for deduplication. */
18660
+ candidates: ReviewCandidateMatchDto[];
18661
+ /** Entity local identifier. */
18662
+ entity_id: string;
18663
+ /** Reason why review is needed. */
18664
+ reason: string;
18665
+ /** Entity sort name. */
18666
+ sort: string;
18667
+ }
18577
18668
  /**
18578
18669
  * Request to add a pending review for an entity.
18579
18670
  *
@@ -18962,6 +19053,17 @@ interface EpisodeStatsResponse {
18962
19053
  /** Average reward. */
18963
19054
  average_reward: number;
18964
19055
  }
19056
+ /**
19057
+ * Request to get episode statistics for an agent.
19058
+ */
19059
+ interface GetEpisodeStatsRequest {
19060
+ /** Agent ID (UUID). */
19061
+ agent_id: string;
19062
+ /** Optional goal filter (UUID). */
19063
+ goal_id?: string | null;
19064
+ /** Tenant ID (UUID). */
19065
+ tenant_id: string;
19066
+ }
18965
19067
  /**
18966
19068
  * A recalled episode with full details.
18967
19069
  */
@@ -20123,7 +20225,7 @@ declare class Fuzzy<SecurityDataType = unknown> {
20123
20225
  * @request POST:/api/v1/fuzzy/similar
20124
20226
  * @secure
20125
20227
  */
20126
- findSimilar: (data: FindSimilarRequest, params?: RequestParams) => Promise<HttpResponse<SimilaritySearchResponse, any>>;
20228
+ findSimilar: (data: FindSimilarRequest$1, params?: RequestParams) => Promise<HttpResponse<SimilaritySearchResponse, any>>;
20127
20229
  /**
20128
20230
  * @description POST /api/v1/fuzzy/top-k Implements **Top-K similarity search** commonly used in RAG (Retrieval-Augmented Generation) systems. Returns the K most similar terms to a query, sorted by fuzzy similarity degree in **descending order** (best matches first). # Algorithm 1. Filter candidates by `min_degree` threshold (if specified) 2. Compute fuzzy similarity degree μ ∈ [0,1] for each candidate 3. Sort by similarity (descending - highest first) 4. Return top K results # Request Body ```json { "query": { "term_id": "uuid" // Or inline query with sort_id + features }, "k": 5, "min_degree": 0.7 // Optional: minimum similarity threshold } ``` # Response ```json { "results": [ { "term": { "id": "...", "sort": "...", "features": {...} }, "degree": 0.95, "confidence_percent": 95.0 }, // ... up to K results, sorted by degree (descending) ], "count": 5 } ``` # Sorting Guarantee Results are **always sorted by similarity** (highest first): `response.results[i].degree >= response.results[i+1].degree` # Use Cases - **RAG Context Retrieval**: Find most relevant knowledge for LLM prompts - **Semantic Search**: Find similar items without exact matches - **Recommendation Systems**: Suggest similar items to users - **Deduplication**: Identify near-duplicate entries # Example Find 3 most similar sensors with at least 60% similarity: ```bash curl -X POST http://localhost:8080/api/v1/fuzzy/top-k \ -H "Content-Type: application/json" \ -d '{ "query": { "term_id": "abc-123" }, "k": 3, "min_degree": 0.6 }' ``` Response (sorted by similarity): ```json { "results": [ { "term": {...}, "degree": 0.92, "confidence_percent": 92.0 }, { "term": {...}, "degree": 0.85, "confidence_percent": 85.0 }, { "term": {...}, "degree": 0.73, "confidence_percent": 73.0 } ], "count": 3 } ```
20129
20231
  *
@@ -20253,15 +20355,37 @@ type QueryTerm = {
20253
20355
  sort_id: string;
20254
20356
  features: Record<string, ValueDto>;
20255
20357
  };
20358
+ /**
20359
+ * Request to find similar terms using fuzzy unification.
20360
+ *
20361
+ * @remarks
20362
+ * Intersection of QueryTerm with similarity search parameters.
20363
+ * The query term fields are spread inline (flat shape matching the wire format).
20364
+ */
20365
+ type FindSimilarRequest = QueryTerm & {
20366
+ /** Minimum similarity degree (0.0 to 1.0). */
20367
+ min_degree?: number;
20368
+ /**
20369
+ * String similarity strategy:
20370
+ * - `"fast"`: Exact -> Normalized -> Jaccard only (NO embeddings)
20371
+ * - `"hybrid"`: Exact -> Normalized -> Jaccard -> Embeddings (default)
20372
+ * - `"semantic"`: Exact -> Normalized -> Embeddings (skip Jaccard)
20373
+ */
20374
+ similarity_mode?: string;
20375
+ /**
20376
+ * Whether to fail when encountering unknown (Uninstantiated) values
20377
+ * instead of residuating. `false` = enable residuation (default).
20378
+ */
20379
+ fail_on_unknown?: boolean;
20380
+ };
20256
20381
  /**
20257
20382
  * Request for fuzzy top-K search.
20258
20383
  *
20259
20384
  * @remarks
20260
- * The query term fields are spread into this type (intersection with QueryTerm).
20385
+ * Intersection of QueryTerm with top-K search parameters.
20386
+ * The query term fields are spread inline (flat shape matching the wire format).
20261
20387
  */
20262
- interface FuzzySearchTopKRequest {
20263
- /** Query term specifier. */
20264
- query_term: QueryTerm;
20388
+ type FuzzySearchTopKRequest = QueryTerm & {
20265
20389
  /** Number of results to return. */
20266
20390
  k: number;
20267
20391
  /** Optional minimum similarity degree. */
@@ -20278,7 +20402,7 @@ interface FuzzySearchTopKRequest {
20278
20402
  * instead of residuating. `false` = enable residuation (default).
20279
20403
  */
20280
20404
  fail_on_unknown?: boolean;
20281
- }
20405
+ };
20282
20406
  /**
20283
20407
  * A single result from fuzzy top-K search.
20284
20408
  */
@@ -20324,11 +20448,10 @@ type EffectDto = {
20324
20448
  * Request to predict an effect for a query point.
20325
20449
  *
20326
20450
  * @remarks
20327
- * Extends QueryTerm with effect prediction parameters.
20451
+ * Intersection of QueryTerm with effect prediction parameters.
20452
+ * The query term fields are spread inline (flat shape matching the wire format).
20328
20453
  */
20329
- interface PredictEffectRequest {
20330
- /** Query term specifier. */
20331
- query_term: QueryTerm;
20454
+ type PredictEffectRequest = QueryTerm & {
20332
20455
  /** Name of the feature containing the FuzzyNumber effect to aggregate. */
20333
20456
  effect_var: string;
20334
20457
  /** Minimum similarity degree for matching terms (0.0 to 1.0). */
@@ -20346,7 +20469,7 @@ interface PredictEffectRequest {
20346
20469
  similarity_mode?: string;
20347
20470
  /** Gating method: None (default fuzzy), or "learned" for metric-gated similarity. */
20348
20471
  gating?: string | null;
20349
- }
20472
+ };
20350
20473
  /**
20351
20474
  * Response from effect prediction.
20352
20475
  */
@@ -22620,7 +22743,7 @@ type ResiduationStateFilter = 'pending' | 'suspended' | 'ready' | 'completed' |
22620
22743
  * @remarks
22621
22744
  * Can be a predefined node type or a custom type name.
22622
22745
  */
22623
- type NodeTypeDto = 'sort' | 'synthetic_sort' | 'root_sort' | 'bottom_sort' | 'constraint' | 'fd_variable' | 'term' | 'feature' | 'reference' | 'residuated_term' | 'trigger' | {
22746
+ type NodeTypeDto = 'sort' | 'synthetic_sort' | 'root_sort' | 'bottom_sort' | 'constraint' | 'fd_variable' | 'term' | 'feature' | 'reference' | 'residuated_term' | 'trigger' | 'relation' | {
22624
22747
  custom: string;
22625
22748
  };
22626
22749
  /**
@@ -22629,7 +22752,7 @@ type NodeTypeDto = 'sort' | 'synthetic_sort' | 'root_sort' | 'bottom_sort' | 'co
22629
22752
  * @remarks
22630
22753
  * Can be a predefined edge type or a custom type name.
22631
22754
  */
22632
- type EdgeTypeDto = 'subtype' | 'multiple_inheritance' | 'glb_path' | 'lub_path' | 'constraint_dependency' | 'propagation' | 'feature' | 'coreference' | 'trigger_dependency' | {
22755
+ type EdgeTypeDto = 'subtype' | 'multiple_inheritance' | 'glb_path' | 'lub_path' | 'constraint_dependency' | 'propagation' | 'feature' | 'coreference' | 'trigger_dependency' | 'relation_source' | 'relation_target' | {
22633
22756
  custom: string;
22634
22757
  };
22635
22758
  /**
@@ -27279,6 +27402,21 @@ interface SearchStatsDto {
27279
27402
  /** Number of times the neural scorer was invoked. */
27280
27403
  scorer_calls: number;
27281
27404
  }
27405
+ /**
27406
+ * Trace event from LIFE feature operations during search.
27407
+ */
27408
+ interface TraceEventDto {
27409
+ /** Assignment path (e.g., "row-0"). */
27410
+ assignment: string;
27411
+ /** Event type: 'feature_created', 'feature_verified', or 'feature_conflict'. */
27412
+ event_type: string;
27413
+ /** Numeric identifier. */
27414
+ id: number;
27415
+ /** Numeric value label. */
27416
+ value_label: number;
27417
+ /** Variable name, if applicable (e.g., "c34"). */
27418
+ variable?: string | null;
27419
+ }
27282
27420
  /**
27283
27421
  * A solution from a search.
27284
27422
  */
@@ -27290,7 +27428,7 @@ interface SpaceSolutionDto {
27290
27428
  /** The choices made at each choice point. */
27291
27429
  choices: ChoiceSelection[];
27292
27430
  /** Trace events (e.g., LIFE feature creation). */
27293
- events?: unknown[] | null;
27431
+ events?: TraceEventDto[] | null;
27294
27432
  }
27295
27433
  /**
27296
27434
  * Request to create a new computation space.
@@ -36278,4 +36416,4 @@ declare function isUuid(s: string): boolean;
36278
36416
  */
36279
36417
  declare function discriminateFeatureValue(value: unknown): FeatureValueDto;
36280
36418
 
36281
- export { type ActionReviewReasonDto, type ActionReviewResponse, type ActionReviewStatusDto, type ActionReviewSummaryDto, type ActivationDto, type AdaptiveModifyRequest, type AdaptiveModifyResponse, type AddBeliefRequest, type AddBeliefResponse, type AddCausalRelationRequest, type AddCausalRelationResponse, type AddCognitiveRuleRequest, type AddCognitiveRuleResponse, type AddConstraintsRequest, type AddConstraintsResponse, type AddExportRequest, type AddFactRequest, type AddFactResponse, type AddGoalRequest, type AddGoalResponse, type AddHtnMethodRequest, type AddHtnMethodResponse, type AddImportRequest, type AddPendingReviewRequest, type AddRuleRequest, type AddRuleResponse, type AgentBeliefDto, type AgentConfigDto, type AgentEvent, type AgentEventHandlers, type AgentGoalDto, type AgentStateDto, type AgentSubVerdictDto, type AgentSubscription, type AllenRelation, ApiError, type ApiResponse, type AppendResiduationsRequest, type AppendResiduationsResponse, type ApplyCurriedRequest, type ApplyCurriedResponse, type ApproveActionRequest, type ApproveEntityRequest, type ApproveLearnedSimilarityRequest, type ApproveLearnedSimilarityResponse, type ArchitectureInfoDto, type ArithOpDto, type ArithValueDto, type ArithmeticConstraintDto, type ArithmeticExprDto, type ArtifactDto, type AscRequest, type AssertRuleRequest, type AssertRuleResponse, type AssignValueDto, type AttentionTargetDto, type AttestationDto, type AugmentationTargetDto, type BacktrackResponse, type BacktrackTermStoreRequest, type BacktrackTermStoreResponse, type BacktrackableAssignRequest, type BackwardChainRequest, type BackwardChainResponse, BadRequestError, type BatchCopyRequest, type BatchStringCompareRequest, type BayesianEffectDto, type BayesianPredictRequest, type BayesianPredictResponse, type BeliefDto, type BinaryOperatorDto, type BindTermRequest, type BindTermResponse, type BindVariableRequest, type BindVariableResponse, type BindVariablesRequest, type BindVariablesResponse, type BindingDto, type BindingsResponse, type BitwiseOperationType, type BitwiseRequest, type BooleanValue, type BoundConstraintDto, type BroadcastMessageRequest, type BroadcastMessageResponse, type BuildInfoDto, type BulkActionReviewResponse, type BulkAddFactsRequest, type BulkAddFactsResponse, type BulkAddRulesRequest, type BulkAddRulesResponse, type BulkAddTermsRequest, type BulkAddTermsResponse, type BulkApproveActionsRequest, type BulkApproveRequest, type BulkCreateSortsRequest, type BulkCreateSortsResponse, type BulkFuzzyProveRequest, type BulkFuzzyProveResponse, type BulkMergeRequest, type BulkRejectActionsRequest, type BulkRejectRequest, type BulkSetSimilaritiesRequest, type BulkSetSimilaritiesResponse, type BulkSortDefinition, type BySortQueryRequest, type CalibrateRequest, type CalibrationReportDto, type CallOnceRequest, type CausalAncestorRequest, type CausalAncestorResponse, type CausalChainDto, type CausalEdgeDto, type CausalProofTreeDto, type CausalRelationshipDto$1 as CausalRelationshipDto, type CausesRequest, type CausesResponse, type CdlComponentStatus, type CdlStatusResponse, type CdlVerificationDto, type CertificateDto, type CheckDiversityRequest, type CheckDiversityResponse, type ChoicePointDto, type ChoicePointMarkerResponse, type ChoiceSelection, type ChrRequest, type ClarificationQuestionDto, type ClassifySafetyRequest, type ClassifySafetyResponse, type CleanupResponse, type CleanupSessionsResponse, type CleanupStaleSessionsParams, type ClearFactsResponse, type ClearTermsResponse, type ClientConfig, type CognitiveGoalDto, type CognitiveTermInput, type CollectionDto, type CommitRequest, type CommunityDetectionConfigDto, type CommunityDetectionStatsDto, type CommunityDto, type CommunityMatchDto, type CommunitySearchModeDto, type CommunitySearchStatsDto, type ComponentHealthDto, type ConceptMatchDto, type CondRequest, type ConditionalIndependenceRequest, type ConditionalIndependenceResponse, type ConfirmResponse, type ConflictResolution, type ConstraintCheckDto, type ConstraintDto, type ConstraintGraphRequest, type ConstraintGraphResponse, type ConstraintGraphStats, type ConstraintInputDto, type ConstraintOperator, type ConstraintSessionStatus, ConstraintViolationError, type ContainmentVerificationDto, type ControlNafRequest, type CopyModeDto, type CopyTermRequest, type CorrectEntityRequest, type CorrelationRequest, type CorrelationResponse, type CounterfactualRequest, type CounterfactualResponse, type CounterfactualTraceDto, type CreateAgentRequest, type CreateAgentResponse, type CreateChildNamespaceRequest, type CreateCognitiveSortRequest, type CreateCognitiveSortResponse, type CreateCollectionRequest, type CreateConstraintSessionRequest, type CreateConstraintSessionResponse, type CreateCurriedFunctionRequest, type CreateExecutionSessionRequest, type CreateGoalRequest, type CreateGoalResponse, type CreateRootNamespaceRequest, type CreateRuleStoreRequest, type CreateScenarioRequest, type CreateScenarioResponse, type CreateSortRequest, type CreateSpaceRequest, type CreateStoreTermRequest, type CreateTermRequest, type CreateTermStoreRequest, type CreateVariableRequest, type CuriosityTargetDto, type CurriedFunctionResponse, type CurryingContextResponse, type CutRequest, type CycleDto, type CycleOutcomeDto, type CycleOutcomeSummaryDto, type CyclicGaussianShape, type DSeparatedRequest, type DSeparatedResponse, type DataMixingStatsDto, type DataPointDto, type DatasetStatisticsDto, type DecodeGlbResponse, type DeepCopyRequest, type DeleteGoalResponse, type DeletePlanRequest, type DeletePlanResponse, type DependentInfoDto, type DereferenceRequest, type DereferenceResponse, type DerivedInferenceRequest, type DerivedInferenceResponse, type DerivedInferenceResultDto, type DetectCommunitiesRequest, type DetectCommunitiesResponse, type DetectMissingAttributesRequest, type DiagnosticDto, type DiagnosticsResponse, type DifferentiableFcRequest, type DifferentiableFcResponse, type DiscoverCausalRequest, type DiscoverCausalResponse, type DiscoverEffectsRequest, type DiscoverEffectsResponse, type DiscoverSchemaRequest, type DiscoverSchemaResponse, type DiscoveredRelationDto, type DiscoveredSortDto, type DiscoveredSourceRelationDto, type DiscoveryConfigDto, type DiscoveryStateDto, type DiscoveryStatusResponse, type DiversityAnalysisDto, type DocumentMetadataDto, type DocumentParseStatsDto, type DocumentParser, type DocumentSource, type DocumentType, type DriveDeficitDto, type DriveDto, type DynamicAddSortRequest, type DynamicAddSortResponse, type DynamicDiscoveryRequest, type DynamicDiscoveryResponse, type DynamicQueryClauseDto, type DynamicQueryGroupDto, type DynamicQueryRequest, type DynamicQueryResponse, type DynamicQueryResultDto, type E2ETrainingRequest, type E2ETrainingResponse, type EffectDto, type EffectPredictionDto, type EmbeddingVerificationResponse, type EnrichedHealthResponse, type EntailmentRequest, type EntailmentResponse, type EntityDto, type EntityVerificationDetailDto, type EpisodeDto, type EpisodeOutcomeDto, type EpisodeStatsResponse, type EquivalenceClassDto, type ErrorResponse, type EvalBuiltinRequest, type EvalBuiltinResponse, type EvalFunctionInfoDto, type EvaluateFunctionRequest, type EvaluateFunctionResponse, type EvaluatePatternRequest, type EvaluatePatternResponse, type EvaluatedValueDto, type EvidenceAssessmentRequest, type EvidenceSourceDto, type ExecutionGoalDto, type ExecutionSessionResponse, type ExecutionSessionStatsResponse, type ExecutionValueDto, type ExplorationCompleteResponse, type ExplorationProgress, type ExplorationQuestion, type ExplorationStatusResponse, type ExportJsonlResponse, type ExpressionDto, type ExtendedAgentStateDto, type ExternalActionSummaryDto, type ExtractEntitiesRequest, type ExtractEntitiesResponse, type ExtractImageRequest, type ExtractImageResponse, type ExtractedEntityDto, type ExtractionPredictionDto, type ExtractionStatsDto, type FactConfidenceEntry, type FactoryResetResponse, type FailedReviewDto, type FdDomainStateDto, type FeatureBindingDto, type FeatureConfigDto, type FeatureDescriptorDto, FeatureInput, type FeatureInputConstrainedVariable, type FeatureInputInlineTerm, type FeatureInputInlineTermByName, type FeatureInputTermRef, type FeatureInputValueDto, type FeatureInputVariable, type FeatureMismatchDto, type FeaturePair, type FeatureRequirementDto, type FeatureTypeDto, type FeatureValueDto, type FindPlansRequest, type FindPlansResponse, type FindRulesRequest, type FindRulesResponse, type FindallRequest, type FixSuggestionDto, type ForallRequest, type FormalJudgeRefinementResponse, type FormalJudgeRequest, type FormalJudgeResponse, type FormalVerdictDto, type ForwardChainRequest, type ForwardChainResponse, type FunctionBodyDto, type FunctionClauseDto, type FunctionGuardDto, type FunctionValueDto, type FuzzyConceptLevel, type FuzzyMergeRequest, type FuzzyMergeResponse, type FuzzyNumberValue, type FuzzyProveRequest, type FuzzyProveResponse, type FuzzyScalarValue, type FuzzySearchResultItem, type FuzzySearchTopKRequest, type FuzzySearchTopKResponse, FuzzyShape, type FuzzyShapeDto, type FuzzySubsumptionRequest, type FuzzySubsumptionResponse, type FuzzyUnifyRequest, type FuzzyUnifyResponse, type GFlowNetSampleRequest, type GFlowNetSampleResponse, type GFlowNetTrainResponse, type GaussianShape, type GeneralConstraintDto, type GenerateDocumentRequest, type GenerateDocumentResponse, type GenerateNegativesRequest, type GenerateNegativesResponse, type GenerateOntologyRequest, type GenerateOntologyResponse, type GenerateSyntheticDataRequest, type GenerateSyntheticDataResponse, type GenerationPromptRequest, type GenerationPromptResponse, type GenerationProvenanceDto, type GenerationReportDto, type GenerationVerificationDto, type GetAgentDrivesRequest, type GetAgentStateRequest, type GetAgentStateResponse, type GetBindingsRequest, type GetCausalModelResponse, type GetEquivalenceClassesResponse, type GetExtendedAgentStateRequest, type GetExtendedAgentStateResponse, type GetFactsResponse, type GetMembershipsRequest, type GetMembershipsResponse, type GetPreorderDegreeRequest, type GetPreorderDegreeResponse, type GetResiduationsRequest, type GetResiduationsResponse, type GetScenarioResponse, type GetSortSimilarityRequest, type GetSortSimilarityResponse, type GetStoreTermRequest, type GetStoreTermResponse, type GlbLubComputationTrace, type GlbLubOperation, type GlbLubTraceRequest, type GlbRequest, type GlbResponse, type GlobalAssignRequest, type GlobalGetRequest, type GlobalIncrementRequest, type GoalDto, type GoalEvaluationResultDto, type GoalStackEntryDto, type GoalStackResponse, type GoalSummaryDto, type GroundTruthEntry, type GuardOp, type HomoiconicSubstitutionDto, type HorizonDto, type HtnMethodDto, type HypergraphRequest, type HypergraphResponse, type ImageExtractedEntityDto, type ImageExtractedRelationDto, type ImageExtractionStatsDto, type ImageSuggestedSortDto, type ImpasseDto, type Implication, type ImpliesRequest, type InfeasibleResult, type IngestDocumentBatchRequest, type IngestDocumentBatchResponse, type IngestDocumentRequest, type IngestDocumentResponse, type IngestFromSourceRequest, type IngestFromSourceResponse, type IngestMarkdownBatchRequest, type IngestMarkdownRequest, type IngestMarkdownResponse, type IngestRdfRequest, type IngestRdfResponse, type IngestionConfigDto, type IngestionSessionResponse, type IngestionSessionStatusDto, type IngestionStatsDto, type IntegerValue, type IntegratedCycleOutcomeDto, type IntegratedEngineConfigDto, type IntegrationGroupDto, type IntentionDto, type Interceptor, InternalServerError, type InterventionObservationRequest, type InterventionObservationResponse, type InterventionRequest, type InterventionResponse, type InvokeActionRequest, type InvokeActionResponse, type IterationMetricDto, type JudgeConfigDto, type KBOptimizationConfig, type KBOptimizationResult, type KBResourceConstraint, type KBVariableSpec, type KbChangeDto, type KbChangeType, LP, type LatticeVisualizationRequest, type LatticeVisualizationResponse, type LayerResultDto, type LayerResultSummaryDto, type LayoutAlgorithmDto, type LayoutDirectionDto, type LazyEvalRequest, type LazyEvalResponse, type LearnFromCorrectionRequest, type LearnFromCorrectionResponse, type LearnPatternRequest, type LearnPatternResponse, type LearnSortSimilaritiesRequest, type LearnSortSimilaritiesResponse, type LearnedSimilarityDto, type LearnedSimilarityListResponse, type LearnedSimilarityProvenanceDto, type LearnedSimilarityStatusDto, type LinearConstraint, type LinearExpression, type LinearProgramDefinition, type ListActionReviewsResponse, type ListEvalFunctionsRequest, type ListEvalFunctionsResponse, type ListExternalActionsResponse, type ListGoalsResponse, type ListIncompleteDocumentsResponse, type ListIngestionSessionsResponse, type ListPatternsResponse, type ListPendingInvocationsResponse, type ListScenariosResponse, type ListSourcesResponse, type ListTenantsResponse, type ListValue, type LiteralInputDto, type LubRequest, type LubResponse, type MarkChoicePointRequest, type MarkMessagesReadRequest, type MarkMessagesReadResponse, type MarkPendingRequest, type MarkPendingResponse, type MarkRuleStoreRequest, type MarkRuleStoreResponse, type MarkTermStoreRequest, type MarkTermStoreResponse, type MarkdownDocumentDto, type MatchedEntityDto, type MaterializationSummaryDto, type MathFunctionRequest, type MathFunctionType, type MeetPreservationDto, type MembershipDto, type MergeEntityRequest, type MetaSortsResponse, type MissingInfoDto, type ModifyActionRequest, type ModularArithRequest, type ModularOperationType, type MonadicFactDto, type MonadicFixpointRequest, type MonadicFixpointResponse, type MotivationStateDto, type NafProveRequest, type NafProveResponse, type NamespaceDto, type NamespaceListResponse, type NamespaceResponse, type NegativeExampleDto, NetworkError, type NeuroSymbolicStatusResponse, type NlQueryRequest, type NlQueryResponse, NotFoundError, type NumberToStringRequest, type ObjectiveFunction, type ObserveMultiRequest, type ObserveMultiResponse, type ObservePairRequest, type ObservePairResponse, type ObserveSingleRequest, type ObserveSingleResponse, type OcrConfigDto, type OntologyClarificationQuestionDto, type OntologyRagRequest, type OntologyRagResponse, type OntologyRagStatsDto, type OptimalResult, type OptimizationDirection, type OptimizationResult, type OsfSearchRequest, type OsfSearchResponse, type OsfSearchStatsDto, type PaginationParams, type ParsedDocumentMetadataDto, type PartialCorrelationRequest, type PartialCorrelationResponse, type PatternDto, type PendingActionReviewDto, type PendingInvocationDto, type PlanMatchDto, type PositionalArgumentDto, type PredictEffectRequest, type PredictEffectResponse, type PredictFromDiscoveryRequest, type PredictFromDiscoveryResponse, type PredictPreferencesRequest, type PredictPreferencesResponse, type PredictionErrorDto, type PreferencePrediction, type PrerequisiteInfoDto, type ProofDto, type ProofEngineCreateTermResponse, type ProofNodeDto, type ProofStatisticsDto, type ProofTraceDto, type ProvenanceTagDto, type ProvideFeedbackRequest, type ProvideFeedbackResponse, type PsiTermDto, type PushGoalRequest, type PushGoalResponse, type QueryResultDto, type QueryTerm, RateLimitError, type RateLimitInfo, type RdfFormatDto, type ReExtractRequest, type RealValue, ReasoningLayerClient, ReasoningLayerError, type RecallEpisodesRequest, type RecallEpisodesResponse, type RecalledEpisodeDto, type RecordEpisodeRequest, type RecordEpisodeResponse, type RecordSelectionRequest, type RecordSelectionResponse, type ReferenceValue, type ReflectionQueryRequest, type ReflectionQueryResponse, type RefuteRequest, type RefuteResponse, type RegisterExternalActionRequest, type RegisterExternalActionResponse, type RegisterFunctionRequest, type RegisterFunctionResponse, type RegisterSourceRequest, type RegisterSourceResponse, type RejectActionRequest, type RejectEntityRequest, type RejectLearnedSimilarityRequest, type RejectLearnedSimilarityResponse, type RelOpDto, type RelatedInfoDto, type RelationTypeDto, type RelationalArithRequest, type ReleaseResiduationsRequest, type ReleaseResiduationsResponse, type RequestOptions, type ResidualWitnessDto, type ResiduateGoalRequest, type ResiduateGoalResponse, type ResiduationDetailDto, type ResiduationDto, type ResiduationGoalDto, type ResiduationKind, type ResiduationRequest, type ResiduationResponse, type ResiduationStateFilter, type ResiduationStateRequest, type ResiduationStateResponse, type ResourceCoordinationRequest, type ResourceSpec, type ResumeDocumentIngestionRequest, type ResumeDocumentIngestionResponse, type ResumptionOptionDto, type RetractRuleRequest, type RetractRuleResponse, type ReviewCandidateMatchDto, type ReviewReason, type RootCauseAnalysisRequest, type RootCauseAnalysisResponse, type RootCauseDto, type RootCauseWithProofResponse, type RowIntegrateRequest, type RowIntegrateResponse, type RowMatchDto, type RowSearchRequest, type RowSearchResponse, type RowSimilarityRequest, type RowSimilarityResponse, type RowTypeDto, type RowUnifyRequest, type RowUnifyResponse, type RuleClauseDto, type RuleConstraintDto, type RuleDto, type RuleStoreResponse, type RuleUtilityDto, type RunCycleRequest, type RunCycleResponse, type RunIntegratedCycleRequest, type RunIntegratedCycleResponse, SDK_VERSION, type SafetyModelInfoDto, type SaveWeightsResponse, type ScenarioSummaryDto, type SearchCommunitiesRequest, type SearchCommunitiesResponse, type SearchStatsDto, type SearchStrategyDto, type SendMessageRequest, type SendMessageResponse, type SetFeatureRequest, type SetFeatureResponse, type SetSortSimilarityRequest, type SetSortSimilarityResponse, type SetValue, type SimilarityEntryDto, type SoftUnifyRequest, type SoftUnifyResponse, type SolutionDto, type SolveConstraintRequest, type SolveConstraintResponse, type SolveOptions, type SortBoxRequest, type SortBoxResponse, SortBuilder, type SortCalibrationDto, type SortCompareOperator, type SortCompareRequest, type SortCompareResponse, type SortDiscoveryRequest, type SortDiscoveryResponse, type SortDto, type SortInfoDto, type SortOriginDto, type SortRecommendation, type SortSimilarityResponse, type SortStatusDto, type SortSuggestionDto, type SortSummaryDto, type SourceDetailResponse, type SourceSummaryDto, type SpaceResponse, type SpaceSearchRequest, type SpaceSearchResponse, type SpaceSolutionDto, type SpaceStatusDto, type SpecificityDto, type StartExplorationRequest, type StartExplorationResponse, type StartIngestionSessionRequest, type StatisticalSuccessResponse, type StorePlanRequest, type StorePlanResponse, type StringCompareOperator, type StringComparePredicateRequest, type StringCompareRequest, type StringConcatRequest, type StringLengthRequest, type StringOpParams, type StringOpRequest, type StringOperationType, type StringValue, type StructuredIngestionStatsDto, type SubscribeToKbRequest, type SubscribeToKbResponse, type SubstringRequest, type SuspendedQueryDto, type SymbolicResultDto, type SynthesizeRequest, type SynthesizeResponse, type TaggedDerivedFact, type TaggedFactDto, type TaggedFcRequest, type TaggedFcResponse, type TaggedForwardChainRequest, type TaggedForwardChainResponse, type TemporalPlanRequest, type TenantInfoDto, type TermBindingDto, type TermDto, TermInput, type TermInputDto, type TermInputInline, type TermInputInlineByName, type TermInputRef, type TermPatternDto, type TermResponse, type TermState, type TermStoreSessionResponse, TimeoutError, type TrailEntryDto, type TrainFromTracesResponse, type TrainingExample, type TrainingExampleDto, type TrainingTriggerResponse, type TrajectoryStepDto, type TrapezoidalShape, type TriangularShape, type TriggerDependencyRequest, type TriggerDependencyResponse, type UndoRequest, type UndoRuleStoreRequest, type UndoRuleStoreResponse, type UnifiableQueryRequest, type UnifyTermsRequest, type UnifyTermsResponse, type UninstantiatedValue, type UpdateCollectionRequest, type UpdateMetadataRequest, type UpdatePlanStatsRequest, type UpdatePlanStatsResponse, type UpdateReviewStatusRequest, type UpdateScenarioRequest, type UpdateScenarioResponse, type UpdateTermRequest, type UpdateVisibilityRequest, type ValidateTermRequest, type ValidatedTermResponse, type ValidatedUnifyRequest, type ValidatedUnifyResponse, ValidationError, Value, type ValueDto, type ValuePatternDto, type VariableBounds, type VerbalizationResultDto, type VerbalizeTermRequest, type VerbalizeTermResponse, type VerificationStepDto, type VerifyFaithfulnessRequest, type VerifyFaithfulnessResponse, type VerifyRoundTripRequest, type VerifyRoundTripResponse, type VerifyScenarioRequest, type VerifyScenarioResponse, type ViolationDto, type VisibilityDto, type VisualizationGraphDto, WebSocketClient, WebSocketConnection, type WebhookCallbackRequest, type WebhookCallbackResponse, type WeightedFactDto, type WitnessInstantiationDto, type WitnessProofDto, allen, discriminateFeatureValue, guard, isUuid, psi };
36419
+ export { type ActionReviewReasonDto, type ActionReviewResponse, type ActionReviewStatusDto, type ActionReviewSummaryDto, type ActivationDto, type AdaptiveModifyRequest, type AdaptiveModifyResponse, type AddBeliefRequest, type AddBeliefResponse, type AddCausalRelationRequest, type AddCausalRelationResponse, type AddCognitiveRuleRequest, type AddCognitiveRuleResponse, type AddConstraintsRequest, type AddConstraintsResponse, type AddExportRequest, type AddFactRequest, type AddFactResponse, type AddGoalRequest, type AddGoalResponse, type AddHtnMethodRequest, type AddHtnMethodResponse, type AddImportRequest, type AddPendingReviewRequest, type AddRuleRequest, type AddRuleResponse, type AddSymbolRequest, type AddSymbolResponse, type AgentBeliefDto, type AgentConfigDto, type AgentEvent, type AgentEventHandlers, type AgentGoalDto, type AgentStateDto, type AgentSubVerdictDto, type AgentSubscription, type AllenRelation, ApiError, type ApiResponse, type AppendResiduationsRequest, type AppendResiduationsResponse, type ApplyCurriedRequest, type ApplyCurriedResponse, type ApproveActionRequest, type ApproveEntityRequest, type ApproveLearnedSimilarityRequest, type ApproveLearnedSimilarityResponse, type ArchitectureInfoDto, type ArithOpDto, type ArithValueDto, type ArithmeticConstraintDto, type ArithmeticExprDto, type ArithmeticRecursionOp, type ArtifactDto, type AscRequest, type AssertRuleRequest, type AssertRuleResponse, type AssignValueDto, type AttentionTargetDto, type AttestationDto, type AugmentationTargetDto, type BacktrackResponse, type BacktrackTermStoreRequest, type BacktrackTermStoreResponse, type BacktrackableAssignRequest, type BacktrackableAssignResponse, type BackwardChainRequest, type BackwardChainResponse, BadRequestError, type BatchCopyRequest, type BatchStringCompareRequest, type BayesianEffectDto, type BayesianPredictRequest, type BayesianPredictResponse, type BeliefDto, type BinaryOperatorDto, type BindTermRequest, type BindTermResponse, type BindVariableRequest, type BindVariableResponse, type BindVariablesRequest, type BindVariablesResponse, type BindingDto, type BindingsResponse, type BitwiseOperationType, type BitwiseRequest, type BooleanValue, type BoundConstraintDto, type BroadcastMessageRequest, type BroadcastMessageResponse, type BuildInfoDto, type BulkActionReviewResponse, type BulkAddFactsRequest, type BulkAddFactsResponse, type BulkAddRulesRequest, type BulkAddRulesResponse, type BulkAddTermsRequest, type BulkAddTermsResponse, type BulkApproveActionsRequest, type BulkApproveRequest, type BulkCreateSortsRequest, type BulkCreateSortsResponse, type BulkFuzzyProveRequest, type BulkFuzzyProveResponse, type BulkMergeRequest, type BulkRejectActionsRequest, type BulkRejectRequest, type BulkSetSimilaritiesRequest, type BulkSetSimilaritiesResponse, type BulkSortDefinition, type BulkSortError, type BySortQueryRequest, type CalibrateRequest, type CalibrationReportDto, type CallOnceRequest, type CallOnceResponse, type CandidateMatchDto, type CausalAncestorRequest, type CausalAncestorResponse, type CausalChainDto, type CausalEdgeDto, type CausalProofTreeDto, type CausalRelationshipDto$1 as CausalRelationshipDto, type CausesRequest, type CausesResponse, type CdlComponentStatus, type CdlStatusResponse, type CdlVerificationDto, type CertificateDto, type CheckDiversityRequest, type CheckDiversityResponse, type ChoicePointDto, type ChoicePointMarkerResponse, type ChoiceSelection, type ChrRequest, type ChunkFailureDto, type ClarificationQuestionDto, type ClassifySafetyRequest, type ClassifySafetyResponse, type CleanupResponse, type CleanupSessionsResponse, type CleanupStaleSessionsParams, type ClearFactsResponse, type ClearTermsResponse, type ClientConfig, type CognitiveGoalDto, type CognitiveTermInput, type CollectionDto, type CommitRequest, type CommunityDetectionConfigDto, type CommunityDetectionStatsDto, type CommunityDto, type CommunityMatchDto, type CommunityReportDto, type CommunityReportSummaryDto, type CommunitySearchModeDto, type CommunitySearchStatsDto, type CommunityStatsDto, type ComponentDto, type ComponentHealthDto, type ComputeGlbResponse, type ComputeLubResponse, type ConceptMatchDto, type CondRequest, type CondResponse, type ConditionalIndependenceRequest, type ConditionalIndependenceResponse, type ConfirmResponse, type ConflictResolution, type ConstraintCheckDto, type ConstraintDto, type ConstraintGraphRequest, type ConstraintGraphResponse, type ConstraintGraphStats, type ConstraintInputDto, type ConstraintOperator, type ConstraintSessionStatus, ConstraintViolationError, type ContainmentVerificationDto, type ControlNafRequest, type CoordinatedResourceSet, type CopyModeDto, type CopyTermRequest, type CorrectEntityRequest, type CorrelationRequest, type CorrelationResponse, type CounterfactualRequest, type CounterfactualResponse, type CounterfactualTraceDto, type CreateAgentRequest, type CreateAgentResponse, type CreateChildNamespaceRequest, type CreateCognitiveSortRequest, type CreateCognitiveSortResponse, type CreateCollectionRequest, type CreateConstraintSessionRequest, type CreateConstraintSessionResponse, type CreateCurriedFunctionRequest, type CreateExecutionSessionRequest, type CreateGoalRequest, type CreateGoalResponse, type CreateModuleRequest, type CreateModuleResponse, type CreateRootNamespaceRequest, type CreateRuleStoreRequest, type CreateScenarioRequest, type CreateScenarioResponse, type CreateSortRequest, type CreateSpaceRequest, type CreateStoreTermRequest, type CreateTermRequest, type CreateTermStoreRequest, type CreateVariableRequest, type CuriosityTargetDto, type CurriedFunctionResponse, type CurryingContextResponse, type CutRequest, type CutResponse, type CycleDto, type CycleOutcomeDto, type CycleOutcomeSummaryDto, type CyclicGaussianShape, type DSeparatedRequest, type DSeparatedResponse, type DataMixingStatsDto, type DataPointDto, type DatasetStatisticsDto, type DecodeGlbResponse, type DeepCopyRequest, type DegreeDistributionDto, type DeleteGoalResponse, type DeletePlanRequest, type DeletePlanResponse, type DependentInfoDto, type DereferenceRequest, type DereferenceResponse, type DerivedInferenceRequest, type DerivedInferenceResponse, type DerivedInferenceResultDto, type DetectCommunitiesRequest, type DetectCommunitiesResponse, type DetectMissingAttributesRequest, type DiagnosticDto, type DiagnosticsResponse, type DifferentiableFcRequest, type DifferentiableFcResponse, type DiscoverCausalRequest, type DiscoverCausalResponse, type DiscoverEffectsRequest, type DiscoverEffectsResponse, type DiscoverSchemaRequest, type DiscoverSchemaResponse, type DiscoveredFeatureDto, type DiscoveredRelationDto, type DiscoveredSortDto, type DiscoveredSourceRelationDto, type DiscoveryConfigDto, type DiscoveryProofNodeDto, type DiscoveryProofStatsDto, type DiscoveryProofTreeDto, type DiscoveryStateDto, type DiscoveryStatusResponse, type DiscoveryStrategy, type DisentailmentRequest, type DisentailmentResponse, type DiversityAnalysisDto, type DocumentBatchItem, type DocumentBatchResultDto, type DocumentMetadataDto, type DocumentParseStatsDto, type DocumentParser, type DocumentSource, type DocumentType, type DriveDeficitDto, type DriveDto, type DynamicAddSortRequest, type DynamicAddSortResponse, type DynamicDiscoveryRequest, type DynamicDiscoveryResponse, type DynamicQueryClauseDto, type DynamicQueryGroupDto, type DynamicQueryRequest, type DynamicQueryResponse, type DynamicQueryResultDto, type E2ETrainingRequest, type E2ETrainingResponse, type EdgeTypeDto, type EffectDto, type EffectPredictionDto, type EmbeddingVerificationResponse, type EnrichedHealthResponse, type EntailmentRequest, type EntailmentResponse, type EntityDto, type EntityVerificationDetailDto, type EpisodeDto, type EpisodeOutcomeDto, type EpisodeStatsResponse, type EquivalenceClassDto, type ErrorResponse, type EvalBuiltinRequest, type EvalBuiltinResponse, type EvalFunctionInfoDto, type EvaluateFunctionRequest, type EvaluateFunctionResponse, type EvaluatePatternRequest, type EvaluatePatternResponse, type EvaluatedValueDto, type EvaluationResult, type EvidenceAssessmentRequest, type EvidenceAssessmentResponse, type EvidenceItemDto, type EvidenceSourceDto, type ExecutionGoalDto, type ExecutionSessionResponse, type ExecutionSessionStatsResponse, type ExecutionValueDto, type ExplorationCompleteResponse, type ExplorationProgress, type ExplorationQuestion, type ExplorationStatusResponse, type ExportJsonlResponse, type ExpressionDto, type ExtendedAgentStateDto, type ExternalActionSummaryDto, type ExtractEntitiesRequest, type ExtractEntitiesResponse, type ExtractImageRequest, type ExtractImageResponse, type ExtractedEntityDto, type ExtractionPredictionDto, type ExtractionStatsDto, type FactConfidenceEntry, type FactoryResetResponse, type FailedReviewDto, type FdDomainStateDto, type FeatureBindingDto, type FeatureConfigDto, type FeatureDescriptorDto, FeatureInput, type FeatureInputConstrainedVariable, type FeatureInputInlineTerm, type FeatureInputInlineTermByName, type FeatureInputTermRef, type FeatureInputValueDto, type FeatureInputVariable, type FeatureMismatchDto, type FeaturePair, type FeatureRequirementDto, type FeatureTargetDto, type FeatureTypeDto, type FeatureValueDto, type FindPlansRequest, type FindPlansResponse, type FindRulesRequest, type FindRulesResponse, type FindSimilarRequest, type FindallRequest, type FindallResponse, type FixSuggestionDto, type ForallRequest, type ForallResponse, type FormalJudgeRefinementResponse, type FormalJudgeRequest, type FormalJudgeResponse, type FormalVerdictDto, type ForwardChainRequest, type ForwardChainResponse, type FunctionBodyDto, type FunctionClauseDto, type FunctionGuardDto, type FunctionValueDto, type FuzzyConceptLevel, type FuzzyMergeRequest, type FuzzyMergeResponse, type FuzzyNumberValue, type FuzzyProveRequest, type FuzzyProveResponse, type FuzzyScalarValue, type FuzzySearchResultItem, type FuzzySearchTopKRequest, type FuzzySearchTopKResponse, FuzzyShape, type FuzzyShapeDto, type FuzzySubsumptionRequest, type FuzzySubsumptionResponse, type FuzzyUnifyRequest, type FuzzyUnifyResponse, type GESResultDto, type GFlowNetSampleRequest, type GFlowNetSampleResponse, type GFlowNetTrainResponse, type GaussianShape, type GeneralConstraintDto, type GenerateDocumentRequest, type GenerateDocumentResponse, type GenerateNegativesRequest, type GenerateNegativesResponse, type GenerateOntologyRequest, type GenerateOntologyResponse, type GenerateSyntheticDataRequest, type GenerateSyntheticDataResponse, type GenerationPromptRequest, type GenerationPromptResponse, type GenerationProvenanceDto, type GenerationReportDto, type GenerationVerificationDto, type GetAgentDrivesRequest, type GetAgentStateRequest, type GetAgentStateResponse, type GetBindingsRequest, type GetCausalModelResponse, type GetEpisodeStatsRequest, type GetEquivalenceClassesResponse, type GetExtendedAgentStateRequest, type GetExtendedAgentStateResponse, type GetFactsResponse, type GetMembershipsRequest, type GetMembershipsResponse, type GetPreorderDegreeRequest, type GetPreorderDegreeResponse, type GetResiduationsRequest, type GetResiduationsResponse, type GetScenarioResponse, type GetSortSimilarityRequest, type GetSortSimilarityResponse, type GetStoreTermRequest, type GetStoreTermResponse, type GlbLubComputationTrace, type GlbLubOperation, type GlbLubTraceRequest, type GlbLubTraceStep, type GlbRequest, type GlbResponse, type GlobalAssignRequest, type GlobalAssignResponse, type GlobalGetRequest, type GlobalGetResponse, type GlobalIncrementRequest, type GlobalIncrementResponse, type GoalDto, type GoalEvaluationResultDto, type GoalResiduationRequest, type GoalResiduationResponse, type GoalStackEntryDto, type GoalStackResponse, type GoalSummaryDto, type GraphEdgeDto, type GraphMetadataDto, type GraphNodeDto, type GroundTruthEntry, type GroundingStatsDto, type GuardOp, type HomoiconicSubstitutionDto, type HorizonDto, type HtnMethodDto, type HyperedgeDto, type HyperedgeTypeDto, type HypergraphRequest, type HypergraphResponse, type HypergraphStats, type ImageExtractedEntityDto, type ImageExtractedRelationDto, type ImageExtractionStatsDto, type ImageSuggestedSortDto, type ImpasseDto, type Implication, type ImpliesRequest, type ImpliesResponse, type ImportModuleRequest, type ImportModuleResponse, type IncompleteDocumentDto, type InfeasibleResult, type IngestDocumentBatchRequest, type IngestDocumentBatchResponse, type IngestDocumentRequest, type IngestDocumentResponse, type IngestFromSourceRequest, type IngestFromSourceResponse, type IngestMarkdownBatchRequest, type IngestMarkdownRequest, type IngestMarkdownResponse, type IngestRdfRequest, type IngestRdfResponse, type IngestionConfigDto, type IngestionSessionResponse, type IngestionSessionStatusDto, type IngestionStatsDto, type IntegerValue, type IntegratedCycleOutcomeDto, type IntegratedEngineConfigDto, type IntegrationGroupDto, type IntentionDto, type Interceptor, InternalServerError, type InterventionObservationRequest, type InterventionObservationResponse, type InterventionRecommendationDto, type InterventionRequest, type InterventionResponse, type InvokeActionRequest, type InvokeActionResponse, type IterationMetricDto, type JsonValue$1 as JsonValue, type JudgeConfigDto, type KBOptimizationConfig, type KBOptimizationResult, type KBResourceConstraint, type KBVariableSpec, type KbChangeDto, type KbChangeType, LP, type LatticeStats, type LatticeVisualizationRequest, type LatticeVisualizationResponse, type LayerResultDto, type LayerResultSummaryDto, type LayoutAlgorithmDto, type LayoutDirectionDto, type LayoutHintsDto, type LazyEvalRequest, type LazyEvalResponse, type LearnFromCorrectionRequest, type LearnFromCorrectionResponse, type LearnPatternConfigDto, type LearnPatternRequest, type LearnPatternResponse, type LearnSortSimilaritiesRequest, type LearnSortSimilaritiesResponse, type LearnedPatternDto, type LearnedSimilarityDto, type LearnedSimilarityListResponse, type LearnedSimilarityProvenanceDto, type LearnedSimilarityStatusDto, type LinearConstraint, type LinearExpression, type LinearProgramDefinition, type ListActionReviewsResponse, type ListEvalFunctionsRequest, type ListEvalFunctionsResponse, type ListExternalActionsResponse, type ListGoalsResponse, type ListIncompleteDocumentsResponse, type ListIngestionSessionsResponse, type ListPatternsResponse, type ListPendingInvocationsResponse, type ListScenariosResponse, type ListSourcesResponse, type ListSymbolsRequest, type ListSymbolsResponse, type ListTenantsResponse, type ListValue, type LiteralInputDto, type LubRequest, type LubResponse, type MarkChoicePointRequest, type MarkMessagesReadRequest, type MarkMessagesReadResponse, type MarkPendingRequest, type MarkPendingResponse, type MarkRuleStoreRequest, type MarkRuleStoreResponse, type MarkTermStoreRequest, type MarkTermStoreResponse, type MarkdownDocumentDto, type MatchedEntityDto, type MaterializationSummaryDto, type MathFunctionRequest, type MathFunctionType, type MeetPreservationDto, type MembershipDto, type MergeEntityRequest, type MetaSortsResponse, type MissingInfoDto, type ModifyActionRequest, type ModularArithRequest, type ModularOperationType, type MonadicFactDto, type MonadicFixpointRequest, type MonadicFixpointResponse, type MotivationStateDto, type NafProveRequest, type NafProveResponse, type NafResponse, type NamespaceDto, type NamespaceListResponse, type NamespaceResponse, type NegativeExampleDto, NetworkError, type NeuroSymbolicStatusResponse, type NlQueryMode, type NlQueryRequest, type NlQueryResponse, type NlQueryResultItem, type NodeTypeDto, NotFoundError, type NumberFormatDto, type NumberToStringRequest, type NumberValueDto, type ObjectiveFunction, type ObserveMultiRequest, type ObserveMultiResponse, type ObservePairRequest, type ObservePairResponse, type ObserveSingleRequest, type ObserveSingleResponse, type OcrConfigDto, type OntologyClarificationQuestionDto, type OntologyRagRequest, type OntologyRagResponse, type OntologyRagStatsDto, type OptimalResult, type OptimizationDirection, type OptimizationResult, type OsfSearchRequest, type OsfSearchResponse, type OsfSearchStatsDto, type PaginationParams, type ParsedDocumentMetadataDto, type PartialCorrelationRequest, type PartialCorrelationResponse, type PatternDto, type PatternSummaryDto, type PendingActionReviewDto, type PendingInvocationDto, type PendingReviewDto$1 as PendingReviewDto, type PipelineQualityStatsDto, type PlanMatchDto, type PositionalArgumentDto, type PredictEffectRequest, type PredictEffectResponse, type PredictFromDiscoveryRequest, type PredictFromDiscoveryResponse, type PredictPreferencesRequest, type PredictPreferencesResponse, type PredictionErrorDto, type PreferencePrediction, type PrerequisiteInfoDto, type ProofDto, type ProofEngineCreateTermResponse, type ProofNodeDto, type ProofStatisticsDto, type ProofTraceDto, type ProvenanceTagDto, type ProvideFeedbackRequest, type ProvideFeedbackResponse, type PsiTermDto, type PushGoalRequest, type PushGoalResponse, type QueryResultDto, type QueryTerm, RateLimitError, type RateLimitInfo, type RdfFormatDto, type ReExtractRequest, type RealValue, ReasoningLayerClient, ReasoningLayerError, type RecallEpisodesRequest, type RecallEpisodesResponse, type RecalledEpisodeDto, type RecordEpisodeRequest, type RecordEpisodeResponse, type RecordSelectionRequest, type RecordSelectionResponse, type ReferenceValue, type ReferencedTermSummary, type ReflectionQueryRequest, type ReflectionQueryResponse, type RefuteRequest, type RefuteResponse, type RegisterExternalActionRequest, type RegisterExternalActionResponse, type RegisterFunctionRequest, type RegisterFunctionResponse, type RegisterSourceRequest, type RegisterSourceResponse, type RejectActionRequest, type RejectEntityRequest, type RejectLearnedSimilarityRequest, type RejectLearnedSimilarityResponse, type RelOpDto, type RelatedInfoDto, type RelationTypeDto, type RelationalArithRequest, type ReleaseResiduationsRequest, type ReleaseResiduationsResponse, type RequestOptions, type ResidualWitnessDto, type ResiduateGoalRequest, type ResiduateGoalResponse, type ResiduatedEntryDto, type ResiduatedTermDto, type ResiduationDetailDto, type ResiduationDto, type ResiduationGoalDto, type ResiduationKind, type ResiduationRequest, type ResiduationResponse, type ResiduationStateDto, type ResiduationStateFilter, type ResiduationStateRequest, type ResiduationStateResponse, type ResiduationStats, type ResolveSymbolRequest, type ResolveSymbolResponse, type ResourceCoordinationRequest, type ResourceCoordinationResponse, type ResourceSpec, type ResumeDocumentIngestionRequest, type ResumeDocumentIngestionResponse, type ResumptionOptionDto, type RetractRuleRequest, type RetractRuleResponse, type ReviewCandidateMatchDto, type ReviewReason, type RootCauseAnalysisRequest, type RootCauseAnalysisResponse, type RootCauseDto, type RootCauseWithProofResponse, type RowIntegrateRequest, type RowIntegrateResponse, type RowMatchDto, type RowSearchRequest, type RowSearchResponse, type RowSimilarityRequest, type RowSimilarityResponse, type RowTypeDto, type RowUnifyRequest, type RowUnifyResponse, type RuleClauseDto, type RuleConstraintDto, type RuleDto, type RuleStoreResponse, type RuleUtilityDto, type RunCycleRequest, type RunCycleResponse, type RunIntegratedCycleRequest, type RunIntegratedCycleResponse, SDK_VERSION, type SafetyModelInfoDto, type SampledHypothesisDto, type SaveWeightsResponse, type ScenarioSummaryDto, type SearchCommunitiesRequest, type SearchCommunitiesResponse, type SearchStatsDto, type SearchStrategyDto, type SendMessageRequest, type SendMessageResponse, type SetFeatureRequest, type SetFeatureResponse, type SetSortSimilarityRequest, type SetSortSimilarityResponse, type SetValue, type SimilarityEntryDto, type SingleCopyRequest, type SoftUnifyRequest, type SoftUnifyResponse, type SolutionDto, type SolveConstraintRequest, type SolveConstraintResponse, type SolveOptions, type SortBoxRequest, type SortBoxResponse, SortBuilder, type SortCalibrationDto, type SortCompareOperator, type SortCompareRequest, type SortCompareResponse, type SortDiscoveryRequest, type SortDiscoveryResponse, type SortDto, type SortInfoDto, type SortListResponse, type SortOriginDto, type SortRecommendation, type SortResponse, type SortSimilarityResponse, type SortStatusDto, type SortSuggestionDto, type SortSummaryDto, type SourceDetailResponse, type SourceSummaryDto, type SpaceResponse, type SpaceSearchRequest, type SpaceSearchResponse, type SpaceSolutionDto, type SpaceStatusDto, type SpecificityDto, type StartExplorationRequest, type StartExplorationResponse, type StartIngestionSessionRequest, type StatisticalSuccessResponse, type StorePlanRequest, type StorePlanResponse, type StringCompareOperator, type StringComparePredicateRequest, type StringCompareRequest, type StringConcatRequest, type StringLengthRequest, type StringOpParams, type StringOpRequest, type StringOperationType, type StringValue, type StructuredIngestionStatsDto, type SubscribeToKbRequest, type SubscribeToKbResponse, type SubstringRequest, type SuspendedQueryDto, type SymbolDto, type SymbolKindDto, type SymbolicResultDto, type SynthesizeRequest, type SynthesizeResponse, type TaggedDerivedFact, type TaggedFactDto, type TaggedFcRequest, type TaggedFcResponse, type TaggedFeatureValueDto, type TaggedForwardChainRequest, type TaggedForwardChainResponse, type TemporalPlanRequest, type TemporalPlanResponse, type TenantInfoDto, type TermBindingDto, type TermDto, TermInput, type TermInputDto, type TermInputInline, type TermInputInlineByName, type TermInputRef, type TermListResponse, type TermPatternDto, type TermResponse, type TermState, type TermStoreSessionResponse, TimeoutError, type TokenUsageDto, type ToolCallInfo, type TraceEventDto, type TrailEntryDto, type TrainFromTracesResponse, type TrainingExample, type TrainingExampleDto, type TrainingTriggerResponse, type TrajectoryStepDto, type TrapezoidalShape, type TriangularShape, type TriggerDependencyRequest, type TriggerDependencyResponse, type UncertainEdgeDto, type UndoRequest, type UndoResponse, type UndoRuleStoreRequest, type UndoRuleStoreResponse, type UnifiableQueryRequest, type UnificationQueryResponse, type UnifyTermsRequest, type UnifyTermsResponse, type UninstantiatedValue, type UpdateCollectionRequest, type UpdateMetadataRequest, type UpdatePlanStatsRequest, type UpdatePlanStatsResponse, type UpdateReviewStatusRequest, type UpdateScenarioRequest, type UpdateScenarioResponse, type UpdateTermRequest, type UpdateVisibilityRequest, type ValidateTermRequest, type ValidatedTermResponse, type ValidatedUnifyRequest, type ValidatedUnifyResponse, ValidationError, Value, type ValueDto, type ValuePatternDto, type VariableBounds, type VerbalizationResultDto, type VerbalizeTermRequest, type VerbalizeTermResponse, type VerificationStepDto, type VerifyFaithfulnessRequest, type VerifyFaithfulnessResponse, type VerifyRoundTripRequest, type VerifyRoundTripResponse, type VerifyScenarioRequest, type VerifyScenarioResponse, type ViolationDto, type VisibilityDto, type VisualizationGraphDto, type WaitingConditionDto, type WaitingConditionType, WebSocketClient, WebSocketConnection, type WebhookCallbackRequest, type WebhookCallbackResponse, type WeightedFactDto, type WitnessInstantiationDto, type WitnessProofDto, allen, discriminateFeatureValue, guard, isUuid, psi };