@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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.9.2",
3
+ "version": "1.9.3",
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
@@ -176,6 +176,9 @@ export interface AuthJwtDto {
176
176
  roles : UserRole[]
177
177
  }
178
178
 
179
+ export interface FavoritesListing {
180
+ ids: number[];
181
+ }
179
182
 
180
183
 
181
184