@datagouv/components-next 1.0.2-dev.73 → 1.0.2-dev.75

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@datagouv/components-next",
3
- "version": "1.0.2-dev.73",
3
+ "version": "1.0.2-dev.75",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {
@@ -1,7 +1,7 @@
1
1
  import type { User } from './users'
2
2
 
3
3
  export type ReportSubject = {
4
- class: 'Discussion' | 'Dataservice' | 'Dataset' | 'Organization' | 'Reuse'
4
+ class: 'Discussion' | 'Dataservice' | 'Dataset' | 'Organization' | 'Reuse' | 'User'
5
5
  id: string
6
6
  }
7
7
 
@@ -26,4 +26,5 @@ export type Report = {
26
26
  subject_label: string | null
27
27
  dismissed_at: string | null
28
28
  dismissed_by: User | null
29
+ callbacks_count: number
29
30
  }