@trii/types 2.10.145 → 2.10.146

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.
@@ -1,3 +1,4 @@
1
+ import { UserInfo } from "../../Users/UserTrii";
1
2
  interface IGroup {
2
3
  id?: string | null;
3
4
  tenantId?: string | null;
@@ -10,20 +11,13 @@ interface IGroup {
10
11
  updatedAt?: string | null;
11
12
  deletedAt?: string | null;
12
13
  }
13
- declare class GroupInfo {
14
+ interface GroupInfo {
14
15
  id?: string | null;
15
16
  name?: string | null;
16
17
  color?: string | null;
17
18
  }
18
- declare class UserInfo {
19
- id: string;
20
- name: string;
21
- imageUrl: string;
22
- email: string;
23
- phone: string;
24
- }
25
19
  declare enum Group_DistributionMethod {
26
20
  All = 0,
27
21
  FIFO = 1
28
22
  }
29
- export { IGroup, GroupInfo, UserInfo, Group_DistributionMethod };
23
+ export { IGroup, GroupInfo, Group_DistributionMethod };
@@ -1,10 +1,6 @@
1
- class GroupInfo {
2
- }
3
- class UserInfo {
4
- }
5
1
  var Group_DistributionMethod;
6
2
  (function (Group_DistributionMethod) {
7
3
  Group_DistributionMethod[Group_DistributionMethod["All"] = 0] = "All";
8
4
  Group_DistributionMethod[Group_DistributionMethod["FIFO"] = 1] = "FIFO";
9
5
  })(Group_DistributionMethod || (Group_DistributionMethod = {}));
10
- export { GroupInfo, UserInfo, Group_DistributionMethod };
6
+ export { Group_DistributionMethod };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trii/types",
3
- "version": "2.10.145",
3
+ "version": "2.10.146",
4
4
  "description": "Types definitions for Trii projects - ",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",