@exclusive-website/types 2.8.0 → 2.8.1

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
@@ -343,3 +343,8 @@ export interface ListingCorrectioDto {
343
343
  export interface SuccessResponseReadDto {
344
344
  content: string;
345
345
  }
346
+ export type AdminUserReadDto = {
347
+ id: number;
348
+ role: UserRole;
349
+ email: string;
350
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.8.0",
3
+ "version": "2.8.1",
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
@@ -407,4 +407,10 @@ export interface ListingCorrectioDto {
407
407
 
408
408
  export interface SuccessResponseReadDto {
409
409
  content: string;
410
- }
410
+ }
411
+
412
+ export type AdminUserReadDto = {
413
+ id: number;
414
+ role: UserRole;
415
+ email: string;
416
+ };