@uniteverses/shared 1.0.71 → 1.0.73
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.
|
@@ -4,7 +4,13 @@ export type LawyersRealEstateAssistantsResearchOrgProperty = {
|
|
|
4
4
|
createdByUserId: string;
|
|
5
5
|
label: string;
|
|
6
6
|
addressLine: string | null;
|
|
7
|
-
|
|
7
|
+
borough: {
|
|
8
|
+
id: string;
|
|
9
|
+
code: string;
|
|
10
|
+
name: string;
|
|
11
|
+
} | null;
|
|
12
|
+
block: number | null;
|
|
13
|
+
lot: number | null;
|
|
8
14
|
country: {
|
|
9
15
|
id: string;
|
|
10
16
|
name: string;
|
|
@@ -86,12 +92,19 @@ export type LawyersRealEstateAssistantsResearchOrgPropertyOptions = {
|
|
|
86
92
|
code: string;
|
|
87
93
|
name: string;
|
|
88
94
|
}[];
|
|
95
|
+
boroughs: {
|
|
96
|
+
id: string;
|
|
97
|
+
code: string;
|
|
98
|
+
name: string;
|
|
99
|
+
}[];
|
|
89
100
|
};
|
|
90
101
|
export type LawyersRealEstateAssistantsResearchOrgPropertyCreateInput = {
|
|
91
102
|
lawyersRealEstateAssistantsResearchOrganizationId: string;
|
|
92
103
|
label: string;
|
|
93
104
|
addressLine?: string | null;
|
|
94
|
-
|
|
105
|
+
boroughId?: string | null;
|
|
106
|
+
block?: number | null;
|
|
107
|
+
lot?: number | null;
|
|
95
108
|
countryId: string;
|
|
96
109
|
subdivisionId?: string | null;
|
|
97
110
|
regionId?: string | null;
|
|
@@ -4,6 +4,6 @@
|
|
|
4
4
|
// the browser extension executes them top-to-bottom. these are NOT prompts for an LLM —
|
|
5
5
|
// the extension is a scripted runner. the LLM only judges scraped data afterwards.
|
|
6
6
|
//
|
|
7
|
-
// `value` and `url` may contain `{{path}}` template tokens (e.g. `{{property.
|
|
7
|
+
// `value` and `url` may contain `{{path}}` template tokens (e.g. `{{property.borough}}`)
|
|
8
8
|
// which the extension substitutes from the run context before acting.
|
|
9
9
|
Object.defineProperty(exports, "__esModule", { value: true });
|