@exclusive-website/types 1.8.3 → 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: number;
75
+ created: Date;
76
76
  viewCount: number;
77
77
  }
78
78
  export interface ModelReadDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.8.3",
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: number;
101
+ created: Date;
102
102
  viewCount: number;
103
103
  }
104
104