@exclusive-website/types 1.8.2 → 1.8.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 +2 -2
- package/package.json +1 -1
- package/src/types.ts +2 -2
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:
|
|
75
|
+
created: number;
|
|
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
|
-
|
|
110
|
+
viewCount: number;
|
|
111
111
|
created: Date;
|
|
112
112
|
}
|
|
113
113
|
export interface UserInfoReadDto {
|
package/package.json
CHANGED
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:
|
|
101
|
+
created: number;
|
|
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
|
-
|
|
137
|
+
viewCount: number;
|
|
138
138
|
created: Date;
|
|
139
139
|
}
|
|
140
140
|
|