@exclusive-website/types 1.9.2 → 1.9.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 +6 -0
- package/package.json +1 -1
- package/src/types.ts +6 -0
package/dist/types.d.ts
CHANGED
|
@@ -73,6 +73,7 @@ export interface ModelShortReadDto {
|
|
|
73
73
|
nickname: string;
|
|
74
74
|
age: number;
|
|
75
75
|
region: Region;
|
|
76
|
+
city: City;
|
|
76
77
|
isNew: boolean;
|
|
77
78
|
isTopped: boolean;
|
|
78
79
|
isAvailable: boolean;
|
|
@@ -88,6 +89,7 @@ export interface ModelShortPreviewReadDto {
|
|
|
88
89
|
id: number;
|
|
89
90
|
nickname: string;
|
|
90
91
|
region: Region;
|
|
92
|
+
city: City;
|
|
91
93
|
isNew: boolean;
|
|
92
94
|
isTopped: boolean;
|
|
93
95
|
isAvailable: boolean;
|
|
@@ -100,6 +102,7 @@ export interface ModelReadDto {
|
|
|
100
102
|
nickname: string;
|
|
101
103
|
age: number;
|
|
102
104
|
region: Region;
|
|
105
|
+
city: City;
|
|
103
106
|
isNew: boolean;
|
|
104
107
|
isTopped: boolean;
|
|
105
108
|
isAvailable: boolean;
|
|
@@ -142,6 +145,9 @@ export interface AuthJwtDto {
|
|
|
142
145
|
email: string;
|
|
143
146
|
roles: UserRole[];
|
|
144
147
|
}
|
|
148
|
+
export interface FavoritesListing {
|
|
149
|
+
ids: number[];
|
|
150
|
+
}
|
|
145
151
|
export type SupportedCurrency = "EUR" | "CZK" | null;
|
|
146
152
|
export interface RegisterUserDto {
|
|
147
153
|
email: string;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -101,6 +101,7 @@ export interface ModelShortReadDto {
|
|
|
101
101
|
nickname: string;
|
|
102
102
|
age: number;
|
|
103
103
|
region: Region;
|
|
104
|
+
city: City;
|
|
104
105
|
isNew: boolean;
|
|
105
106
|
isTopped: boolean;
|
|
106
107
|
isAvailable: boolean;
|
|
@@ -117,6 +118,7 @@ export interface ModelShortPreviewReadDto {
|
|
|
117
118
|
id: number;
|
|
118
119
|
nickname: string;
|
|
119
120
|
region: Region;
|
|
121
|
+
city: City;
|
|
120
122
|
isNew: boolean;
|
|
121
123
|
isTopped: boolean;
|
|
122
124
|
isAvailable: boolean;
|
|
@@ -130,6 +132,7 @@ export interface ModelReadDto {
|
|
|
130
132
|
nickname: string;
|
|
131
133
|
age: number;
|
|
132
134
|
region: Region;
|
|
135
|
+
city: City;
|
|
133
136
|
isNew: boolean;
|
|
134
137
|
isTopped: boolean;
|
|
135
138
|
isAvailable: boolean;
|
|
@@ -176,6 +179,9 @@ export interface AuthJwtDto {
|
|
|
176
179
|
roles : UserRole[]
|
|
177
180
|
}
|
|
178
181
|
|
|
182
|
+
export interface FavoritesListing {
|
|
183
|
+
ids: number[];
|
|
184
|
+
}
|
|
179
185
|
|
|
180
186
|
|
|
181
187
|
|