@uniteverses/shared 1.0.66 → 1.0.67

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.
Files changed (19) hide show
  1. package/dist/domains/lawyers/real_estate/assistants/research/index.d.ts +8 -0
  2. package/dist/domains/lawyers/real_estate/assistants/research/index.js +8 -0
  3. package/dist/domains/lawyers/real_estate/assistants/research/org_property/types.d.ts +105 -0
  4. package/dist/domains/lawyers/real_estate/assistants/research/org_property/types.js +2 -0
  5. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_instruction_check/types.d.ts +8 -0
  6. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_instruction_check/types.js +2 -0
  7. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_run/constants.d.ts +6 -0
  8. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_run/constants.js +9 -0
  9. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_run/types.d.ts +64 -0
  10. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_run/types.js +2 -0
  11. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_scenario_check/types.d.ts +8 -0
  12. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_scenario_check/types.js +2 -0
  13. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_step_progress/types.d.ts +8 -0
  14. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_step_progress/types.js +2 -0
  15. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_task_progress/types.d.ts +8 -0
  16. package/dist/domains/lawyers/real_estate/assistants/research/org_property_research_workflow_task_progress/types.js +2 -0
  17. package/dist/domains/lawyers/real_estate/assistants/research/property_research_workflow/types.d.ts +10 -0
  18. package/dist/domains/lawyers/real_estate/assistants/research/property_research_workflow/types.js +2 -0
  19. package/package.json +1 -1
@@ -1,2 +1,10 @@
1
1
  export * from "./organization/types";
2
2
  export * from "./organization_membership/types";
3
+ export * from "./org_property/types";
4
+ export * from "./property_research_workflow/types";
5
+ export * from "./org_property_research_workflow_run/types";
6
+ export * from "./org_property_research_workflow_run/constants";
7
+ export * from "./org_property_research_workflow_step_progress/types";
8
+ export * from "./org_property_research_workflow_task_progress/types";
9
+ export * from "./org_property_research_workflow_scenario_check/types";
10
+ export * from "./org_property_research_workflow_instruction_check/types";
@@ -16,3 +16,11 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
16
16
  Object.defineProperty(exports, "__esModule", { value: true });
17
17
  __exportStar(require("./organization/types"), exports);
18
18
  __exportStar(require("./organization_membership/types"), exports);
19
+ __exportStar(require("./org_property/types"), exports);
20
+ __exportStar(require("./property_research_workflow/types"), exports);
21
+ __exportStar(require("./org_property_research_workflow_run/types"), exports);
22
+ __exportStar(require("./org_property_research_workflow_run/constants"), exports);
23
+ __exportStar(require("./org_property_research_workflow_step_progress/types"), exports);
24
+ __exportStar(require("./org_property_research_workflow_task_progress/types"), exports);
25
+ __exportStar(require("./org_property_research_workflow_scenario_check/types"), exports);
26
+ __exportStar(require("./org_property_research_workflow_instruction_check/types"), exports);
@@ -0,0 +1,105 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgProperty = {
2
+ id: string;
3
+ lawyersRealEstateAssistantsResearchOrganizationId: string;
4
+ createdByUserId: string;
5
+ label: string;
6
+ addressLine: string | null;
7
+ bbl: string | null;
8
+ country: {
9
+ id: string;
10
+ name: string;
11
+ };
12
+ subdivision: {
13
+ id: string;
14
+ name: string;
15
+ } | null;
16
+ region: {
17
+ id: string;
18
+ name: string;
19
+ } | null;
20
+ district: {
21
+ id: string;
22
+ name: string;
23
+ } | null;
24
+ city: {
25
+ id: string;
26
+ name: string;
27
+ } | null;
28
+ propertyType: {
29
+ id: string;
30
+ code: string;
31
+ name: string;
32
+ };
33
+ propertyUse: {
34
+ id: string;
35
+ code: string;
36
+ name: string;
37
+ };
38
+ propertyDealType: {
39
+ id: string;
40
+ code: string;
41
+ name: string;
42
+ };
43
+ propertyTransactionParty: {
44
+ id: string;
45
+ code: string;
46
+ name: string;
47
+ };
48
+ propertyOccupancyStatus: {
49
+ id: string;
50
+ code: string;
51
+ name: string;
52
+ } | null;
53
+ createdAt: string;
54
+ };
55
+ export type LawyersRealEstateAssistantsResearchOrgPropertyOptions = {
56
+ organizations: {
57
+ id: string;
58
+ name: string;
59
+ }[];
60
+ countries: {
61
+ id: string;
62
+ name: string;
63
+ }[];
64
+ propertyTypes: {
65
+ id: string;
66
+ code: string;
67
+ name: string;
68
+ }[];
69
+ propertyUses: {
70
+ id: string;
71
+ code: string;
72
+ name: string;
73
+ }[];
74
+ propertyDealTypes: {
75
+ id: string;
76
+ code: string;
77
+ name: string;
78
+ }[];
79
+ propertyTransactionParties: {
80
+ id: string;
81
+ code: string;
82
+ name: string;
83
+ }[];
84
+ propertyOccupancyStatuses: {
85
+ id: string;
86
+ code: string;
87
+ name: string;
88
+ }[];
89
+ };
90
+ export type LawyersRealEstateAssistantsResearchOrgPropertyCreateInput = {
91
+ lawyersRealEstateAssistantsResearchOrganizationId: string;
92
+ label: string;
93
+ addressLine?: string | null;
94
+ bbl?: string | null;
95
+ countryId: string;
96
+ subdivisionId?: string | null;
97
+ regionId?: string | null;
98
+ districtId?: string | null;
99
+ cityId?: string | null;
100
+ propertyTypeId: string;
101
+ propertyUseId: string;
102
+ propertyDealTypeId: string;
103
+ propertyTransactionPartyId: string;
104
+ propertyOccupancyStatusId?: string | null;
105
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowInstructionCheck = {
2
+ id: string;
3
+ instructionId: string;
4
+ checkedAt: string | null;
5
+ };
6
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowInstructionCheckSetInput = {
7
+ checked: boolean;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,6 @@
1
+ export declare const LAWYERS_REAL_ESTATE_ASSISTANTS_RESEARCH_ORG_PROPERTY_RUN_TOGGLE_SEGMENTS: {
2
+ readonly STEPS: "steps";
3
+ readonly TASKS: "tasks";
4
+ readonly SCENARIOS: "scenarios";
5
+ readonly INSTRUCTIONS: "instructions";
6
+ };
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.LAWYERS_REAL_ESTATE_ASSISTANTS_RESEARCH_ORG_PROPERTY_RUN_TOGGLE_SEGMENTS = void 0;
4
+ exports.LAWYERS_REAL_ESTATE_ASSISTANTS_RESEARCH_ORG_PROPERTY_RUN_TOGGLE_SEGMENTS = {
5
+ STEPS: "steps",
6
+ TASKS: "tasks",
7
+ SCENARIOS: "scenarios",
8
+ INSTRUCTIONS: "instructions",
9
+ };
@@ -0,0 +1,64 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowRun = {
2
+ id: string;
3
+ propertyId: string;
4
+ workflowId: string;
5
+ database: {
6
+ id: string;
7
+ code: string;
8
+ name: string;
9
+ url: string;
10
+ };
11
+ completedAt: string | null;
12
+ createdAt: string;
13
+ createdByUserId: string;
14
+ };
15
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowRunCreateInput = {
16
+ workflowId: string;
17
+ };
18
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowRunToggleSegment = "steps" | "tasks" | "scenarios" | "instructions";
19
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowRunToggleInput = {
20
+ completed: boolean;
21
+ } | {
22
+ checked: boolean;
23
+ };
24
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowRunDetail = {
25
+ id: string;
26
+ propertyId: string;
27
+ workflowId: string;
28
+ database: {
29
+ id: string;
30
+ code: string;
31
+ name: string;
32
+ url: string;
33
+ };
34
+ completedAt: string | null;
35
+ createdAt: string;
36
+ steps: {
37
+ id: string;
38
+ position: number;
39
+ name: string;
40
+ description: string | null;
41
+ completedAt: string | null;
42
+ tasks: {
43
+ id: string;
44
+ position: number;
45
+ name: string;
46
+ description: string | null;
47
+ completedAt: string | null;
48
+ scenarios: {
49
+ id: string;
50
+ position: number;
51
+ condition: string;
52
+ implication: string;
53
+ checkedAt: string | null;
54
+ }[];
55
+ instructions: {
56
+ id: string;
57
+ position: number;
58
+ humanInstructions: string;
59
+ llmInstructions: string | null;
60
+ checkedAt: string | null;
61
+ }[];
62
+ }[];
63
+ }[];
64
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowScenarioCheck = {
2
+ id: string;
3
+ scenarioId: string;
4
+ checkedAt: string | null;
5
+ };
6
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowScenarioCheckSetInput = {
7
+ checked: boolean;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowStepProgress = {
2
+ id: string;
3
+ stepId: string;
4
+ completedAt: string | null;
5
+ };
6
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowStepProgressSetInput = {
7
+ completed: boolean;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,8 @@
1
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowTaskProgress = {
2
+ id: string;
3
+ taskId: string;
4
+ completedAt: string | null;
5
+ };
6
+ export type LawyersRealEstateAssistantsResearchOrgPropertyResearchWorkflowTaskProgressSetInput = {
7
+ completed: boolean;
8
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
1
+ export type LawyersRealEstateAssistantsResearchPropertyResearchWorkflow = {
2
+ id: string;
3
+ database: {
4
+ id: string;
5
+ code: string;
6
+ name: string;
7
+ url: string;
8
+ };
9
+ stepCount: number;
10
+ };
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ 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.66",
3
+ "version": "1.0.67",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [