@lightdash/common 0.1361.2 → 0.1362.0
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/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
|
*/
|