@exclusive-website/types 2.7.2 → 2.7.3

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
@@ -1,4 +1,4 @@
1
- import { ApplyStatus, Availability, ContactMethod, Currency, DayOfWeek, DayStatus, ExperienceLevel, HairColor, HairLength, Language, NationalityOption, OtherPractise, Practise, PricingCategory, ServicesFor, ServiceType, SexualOrientation, ShaveStatus, StateOfListing, TransactionStatus, UserRole } from "./filterEnums";
1
+ import { ApplyStatus, ApprovedState, Availability, ContactMethod, Currency, DayOfWeek, DayStatus, ExperienceLevel, HairColor, HairLength, Language, NationalityOption, OtherPractise, Practise, PricingCategory, ServicesFor, ServiceType, SexualOrientation, ShaveStatus, StateOfListing, TransactionStatus, UserRole } from "./filterEnums";
2
2
  export interface ModelWriteDto {
3
3
  nickname: string;
4
4
  phoneNumber: string;
@@ -113,7 +113,7 @@ export interface ModelShortPreviewClientReadDto {
113
113
  nickname: string;
114
114
  location: LocationDto;
115
115
  transactionState: TransactionStatus;
116
- approvedState: StateOfListing;
116
+ approvedState: ApprovedState;
117
117
  featuredImage: MediaDto;
118
118
  created: Date;
119
119
  viewCount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.2",
3
+ "version": "2.7.3",
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
@@ -1,5 +1,5 @@
1
1
  import {
2
- ApplyStatus,
2
+ ApplyStatus, ApprovedState,
3
3
  Availability,
4
4
  ContactMethod,
5
5
  Currency,
@@ -147,7 +147,7 @@ export interface ModelShortPreviewClientReadDto {
147
147
  nickname: string;
148
148
  location: LocationDto;
149
149
  transactionState: TransactionStatus;
150
- approvedState: StateOfListing;
150
+ approvedState: ApprovedState;
151
151
  featuredImage: MediaDto;
152
152
  created: Date;
153
153
  viewCount: number;