@contractspec/example.team-hub 1.57.0 → 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.
- package/dist/announcement/announcement.operations.d.ts +50 -56
- package/dist/announcement/announcement.operations.d.ts.map +1 -1
- package/dist/announcement/announcement.operations.js +70 -51
- package/dist/announcement/announcement.schema.d.ts +50 -55
- package/dist/announcement/announcement.schema.d.ts.map +1 -1
- package/dist/announcement/announcement.schema.js +29 -71
- package/dist/announcement/index.d.ts +6 -3
- package/dist/announcement/index.d.ts.map +1 -0
- package/dist/announcement/index.js +73 -3
- package/dist/browser/announcement/announcement.operations.js +71 -0
- package/dist/browser/announcement/announcement.schema.js +30 -0
- package/dist/browser/announcement/index.js +73 -0
- package/dist/browser/docs/index.js +94 -0
- package/dist/browser/docs/team-hub.docblock.js +94 -0
- package/dist/browser/entities/index.js +231 -0
- package/dist/browser/events.js +134 -0
- package/dist/browser/example.js +42 -0
- package/dist/browser/handlers/index.js +5 -0
- package/dist/browser/index.js +642 -0
- package/dist/browser/presentations/index.js +131 -0
- package/dist/browser/presentations/team-hub.presentation.js +131 -0
- package/dist/browser/presentations.js +148 -0
- package/dist/browser/ritual/index.js +124 -0
- package/dist/browser/ritual/ritual.operations.js +121 -0
- package/dist/browser/ritual/ritual.schema.js +41 -0
- package/dist/browser/space/index.js +66 -0
- package/dist/browser/space/space.operations.js +64 -0
- package/dist/browser/space/space.schema.js +27 -0
- package/dist/browser/task/index.js +171 -0
- package/dist/browser/task/task.operations.js +168 -0
- package/dist/browser/task/task.schema.js +40 -0
- package/dist/browser/team-hub.capability.js +40 -0
- package/dist/browser/team-hub.feature.js +69 -0
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +95 -1
- package/dist/docs/team-hub.docblock.d.ts +2 -1
- package/dist/docs/team-hub.docblock.d.ts.map +1 -0
- package/dist/docs/team-hub.docblock.js +45 -56
- package/dist/entities/index.d.ts +138 -143
- package/dist/entities/index.d.ts.map +1 -1
- package/dist/entities/index.js +221 -252
- package/dist/events.d.ts +217 -223
- package/dist/events.d.ts.map +1 -1
- package/dist/events.js +122 -201
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +41 -55
- package/dist/handlers/index.d.ts +1 -4
- package/dist/handlers/index.d.ts.map +1 -1
- package/dist/handlers/index.js +5 -8
- package/dist/index.d.ts +12 -15
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +642 -15
- package/dist/node/announcement/announcement.operations.js +71 -0
- package/dist/node/announcement/announcement.schema.js +30 -0
- package/dist/node/announcement/index.js +73 -0
- package/dist/node/docs/index.js +94 -0
- package/dist/node/docs/team-hub.docblock.js +94 -0
- package/dist/node/entities/index.js +231 -0
- package/dist/node/events.js +134 -0
- package/dist/node/example.js +42 -0
- package/dist/node/handlers/index.js +5 -0
- package/dist/node/index.js +642 -0
- package/dist/node/presentations/index.js +131 -0
- package/dist/node/presentations/team-hub.presentation.js +131 -0
- package/dist/node/presentations.js +148 -0
- package/dist/node/ritual/index.js +124 -0
- package/dist/node/ritual/ritual.operations.js +121 -0
- package/dist/node/ritual/ritual.schema.js +41 -0
- package/dist/node/space/index.js +66 -0
- package/dist/node/space/space.operations.js +64 -0
- package/dist/node/space/space.schema.js +27 -0
- package/dist/node/task/index.js +171 -0
- package/dist/node/task/task.operations.js +168 -0
- package/dist/node/task/task.schema.js +40 -0
- package/dist/node/team-hub.capability.js +40 -0
- package/dist/node/team-hub.feature.js +69 -0
- package/dist/presentations/index.d.ts +2 -2
- package/dist/presentations/index.d.ts.map +1 -0
- package/dist/presentations/index.js +132 -3
- package/dist/presentations/team-hub.presentation.d.ts +6 -11
- package/dist/presentations/team-hub.presentation.d.ts.map +1 -1
- package/dist/presentations/team-hub.presentation.js +126 -125
- package/dist/presentations.d.ts +7 -11
- package/dist/presentations.d.ts.map +1 -1
- package/dist/presentations.js +142 -147
- package/dist/ritual/index.d.ts +6 -3
- package/dist/ritual/index.d.ts.map +1 -0
- package/dist/ritual/index.js +124 -3
- package/dist/ritual/ritual.operations.d.ts +92 -98
- package/dist/ritual/ritual.operations.d.ts.map +1 -1
- package/dist/ritual/ritual.operations.js +119 -95
- package/dist/ritual/ritual.schema.d.ts +67 -72
- package/dist/ritual/ritual.schema.d.ts.map +1 -1
- package/dist/ritual/ritual.schema.js +39 -95
- package/dist/space/index.d.ts +6 -3
- package/dist/space/index.d.ts.map +1 -0
- package/dist/space/index.js +66 -3
- package/dist/space/space.operations.d.ts +38 -44
- package/dist/space/space.operations.d.ts.map +1 -1
- package/dist/space/space.operations.js +63 -50
- package/dist/space/space.schema.d.ts +38 -43
- package/dist/space/space.schema.d.ts.map +1 -1
- package/dist/space/space.schema.js +26 -59
- package/dist/task/index.d.ts +6 -3
- package/dist/task/index.d.ts.map +1 -0
- package/dist/task/index.js +171 -3
- package/dist/task/task.operations.d.ts +212 -218
- package/dist/task/task.operations.d.ts.map +1 -1
- package/dist/task/task.operations.js +163 -174
- package/dist/task/task.schema.d.ts +63 -68
- package/dist/task/task.schema.d.ts.map +1 -1
- package/dist/task/task.schema.js +38 -91
- package/dist/team-hub.capability.d.ts +3 -8
- package/dist/team-hub.capability.d.ts.map +1 -1
- package/dist/team-hub.capability.js +41 -38
- package/dist/team-hub.feature.d.ts +1 -6
- package/dist/team-hub.feature.d.ts.map +1 -1
- package/dist/team-hub.feature.js +68 -159
- package/package.json +261 -57
- package/dist/announcement/announcement.operations.js.map +0 -1
- package/dist/announcement/announcement.schema.js.map +0 -1
- package/dist/docs/team-hub.docblock.js.map +0 -1
- package/dist/entities/index.js.map +0 -1
- package/dist/events.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/index.js.map +0 -1
- package/dist/presentations/team-hub.presentation.js.map +0 -1
- package/dist/presentations.js.map +0 -1
- package/dist/ritual/ritual.operations.js.map +0 -1
- package/dist/ritual/ritual.schema.js.map +0 -1
- package/dist/space/space.operations.js.map +0 -1
- package/dist/space/space.schema.js.map +0 -1
- package/dist/task/task.operations.js.map +0 -1
- package/dist/task/task.schema.js.map +0 -1
- package/dist/team-hub.capability.js.map +0 -1
- package/dist/team-hub.feature.js.map +0 -1
package/dist/docs/index.js
CHANGED
|
@@ -1 +1,95 @@
|
|
|
1
|
-
|
|
1
|
+
// @bun
|
|
2
|
+
// src/docs/team-hub.docblock.ts
|
|
3
|
+
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
4
|
+
var teamHubDocBlocks = [
|
|
5
|
+
{
|
|
6
|
+
id: "docs.examples.team-hub",
|
|
7
|
+
title: "Team Hub",
|
|
8
|
+
summary: "Internal collaboration hub with spaces, tasks, rituals, and announcements.",
|
|
9
|
+
kind: "reference",
|
|
10
|
+
visibility: "public",
|
|
11
|
+
route: "/docs/examples/team-hub",
|
|
12
|
+
tags: ["tasks", "rituals", "announcements", "collaboration"],
|
|
13
|
+
body: `## Domains
|
|
14
|
+
|
|
15
|
+
- Spaces/projects with members and roles.
|
|
16
|
+
- Tasks with status, priority, assignees, due dates.
|
|
17
|
+
- Rituals (standups/retros/planning) with cadence and attendance.
|
|
18
|
+
- Announcements targeted by space or role.
|
|
19
|
+
|
|
20
|
+
## Modules reused
|
|
21
|
+
- Identity/RBAC for roles and membership
|
|
22
|
+
- Notifications for reminders and announcements
|
|
23
|
+
- Jobs for scheduling rituals/reminders
|
|
24
|
+
- Audit trail for state changes
|
|
25
|
+
|
|
26
|
+
## Presentations
|
|
27
|
+
- Dashboard, space list, task board/detail, ritual calendar, announcement feed.
|
|
28
|
+
`
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: "docs.examples.team-hub.goal",
|
|
32
|
+
title: "Team Hub \u2014 Goal",
|
|
33
|
+
summary: "Why this collaboration hub exists and outcomes it targets.",
|
|
34
|
+
kind: "goal",
|
|
35
|
+
visibility: "public",
|
|
36
|
+
route: "/docs/examples/team-hub/goal",
|
|
37
|
+
tags: ["collaboration", "goal"],
|
|
38
|
+
body: `## Why it matters
|
|
39
|
+
- Provides a regenerable hub for spaces, tasks, rituals, and announcements.
|
|
40
|
+
- Keeps ceremonies and task flows consistent across UI/API/events.
|
|
41
|
+
|
|
42
|
+
## Business/Product goal
|
|
43
|
+
- Support team rituals with reminders, visibility, and auditability.
|
|
44
|
+
- Enable staged rollouts of new rituals/boards via feature flags.
|
|
45
|
+
|
|
46
|
+
## Success criteria
|
|
47
|
+
- Tasks/rituals/announcements regenerate safely from spec updates.
|
|
48
|
+
- Notifications and audit hooks fire for key transitions.`
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
id: "docs.examples.team-hub.usage",
|
|
52
|
+
title: "Team Hub \u2014 Usage",
|
|
53
|
+
summary: "How to set up spaces, tasks, and rituals and regenerate safely.",
|
|
54
|
+
kind: "usage",
|
|
55
|
+
visibility: "public",
|
|
56
|
+
route: "/docs/examples/team-hub/usage",
|
|
57
|
+
tags: ["collaboration", "usage"],
|
|
58
|
+
body: `## Setup
|
|
59
|
+
1) Seed (if available) or create a space; add members and tasks; schedule rituals.
|
|
60
|
+
2) Configure Notifications for rituals/reminders and announcements; use Jobs for scheduling.
|
|
61
|
+
|
|
62
|
+
## Extend & regenerate
|
|
63
|
+
1) Adjust schemas: task priority/status, ritual cadence/attendance, announcement targeting.
|
|
64
|
+
2) Regenerate to update boards/calendars/feeds; mark PII paths as needed.
|
|
65
|
+
3) Use Feature Flags to trial new rituals or task views.
|
|
66
|
+
|
|
67
|
+
## Guardrails
|
|
68
|
+
- Emit events for task/ritual/announcement changes; log in Audit Trail.
|
|
69
|
+
- Keep ritual cadence declarative; avoid hardcoded schedules.
|
|
70
|
+
- Ensure announcements carry title/description for accessibility.`
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "docs.examples.team-hub.constraints",
|
|
74
|
+
title: "Team Hub \u2014 Constraints & Safety",
|
|
75
|
+
summary: "Internal guardrails for rituals, tasks, and announcements regeneration.",
|
|
76
|
+
kind: "reference",
|
|
77
|
+
visibility: "internal",
|
|
78
|
+
route: "/docs/examples/team-hub/constraints",
|
|
79
|
+
tags: ["collaboration", "constraints", "internal"],
|
|
80
|
+
body: `## Constraints
|
|
81
|
+
- Ritual cadence and task states must stay declarative in spec; no hardcoded schedules.
|
|
82
|
+
- Events to emit: task.created/updated/completed, ritual.scheduled/completed, announcement.published.
|
|
83
|
+
- Regeneration should not drop reminders or announcements routing.
|
|
84
|
+
|
|
85
|
+
## PII & A11y
|
|
86
|
+
- Mark PII (names/emails) for redaction in presentations.
|
|
87
|
+
- Announcements must include title/description; respect accessibility guidance.
|
|
88
|
+
|
|
89
|
+
## Verification
|
|
90
|
+
- Add fixtures for ritual cadence changes and announcement targeting.
|
|
91
|
+
- Ensure Notifications/Jobs wiring persists after regeneration.
|
|
92
|
+
- Use Feature Flags to trial new boards/rituals with safe defaults.`
|
|
93
|
+
}
|
|
94
|
+
];
|
|
95
|
+
registerDocBlocks(teamHubDocBlocks);
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
export {
|
|
1
|
+
export {};
|
|
2
|
+
//# sourceMappingURL=team-hub.docblock.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"team-hub.docblock.d.ts","sourceRoot":"","sources":["../../src/docs/team-hub.docblock.ts"],"names":[],"mappings":""}
|
|
@@ -1,21 +1,16 @@
|
|
|
1
|
+
// @bun
|
|
2
|
+
// src/docs/team-hub.docblock.ts
|
|
1
3
|
import { registerDocBlocks } from "@contractspec/lib.contracts/docs";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
tags: [
|
|
13
|
-
"tasks",
|
|
14
|
-
"rituals",
|
|
15
|
-
"announcements",
|
|
16
|
-
"collaboration"
|
|
17
|
-
],
|
|
18
|
-
body: `## Domains
|
|
4
|
+
var teamHubDocBlocks = [
|
|
5
|
+
{
|
|
6
|
+
id: "docs.examples.team-hub",
|
|
7
|
+
title: "Team Hub",
|
|
8
|
+
summary: "Internal collaboration hub with spaces, tasks, rituals, and announcements.",
|
|
9
|
+
kind: "reference",
|
|
10
|
+
visibility: "public",
|
|
11
|
+
route: "/docs/examples/team-hub",
|
|
12
|
+
tags: ["tasks", "rituals", "announcements", "collaboration"],
|
|
13
|
+
body: `## Domains
|
|
19
14
|
|
|
20
15
|
- Spaces/projects with members and roles.
|
|
21
16
|
- Tasks with status, priority, assignees, due dates.
|
|
@@ -31,16 +26,16 @@ registerDocBlocks([
|
|
|
31
26
|
## Presentations
|
|
32
27
|
- Dashboard, space list, task board/detail, ritual calendar, announcement feed.
|
|
33
28
|
`
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
id: "docs.examples.team-hub.goal",
|
|
32
|
+
title: "Team Hub \u2014 Goal",
|
|
33
|
+
summary: "Why this collaboration hub exists and outcomes it targets.",
|
|
34
|
+
kind: "goal",
|
|
35
|
+
visibility: "public",
|
|
36
|
+
route: "/docs/examples/team-hub/goal",
|
|
37
|
+
tags: ["collaboration", "goal"],
|
|
38
|
+
body: `## Why it matters
|
|
44
39
|
- Provides a regenerable hub for spaces, tasks, rituals, and announcements.
|
|
45
40
|
- Keeps ceremonies and task flows consistent across UI/API/events.
|
|
46
41
|
|
|
@@ -51,16 +46,16 @@ registerDocBlocks([
|
|
|
51
46
|
## Success criteria
|
|
52
47
|
- Tasks/rituals/announcements regenerate safely from spec updates.
|
|
53
48
|
- Notifications and audit hooks fire for key transitions.`
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
id: "docs.examples.team-hub.usage",
|
|
52
|
+
title: "Team Hub \u2014 Usage",
|
|
53
|
+
summary: "How to set up spaces, tasks, and rituals and regenerate safely.",
|
|
54
|
+
kind: "usage",
|
|
55
|
+
visibility: "public",
|
|
56
|
+
route: "/docs/examples/team-hub/usage",
|
|
57
|
+
tags: ["collaboration", "usage"],
|
|
58
|
+
body: `## Setup
|
|
64
59
|
1) Seed (if available) or create a space; add members and tasks; schedule rituals.
|
|
65
60
|
2) Configure Notifications for rituals/reminders and announcements; use Jobs for scheduling.
|
|
66
61
|
|
|
@@ -73,20 +68,16 @@ registerDocBlocks([
|
|
|
73
68
|
- Emit events for task/ritual/announcement changes; log in Audit Trail.
|
|
74
69
|
- Keep ritual cadence declarative; avoid hardcoded schedules.
|
|
75
70
|
- Ensure announcements carry title/description for accessibility.`
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"constraints",
|
|
87
|
-
"internal"
|
|
88
|
-
],
|
|
89
|
-
body: `## Constraints
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
id: "docs.examples.team-hub.constraints",
|
|
74
|
+
title: "Team Hub \u2014 Constraints & Safety",
|
|
75
|
+
summary: "Internal guardrails for rituals, tasks, and announcements regeneration.",
|
|
76
|
+
kind: "reference",
|
|
77
|
+
visibility: "internal",
|
|
78
|
+
route: "/docs/examples/team-hub/constraints",
|
|
79
|
+
tags: ["collaboration", "constraints", "internal"],
|
|
80
|
+
body: `## Constraints
|
|
90
81
|
- Ritual cadence and task states must stay declarative in spec; no hardcoded schedules.
|
|
91
82
|
- Events to emit: task.created/updated/completed, ritual.scheduled/completed, announcement.published.
|
|
92
83
|
- Regeneration should not drop reminders or announcements routing.
|
|
@@ -99,8 +90,6 @@ registerDocBlocks([
|
|
|
99
90
|
- Add fixtures for ritual cadence changes and announcement targeting.
|
|
100
91
|
- Ensure Notifications/Jobs wiring persists after regeneration.
|
|
101
92
|
- Use Feature Flags to trial new boards/rituals with safe defaults.`
|
|
102
|
-
|
|
103
|
-
]
|
|
104
|
-
|
|
105
|
-
//#endregion
|
|
106
|
-
//# sourceMappingURL=team-hub.docblock.js.map
|
|
93
|
+
}
|
|
94
|
+
];
|
|
95
|
+
registerDocBlocks(teamHubDocBlocks);
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -1,150 +1,145 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
declare const
|
|
6
|
-
declare const
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
tasks: _contractspec_lib_schema0.EntityRelationField;
|
|
19
|
-
rituals: _contractspec_lib_schema0.EntityRelationField;
|
|
20
|
-
announcements: _contractspec_lib_schema0.EntityRelationField;
|
|
1
|
+
import type { ModuleSchemaContribution } from '@contractspec/lib.schema';
|
|
2
|
+
export declare const TaskStatusEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
3
|
+
export declare const TaskPriorityEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
4
|
+
export declare const RitualCadenceEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
5
|
+
export declare const AnnouncementAudienceEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
6
|
+
export declare const SpaceEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
7
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
8
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
9
|
+
description: import("@contractspec/lib.schema").EntityScalarField;
|
|
10
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
11
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
12
|
+
members: import("@contractspec/lib.schema").EntityScalarField;
|
|
13
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
14
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
15
|
+
tasks: import("@contractspec/lib.schema").EntityRelationField;
|
|
16
|
+
rituals: import("@contractspec/lib.schema").EntityRelationField;
|
|
17
|
+
announcements: import("@contractspec/lib.schema").EntityRelationField;
|
|
21
18
|
}>;
|
|
22
|
-
declare const TaskEntity:
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
19
|
+
export declare const TaskEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
20
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
21
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
22
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
23
|
+
description: import("@contractspec/lib.schema").EntityScalarField;
|
|
24
|
+
status: import("@contractspec/lib.schema").EntityEnumField;
|
|
25
|
+
priority: import("@contractspec/lib.schema").EntityEnumField;
|
|
26
|
+
assigneeId: import("@contractspec/lib.schema").EntityScalarField;
|
|
27
|
+
dueDate: import("@contractspec/lib.schema").EntityScalarField;
|
|
28
|
+
tags: import("@contractspec/lib.schema").EntityScalarField;
|
|
29
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
30
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
31
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
32
|
+
space: import("@contractspec/lib.schema").EntityRelationField;
|
|
36
33
|
}>;
|
|
37
|
-
declare const RitualEntity:
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
34
|
+
export declare const RitualEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
35
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
36
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
37
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
38
|
+
cadence: import("@contractspec/lib.schema").EntityEnumField;
|
|
39
|
+
dayOfWeek: import("@contractspec/lib.schema").EntityScalarField;
|
|
40
|
+
time: import("@contractspec/lib.schema").EntityScalarField;
|
|
41
|
+
facilitatorId: import("@contractspec/lib.schema").EntityScalarField;
|
|
42
|
+
participants: import("@contractspec/lib.schema").EntityScalarField;
|
|
43
|
+
location: import("@contractspec/lib.schema").EntityScalarField;
|
|
44
|
+
agendaTemplate: import("@contractspec/lib.schema").EntityScalarField;
|
|
45
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
46
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
47
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
48
|
+
occurrences: import("@contractspec/lib.schema").EntityRelationField;
|
|
49
|
+
space: import("@contractspec/lib.schema").EntityRelationField;
|
|
53
50
|
}>;
|
|
54
|
-
declare const RitualOccurrenceEntity:
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
51
|
+
export declare const RitualOccurrenceEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
52
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
53
|
+
ritualId: import("@contractspec/lib.schema").EntityScalarField;
|
|
54
|
+
scheduledFor: import("@contractspec/lib.schema").EntityScalarField;
|
|
55
|
+
status: import("@contractspec/lib.schema").EntityScalarField;
|
|
56
|
+
summary: import("@contractspec/lib.schema").EntityScalarField;
|
|
57
|
+
attendance: import("@contractspec/lib.schema").EntityScalarField;
|
|
58
|
+
recordingUrl: import("@contractspec/lib.schema").EntityScalarField;
|
|
59
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
60
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
61
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
62
|
+
ritual: import("@contractspec/lib.schema").EntityRelationField;
|
|
66
63
|
}>;
|
|
67
|
-
declare const AnnouncementEntity:
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
64
|
+
export declare const AnnouncementEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
65
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
66
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
67
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
68
|
+
body: import("@contractspec/lib.schema").EntityScalarField;
|
|
69
|
+
audience: import("@contractspec/lib.schema").EntityEnumField;
|
|
70
|
+
audienceRole: import("@contractspec/lib.schema").EntityScalarField;
|
|
71
|
+
pinnedUntil: import("@contractspec/lib.schema").EntityScalarField;
|
|
72
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
73
|
+
createdBy: import("@contractspec/lib.schema").EntityScalarField;
|
|
74
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
75
|
+
expiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
79
76
|
}>;
|
|
80
|
-
declare const teamHubEntities: (
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
}> |
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
}> |
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
}> |
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
}> |
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
77
|
+
export declare const teamHubEntities: (import("@contractspec/lib.schema").EntitySpec<{
|
|
78
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
79
|
+
name: import("@contractspec/lib.schema").EntityScalarField;
|
|
80
|
+
description: import("@contractspec/lib.schema").EntityScalarField;
|
|
81
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
82
|
+
ownerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
83
|
+
members: import("@contractspec/lib.schema").EntityScalarField;
|
|
84
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
85
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
86
|
+
tasks: import("@contractspec/lib.schema").EntityRelationField;
|
|
87
|
+
rituals: import("@contractspec/lib.schema").EntityRelationField;
|
|
88
|
+
announcements: import("@contractspec/lib.schema").EntityRelationField;
|
|
89
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
90
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
91
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
92
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
93
|
+
description: import("@contractspec/lib.schema").EntityScalarField;
|
|
94
|
+
status: import("@contractspec/lib.schema").EntityEnumField;
|
|
95
|
+
priority: import("@contractspec/lib.schema").EntityEnumField;
|
|
96
|
+
assigneeId: import("@contractspec/lib.schema").EntityScalarField;
|
|
97
|
+
dueDate: import("@contractspec/lib.schema").EntityScalarField;
|
|
98
|
+
tags: import("@contractspec/lib.schema").EntityScalarField;
|
|
99
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
100
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
101
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
102
|
+
space: import("@contractspec/lib.schema").EntityRelationField;
|
|
103
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
104
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
105
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
106
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
107
|
+
cadence: import("@contractspec/lib.schema").EntityEnumField;
|
|
108
|
+
dayOfWeek: import("@contractspec/lib.schema").EntityScalarField;
|
|
109
|
+
time: import("@contractspec/lib.schema").EntityScalarField;
|
|
110
|
+
facilitatorId: import("@contractspec/lib.schema").EntityScalarField;
|
|
111
|
+
participants: import("@contractspec/lib.schema").EntityScalarField;
|
|
112
|
+
location: import("@contractspec/lib.schema").EntityScalarField;
|
|
113
|
+
agendaTemplate: import("@contractspec/lib.schema").EntityScalarField;
|
|
114
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
115
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
116
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
117
|
+
occurrences: import("@contractspec/lib.schema").EntityRelationField;
|
|
118
|
+
space: import("@contractspec/lib.schema").EntityRelationField;
|
|
119
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
120
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
121
|
+
ritualId: import("@contractspec/lib.schema").EntityScalarField;
|
|
122
|
+
scheduledFor: import("@contractspec/lib.schema").EntityScalarField;
|
|
123
|
+
status: import("@contractspec/lib.schema").EntityScalarField;
|
|
124
|
+
summary: import("@contractspec/lib.schema").EntityScalarField;
|
|
125
|
+
attendance: import("@contractspec/lib.schema").EntityScalarField;
|
|
126
|
+
recordingUrl: import("@contractspec/lib.schema").EntityScalarField;
|
|
127
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
128
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
129
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
130
|
+
ritual: import("@contractspec/lib.schema").EntityRelationField;
|
|
131
|
+
}> | import("@contractspec/lib.schema").EntitySpec<{
|
|
132
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
133
|
+
spaceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
134
|
+
title: import("@contractspec/lib.schema").EntityScalarField;
|
|
135
|
+
body: import("@contractspec/lib.schema").EntityScalarField;
|
|
136
|
+
audience: import("@contractspec/lib.schema").EntityEnumField;
|
|
137
|
+
audienceRole: import("@contractspec/lib.schema").EntityScalarField;
|
|
138
|
+
pinnedUntil: import("@contractspec/lib.schema").EntityScalarField;
|
|
139
|
+
orgId: import("@contractspec/lib.schema").EntityScalarField;
|
|
140
|
+
createdBy: import("@contractspec/lib.schema").EntityScalarField;
|
|
141
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
142
|
+
expiresAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
146
143
|
}>)[];
|
|
147
|
-
declare const teamHubSchemaContribution: ModuleSchemaContribution;
|
|
148
|
-
//#endregion
|
|
149
|
-
export { AnnouncementAudienceEnum, AnnouncementEntity, RitualCadenceEnum, RitualEntity, RitualOccurrenceEntity, SpaceEntity, TaskEntity, TaskPriorityEnum, TaskStatusEnum, teamHubEntities, teamHubSchemaContribution };
|
|
144
|
+
export declare const teamHubSchemaContribution: ModuleSchemaContribution;
|
|
150
145
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,wBAAwB,EAAE,MAAM,0BAA0B,CAAC;AAIzE,eAAO,MAAM,cAAc,kDAKzB,CAAC;AAEH,eAAO,MAAM,gBAAgB,kDAK3B,CAAC;AAEH,eAAO,MAAM,iBAAiB,kDAK5B,CAAC;AAEH,eAAO,MAAM,wBAAwB,kDAKnC,CAAC;AAEH,eAAO,MAAM,WAAW;;;;;;;;;;;;EAsBtB,CAAC;AAEH,eAAO,MAAM,UAAU;;;;;;;;;;;;;;EAyCrB,CAAC;AAEH,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;EAmCvB,CAAC;AAEH,eAAO,MAAM,sBAAsB;;;;;;;;;;;;EAkCjC,CAAC;AAEH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;EAgC7B,CAAC;AAEH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KAM3B,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,wBAUvC,CAAC"}
|