@exclusive-website/types 2.8.1 → 2.8.2

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
@@ -345,6 +345,6 @@ export interface SuccessResponseReadDto {
345
345
  }
346
346
  export type AdminUserReadDto = {
347
347
  id: number;
348
- role: UserRole;
348
+ roles: UserRole[];
349
349
  email: string;
350
350
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.8.1",
3
+ "version": "2.8.2",
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
@@ -411,6 +411,6 @@ export interface SuccessResponseReadDto {
411
411
 
412
412
  export type AdminUserReadDto = {
413
413
  id: number;
414
- role: UserRole;
414
+ roles: UserRole[];
415
415
  email: string;
416
416
  };