@exclusive-website/types 1.8.2 → 1.8.4

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
@@ -72,7 +72,7 @@ export interface ModelShortPreviewReadDto {
72
72
  isTopped: boolean;
73
73
  isAvailable: boolean;
74
74
  featuredImage: string;
75
- created: string;
75
+ created: Date;
76
76
  viewCount: number;
77
77
  }
78
78
  export interface ModelReadDto {
@@ -107,7 +107,7 @@ export interface ModelReadDto {
107
107
  isClir: boolean;
108
108
  contactMethods: ContactMethod[];
109
109
  schedule: DaySchedule[];
110
- seenCounter: number;
110
+ viewCount: number;
111
111
  created: Date;
112
112
  }
113
113
  export interface UserInfoReadDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.8.2",
3
+ "version": "1.8.4",
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
@@ -98,7 +98,7 @@ export interface ModelShortPreviewReadDto {
98
98
  isTopped: boolean;
99
99
  isAvailable: boolean;
100
100
  featuredImage: string;
101
- created: string;
101
+ created: Date;
102
102
  viewCount: number;
103
103
  }
104
104
 
@@ -134,7 +134,7 @@ export interface ModelReadDto {
134
134
  isClir: boolean;
135
135
  contactMethods: ContactMethod[];
136
136
  schedule: DaySchedule[];
137
- seenCounter: number;
137
+ viewCount: number;
138
138
  created: Date;
139
139
  }
140
140