@trii/types 2.10.314 → 2.10.316
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/Spaces/spaces.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ export declare class ISpaceInfo {
|
|
|
12
12
|
/** Date on which the user accepted to be a member of the space */
|
|
13
13
|
joinTimeStamp?: Date;
|
|
14
14
|
members: UserInfo[];
|
|
15
|
+
showItemsInDevelopment: boolean;
|
|
15
16
|
}
|
|
16
17
|
export declare enum AccessLevel {
|
|
17
18
|
NULL = 0,
|
|
@@ -68,6 +69,7 @@ export interface ISpace {
|
|
|
68
69
|
domain_active: string;
|
|
69
70
|
domain_subdomain: string;
|
|
70
71
|
domain_custom: ICustomDomain;
|
|
72
|
+
showItemsInDevelopment: boolean;
|
|
71
73
|
createdAt: Date;
|
|
72
74
|
deletedAt: Date;
|
|
73
75
|
}
|
package/dist/Users/UserTrii.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import UserType from './UserType';
|
|
2
|
-
import { UserProfile } from './UserProfile';
|
|
2
|
+
import { UserProfile, UserRole } from './UserProfile';
|
|
3
3
|
export declare class UserInfo {
|
|
4
4
|
id: string;
|
|
5
5
|
name: string;
|
|
@@ -43,9 +43,9 @@ export declare class UserTrii {
|
|
|
43
43
|
display_name: string;
|
|
44
44
|
imageUrl: string;
|
|
45
45
|
birthDate: Date;
|
|
46
|
-
role
|
|
46
|
+
role?: UserRole;
|
|
47
47
|
roleID: string;
|
|
48
|
-
profile
|
|
48
|
+
profile?: UserProfile;
|
|
49
49
|
profileID: string;
|
|
50
50
|
street: string;
|
|
51
51
|
city: string;
|