@contractspec/example.team-hub 1.53.0 → 1.55.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/events.d.ts +13 -13
- package/dist/example.d.ts +2 -2
- package/dist/presentations/team-hub.presentation.d.ts +7 -7
- package/dist/ritual/ritual.operations.d.ts +28 -28
- package/dist/ritual/ritual.schema.d.ts +20 -20
- package/dist/space/space.operations.d.ts +13 -13
- package/dist/team-hub.capability.d.ts +4 -4
- package/dist/team-hub.feature.d.ts +2 -2
- package/dist/team-hub.feature.d.ts.map +1 -1
- package/package.json +5 -5
package/dist/events.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import * as _contractspec_lib_schema31 from "@contractspec/lib.schema";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _contractspec_lib_contracts1 from "@contractspec/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/events.d.ts
|
|
5
|
-
declare const SpaceCreatedEvent:
|
|
5
|
+
declare const SpaceCreatedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
6
6
|
spaceId: {
|
|
7
7
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
8
8
|
isOptional: false;
|
|
@@ -20,7 +20,7 @@ declare const SpaceCreatedEvent: _contractspec_lib_contracts0.EventSpec<_contrac
|
|
|
20
20
|
isOptional: false;
|
|
21
21
|
};
|
|
22
22
|
}>>;
|
|
23
|
-
declare const TaskCreatedEvent:
|
|
23
|
+
declare const TaskCreatedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
24
24
|
taskId: {
|
|
25
25
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
@@ -46,7 +46,7 @@ declare const TaskCreatedEvent: _contractspec_lib_contracts0.EventSpec<_contract
|
|
|
46
46
|
isOptional: false;
|
|
47
47
|
};
|
|
48
48
|
}>>;
|
|
49
|
-
declare const TaskStatusChangedEvent:
|
|
49
|
+
declare const TaskStatusChangedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
50
50
|
taskId: {
|
|
51
51
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
52
52
|
isOptional: false;
|
|
@@ -72,7 +72,7 @@ declare const TaskStatusChangedEvent: _contractspec_lib_contracts0.EventSpec<_co
|
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
}>>;
|
|
75
|
-
declare const RitualScheduledEvent:
|
|
75
|
+
declare const RitualScheduledEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
76
76
|
ritualId: {
|
|
77
77
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
78
78
|
isOptional: false;
|
|
@@ -94,7 +94,7 @@ declare const RitualScheduledEvent: _contractspec_lib_contracts0.EventSpec<_cont
|
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
}>>;
|
|
97
|
-
declare const RitualOccurredEvent:
|
|
97
|
+
declare const RitualOccurredEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
98
98
|
ritualId: {
|
|
99
99
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
100
100
|
isOptional: false;
|
|
@@ -116,7 +116,7 @@ declare const RitualOccurredEvent: _contractspec_lib_contracts0.EventSpec<_contr
|
|
|
116
116
|
isOptional: false;
|
|
117
117
|
};
|
|
118
118
|
}>>;
|
|
119
|
-
declare const AnnouncementPostedEvent:
|
|
119
|
+
declare const AnnouncementPostedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
120
120
|
announcementId: {
|
|
121
121
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
@@ -143,7 +143,7 @@ declare const AnnouncementPostedEvent: _contractspec_lib_contracts0.EventSpec<_c
|
|
|
143
143
|
};
|
|
144
144
|
}>>;
|
|
145
145
|
declare const TeamHubEvents: {
|
|
146
|
-
SpaceCreatedEvent:
|
|
146
|
+
SpaceCreatedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
147
147
|
spaceId: {
|
|
148
148
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
149
149
|
isOptional: false;
|
|
@@ -161,7 +161,7 @@ declare const TeamHubEvents: {
|
|
|
161
161
|
isOptional: false;
|
|
162
162
|
};
|
|
163
163
|
}>>;
|
|
164
|
-
TaskCreatedEvent:
|
|
164
|
+
TaskCreatedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
165
165
|
taskId: {
|
|
166
166
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
167
167
|
isOptional: false;
|
|
@@ -187,7 +187,7 @@ declare const TeamHubEvents: {
|
|
|
187
187
|
isOptional: false;
|
|
188
188
|
};
|
|
189
189
|
}>>;
|
|
190
|
-
TaskStatusChangedEvent:
|
|
190
|
+
TaskStatusChangedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
191
191
|
taskId: {
|
|
192
192
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
193
193
|
isOptional: false;
|
|
@@ -213,7 +213,7 @@ declare const TeamHubEvents: {
|
|
|
213
213
|
isOptional: false;
|
|
214
214
|
};
|
|
215
215
|
}>>;
|
|
216
|
-
RitualScheduledEvent:
|
|
216
|
+
RitualScheduledEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
217
217
|
ritualId: {
|
|
218
218
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
219
219
|
isOptional: false;
|
|
@@ -235,7 +235,7 @@ declare const TeamHubEvents: {
|
|
|
235
235
|
isOptional: false;
|
|
236
236
|
};
|
|
237
237
|
}>>;
|
|
238
|
-
RitualOccurredEvent:
|
|
238
|
+
RitualOccurredEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
239
239
|
ritualId: {
|
|
240
240
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
241
241
|
isOptional: false;
|
|
@@ -257,7 +257,7 @@ declare const TeamHubEvents: {
|
|
|
257
257
|
isOptional: false;
|
|
258
258
|
};
|
|
259
259
|
}>>;
|
|
260
|
-
AnnouncementPostedEvent:
|
|
260
|
+
AnnouncementPostedEvent: _contractspec_lib_contracts1.EventSpec<_contractspec_lib_schema31.SchemaModel<{
|
|
261
261
|
announcementId: {
|
|
262
262
|
type: _contractspec_lib_schema31.FieldType<string, string>;
|
|
263
263
|
isOptional: false;
|
package/dist/example.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts13 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/example.d.ts
|
|
4
|
-
declare const example:
|
|
4
|
+
declare const example: _contractspec_lib_contracts13.ExampleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { example as default };
|
|
7
7
|
//# sourceMappingURL=example.d.ts.map
|
|
@@ -1,12 +1,12 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts17 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/presentations/team-hub.presentation.d.ts
|
|
4
|
-
declare const TeamDashboardPresentation:
|
|
5
|
-
declare const SpaceListPresentation:
|
|
6
|
-
declare const TaskBoardPresentation:
|
|
7
|
-
declare const TaskDetailPresentation:
|
|
8
|
-
declare const RitualCalendarPresentation:
|
|
9
|
-
declare const AnnouncementFeedPresentation:
|
|
4
|
+
declare const TeamDashboardPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
5
|
+
declare const SpaceListPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
6
|
+
declare const TaskBoardPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
7
|
+
declare const TaskDetailPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
8
|
+
declare const RitualCalendarPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
9
|
+
declare const AnnouncementFeedPresentation: _contractspec_lib_contracts17.PresentationSpec;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { AnnouncementFeedPresentation, RitualCalendarPresentation, SpaceListPresentation, TaskBoardPresentation, TaskDetailPresentation, TeamDashboardPresentation };
|
|
12
12
|
//# sourceMappingURL=team-hub.presentation.d.ts.map
|
|
@@ -1,104 +1,104 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema287 from "@contractspec/lib.schema";
|
|
2
|
+
import * as _contractspec_lib_contracts24 from "@contractspec/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/ritual/ritual.operations.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Schedule a ritual.
|
|
7
7
|
*/
|
|
8
|
-
declare const ScheduleRitualContract:
|
|
8
|
+
declare const ScheduleRitualContract: _contractspec_lib_contracts24.OperationSpec<_contractspec_lib_schema287.SchemaModel<{
|
|
9
9
|
spaceId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
title: {
|
|
14
|
-
type:
|
|
14
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
cadence: {
|
|
18
|
-
type:
|
|
18
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
dayOfWeek: {
|
|
22
|
-
type:
|
|
22
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
23
23
|
isOptional: true;
|
|
24
24
|
};
|
|
25
25
|
time: {
|
|
26
|
-
type:
|
|
26
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
27
27
|
isOptional: true;
|
|
28
28
|
};
|
|
29
29
|
facilitatorId: {
|
|
30
|
-
type:
|
|
30
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
31
31
|
isOptional: true;
|
|
32
32
|
};
|
|
33
|
-
}>,
|
|
33
|
+
}>, _contractspec_lib_schema287.SchemaModel<{
|
|
34
34
|
id: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
spaceId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
title: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
cadence: {
|
|
47
|
-
type:
|
|
47
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
48
48
|
isOptional: false;
|
|
49
49
|
};
|
|
50
50
|
dayOfWeek: {
|
|
51
|
-
type:
|
|
51
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
52
52
|
isOptional: true;
|
|
53
53
|
};
|
|
54
54
|
time: {
|
|
55
|
-
type:
|
|
55
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
56
56
|
isOptional: true;
|
|
57
57
|
};
|
|
58
58
|
}>, undefined>;
|
|
59
59
|
/**
|
|
60
60
|
* Log ritual occurrence.
|
|
61
61
|
*/
|
|
62
|
-
declare const LogRitualOccurrenceContract:
|
|
62
|
+
declare const LogRitualOccurrenceContract: _contractspec_lib_contracts24.OperationSpec<_contractspec_lib_schema287.SchemaModel<{
|
|
63
63
|
ritualId: {
|
|
64
|
-
type:
|
|
64
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
65
65
|
isOptional: false;
|
|
66
66
|
};
|
|
67
67
|
scheduledFor: {
|
|
68
|
-
type:
|
|
68
|
+
type: _contractspec_lib_schema287.FieldType<Date, string>;
|
|
69
69
|
isOptional: false;
|
|
70
70
|
};
|
|
71
71
|
status: {
|
|
72
|
-
type:
|
|
72
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
summary: {
|
|
76
|
-
type:
|
|
76
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
77
77
|
isOptional: true;
|
|
78
78
|
};
|
|
79
|
-
}>,
|
|
79
|
+
}>, _contractspec_lib_schema287.SchemaModel<{
|
|
80
80
|
id: {
|
|
81
|
-
type:
|
|
81
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
82
82
|
isOptional: false;
|
|
83
83
|
};
|
|
84
84
|
spaceId: {
|
|
85
|
-
type:
|
|
85
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
86
86
|
isOptional: false;
|
|
87
87
|
};
|
|
88
88
|
title: {
|
|
89
|
-
type:
|
|
89
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
90
90
|
isOptional: false;
|
|
91
91
|
};
|
|
92
92
|
cadence: {
|
|
93
|
-
type:
|
|
93
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
94
94
|
isOptional: false;
|
|
95
95
|
};
|
|
96
96
|
dayOfWeek: {
|
|
97
|
-
type:
|
|
97
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
98
98
|
isOptional: true;
|
|
99
99
|
};
|
|
100
100
|
time: {
|
|
101
|
-
type:
|
|
101
|
+
type: _contractspec_lib_schema287.FieldType<string, string>;
|
|
102
102
|
isOptional: true;
|
|
103
103
|
};
|
|
104
104
|
}>, undefined>;
|
|
@@ -1,82 +1,82 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema257 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/ritual/ritual.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Recurring ritual.
|
|
6
6
|
*/
|
|
7
|
-
declare const RitualModel:
|
|
7
|
+
declare const RitualModel: _contractspec_lib_schema257.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
spaceId: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
title: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
18
18
|
isOptional: false;
|
|
19
19
|
};
|
|
20
20
|
cadence: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
dayOfWeek: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
26
26
|
isOptional: true;
|
|
27
27
|
};
|
|
28
28
|
time: {
|
|
29
|
-
type:
|
|
29
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
30
30
|
isOptional: true;
|
|
31
31
|
};
|
|
32
32
|
}>;
|
|
33
33
|
/**
|
|
34
34
|
* Input for scheduling a ritual.
|
|
35
35
|
*/
|
|
36
|
-
declare const ScheduleRitualInputModel:
|
|
36
|
+
declare const ScheduleRitualInputModel: _contractspec_lib_schema257.SchemaModel<{
|
|
37
37
|
spaceId: {
|
|
38
|
-
type:
|
|
38
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
title: {
|
|
42
|
-
type:
|
|
42
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
cadence: {
|
|
46
|
-
type:
|
|
46
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
dayOfWeek: {
|
|
50
|
-
type:
|
|
50
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
51
51
|
isOptional: true;
|
|
52
52
|
};
|
|
53
53
|
time: {
|
|
54
|
-
type:
|
|
54
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
facilitatorId: {
|
|
58
|
-
type:
|
|
58
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
59
59
|
isOptional: true;
|
|
60
60
|
};
|
|
61
61
|
}>;
|
|
62
62
|
/**
|
|
63
63
|
* Input for logging ritual occurrence.
|
|
64
64
|
*/
|
|
65
|
-
declare const LogRitualOccurrenceInputModel:
|
|
65
|
+
declare const LogRitualOccurrenceInputModel: _contractspec_lib_schema257.SchemaModel<{
|
|
66
66
|
ritualId: {
|
|
67
|
-
type:
|
|
67
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
scheduledFor: {
|
|
71
|
-
type:
|
|
71
|
+
type: _contractspec_lib_schema257.FieldType<Date, string>;
|
|
72
72
|
isOptional: false;
|
|
73
73
|
};
|
|
74
74
|
status: {
|
|
75
|
-
type:
|
|
75
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
76
76
|
isOptional: false;
|
|
77
77
|
};
|
|
78
78
|
summary: {
|
|
79
|
-
type:
|
|
79
|
+
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
80
80
|
isOptional: true;
|
|
81
81
|
};
|
|
82
82
|
}>;
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema276 from "@contractspec/lib.schema";
|
|
2
|
+
import * as _contractspec_lib_contracts23 from "@contractspec/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/space/space.operations.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Create a new team space.
|
|
7
7
|
*/
|
|
8
|
-
declare const CreateSpaceContract:
|
|
8
|
+
declare const CreateSpaceContract: _contractspec_lib_contracts23.OperationSpec<_contractspec_lib_schema276.SchemaModel<{
|
|
9
9
|
name: {
|
|
10
|
-
type:
|
|
10
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
description: {
|
|
14
|
-
type:
|
|
14
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
15
15
|
isOptional: true;
|
|
16
16
|
};
|
|
17
17
|
orgId: {
|
|
18
|
-
type:
|
|
18
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
ownerId: {
|
|
22
|
-
type:
|
|
22
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
|
-
}>,
|
|
25
|
+
}>, _contractspec_lib_schema276.SchemaModel<{
|
|
26
26
|
id: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
name: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
description: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
36
36
|
isOptional: true;
|
|
37
37
|
};
|
|
38
38
|
orgId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
ownerId: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema276.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
}>, undefined>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts14 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/team-hub.capability.d.ts
|
|
4
|
-
declare const TasksCapability:
|
|
5
|
-
declare const RitualsCapability:
|
|
6
|
-
declare const AnnouncementsCapability:
|
|
4
|
+
declare const TasksCapability: _contractspec_lib_contracts14.CapabilitySpec;
|
|
5
|
+
declare const RitualsCapability: _contractspec_lib_contracts14.CapabilitySpec;
|
|
6
|
+
declare const AnnouncementsCapability: _contractspec_lib_contracts14.CapabilitySpec;
|
|
7
7
|
//#endregion
|
|
8
8
|
export { AnnouncementsCapability, RitualsCapability, TasksCapability };
|
|
9
9
|
//# sourceMappingURL=team-hub.capability.d.ts.map
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/team-hub.feature.d.ts
|
|
4
|
-
declare const TeamHubFeature:
|
|
4
|
+
declare const TeamHubFeature: _contractspec_lib_contracts0.FeatureModuleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { TeamHubFeature };
|
|
7
7
|
//# sourceMappingURL=team-hub.feature.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"team-hub.feature.d.ts","names":[],"sources":["../src/team-hub.feature.ts"],"sourcesContent":[],"mappings":";;;cAEa,gBAgEX,
|
|
1
|
+
{"version":3,"file":"team-hub.feature.d.ts","names":[],"sources":["../src/team-hub.feature.ts"],"sourcesContent":[],"mappings":";;;cAEa,gBAgEX,4BAAA,CAhEyB"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.team-hub",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.55.0",
|
|
4
4
|
"description": "Team Hub example with spaces, tasks, rituals, and announcements",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"type": "module",
|
|
@@ -17,12 +17,12 @@
|
|
|
17
17
|
"lint:check": "eslint src"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@contractspec/lib.schema": "1.
|
|
21
|
-
"@contractspec/lib.contracts": "1.
|
|
20
|
+
"@contractspec/lib.schema": "1.55.0",
|
|
21
|
+
"@contractspec/lib.contracts": "1.55.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@contractspec/tool.typescript": "1.
|
|
25
|
-
"@contractspec/tool.tsdown": "1.
|
|
24
|
+
"@contractspec/tool.typescript": "1.55.0",
|
|
25
|
+
"@contractspec/tool.tsdown": "1.55.0",
|
|
26
26
|
"typescript": "^5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|