@uniteverses/shared 1.0.72 → 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,11 @@ export type LawyersRealEstateAssistantsResearchOrgProperty = {
4
4
  createdByUserId: string;
5
5
  label: string;
6
6
  addressLine: string | null;
7
- borough: number | null;
7
+ borough: {
8
+ id: string;
9
+ code: string;
10
+ name: string;
11
+ } | null;
8
12
  block: number | null;
9
13
  lot: number | null;
10
14
  country: {
@@ -88,12 +92,17 @@ export type LawyersRealEstateAssistantsResearchOrgPropertyOptions = {
88
92
  code: string;
89
93
  name: string;
90
94
  }[];
95
+ boroughs: {
96
+ id: string;
97
+ code: string;
98
+ name: string;
99
+ }[];
91
100
  };
92
101
  export type LawyersRealEstateAssistantsResearchOrgPropertyCreateInput = {
93
102
  lawyersRealEstateAssistantsResearchOrganizationId: string;
94
103
  label: string;
95
104
  addressLine?: string | null;
96
- borough?: number | null;
105
+ boroughId?: string | null;
97
106
  block?: number | null;
98
107
  lot?: number | null;
99
108
  countryId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniteverses/shared",
3
- "version": "1.0.72",
3
+ "version": "1.0.73",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "files": [