@datagouv/components-next 1.0.2-dev.81 → 1.0.2-dev.82

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.81",
3
+ "version": "1.0.2-dev.82",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "engines": {
@@ -10,6 +10,7 @@
10
10
  "yarn": "use-pnpm-instead"
11
11
  },
12
12
  "main": "./src/main.ts",
13
+ "sideEffects": false,
13
14
  "files": [
14
15
  "assets",
15
16
  "dist",
@@ -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
  }
@@ -27,6 +27,8 @@ export type User = {
27
27
  roles?: Array<string>
28
28
  organizations: Array<OrganizationReference>
29
29
  last_login_at: string | null
30
+ password_rotation_demanded: string | null
31
+ password_rotation_performed: string | null
30
32
  since: string | null
31
33
  metrics: {
32
34
  datasets: number