robbyson-frontend-library 1.0.37 → 1.0.38

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": "robbyson-frontend-library",
3
- "version": "1.0.37",
3
+ "version": "1.0.38",
4
4
  "description": "Robbyson frontend Library",
5
5
  "main": "./dist/index.js",
6
6
  "license": "MIT",
@@ -7,5 +7,4 @@ export interface IAddUserToGroupModalProps extends IBaseComponentProp {
7
7
  chatId?: string;
8
8
  identification?: string;
9
9
  onClose: () => void;
10
- updateChat?: (chat: ChatModel) => void;
11
10
  }
@@ -12,7 +12,10 @@ export interface IInsightChartProps extends IBaseComponentProp {
12
12
  goal: string;
13
13
  data: ChartData[];
14
14
  ticks: number[];
15
- meta: number;
15
+ meta: number;
16
+ showTooltip?: boolean;
17
+ cx?: number;
18
+ cy?: number;
16
19
  }
17
20
 
18
21
  export type ChartData = {
@@ -21,4 +21,5 @@ export interface IMenuProps {
21
21
  export interface IMenuState {
22
22
  expanded: boolean;
23
23
  location: string;
24
+ profilePicture: string
24
25
  }
@@ -33,6 +33,7 @@ export class ChatUser {
33
33
  deleted: boolean;
34
34
  identification: string;
35
35
  initial: boolean;
36
+ lastUpdatedBy?: string;
36
37
  name: string;
37
38
  photo: string;
38
39
  robbyson_user_id: number;
@@ -3,4 +3,5 @@ export interface IMeetingsOrchestratorRepository {
3
3
  getSession(
4
4
  conversationId: string
5
5
  ): Promise<MeetingsDTO.GetSessionResponseDTO>;
6
+ getCurrentUsersInSession(sessionId: string): Promise<number>;
6
7
  }
@@ -142,7 +142,7 @@ export interface IProfileSidebar {
142
142
  }
143
143
 
144
144
  export interface IMemberSidebar {
145
- isOpen: boolean;
145
+ isOpen?: boolean;
146
146
  groupInfo?: ChatModel;
147
147
  identification?: string;
148
148
  }
@@ -5,6 +5,7 @@ export interface IMeetingsOrchestratorService {
5
5
  getSession(
6
6
  conversationId: string
7
7
  ): Promise<MeetingsDTO.GetSessionResponseDTO>;
8
+ getCurrentUsersInSession(sessionId: string): Promise<boolean>;
8
9
  }
9
10
 
10
11
  export interface IMeetingsService {