@contractspec/example.team-hub 1.46.0 → 1.46.1

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.
@@ -1,49 +1,49 @@
1
- import * as _contractspec_lib_schema302 from "@contractspec/lib.schema";
1
+ import * as _contractspec_lib_schema313 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: _contractspec_lib_schema302.SchemaModel<{
7
+ declare const SpaceModel: _contractspec_lib_schema313.SchemaModel<{
8
8
  id: {
9
- type: _contractspec_lib_schema302.FieldType<string, string>;
9
+ type: _contractspec_lib_schema313.FieldType<string, string>;
10
10
  isOptional: false;
11
11
  };
12
12
  name: {
13
- type: _contractspec_lib_schema302.FieldType<string, string>;
13
+ type: _contractspec_lib_schema313.FieldType<string, string>;
14
14
  isOptional: false;
15
15
  };
16
16
  description: {
17
- type: _contractspec_lib_schema302.FieldType<string, string>;
17
+ type: _contractspec_lib_schema313.FieldType<string, string>;
18
18
  isOptional: true;
19
19
  };
20
20
  orgId: {
21
- type: _contractspec_lib_schema302.FieldType<string, string>;
21
+ type: _contractspec_lib_schema313.FieldType<string, string>;
22
22
  isOptional: false;
23
23
  };
24
24
  ownerId: {
25
- type: _contractspec_lib_schema302.FieldType<string, string>;
25
+ type: _contractspec_lib_schema313.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: _contractspec_lib_schema302.SchemaModel<{
32
+ declare const CreateSpaceInputModel: _contractspec_lib_schema313.SchemaModel<{
33
33
  name: {
34
- type: _contractspec_lib_schema302.FieldType<string, string>;
34
+ type: _contractspec_lib_schema313.FieldType<string, string>;
35
35
  isOptional: false;
36
36
  };
37
37
  description: {
38
- type: _contractspec_lib_schema302.FieldType<string, string>;
38
+ type: _contractspec_lib_schema313.FieldType<string, string>;
39
39
  isOptional: true;
40
40
  };
41
41
  orgId: {
42
- type: _contractspec_lib_schema302.FieldType<string, string>;
42
+ type: _contractspec_lib_schema313.FieldType<string, string>;
43
43
  isOptional: false;
44
44
  };
45
45
  ownerId: {
46
- type: _contractspec_lib_schema302.FieldType<string, string>;
46
+ type: _contractspec_lib_schema313.FieldType<string, string>;
47
47
  isOptional: false;
48
48
  };
49
49
  }>;
@@ -1,78 +1,78 @@
1
- import * as _contractspec_lib_schema75 from "@contractspec/lib.schema";
1
+ import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
2
2
 
3
3
  //#region src/task/task.schema.d.ts
4
4
  /**
5
5
  * Task in a space.
6
6
  */
7
- declare const TaskModel: _contractspec_lib_schema75.SchemaModel<{
7
+ declare const TaskModel: _contractspec_lib_schema0.SchemaModel<{
8
8
  id: {
9
- type: _contractspec_lib_schema75.FieldType<string, string>;
9
+ type: _contractspec_lib_schema0.FieldType<string, string>;
10
10
  isOptional: false;
11
11
  };
12
12
  spaceId: {
13
- type: _contractspec_lib_schema75.FieldType<string, string>;
13
+ type: _contractspec_lib_schema0.FieldType<string, string>;
14
14
  isOptional: false;
15
15
  };
16
16
  title: {
17
- type: _contractspec_lib_schema75.FieldType<string, string>;
17
+ type: _contractspec_lib_schema0.FieldType<string, string>;
18
18
  isOptional: false;
19
19
  };
20
20
  status: {
21
- type: _contractspec_lib_schema75.FieldType<string, string>;
21
+ type: _contractspec_lib_schema0.FieldType<string, string>;
22
22
  isOptional: false;
23
23
  };
24
24
  priority: {
25
- type: _contractspec_lib_schema75.FieldType<string, string>;
25
+ type: _contractspec_lib_schema0.FieldType<string, string>;
26
26
  isOptional: false;
27
27
  };
28
28
  assigneeId: {
29
- type: _contractspec_lib_schema75.FieldType<string, string>;
29
+ type: _contractspec_lib_schema0.FieldType<string, string>;
30
30
  isOptional: true;
31
31
  };
32
32
  dueDate: {
33
- type: _contractspec_lib_schema75.FieldType<Date, string>;
33
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
34
34
  isOptional: true;
35
35
  };
36
36
  }>;
37
37
  /**
38
38
  * Input for creating a task.
39
39
  */
40
- declare const CreateTaskInputModel: _contractspec_lib_schema75.SchemaModel<{
40
+ declare const CreateTaskInputModel: _contractspec_lib_schema0.SchemaModel<{
41
41
  spaceId: {
42
- type: _contractspec_lib_schema75.FieldType<string, string>;
42
+ type: _contractspec_lib_schema0.FieldType<string, string>;
43
43
  isOptional: false;
44
44
  };
45
45
  title: {
46
- type: _contractspec_lib_schema75.FieldType<string, string>;
46
+ type: _contractspec_lib_schema0.FieldType<string, string>;
47
47
  isOptional: false;
48
48
  };
49
49
  description: {
50
- type: _contractspec_lib_schema75.FieldType<string, string>;
50
+ type: _contractspec_lib_schema0.FieldType<string, string>;
51
51
  isOptional: true;
52
52
  };
53
53
  priority: {
54
- type: _contractspec_lib_schema75.FieldType<string, string>;
54
+ type: _contractspec_lib_schema0.FieldType<string, string>;
55
55
  isOptional: true;
56
56
  };
57
57
  assigneeId: {
58
- type: _contractspec_lib_schema75.FieldType<string, string>;
58
+ type: _contractspec_lib_schema0.FieldType<string, string>;
59
59
  isOptional: true;
60
60
  };
61
61
  dueDate: {
62
- type: _contractspec_lib_schema75.FieldType<Date, string>;
62
+ type: _contractspec_lib_schema0.FieldType<Date, string>;
63
63
  isOptional: true;
64
64
  };
65
65
  }>;
66
66
  /**
67
67
  * Input for updating task status.
68
68
  */
69
- declare const UpdateTaskStatusInputModel: _contractspec_lib_schema75.SchemaModel<{
69
+ declare const UpdateTaskStatusInputModel: _contractspec_lib_schema0.SchemaModel<{
70
70
  taskId: {
71
- type: _contractspec_lib_schema75.FieldType<string, string>;
71
+ type: _contractspec_lib_schema0.FieldType<string, string>;
72
72
  isOptional: false;
73
73
  };
74
74
  status: {
75
- type: _contractspec_lib_schema75.FieldType<string, string>;
75
+ type: _contractspec_lib_schema0.FieldType<string, string>;
76
76
  isOptional: false;
77
77
  };
78
78
  }>;
@@ -1 +1 @@
1
- {"version":3,"file":"task.schema.d.ts","names":[],"sources":["../../src/task/task.schema.ts"],"sourcesContent":[],"mappings":";;;;;;AAKa,cAAA,SAYX,6BAZoB,WAYpB,CAAA;EAAA,EAAA,EAAA;UAAA,0BAAA,CAAA;;;;;;;;IAZoB,IAAA,sCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAiBT,UAAA,EAAA,KAAA;EAWX,CAAA;;;;;;;;EAX+B,CAAA;EAgBpB,UAAA,EAAA;IAOX,IAAA,sCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;EAPqC,OAAA,EAAA;;;;;;;;cAhB1B,iDAAoB;;UAW/B,0BAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKW,uDAA0B;;UAOrC,0BAAA,CAAA"}
1
+ {"version":3,"file":"task.schema.d.ts","names":[],"sources":["../../src/task/task.schema.ts"],"sourcesContent":[],"mappings":";;;;;;AAKa,cAAA,SAYX,4BAZoB,WAYpB,CAAA;EAAA,EAAA,EAAA;UAAA,yBAAA,CAAA;;;;;;;;IAZoB,IAAA,qCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAiBT,UAAA,EAAA,KAAA;EAWX,CAAA;;;;;;;;EAX+B,CAAA;EAgBpB,UAAA,EAAA;IAOX,IAAA,qCAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;EAPqC,OAAA,EAAA;;;;;;;;cAhB1B,gDAAoB;;UAW/B,yBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;cAKW,sDAA0B;;UAOrC,yBAAA,CAAA"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contractspec/example.team-hub",
3
- "version": "1.46.0",
3
+ "version": "1.46.1",
4
4
  "description": "Team Hub example with spaces, tasks, rituals, and announcements",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
@@ -18,12 +18,12 @@
18
18
  "lint:check": "eslint src"
19
19
  },
20
20
  "dependencies": {
21
- "@contractspec/lib.schema": "1.46.0",
22
- "@contractspec/lib.contracts": "1.46.0"
21
+ "@contractspec/lib.schema": "1.46.1",
22
+ "@contractspec/lib.contracts": "1.46.1"
23
23
  },
24
24
  "devDependencies": {
25
- "@contractspec/tool.typescript": "1.46.0",
26
- "@contractspec/tool.tsdown": "1.46.0",
25
+ "@contractspec/tool.typescript": "1.46.1",
26
+ "@contractspec/tool.tsdown": "1.46.1",
27
27
  "typescript": "^5.9.3"
28
28
  },
29
29
  "exports": {