@lightdash/common 0.1361.1 → 0.1362.0
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/groups.d.ts +12 -0
- package/package.json +1 -1
package/dist/types/groups.d.ts
CHANGED
@@ -12,6 +12,18 @@ export type Group = {
|
|
12
12
|
* The time that the group was created
|
13
13
|
*/
|
14
14
|
createdAt: Date;
|
15
|
+
/**
|
16
|
+
* The UUID of the user that created the group
|
17
|
+
*/
|
18
|
+
createdByUserUuid: string | null;
|
19
|
+
/**
|
20
|
+
* The time that the group was last updated
|
21
|
+
*/
|
22
|
+
updatedAt: Date;
|
23
|
+
/**
|
24
|
+
* The UUID of the user that last updated the group
|
25
|
+
*/
|
26
|
+
updatedByUserUuid: string | null;
|
15
27
|
/**
|
16
28
|
* The UUID of the organization that the group belongs to
|
17
29
|
*/
|