You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
updatedEntities?: IActivityLogUpdatedValues[];// Stores updated IDs, or other values for related entities. Eg : {members: ['member_1_ID', 'member_2_ID']},
15
21
creator?: IUser;
16
22
creatorId?: ID;
17
-
data?: Record<string,any>;
23
+
data?: JsonData;
18
24
}
19
25
20
-
exportenumActionTypeEnum{
21
-
CREATED='Created',
22
-
UPDATED='Updated',
23
-
DELETED='Deleted'
26
+
exportinterfaceIActivityLogUpdatedValues{
27
+
[x: string]: Record<string,any>;
24
28
}
25
29
26
-
exportinterfaceIActivityLogUpdatedValues{
27
-
[x: string]: any;
30
+
/**
31
+
* Enum for action types in the activity log.
32
+
*/
33
+
exportenumActionTypeEnum{
34
+
Created='Created',
35
+
Updated='Updated',
36
+
Deleted='Deleted'
28
37
}
29
38
39
+
/**
40
+
* Enum for entities that can be involved in activity logs.
0 commit comments