tering-serieuze-types 2.0.4 → 2.0.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/user.ts +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tering-serieuze-types",
3
- "version": "2.0.4",
3
+ "version": "2.0.5",
4
4
  "description": "Tering serieuze types",
5
5
  "author": "Frank",
6
6
  "repository": {
package/src/user.ts CHANGED
@@ -81,7 +81,7 @@ export class ToggleBoolDto {
81
81
  nullable: true,
82
82
  description: 'User ID. When empty, the current user is used. Admin only param',
83
83
  })
84
- id: string;
84
+ id: string | null;
85
85
 
86
86
  @ApiProperty({ enum: ToggleAbleUserPropertyEnum, description: 'The property to toggle' })
87
87
  field: keyof ToggleableUserProperties;