@uniteverses/shared 1.0.75 → 1.0.76

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.
@@ -9,4 +9,5 @@ export * from "./org_property_research_workflow_run/constants";
9
9
  export * from "./org_property_research_workflow_step_progress/types";
10
10
  export * from "./org_property_research_workflow_task_progress/types";
11
11
  export * from "./org_property_research_workflow_scenario_check/types";
12
+ export * from "./org_property_research_workflow_scenario_resolution/types";
12
13
  export * from "./org_property_research_workflow_instruction_check/types";
@@ -25,4 +25,5 @@ __exportStar(require("./org_property_research_workflow_run/constants"), exports)
25
25
  __exportStar(require("./org_property_research_workflow_step_progress/types"), exports);
26
26
  __exportStar(require("./org_property_research_workflow_task_progress/types"), exports);
27
27
  __exportStar(require("./org_property_research_workflow_scenario_check/types"), exports);
28
+ __exportStar(require("./org_property_research_workflow_scenario_resolution/types"), exports);
28
29
  __exportStar(require("./org_property_research_workflow_instruction_check/types"), exports);
@@ -0,0 +1,12 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowScenarioResolutionInput = {
2
+ scraped: Record<string, string>;
3
+ };
4
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowScenarioResolution = {
5
+ results: {
6
+ scenarioId: string;
7
+ condition: string;
8
+ applies: boolean;
9
+ reason: string;
10
+ checkedAt: string | null;
11
+ }[];
12
+ };
@@ -0,0 +1,5 @@
1
+ "use strict";
2
+ // scenario resolution: the extension POSTs the data it scraped for a task; the backend asks the LLM
3
+ // which of that task's scenario conditions the data satisfies, writes the matching ScenarioChecks,
4
+ // and returns the per-scenario verdicts.
5
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.75",
3
+ "version": "1.0.76",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [