@exclusive-website/types 2.1.4 → 2.1.6

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/types.d.ts CHANGED
@@ -149,11 +149,8 @@ export interface FavoritesListing {
149
149
  }
150
150
  export interface LocationDto {
151
151
  country: string;
152
- countryId: string;
153
152
  region: string;
154
- regionId: string;
155
153
  city: string;
156
- cityId: string;
157
154
  }
158
155
  export interface CountryDto {
159
156
  countryId: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.1.4",
3
+ "version": "2.1.6",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -43,6 +43,7 @@ export interface ModelWriteDto {
43
43
  description: string;
44
44
  practice: Practise[];
45
45
  otherService: OtherPractise[];
46
+
46
47
  country: CountryDto;
47
48
  region: RegionDto;
48
49
  city: CityDto;
@@ -180,11 +181,8 @@ export interface FavoritesListing {
180
181
 
181
182
  export interface LocationDto {
182
183
  country: string;
183
- countryId: string;
184
184
  region: string;
185
- regionId: string;
186
185
  city: string;
187
- cityId: string;
188
186
  }
189
187
 
190
188
  export interface CountryDto {