@exclusive-website/types 2.1.4 → 2.1.5

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 (2) hide show
  1. package/package.json +1 -1
  2. package/src/types.ts +1 -3
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.5",
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 {