@lssm/example.team-hub 0.0.0-canary-20251217073102 → 0.0.0-canary-20251217083314
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/announcement/announcement.contracts.d.ts +16 -16
- package/dist/announcement/announcement.schema.d.ts +15 -15
- package/dist/entities/index.d.ts +137 -137
- package/dist/events.d.ts +78 -78
- package/dist/ritual/ritual.contracts.d.ts +28 -28
- package/dist/ritual/ritual.schema.d.ts +20 -20
- package/dist/space/space.contracts.d.ts +13 -13
- package/dist/space/space.schema.d.ts +12 -12
- package/dist/task/task.contracts.d.ts +60 -60
- package/dist/task/task.schema.d.ts +19 -19
- package/package.json +10 -10
|
@@ -1,58 +1,58 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema237 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts13 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/announcement/announcement.contracts.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Post an announcement.
|
|
7
7
|
*/
|
|
8
|
-
declare const PostAnnouncementContract:
|
|
8
|
+
declare const PostAnnouncementContract: _lssm_lib_contracts13.ContractSpec<_lssm_lib_schema237.SchemaModel<{
|
|
9
9
|
title: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
body: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
audience: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
audienceRole: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
spaceId: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
27
27
|
isOptional: true;
|
|
28
28
|
};
|
|
29
29
|
expiresAt: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema237.FieldType<Date, string>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
|
-
}>,
|
|
33
|
+
}>, _lssm_lib_schema237.SchemaModel<{
|
|
34
34
|
id: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
title: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
body: {
|
|
43
|
-
type:
|
|
43
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
audience: {
|
|
47
|
-
type:
|
|
47
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
audienceRole: {
|
|
51
|
-
type:
|
|
51
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
spaceId: {
|
|
55
|
-
type:
|
|
55
|
+
type: _lssm_lib_schema237.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
}>, undefined>;
|
|
@@ -1,61 +1,61 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema339 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/announcement/announcement.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Announcement to spaces/org.
|
|
6
6
|
*/
|
|
7
|
-
declare const AnnouncementModel:
|
|
7
|
+
declare const AnnouncementModel: _lssm_lib_schema339.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
title: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
body: {
|
|
17
|
-
type:
|
|
17
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
audience: {
|
|
21
|
-
type:
|
|
21
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
audienceRole: {
|
|
25
|
-
type:
|
|
25
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
spaceId: {
|
|
29
|
-
type:
|
|
29
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
}>;
|
|
33
33
|
/**
|
|
34
34
|
* Input for posting an announcement.
|
|
35
35
|
*/
|
|
36
|
-
declare const PostAnnouncementInputModel:
|
|
36
|
+
declare const PostAnnouncementInputModel: _lssm_lib_schema339.SchemaModel<{
|
|
37
37
|
title: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
body: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
audience: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
audienceRole: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
spaceId: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema339.FieldType<string, string>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
expiresAt: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema339.FieldType<Date, string>;
|
|
59
59
|
isOptional: true;
|
|
60
60
|
};
|
|
61
61
|
}>;
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,148 +1,148 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema101 from "@lssm/lib.schema";
|
|
2
2
|
import { ModuleSchemaContribution } from "@lssm/lib.schema";
|
|
3
3
|
|
|
4
4
|
//#region src/entities/index.d.ts
|
|
5
|
-
declare const TaskStatusEnum:
|
|
6
|
-
declare const TaskPriorityEnum:
|
|
7
|
-
declare const RitualCadenceEnum:
|
|
8
|
-
declare const AnnouncementAudienceEnum:
|
|
9
|
-
declare const SpaceEntity:
|
|
10
|
-
id:
|
|
11
|
-
name:
|
|
12
|
-
description:
|
|
13
|
-
orgId:
|
|
14
|
-
ownerId:
|
|
15
|
-
members:
|
|
16
|
-
createdAt:
|
|
17
|
-
updatedAt:
|
|
18
|
-
tasks:
|
|
19
|
-
rituals:
|
|
20
|
-
announcements:
|
|
5
|
+
declare const TaskStatusEnum: _lssm_lib_schema101.EntityEnumDef;
|
|
6
|
+
declare const TaskPriorityEnum: _lssm_lib_schema101.EntityEnumDef;
|
|
7
|
+
declare const RitualCadenceEnum: _lssm_lib_schema101.EntityEnumDef;
|
|
8
|
+
declare const AnnouncementAudienceEnum: _lssm_lib_schema101.EntityEnumDef;
|
|
9
|
+
declare const SpaceEntity: _lssm_lib_schema101.EntitySpec<{
|
|
10
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
11
|
+
name: _lssm_lib_schema101.EntityScalarField;
|
|
12
|
+
description: _lssm_lib_schema101.EntityScalarField;
|
|
13
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
14
|
+
ownerId: _lssm_lib_schema101.EntityScalarField;
|
|
15
|
+
members: _lssm_lib_schema101.EntityScalarField;
|
|
16
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
17
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
18
|
+
tasks: _lssm_lib_schema101.EntityRelationField;
|
|
19
|
+
rituals: _lssm_lib_schema101.EntityRelationField;
|
|
20
|
+
announcements: _lssm_lib_schema101.EntityRelationField;
|
|
21
21
|
}>;
|
|
22
|
-
declare const TaskEntity:
|
|
23
|
-
id:
|
|
24
|
-
spaceId:
|
|
25
|
-
title:
|
|
26
|
-
description:
|
|
27
|
-
status:
|
|
28
|
-
priority:
|
|
29
|
-
assigneeId:
|
|
30
|
-
dueDate:
|
|
31
|
-
tags:
|
|
32
|
-
orgId:
|
|
33
|
-
createdAt:
|
|
34
|
-
updatedAt:
|
|
35
|
-
space:
|
|
22
|
+
declare const TaskEntity: _lssm_lib_schema101.EntitySpec<{
|
|
23
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
24
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
25
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
26
|
+
description: _lssm_lib_schema101.EntityScalarField;
|
|
27
|
+
status: _lssm_lib_schema101.EntityEnumField;
|
|
28
|
+
priority: _lssm_lib_schema101.EntityEnumField;
|
|
29
|
+
assigneeId: _lssm_lib_schema101.EntityScalarField;
|
|
30
|
+
dueDate: _lssm_lib_schema101.EntityScalarField;
|
|
31
|
+
tags: _lssm_lib_schema101.EntityScalarField;
|
|
32
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
33
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
34
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
35
|
+
space: _lssm_lib_schema101.EntityRelationField;
|
|
36
36
|
}>;
|
|
37
|
-
declare const RitualEntity:
|
|
38
|
-
id:
|
|
39
|
-
spaceId:
|
|
40
|
-
title:
|
|
41
|
-
cadence:
|
|
42
|
-
dayOfWeek:
|
|
43
|
-
time:
|
|
44
|
-
facilitatorId:
|
|
45
|
-
participants:
|
|
46
|
-
location:
|
|
47
|
-
agendaTemplate:
|
|
48
|
-
orgId:
|
|
49
|
-
createdAt:
|
|
50
|
-
updatedAt:
|
|
51
|
-
occurrences:
|
|
52
|
-
space:
|
|
37
|
+
declare const RitualEntity: _lssm_lib_schema101.EntitySpec<{
|
|
38
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
39
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
40
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
41
|
+
cadence: _lssm_lib_schema101.EntityEnumField;
|
|
42
|
+
dayOfWeek: _lssm_lib_schema101.EntityScalarField;
|
|
43
|
+
time: _lssm_lib_schema101.EntityScalarField;
|
|
44
|
+
facilitatorId: _lssm_lib_schema101.EntityScalarField;
|
|
45
|
+
participants: _lssm_lib_schema101.EntityScalarField;
|
|
46
|
+
location: _lssm_lib_schema101.EntityScalarField;
|
|
47
|
+
agendaTemplate: _lssm_lib_schema101.EntityScalarField;
|
|
48
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
49
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
50
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
51
|
+
occurrences: _lssm_lib_schema101.EntityRelationField;
|
|
52
|
+
space: _lssm_lib_schema101.EntityRelationField;
|
|
53
53
|
}>;
|
|
54
|
-
declare const RitualOccurrenceEntity:
|
|
55
|
-
id:
|
|
56
|
-
ritualId:
|
|
57
|
-
scheduledFor:
|
|
58
|
-
status:
|
|
59
|
-
summary:
|
|
60
|
-
attendance:
|
|
61
|
-
recordingUrl:
|
|
62
|
-
orgId:
|
|
63
|
-
createdAt:
|
|
64
|
-
updatedAt:
|
|
65
|
-
ritual:
|
|
54
|
+
declare const RitualOccurrenceEntity: _lssm_lib_schema101.EntitySpec<{
|
|
55
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
56
|
+
ritualId: _lssm_lib_schema101.EntityScalarField;
|
|
57
|
+
scheduledFor: _lssm_lib_schema101.EntityScalarField;
|
|
58
|
+
status: _lssm_lib_schema101.EntityScalarField;
|
|
59
|
+
summary: _lssm_lib_schema101.EntityScalarField;
|
|
60
|
+
attendance: _lssm_lib_schema101.EntityScalarField;
|
|
61
|
+
recordingUrl: _lssm_lib_schema101.EntityScalarField;
|
|
62
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
63
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
64
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
65
|
+
ritual: _lssm_lib_schema101.EntityRelationField;
|
|
66
66
|
}>;
|
|
67
|
-
declare const AnnouncementEntity:
|
|
68
|
-
id:
|
|
69
|
-
spaceId:
|
|
70
|
-
title:
|
|
71
|
-
body:
|
|
72
|
-
audience:
|
|
73
|
-
audienceRole:
|
|
74
|
-
pinnedUntil:
|
|
75
|
-
orgId:
|
|
76
|
-
createdBy:
|
|
77
|
-
createdAt:
|
|
78
|
-
expiresAt:
|
|
67
|
+
declare const AnnouncementEntity: _lssm_lib_schema101.EntitySpec<{
|
|
68
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
69
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
70
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
71
|
+
body: _lssm_lib_schema101.EntityScalarField;
|
|
72
|
+
audience: _lssm_lib_schema101.EntityEnumField;
|
|
73
|
+
audienceRole: _lssm_lib_schema101.EntityScalarField;
|
|
74
|
+
pinnedUntil: _lssm_lib_schema101.EntityScalarField;
|
|
75
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
76
|
+
createdBy: _lssm_lib_schema101.EntityScalarField;
|
|
77
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
78
|
+
expiresAt: _lssm_lib_schema101.EntityScalarField;
|
|
79
79
|
}>;
|
|
80
|
-
declare const teamHubEntities: (
|
|
81
|
-
id:
|
|
82
|
-
name:
|
|
83
|
-
description:
|
|
84
|
-
orgId:
|
|
85
|
-
ownerId:
|
|
86
|
-
members:
|
|
87
|
-
createdAt:
|
|
88
|
-
updatedAt:
|
|
89
|
-
tasks:
|
|
90
|
-
rituals:
|
|
91
|
-
announcements:
|
|
92
|
-
}> |
|
|
93
|
-
id:
|
|
94
|
-
spaceId:
|
|
95
|
-
title:
|
|
96
|
-
description:
|
|
97
|
-
status:
|
|
98
|
-
priority:
|
|
99
|
-
assigneeId:
|
|
100
|
-
dueDate:
|
|
101
|
-
tags:
|
|
102
|
-
orgId:
|
|
103
|
-
createdAt:
|
|
104
|
-
updatedAt:
|
|
105
|
-
space:
|
|
106
|
-
}> |
|
|
107
|
-
id:
|
|
108
|
-
spaceId:
|
|
109
|
-
title:
|
|
110
|
-
cadence:
|
|
111
|
-
dayOfWeek:
|
|
112
|
-
time:
|
|
113
|
-
facilitatorId:
|
|
114
|
-
participants:
|
|
115
|
-
location:
|
|
116
|
-
agendaTemplate:
|
|
117
|
-
orgId:
|
|
118
|
-
createdAt:
|
|
119
|
-
updatedAt:
|
|
120
|
-
occurrences:
|
|
121
|
-
space:
|
|
122
|
-
}> |
|
|
123
|
-
id:
|
|
124
|
-
ritualId:
|
|
125
|
-
scheduledFor:
|
|
126
|
-
status:
|
|
127
|
-
summary:
|
|
128
|
-
attendance:
|
|
129
|
-
recordingUrl:
|
|
130
|
-
orgId:
|
|
131
|
-
createdAt:
|
|
132
|
-
updatedAt:
|
|
133
|
-
ritual:
|
|
134
|
-
}> |
|
|
135
|
-
id:
|
|
136
|
-
spaceId:
|
|
137
|
-
title:
|
|
138
|
-
body:
|
|
139
|
-
audience:
|
|
140
|
-
audienceRole:
|
|
141
|
-
pinnedUntil:
|
|
142
|
-
orgId:
|
|
143
|
-
createdBy:
|
|
144
|
-
createdAt:
|
|
145
|
-
expiresAt:
|
|
80
|
+
declare const teamHubEntities: (_lssm_lib_schema101.EntitySpec<{
|
|
81
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
82
|
+
name: _lssm_lib_schema101.EntityScalarField;
|
|
83
|
+
description: _lssm_lib_schema101.EntityScalarField;
|
|
84
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
85
|
+
ownerId: _lssm_lib_schema101.EntityScalarField;
|
|
86
|
+
members: _lssm_lib_schema101.EntityScalarField;
|
|
87
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
88
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
89
|
+
tasks: _lssm_lib_schema101.EntityRelationField;
|
|
90
|
+
rituals: _lssm_lib_schema101.EntityRelationField;
|
|
91
|
+
announcements: _lssm_lib_schema101.EntityRelationField;
|
|
92
|
+
}> | _lssm_lib_schema101.EntitySpec<{
|
|
93
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
94
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
95
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
96
|
+
description: _lssm_lib_schema101.EntityScalarField;
|
|
97
|
+
status: _lssm_lib_schema101.EntityEnumField;
|
|
98
|
+
priority: _lssm_lib_schema101.EntityEnumField;
|
|
99
|
+
assigneeId: _lssm_lib_schema101.EntityScalarField;
|
|
100
|
+
dueDate: _lssm_lib_schema101.EntityScalarField;
|
|
101
|
+
tags: _lssm_lib_schema101.EntityScalarField;
|
|
102
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
103
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
104
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
105
|
+
space: _lssm_lib_schema101.EntityRelationField;
|
|
106
|
+
}> | _lssm_lib_schema101.EntitySpec<{
|
|
107
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
108
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
109
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
110
|
+
cadence: _lssm_lib_schema101.EntityEnumField;
|
|
111
|
+
dayOfWeek: _lssm_lib_schema101.EntityScalarField;
|
|
112
|
+
time: _lssm_lib_schema101.EntityScalarField;
|
|
113
|
+
facilitatorId: _lssm_lib_schema101.EntityScalarField;
|
|
114
|
+
participants: _lssm_lib_schema101.EntityScalarField;
|
|
115
|
+
location: _lssm_lib_schema101.EntityScalarField;
|
|
116
|
+
agendaTemplate: _lssm_lib_schema101.EntityScalarField;
|
|
117
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
118
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
119
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
120
|
+
occurrences: _lssm_lib_schema101.EntityRelationField;
|
|
121
|
+
space: _lssm_lib_schema101.EntityRelationField;
|
|
122
|
+
}> | _lssm_lib_schema101.EntitySpec<{
|
|
123
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
124
|
+
ritualId: _lssm_lib_schema101.EntityScalarField;
|
|
125
|
+
scheduledFor: _lssm_lib_schema101.EntityScalarField;
|
|
126
|
+
status: _lssm_lib_schema101.EntityScalarField;
|
|
127
|
+
summary: _lssm_lib_schema101.EntityScalarField;
|
|
128
|
+
attendance: _lssm_lib_schema101.EntityScalarField;
|
|
129
|
+
recordingUrl: _lssm_lib_schema101.EntityScalarField;
|
|
130
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
131
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
132
|
+
updatedAt: _lssm_lib_schema101.EntityScalarField;
|
|
133
|
+
ritual: _lssm_lib_schema101.EntityRelationField;
|
|
134
|
+
}> | _lssm_lib_schema101.EntitySpec<{
|
|
135
|
+
id: _lssm_lib_schema101.EntityScalarField;
|
|
136
|
+
spaceId: _lssm_lib_schema101.EntityScalarField;
|
|
137
|
+
title: _lssm_lib_schema101.EntityScalarField;
|
|
138
|
+
body: _lssm_lib_schema101.EntityScalarField;
|
|
139
|
+
audience: _lssm_lib_schema101.EntityEnumField;
|
|
140
|
+
audienceRole: _lssm_lib_schema101.EntityScalarField;
|
|
141
|
+
pinnedUntil: _lssm_lib_schema101.EntityScalarField;
|
|
142
|
+
orgId: _lssm_lib_schema101.EntityScalarField;
|
|
143
|
+
createdBy: _lssm_lib_schema101.EntityScalarField;
|
|
144
|
+
createdAt: _lssm_lib_schema101.EntityScalarField;
|
|
145
|
+
expiresAt: _lssm_lib_schema101.EntityScalarField;
|
|
146
146
|
}>)[];
|
|
147
147
|
declare const teamHubSchemaContribution: ModuleSchemaContribution;
|
|
148
148
|
//#endregion
|