@contractspec/example.team-hub 1.49.0 → 1.50.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 +2 -2
- package/dist/example.d.ts +2 -2
- package/dist/presentations/team-hub.presentation.d.ts +7 -7
- package/dist/ritual/ritual.operations.d.ts +3 -3
- package/dist/space/space.operations.d.ts +12 -12
- package/dist/space/space.schema.d.ts +12 -12
- package/dist/team-hub.capability.d.ts +4 -4
- package/dist/team-hub.feature.d.ts +2 -2
- package/package.json +5 -5
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _contractspec_lib_schema93 from "@contractspec/lib.schema";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _contractspec_lib_contracts11 from "@contractspec/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/announcement/announcement.operations.d.ts
|
|
5
5
|
/**
|
|
6
6
|
* Post an announcement.
|
|
7
7
|
*/
|
|
8
|
-
declare const PostAnnouncementContract:
|
|
8
|
+
declare const PostAnnouncementContract: _contractspec_lib_contracts11.OperationSpec<_contractspec_lib_schema93.SchemaModel<{
|
|
9
9
|
title: {
|
|
10
10
|
type: _contractspec_lib_schema93.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
package/dist/example.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts12 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/example.d.ts
|
|
4
|
-
declare const example:
|
|
4
|
+
declare const example: _contractspec_lib_contracts12.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_contracts19 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_contracts19.PresentationSpec;
|
|
5
|
+
declare const SpaceListPresentation: _contractspec_lib_contracts19.PresentationSpec;
|
|
6
|
+
declare const TaskBoardPresentation: _contractspec_lib_contracts19.PresentationSpec;
|
|
7
|
+
declare const TaskDetailPresentation: _contractspec_lib_contracts19.PresentationSpec;
|
|
8
|
+
declare const RitualCalendarPresentation: _contractspec_lib_contracts19.PresentationSpec;
|
|
9
|
+
declare const AnnouncementFeedPresentation: _contractspec_lib_contracts19.PresentationSpec;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { AnnouncementFeedPresentation, RitualCalendarPresentation, SpaceListPresentation, TaskBoardPresentation, TaskDetailPresentation, TeamDashboardPresentation };
|
|
12
12
|
//# sourceMappingURL=team-hub.presentation.d.ts.map
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as _contractspec_lib_schema257 from "@contractspec/lib.schema";
|
|
2
|
-
import * as
|
|
2
|
+
import * as _contractspec_lib_contracts17 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_contracts17.OperationSpec<_contractspec_lib_schema257.SchemaModel<{
|
|
9
9
|
spaceId: {
|
|
10
10
|
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
@@ -59,7 +59,7 @@ declare const ScheduleRitualContract: _contractspec_lib_contracts23.OperationSpe
|
|
|
59
59
|
/**
|
|
60
60
|
* Log ritual occurrence.
|
|
61
61
|
*/
|
|
62
|
-
declare const LogRitualOccurrenceContract:
|
|
62
|
+
declare const LogRitualOccurrenceContract: _contractspec_lib_contracts17.OperationSpec<_contractspec_lib_schema257.SchemaModel<{
|
|
63
63
|
ritualId: {
|
|
64
64
|
type: _contractspec_lib_schema257.FieldType<string, string>;
|
|
65
65
|
isOptional: false;
|
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema313 from "@contractspec/lib.schema";
|
|
2
2
|
import * as _contractspec_lib_contracts25 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: _contractspec_lib_contracts25.OperationSpec<
|
|
8
|
+
declare const CreateSpaceContract: _contractspec_lib_contracts25.OperationSpec<_contractspec_lib_schema313.SchemaModel<{
|
|
9
9
|
name: {
|
|
10
|
-
type:
|
|
10
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
description: {
|
|
14
|
-
type:
|
|
14
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
15
15
|
isOptional: true;
|
|
16
16
|
};
|
|
17
17
|
orgId: {
|
|
18
|
-
type:
|
|
18
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
ownerId: {
|
|
22
|
-
type:
|
|
22
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
|
-
}>,
|
|
25
|
+
}>, _contractspec_lib_schema313.SchemaModel<{
|
|
26
26
|
id: {
|
|
27
|
-
type:
|
|
27
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
28
28
|
isOptional: false;
|
|
29
29
|
};
|
|
30
30
|
name: {
|
|
31
|
-
type:
|
|
31
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
32
32
|
isOptional: false;
|
|
33
33
|
};
|
|
34
34
|
description: {
|
|
35
|
-
type:
|
|
35
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
36
36
|
isOptional: true;
|
|
37
37
|
};
|
|
38
38
|
orgId: {
|
|
39
|
-
type:
|
|
39
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
40
40
|
isOptional: false;
|
|
41
41
|
};
|
|
42
42
|
ownerId: {
|
|
43
|
-
type:
|
|
43
|
+
type: _contractspec_lib_schema313.FieldType<string, string>;
|
|
44
44
|
isOptional: false;
|
|
45
45
|
};
|
|
46
46
|
}>, undefined>;
|
|
@@ -1,49 +1,49 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema302 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/space/space.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Team space/project.
|
|
6
6
|
*/
|
|
7
|
-
declare const SpaceModel:
|
|
7
|
+
declare const SpaceModel: _contractspec_lib_schema302.SchemaModel<{
|
|
8
8
|
id: {
|
|
9
|
-
type:
|
|
9
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
name: {
|
|
13
|
-
type:
|
|
13
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
14
14
|
isOptional: false;
|
|
15
15
|
};
|
|
16
16
|
description: {
|
|
17
|
-
type:
|
|
17
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
18
18
|
isOptional: true;
|
|
19
19
|
};
|
|
20
20
|
orgId: {
|
|
21
|
-
type:
|
|
21
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
22
22
|
isOptional: false;
|
|
23
23
|
};
|
|
24
24
|
ownerId: {
|
|
25
|
-
type:
|
|
25
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
26
26
|
isOptional: false;
|
|
27
27
|
};
|
|
28
28
|
}>;
|
|
29
29
|
/**
|
|
30
30
|
* Input for creating a space.
|
|
31
31
|
*/
|
|
32
|
-
declare const CreateSpaceInputModel:
|
|
32
|
+
declare const CreateSpaceInputModel: _contractspec_lib_schema302.SchemaModel<{
|
|
33
33
|
name: {
|
|
34
|
-
type:
|
|
34
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
description: {
|
|
38
|
-
type:
|
|
38
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
39
39
|
isOptional: true;
|
|
40
40
|
};
|
|
41
41
|
orgId: {
|
|
42
|
-
type:
|
|
42
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
43
43
|
isOptional: false;
|
|
44
44
|
};
|
|
45
45
|
ownerId: {
|
|
46
|
-
type:
|
|
46
|
+
type: _contractspec_lib_schema302.FieldType<string, string>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
}>;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts13 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_contracts13.CapabilitySpec;
|
|
5
|
+
declare const RitualsCapability: _contractspec_lib_contracts13.CapabilitySpec;
|
|
6
|
+
declare const AnnouncementsCapability: _contractspec_lib_contracts13.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_contracts16 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_contracts16.FeatureModuleSpec;
|
|
5
5
|
//#endregion
|
|
6
6
|
export { TeamHubFeature };
|
|
7
7
|
//# sourceMappingURL=team-hub.feature.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.team-hub",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.50.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.50.0",
|
|
21
|
+
"@contractspec/lib.contracts": "1.50.0"
|
|
22
22
|
},
|
|
23
23
|
"devDependencies": {
|
|
24
|
-
"@contractspec/tool.typescript": "1.
|
|
25
|
-
"@contractspec/tool.tsdown": "1.
|
|
24
|
+
"@contractspec/tool.typescript": "1.50.0",
|
|
25
|
+
"@contractspec/tool.tsdown": "1.50.0",
|
|
26
26
|
"typescript": "^5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"exports": {
|