@exclusive-website/types 1.8.4 → 1.8.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.
package/dist/types.d.ts CHANGED
@@ -96,7 +96,7 @@ export interface ModelReadDto {
96
96
  hasPiercing: boolean;
97
97
  hasTattoo: boolean;
98
98
  experience: ExperienceLevel;
99
- serviceType: ServiceType;
99
+ serviceType: ServiceType[];
100
100
  nationality: NationalityOption;
101
101
  language: Language[];
102
102
  servicesFor: ServicesFor[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.8.4",
3
+ "version": "1.8.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
@@ -123,7 +123,7 @@ export interface ModelReadDto {
123
123
  hasPiercing: boolean;
124
124
  hasTattoo: boolean;
125
125
  experience: ExperienceLevel;
126
- serviceType: ServiceType;
126
+ serviceType: ServiceType[];
127
127
  nationality: NationalityOption;
128
128
  language: Language[];
129
129
  servicesFor: ServicesFor[];