@contractspec/example.team-hub 1.56.1 → 1.58.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.
Files changed (138) hide show
  1. package/dist/announcement/announcement.operations.d.ts +50 -56
  2. package/dist/announcement/announcement.operations.d.ts.map +1 -1
  3. package/dist/announcement/announcement.operations.js +70 -51
  4. package/dist/announcement/announcement.schema.d.ts +50 -55
  5. package/dist/announcement/announcement.schema.d.ts.map +1 -1
  6. package/dist/announcement/announcement.schema.js +29 -71
  7. package/dist/announcement/index.d.ts +6 -3
  8. package/dist/announcement/index.d.ts.map +1 -0
  9. package/dist/announcement/index.js +73 -3
  10. package/dist/browser/announcement/announcement.operations.js +71 -0
  11. package/dist/browser/announcement/announcement.schema.js +30 -0
  12. package/dist/browser/announcement/index.js +73 -0
  13. package/dist/browser/docs/index.js +94 -0
  14. package/dist/browser/docs/team-hub.docblock.js +94 -0
  15. package/dist/browser/entities/index.js +231 -0
  16. package/dist/browser/events.js +134 -0
  17. package/dist/browser/example.js +42 -0
  18. package/dist/browser/handlers/index.js +5 -0
  19. package/dist/browser/index.js +642 -0
  20. package/dist/browser/presentations/index.js +131 -0
  21. package/dist/browser/presentations/team-hub.presentation.js +131 -0
  22. package/dist/browser/presentations.js +148 -0
  23. package/dist/browser/ritual/index.js +124 -0
  24. package/dist/browser/ritual/ritual.operations.js +121 -0
  25. package/dist/browser/ritual/ritual.schema.js +41 -0
  26. package/dist/browser/space/index.js +66 -0
  27. package/dist/browser/space/space.operations.js +64 -0
  28. package/dist/browser/space/space.schema.js +27 -0
  29. package/dist/browser/task/index.js +171 -0
  30. package/dist/browser/task/task.operations.js +168 -0
  31. package/dist/browser/task/task.schema.js +40 -0
  32. package/dist/browser/team-hub.capability.js +40 -0
  33. package/dist/browser/team-hub.feature.js +69 -0
  34. package/dist/docs/index.d.ts +2 -1
  35. package/dist/docs/index.d.ts.map +1 -0
  36. package/dist/docs/index.js +95 -1
  37. package/dist/docs/team-hub.docblock.d.ts +2 -1
  38. package/dist/docs/team-hub.docblock.d.ts.map +1 -0
  39. package/dist/docs/team-hub.docblock.js +45 -56
  40. package/dist/entities/index.d.ts +138 -143
  41. package/dist/entities/index.d.ts.map +1 -1
  42. package/dist/entities/index.js +221 -252
  43. package/dist/events.d.ts +217 -223
  44. package/dist/events.d.ts.map +1 -1
  45. package/dist/events.js +122 -201
  46. package/dist/example.d.ts +2 -6
  47. package/dist/example.d.ts.map +1 -1
  48. package/dist/example.js +40 -55
  49. package/dist/handlers/index.d.ts +1 -4
  50. package/dist/handlers/index.d.ts.map +1 -1
  51. package/dist/handlers/index.js +5 -8
  52. package/dist/index.d.ts +12 -15
  53. package/dist/index.d.ts.map +1 -0
  54. package/dist/index.js +642 -15
  55. package/dist/node/announcement/announcement.operations.js +71 -0
  56. package/dist/node/announcement/announcement.schema.js +30 -0
  57. package/dist/node/announcement/index.js +73 -0
  58. package/dist/node/docs/index.js +94 -0
  59. package/dist/node/docs/team-hub.docblock.js +94 -0
  60. package/dist/node/entities/index.js +231 -0
  61. package/dist/node/events.js +134 -0
  62. package/dist/node/example.js +42 -0
  63. package/dist/node/handlers/index.js +5 -0
  64. package/dist/node/index.js +642 -0
  65. package/dist/node/presentations/index.js +131 -0
  66. package/dist/node/presentations/team-hub.presentation.js +131 -0
  67. package/dist/node/presentations.js +148 -0
  68. package/dist/node/ritual/index.js +124 -0
  69. package/dist/node/ritual/ritual.operations.js +121 -0
  70. package/dist/node/ritual/ritual.schema.js +41 -0
  71. package/dist/node/space/index.js +66 -0
  72. package/dist/node/space/space.operations.js +64 -0
  73. package/dist/node/space/space.schema.js +27 -0
  74. package/dist/node/task/index.js +171 -0
  75. package/dist/node/task/task.operations.js +168 -0
  76. package/dist/node/task/task.schema.js +40 -0
  77. package/dist/node/team-hub.capability.js +40 -0
  78. package/dist/node/team-hub.feature.js +69 -0
  79. package/dist/presentations/index.d.ts +2 -2
  80. package/dist/presentations/index.d.ts.map +1 -0
  81. package/dist/presentations/index.js +132 -3
  82. package/dist/presentations/team-hub.presentation.d.ts +6 -11
  83. package/dist/presentations/team-hub.presentation.d.ts.map +1 -1
  84. package/dist/presentations/team-hub.presentation.js +126 -125
  85. package/dist/presentations.d.ts +7 -11
  86. package/dist/presentations.d.ts.map +1 -1
  87. package/dist/presentations.js +142 -147
  88. package/dist/ritual/index.d.ts +6 -3
  89. package/dist/ritual/index.d.ts.map +1 -0
  90. package/dist/ritual/index.js +124 -3
  91. package/dist/ritual/ritual.operations.d.ts +92 -98
  92. package/dist/ritual/ritual.operations.d.ts.map +1 -1
  93. package/dist/ritual/ritual.operations.js +119 -95
  94. package/dist/ritual/ritual.schema.d.ts +67 -72
  95. package/dist/ritual/ritual.schema.d.ts.map +1 -1
  96. package/dist/ritual/ritual.schema.js +39 -95
  97. package/dist/space/index.d.ts +6 -3
  98. package/dist/space/index.d.ts.map +1 -0
  99. package/dist/space/index.js +66 -3
  100. package/dist/space/space.operations.d.ts +38 -44
  101. package/dist/space/space.operations.d.ts.map +1 -1
  102. package/dist/space/space.operations.js +63 -50
  103. package/dist/space/space.schema.d.ts +38 -43
  104. package/dist/space/space.schema.d.ts.map +1 -1
  105. package/dist/space/space.schema.js +26 -59
  106. package/dist/task/index.d.ts +6 -3
  107. package/dist/task/index.d.ts.map +1 -0
  108. package/dist/task/index.js +171 -3
  109. package/dist/task/task.operations.d.ts +212 -218
  110. package/dist/task/task.operations.d.ts.map +1 -1
  111. package/dist/task/task.operations.js +163 -174
  112. package/dist/task/task.schema.d.ts +63 -68
  113. package/dist/task/task.schema.d.ts.map +1 -1
  114. package/dist/task/task.schema.js +38 -91
  115. package/dist/team-hub.capability.d.ts +3 -8
  116. package/dist/team-hub.capability.d.ts.map +1 -1
  117. package/dist/team-hub.capability.js +41 -38
  118. package/dist/team-hub.feature.d.ts +1 -6
  119. package/dist/team-hub.feature.d.ts.map +1 -1
  120. package/dist/team-hub.feature.js +68 -159
  121. package/package.json +261 -57
  122. package/dist/announcement/announcement.operations.js.map +0 -1
  123. package/dist/announcement/announcement.schema.js.map +0 -1
  124. package/dist/docs/team-hub.docblock.js.map +0 -1
  125. package/dist/entities/index.js.map +0 -1
  126. package/dist/events.js.map +0 -1
  127. package/dist/example.js.map +0 -1
  128. package/dist/handlers/index.js.map +0 -1
  129. package/dist/presentations/team-hub.presentation.js.map +0 -1
  130. package/dist/presentations.js.map +0 -1
  131. package/dist/ritual/ritual.operations.js.map +0 -1
  132. package/dist/ritual/ritual.schema.js.map +0 -1
  133. package/dist/space/space.operations.js.map +0 -1
  134. package/dist/space/space.schema.js.map +0 -1
  135. package/dist/task/task.operations.js.map +0 -1
  136. package/dist/task/task.schema.js.map +0 -1
  137. package/dist/team-hub.capability.js.map +0 -1
  138. package/dist/team-hub.feature.js.map +0 -1
package/dist/events.js CHANGED
@@ -1,214 +1,135 @@
1
+ // @bun
2
+ // src/events.ts
1
3
  import { ScalarTypeEnum, defineSchemaModel } from "@contractspec/lib.schema";
2
4
  import { defineEvent } from "@contractspec/lib.contracts";
3
-
4
- //#region src/events.ts
5
- const SpaceEventPayload = defineSchemaModel({
6
- name: "SpaceEventPayload",
7
- description: "Payload for space events",
8
- fields: {
9
- spaceId: {
10
- type: ScalarTypeEnum.String_unsecure(),
11
- isOptional: false
12
- },
13
- orgId: {
14
- type: ScalarTypeEnum.String_unsecure(),
15
- isOptional: false
16
- },
17
- ownerId: {
18
- type: ScalarTypeEnum.String_unsecure(),
19
- isOptional: false
20
- },
21
- timestamp: {
22
- type: ScalarTypeEnum.DateTime(),
23
- isOptional: false
24
- }
25
- }
5
+ var SpaceEventPayload = defineSchemaModel({
6
+ name: "SpaceEventPayload",
7
+ description: "Payload for space events",
8
+ fields: {
9
+ spaceId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
10
+ orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
11
+ ownerId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
12
+ timestamp: { type: ScalarTypeEnum.DateTime(), isOptional: false }
13
+ }
26
14
  });
27
- const TaskEventPayload = defineSchemaModel({
28
- name: "TaskEventPayload",
29
- description: "Payload for task events",
30
- fields: {
31
- taskId: {
32
- type: ScalarTypeEnum.String_unsecure(),
33
- isOptional: false
34
- },
35
- spaceId: {
36
- type: ScalarTypeEnum.String_unsecure(),
37
- isOptional: false
38
- },
39
- status: {
40
- type: ScalarTypeEnum.String_unsecure(),
41
- isOptional: false
42
- },
43
- assigneeId: {
44
- type: ScalarTypeEnum.String_unsecure(),
45
- isOptional: true
46
- },
47
- orgId: {
48
- type: ScalarTypeEnum.String_unsecure(),
49
- isOptional: false
50
- },
51
- timestamp: {
52
- type: ScalarTypeEnum.DateTime(),
53
- isOptional: false
54
- }
55
- }
15
+ var TaskEventPayload = defineSchemaModel({
16
+ name: "TaskEventPayload",
17
+ description: "Payload for task events",
18
+ fields: {
19
+ taskId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
20
+ spaceId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
21
+ status: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
22
+ assigneeId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
23
+ orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
24
+ timestamp: { type: ScalarTypeEnum.DateTime(), isOptional: false }
25
+ }
56
26
  });
57
- const RitualEventPayload = defineSchemaModel({
58
- name: "RitualEventPayload",
59
- description: "Payload for ritual events",
60
- fields: {
61
- ritualId: {
62
- type: ScalarTypeEnum.String_unsecure(),
63
- isOptional: false
64
- },
65
- spaceId: {
66
- type: ScalarTypeEnum.String_unsecure(),
67
- isOptional: false
68
- },
69
- scheduledFor: {
70
- type: ScalarTypeEnum.DateTime(),
71
- isOptional: false
72
- },
73
- status: {
74
- type: ScalarTypeEnum.String_unsecure(),
75
- isOptional: false
76
- },
77
- orgId: {
78
- type: ScalarTypeEnum.String_unsecure(),
79
- isOptional: false
80
- }
81
- }
27
+ var RitualEventPayload = defineSchemaModel({
28
+ name: "RitualEventPayload",
29
+ description: "Payload for ritual events",
30
+ fields: {
31
+ ritualId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
32
+ spaceId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
33
+ scheduledFor: { type: ScalarTypeEnum.DateTime(), isOptional: false },
34
+ status: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
35
+ orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false }
36
+ }
82
37
  });
83
- const AnnouncementPayload = defineSchemaModel({
84
- name: "AnnouncementPayload",
85
- description: "Payload for announcements",
86
- fields: {
87
- announcementId: {
88
- type: ScalarTypeEnum.String_unsecure(),
89
- isOptional: false
90
- },
91
- spaceId: {
92
- type: ScalarTypeEnum.String_unsecure(),
93
- isOptional: true
94
- },
95
- audience: {
96
- type: ScalarTypeEnum.String_unsecure(),
97
- isOptional: false
98
- },
99
- orgId: {
100
- type: ScalarTypeEnum.String_unsecure(),
101
- isOptional: false
102
- },
103
- createdBy: {
104
- type: ScalarTypeEnum.String_unsecure(),
105
- isOptional: false
106
- },
107
- createdAt: {
108
- type: ScalarTypeEnum.DateTime(),
109
- isOptional: false
110
- }
111
- }
38
+ var AnnouncementPayload = defineSchemaModel({
39
+ name: "AnnouncementPayload",
40
+ description: "Payload for announcements",
41
+ fields: {
42
+ announcementId: {
43
+ type: ScalarTypeEnum.String_unsecure(),
44
+ isOptional: false
45
+ },
46
+ spaceId: { type: ScalarTypeEnum.String_unsecure(), isOptional: true },
47
+ audience: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
48
+ orgId: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
49
+ createdBy: { type: ScalarTypeEnum.String_unsecure(), isOptional: false },
50
+ createdAt: { type: ScalarTypeEnum.DateTime(), isOptional: false }
51
+ }
112
52
  });
113
- const SpaceCreatedEvent = defineEvent({
114
- meta: {
115
- key: "team.space.created",
116
- version: "1.0.0",
117
- description: "A space was created.",
118
- stability: "stable",
119
- owners: ["@team-hub"],
120
- tags: [
121
- "team",
122
- "space",
123
- "created"
124
- ]
125
- },
126
- payload: SpaceEventPayload
53
+ var SpaceCreatedEvent = defineEvent({
54
+ meta: {
55
+ key: "team.space.created",
56
+ version: "1.0.0",
57
+ description: "A space was created.",
58
+ stability: "stable",
59
+ owners: ["@team-hub"],
60
+ tags: ["team", "space", "created"]
61
+ },
62
+ payload: SpaceEventPayload
127
63
  });
128
- const TaskCreatedEvent = defineEvent({
129
- meta: {
130
- key: "team.task.created",
131
- version: "1.0.0",
132
- description: "A task was created.",
133
- stability: "stable",
134
- owners: ["@team-hub"],
135
- tags: [
136
- "team",
137
- "task",
138
- "created"
139
- ]
140
- },
141
- payload: TaskEventPayload
64
+ var TaskCreatedEvent = defineEvent({
65
+ meta: {
66
+ key: "team.task.created",
67
+ version: "1.0.0",
68
+ description: "A task was created.",
69
+ stability: "stable",
70
+ owners: ["@team-hub"],
71
+ tags: ["team", "task", "created"]
72
+ },
73
+ payload: TaskEventPayload
142
74
  });
143
- const TaskStatusChangedEvent = defineEvent({
144
- meta: {
145
- key: "team.task.status_changed",
146
- version: "1.0.0",
147
- description: "A task status changed.",
148
- stability: "stable",
149
- owners: ["@team-hub"],
150
- tags: [
151
- "team",
152
- "task",
153
- "status_changed"
154
- ]
155
- },
156
- payload: TaskEventPayload
75
+ var TaskStatusChangedEvent = defineEvent({
76
+ meta: {
77
+ key: "team.task.status_changed",
78
+ version: "1.0.0",
79
+ description: "A task status changed.",
80
+ stability: "stable",
81
+ owners: ["@team-hub"],
82
+ tags: ["team", "task", "status_changed"]
83
+ },
84
+ payload: TaskEventPayload
157
85
  });
158
- const RitualScheduledEvent = defineEvent({
159
- meta: {
160
- key: "team.ritual.scheduled",
161
- version: "1.0.0",
162
- description: "A ritual was scheduled.",
163
- stability: "stable",
164
- owners: ["@team-hub"],
165
- tags: [
166
- "team",
167
- "ritual",
168
- "scheduled"
169
- ]
170
- },
171
- payload: RitualEventPayload
86
+ var RitualScheduledEvent = defineEvent({
87
+ meta: {
88
+ key: "team.ritual.scheduled",
89
+ version: "1.0.0",
90
+ description: "A ritual was scheduled.",
91
+ stability: "stable",
92
+ owners: ["@team-hub"],
93
+ tags: ["team", "ritual", "scheduled"]
94
+ },
95
+ payload: RitualEventPayload
172
96
  });
173
- const RitualOccurredEvent = defineEvent({
174
- meta: {
175
- key: "team.ritual.occurred",
176
- version: "1.0.0",
177
- description: "A ritual occurrence was logged.",
178
- stability: "stable",
179
- owners: ["@team-hub"],
180
- tags: [
181
- "team",
182
- "ritual",
183
- "occurred"
184
- ]
185
- },
186
- payload: RitualEventPayload
97
+ var RitualOccurredEvent = defineEvent({
98
+ meta: {
99
+ key: "team.ritual.occurred",
100
+ version: "1.0.0",
101
+ description: "A ritual occurrence was logged.",
102
+ stability: "stable",
103
+ owners: ["@team-hub"],
104
+ tags: ["team", "ritual", "occurred"]
105
+ },
106
+ payload: RitualEventPayload
187
107
  });
188
- const AnnouncementPostedEvent = defineEvent({
189
- meta: {
190
- key: "team.announcement.posted",
191
- version: "1.0.0",
192
- description: "An announcement was posted.",
193
- stability: "stable",
194
- owners: ["@team-hub"],
195
- tags: [
196
- "team",
197
- "announcement",
198
- "posted"
199
- ]
200
- },
201
- payload: AnnouncementPayload
108
+ var AnnouncementPostedEvent = defineEvent({
109
+ meta: {
110
+ key: "team.announcement.posted",
111
+ version: "1.0.0",
112
+ description: "An announcement was posted.",
113
+ stability: "stable",
114
+ owners: ["@team-hub"],
115
+ tags: ["team", "announcement", "posted"]
116
+ },
117
+ payload: AnnouncementPayload
202
118
  });
203
- const TeamHubEvents = {
204
- SpaceCreatedEvent,
205
- TaskCreatedEvent,
206
- TaskStatusChangedEvent,
207
- RitualScheduledEvent,
208
- RitualOccurredEvent,
209
- AnnouncementPostedEvent
119
+ var TeamHubEvents = {
120
+ SpaceCreatedEvent,
121
+ TaskCreatedEvent,
122
+ TaskStatusChangedEvent,
123
+ RitualScheduledEvent,
124
+ RitualOccurredEvent,
125
+ AnnouncementPostedEvent
126
+ };
127
+ export {
128
+ TeamHubEvents,
129
+ TaskStatusChangedEvent,
130
+ TaskCreatedEvent,
131
+ SpaceCreatedEvent,
132
+ RitualScheduledEvent,
133
+ RitualOccurredEvent,
134
+ AnnouncementPostedEvent
210
135
  };
211
-
212
- //#endregion
213
- export { AnnouncementPostedEvent, RitualOccurredEvent, RitualScheduledEvent, SpaceCreatedEvent, TaskCreatedEvent, TaskStatusChangedEvent, TeamHubEvents };
214
- //# sourceMappingURL=events.js.map
package/dist/example.d.ts CHANGED
@@ -1,7 +1,3 @@
1
- import * as _contractspec_lib_contracts11 from "@contractspec/lib.contracts";
2
-
3
- //#region src/example.d.ts
4
- declare const example: _contractspec_lib_contracts11.ExampleSpec;
5
- //#endregion
6
- export { example as default };
1
+ declare const example: import("@contractspec/lib.contracts").ExampleSpec;
2
+ export default example;
7
3
  //# sourceMappingURL=example.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"example.d.ts","names":[],"sources":["../src/example.ts"],"sourcesContent":[],"mappings":";;;cAEM,SAoCJ,6BAAA,CApCW"}
1
+ {"version":3,"file":"example.d.ts","sourceRoot":"","sources":["../src/example.ts"],"names":[],"mappings":"AAEA,QAAA,MAAM,OAAO,mDAoCX,CAAC;AAEH,eAAe,OAAO,CAAC"}
package/dist/example.js CHANGED
@@ -1,58 +1,43 @@
1
+ // @bun
2
+ // src/example.ts
1
3
  import { defineExample } from "@contractspec/lib.contracts";
2
-
3
- //#region src/example.ts
4
- const example = defineExample({
5
- meta: {
6
- key: "team-hub",
7
- version: "1.0.0",
8
- title: "Team Hub",
9
- description: "Internal collaboration hub with spaces, tasks, rituals, and announcements.",
10
- kind: "template",
11
- visibility: "public",
12
- stability: "experimental",
13
- owners: ["@platform.core"],
14
- tags: [
15
- "tasks",
16
- "rituals",
17
- "announcements",
18
- "collaboration"
19
- ]
20
- },
21
- docs: {
22
- rootDocId: "docs.examples.team-hub",
23
- goalDocId: "docs.examples.team-hub.goal",
24
- usageDocId: "docs.examples.team-hub.usage",
25
- constraintsDocId: "docs.examples.team-hub.constraints"
26
- },
27
- entrypoints: {
28
- packageName: "@contractspec/example.team-hub",
29
- feature: "./feature",
30
- contracts: "./contracts",
31
- presentations: "./presentations",
32
- handlers: "./handlers",
33
- docs: "./docs"
34
- },
35
- surfaces: {
36
- templates: true,
37
- sandbox: {
38
- enabled: true,
39
- modes: [
40
- "playground",
41
- "specs",
42
- "builder",
43
- "markdown",
44
- "evolution"
45
- ]
46
- },
47
- studio: {
48
- enabled: true,
49
- installable: true
50
- },
51
- mcp: { enabled: true }
52
- }
4
+ var example = defineExample({
5
+ meta: {
6
+ key: "team-hub",
7
+ version: "1.0.0",
8
+ title: "Team Hub",
9
+ description: "Internal collaboration hub with spaces, tasks, rituals, and announcements.",
10
+ kind: "template",
11
+ visibility: "public",
12
+ stability: "experimental",
13
+ owners: ["@platform.core"],
14
+ tags: ["tasks", "rituals", "announcements", "collaboration"]
15
+ },
16
+ docs: {
17
+ rootDocId: "docs.examples.team-hub",
18
+ goalDocId: "docs.examples.team-hub.goal",
19
+ usageDocId: "docs.examples.team-hub.usage",
20
+ constraintsDocId: "docs.examples.team-hub.constraints"
21
+ },
22
+ entrypoints: {
23
+ packageName: "@contractspec/example.team-hub",
24
+ feature: "./feature",
25
+ contracts: "./contracts",
26
+ presentations: "./presentations",
27
+ handlers: "./handlers",
28
+ docs: "./docs"
29
+ },
30
+ surfaces: {
31
+ templates: true,
32
+ sandbox: {
33
+ enabled: true,
34
+ modes: ["playground", "specs", "builder", "markdown", "evolution"]
35
+ },
36
+ studio: { enabled: true, installable: true },
37
+ mcp: { enabled: true }
38
+ }
53
39
  });
54
40
  var example_default = example;
55
-
56
- //#endregion
57
- export { example_default as default };
58
- //# sourceMappingURL=example.js.map
41
+ export {
42
+ example_default as default
43
+ };
@@ -1,8 +1,5 @@
1
- //#region src/handlers/index.d.ts
2
1
  /**
3
2
  * Placeholder handler registry for Team Hub contracts.
4
3
  */
5
- declare function registerTeamHubHandlers(): void;
6
- //#endregion
7
- export { registerTeamHubHandlers };
4
+ export declare function registerTeamHubHandlers(): void;
8
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","names":[],"sources":["../../src/handlers/index.ts"],"sourcesContent":[],"mappings":";;AAIA;;iBAAgB,uBAAA,CAAA"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/handlers/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,wBAAgB,uBAAuB,SAEtC"}
@@ -1,9 +1,6 @@
1
- //#region src/handlers/index.ts
2
- /**
3
- * Placeholder handler registry for Team Hub contracts.
4
- */
1
+ // @bun
2
+ // src/handlers/index.ts
5
3
  function registerTeamHubHandlers() {}
6
-
7
- //#endregion
8
- export { registerTeamHubHandlers };
9
- //# sourceMappingURL=index.js.map
4
+ export {
5
+ registerTeamHubHandlers
6
+ };
package/dist/index.d.ts CHANGED
@@ -1,15 +1,12 @@
1
- import { PostAnnouncementContract } from "./announcement/announcement.operations.js";
2
- import { AnnouncementModel, PostAnnouncementInputModel } from "./announcement/announcement.schema.js";
3
- import "./announcement/index.js";
4
- import { CreateSpaceInputModel, SpaceModel } from "./space/space.schema.js";
5
- import { CreateSpaceContract } from "./space/space.operations.js";
6
- import "./space/index.js";
7
- import { CreateTaskInputModel, TaskModel, UpdateTaskStatusInputModel } from "./task/task.schema.js";
8
- import { CreateTaskContract, ListTasksInputModel, ListTasksOperation, ListTasksOutputModel, UpdateTaskStatusContract } from "./task/task.operations.js";
9
- import "./task/index.js";
10
- import { LogRitualOccurrenceInputModel, RitualModel, ScheduleRitualInputModel } from "./ritual/ritual.schema.js";
11
- import { LogRitualOccurrenceContract, ScheduleRitualContract } from "./ritual/ritual.operations.js";
12
- import "./ritual/index.js";
13
- import { AnnouncementFeedPresentation, RitualCalendarPresentation, SpaceListPresentation, TaskBoardPresentation, TaskDetailPresentation, TeamDashboardPresentation } from "./presentations.js";
14
- import { TeamHubFeature } from "./team-hub.feature.js";
15
- export { AnnouncementFeedPresentation, AnnouncementModel, CreateSpaceContract, CreateSpaceInputModel, CreateTaskContract, CreateTaskInputModel, ListTasksInputModel, ListTasksOperation, ListTasksOutputModel, LogRitualOccurrenceContract, LogRitualOccurrenceInputModel, PostAnnouncementContract, PostAnnouncementInputModel, RitualCalendarPresentation, RitualModel, ScheduleRitualContract, ScheduleRitualInputModel, SpaceListPresentation, SpaceModel, TaskBoardPresentation, TaskDetailPresentation, TaskModel, TeamDashboardPresentation, TeamHubFeature, UpdateTaskStatusContract, UpdateTaskStatusInputModel };
1
+ /**
2
+ * Team Hub Example
3
+ *
4
+ * Demonstrates a complete team collaboration platform with spaces, tasks, rituals, and announcements.
5
+ */
6
+ export * from './space';
7
+ export * from './task';
8
+ export * from './ritual';
9
+ export * from './announcement';
10
+ export * from './presentations';
11
+ export * from './team-hub.feature';
12
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAGH,cAAc,SAAS,CAAC;AACxB,cAAc,QAAQ,CAAC;AACvB,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAE/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,oBAAoB,CAAC"}