@exclusive-website/types 1.9.2 → 1.9.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 +3 -0
- package/package.json +1 -1
- package/src/types.ts +3 -0
package/dist/types.d.ts
CHANGED
|
@@ -142,6 +142,9 @@ export interface AuthJwtDto {
|
|
|
142
142
|
email: string;
|
|
143
143
|
roles: UserRole[];
|
|
144
144
|
}
|
|
145
|
+
export interface FavoritesListing {
|
|
146
|
+
ids: number[];
|
|
147
|
+
}
|
|
145
148
|
export type SupportedCurrency = "EUR" | "CZK" | null;
|
|
146
149
|
export interface RegisterUserDto {
|
|
147
150
|
email: string;
|
package/package.json
CHANGED