@lls/typings 24.1.50-2d7edefd → 24.1.50-2eed2eb3

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.
@@ -20,7 +20,7 @@ export type Book = {
20
20
  renderer?: string
21
21
  filters?: Filter[]
22
22
  chapters?: number[]
23
- collection?: Collection
23
+ collection?: Collection['id']
24
24
  resourcesMenu?: ResourcesMenuType
25
25
  renewalLabel?: string
26
26
  urlLite?: string
@@ -30,4 +30,6 @@ export type Book = {
30
30
  slug?: string
31
31
  publishers?: Publisher[]
32
32
  isRenewed?: boolean
33
+ isPrimary?: boolean
34
+ firstValidPage?: number
33
35
  }
@@ -2,22 +2,21 @@ import type { SchoolTypeName } from './schoolType'
2
2
  import type { SubjectName } from './subject'
3
3
 
4
4
  export type ProjectStatus = 'En cours' | 'Terminé' | 'Recutement en cours' | 'Recutement terminé'
5
- export type PresenceMode = 'Présentiel' | 'À distance'
5
+ export type PresenceModes = 'Présentiel' | 'À distance'
6
6
  export type ProjectType = 'Communauté' | 'Numérique' | 'Editorial'
7
7
 
8
8
  export type CommunityProject = {
9
9
  description: string
10
10
  displayName: string
11
11
  endingDate?: string
12
- goalParticipants: number
12
+ numberOfParticipants?: number
13
13
  id: string
14
14
  image: string
15
15
  isFeatured: boolean
16
16
  isPublished: boolean
17
- presenceMode: PresenceMode[]
17
+ presenceModes: PresenceModes[]
18
18
  projectStatus: ProjectStatus
19
19
  projectTypes: ProjectType[]
20
- registeredContactCount: number
21
20
  requirements?: string
22
21
  schoolTypes?: SchoolTypeName[]
23
22
  slug: string
@@ -2,6 +2,8 @@ export type ResourcesMenuType = {
2
2
  id?: string
3
3
  uri?: string
4
4
  title?: string
5
+ bookUrl?: string
6
+ guideUrl?: string
5
7
  type?: string
6
8
  elements?: Array<ResourcesMenuType>
7
9
  version?: string
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lls/typings",
3
- "version": "24.1.50-2d7edefd",
3
+ "version": "24.1.50-2eed2eb3",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "keywords": [],
@@ -35,4 +35,6 @@ export type PresentationPropsType = {
35
35
  initZoomModal?: (docUuid?: string) => void
36
36
  deleteZoomModal?: (docUuid?: string) => void
37
37
  getNbDocs?: (tabId: string) => number
38
+ getFirstDocWithFullscreen?: (tabId: string) => string
39
+ resetLeftDocZoomViewerStep?: () => void
38
40
  }