@lls/typings 24.1.50-18da8dcd → 24.1.50-19f79a01

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.
@@ -9,7 +9,7 @@ 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
@@ -17,7 +17,6 @@ export type CommunityProject = {
17
17
  presenceMode: PresenceMode[]
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-18da8dcd",
3
+ "version": "24.1.50-19f79a01",
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
  }