@exclusive-website/types 1.2.7 → 1.2.8
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 +0 -14
- package/package.json +1 -1
- package/src/types.ts +0 -15
package/dist/types.d.ts
CHANGED
|
@@ -64,20 +64,6 @@ export interface ModelListingDTO {
|
|
|
64
64
|
inModelDashboard: boolean;
|
|
65
65
|
}
|
|
66
66
|
export type ActivityStatus = "active" | "inactive";
|
|
67
|
-
export interface ModelListingDTO {
|
|
68
|
-
id: string;
|
|
69
|
-
listingId: string;
|
|
70
|
-
nickname: string;
|
|
71
|
-
city: string;
|
|
72
|
-
image: string[];
|
|
73
|
-
activityStatus: ActivityStatus;
|
|
74
|
-
approved: boolean;
|
|
75
|
-
expirationTime: number;
|
|
76
|
-
toppedDuration: number;
|
|
77
|
-
views: number;
|
|
78
|
-
creationDate: string;
|
|
79
|
-
inModelDashboard: boolean;
|
|
80
|
-
}
|
|
81
67
|
export type SupportedCurrency = "EUR" | "CZK" | null;
|
|
82
68
|
export interface RegisterUserDto {
|
|
83
69
|
email: string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -72,21 +72,6 @@ export interface ModelListingDTO {
|
|
|
72
72
|
|
|
73
73
|
export type ActivityStatus = "active" | "inactive";
|
|
74
74
|
|
|
75
|
-
export interface ModelListingDTO {
|
|
76
|
-
id: string;
|
|
77
|
-
listingId: string;
|
|
78
|
-
nickname: string;
|
|
79
|
-
city: string;
|
|
80
|
-
image: string[]; //array of urls
|
|
81
|
-
activityStatus: ActivityStatus;
|
|
82
|
-
approved: boolean;
|
|
83
|
-
expirationTime: number; //in hours
|
|
84
|
-
toppedDuration: number; //in hours
|
|
85
|
-
views: number;
|
|
86
|
-
creationDate: string; //format DD.MM.YYYY
|
|
87
|
-
inModelDashboard: boolean;
|
|
88
|
-
}
|
|
89
|
-
|
|
90
75
|
export type SupportedCurrency = "EUR" | "CZK" | null;
|
|
91
76
|
|
|
92
77
|
export interface RegisterUserDto {
|