@contractspec/example.saas-boilerplate 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.
@@ -110,4 +110,4 @@ $ tsdown
110
110
  ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
111
111
  ℹ dist/docs/saas-boilerplate.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
112
112
  ℹ 103 files, total: 230.81 kB
113
- ✔ Build complete in 22870ms
113
+ ✔ Build complete in 22406ms
@@ -81,7 +81,7 @@ $ tsdown
81
81
  ℹ dist/saas-boilerplate.feature.d.ts.map  0.17 kB │ gzip: 0.13 kB
82
82
  ℹ dist/presentations/index.d.ts.map  0.14 kB │ gzip: 0.13 kB
83
83
  ℹ dist/example.d.ts.map  0.12 kB │ gzip: 0.12 kB
84
- ℹ dist/project/project.operations.d.ts 11.81 kB │ gzip: 0.87 kB
84
+ ℹ dist/project/project.operations.d.ts 11.80 kB │ gzip: 0.87 kB
85
85
  ℹ dist/project/project.schema.d.ts  6.56 kB │ gzip: 0.76 kB
86
86
  ℹ dist/billing/billing.schema.d.ts  5.72 kB │ gzip: 0.79 kB
87
87
  ℹ dist/index.d.ts  5.02 kB │ gzip: 1.06 kB
@@ -93,7 +93,7 @@ $ tsdown
93
93
  ℹ dist/project/project.handler.d.ts  1.93 kB │ gzip: 0.53 kB
94
94
  ℹ dist/billing/index.d.ts  1.90 kB │ gzip: 0.42 kB
95
95
  ℹ dist/project/index.d.ts  1.87 kB │ gzip: 0.40 kB
96
- ℹ dist/project/project.entity.d.ts  1.79 kB │ gzip: 0.42 kB
96
+ ℹ dist/project/project.entity.d.ts  1.79 kB │ gzip: 0.41 kB
97
97
  ℹ dist/settings/settings.entity.d.ts  1.71 kB │ gzip: 0.37 kB
98
98
  ℹ dist/shared/mock-data.d.ts  1.68 kB │ gzip: 0.50 kB
99
99
  ℹ dist/presentations/index.d.ts  0.90 kB │ gzip: 0.28 kB
@@ -111,4 +111,4 @@ $ tsdown
111
111
  ℹ dist/docs/index.d.ts  0.01 kB │ gzip: 0.03 kB
112
112
  ℹ dist/docs/saas-boilerplate.docblock.d.ts  0.01 kB │ gzip: 0.03 kB
113
113
  ℹ 103 files, total: 230.81 kB
114
- ✔ Build complete in 24424ms
114
+ ✔ Build complete in 26047ms
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # @contractspec/example.saas-boilerplate
2
2
 
3
+ ## 1.46.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2d8a72b: fix: mcp for presentation
8
+ - Updated dependencies [2d8a72b]
9
+ - @contractspec/module.notifications@1.46.1
10
+ - @contractspec/module.audit-trail@1.46.1
11
+ - @contractspec/lib.identity-rbac@1.46.1
12
+ - @contractspec/lib.contracts@1.46.1
13
+ - @contractspec/lib.schema@1.46.1
14
+ - @contractspec/lib.jobs@1.46.1
15
+
3
16
  ## 1.46.0
4
17
 
5
18
  ### Minor Changes
@@ -1,4 +1,4 @@
1
- import * as _contractspec_lib_schema170 from "@contractspec/lib.schema";
1
+ import * as _contractspec_lib_schema267 from "@contractspec/lib.schema";
2
2
 
3
3
  //#region src/project/project.enum.d.ts
4
4
 
@@ -6,11 +6,11 @@ import * as _contractspec_lib_schema170 from "@contractspec/lib.schema";
6
6
  * Project status enum for contract schemas.
7
7
  * Note: Entity enum is defined separately in project.entity.ts
8
8
  */
9
- declare const ProjectStatusSchemaEnum: _contractspec_lib_schema170.EnumType<[string, string, string, string]>;
9
+ declare const ProjectStatusSchemaEnum: _contractspec_lib_schema267.EnumType<[string, string, string, string]>;
10
10
  /**
11
11
  * Project status filter enum (includes 'all' option).
12
12
  */
13
- declare const ProjectStatusFilterEnum: _contractspec_lib_schema170.EnumType<[string, string, string, string]>;
13
+ declare const ProjectStatusFilterEnum: _contractspec_lib_schema267.EnumType<[string, string, string, string]>;
14
14
  //#endregion
15
15
  export { ProjectStatusFilterEnum, ProjectStatusSchemaEnum };
16
16
  //# sourceMappingURL=project.enum.d.ts.map
@@ -1,89 +1,89 @@
1
- import * as _contractspec_lib_schema172 from "@contractspec/lib.schema";
1
+ import * as _contractspec_lib_schema247 from "@contractspec/lib.schema";
2
2
  import * as _contractspec_lib_contracts6 from "@contractspec/lib.contracts";
3
3
 
4
4
  //#region src/project/project.event.d.ts
5
5
  /**
6
6
  * Event: A new project has been created.
7
7
  */
8
- declare const ProjectCreatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
8
+ declare const ProjectCreatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema247.SchemaModel<{
9
9
  projectId: {
10
- type: _contractspec_lib_schema172.FieldType<string, string>;
10
+ type: _contractspec_lib_schema247.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  name: {
14
- type: _contractspec_lib_schema172.FieldType<string, string>;
14
+ type: _contractspec_lib_schema247.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  organizationId: {
18
- type: _contractspec_lib_schema172.FieldType<string, string>;
18
+ type: _contractspec_lib_schema247.FieldType<string, string>;
19
19
  isOptional: false;
20
20
  };
21
21
  createdBy: {
22
- type: _contractspec_lib_schema172.FieldType<string, string>;
22
+ type: _contractspec_lib_schema247.FieldType<string, string>;
23
23
  isOptional: false;
24
24
  };
25
25
  createdAt: {
26
- type: _contractspec_lib_schema172.FieldType<Date, string>;
26
+ type: _contractspec_lib_schema247.FieldType<Date, string>;
27
27
  isOptional: false;
28
28
  };
29
29
  }>>;
30
30
  /**
31
31
  * Event: A project has been updated.
32
32
  */
33
- declare const ProjectUpdatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
33
+ declare const ProjectUpdatedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema247.SchemaModel<{
34
34
  projectId: {
35
- type: _contractspec_lib_schema172.FieldType<string, string>;
35
+ type: _contractspec_lib_schema247.FieldType<string, string>;
36
36
  isOptional: false;
37
37
  };
38
38
  updatedFields: {
39
- type: _contractspec_lib_schema172.FieldType<string, string>;
39
+ type: _contractspec_lib_schema247.FieldType<string, string>;
40
40
  isArray: true;
41
41
  isOptional: false;
42
42
  };
43
43
  updatedBy: {
44
- type: _contractspec_lib_schema172.FieldType<string, string>;
44
+ type: _contractspec_lib_schema247.FieldType<string, string>;
45
45
  isOptional: false;
46
46
  };
47
47
  updatedAt: {
48
- type: _contractspec_lib_schema172.FieldType<Date, string>;
48
+ type: _contractspec_lib_schema247.FieldType<Date, string>;
49
49
  isOptional: false;
50
50
  };
51
51
  }>>;
52
52
  /**
53
53
  * Event: A project has been deleted.
54
54
  */
55
- declare const ProjectDeletedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
55
+ declare const ProjectDeletedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema247.SchemaModel<{
56
56
  projectId: {
57
- type: _contractspec_lib_schema172.FieldType<string, string>;
57
+ type: _contractspec_lib_schema247.FieldType<string, string>;
58
58
  isOptional: false;
59
59
  };
60
60
  organizationId: {
61
- type: _contractspec_lib_schema172.FieldType<string, string>;
61
+ type: _contractspec_lib_schema247.FieldType<string, string>;
62
62
  isOptional: false;
63
63
  };
64
64
  deletedBy: {
65
- type: _contractspec_lib_schema172.FieldType<string, string>;
65
+ type: _contractspec_lib_schema247.FieldType<string, string>;
66
66
  isOptional: false;
67
67
  };
68
68
  deletedAt: {
69
- type: _contractspec_lib_schema172.FieldType<Date, string>;
69
+ type: _contractspec_lib_schema247.FieldType<Date, string>;
70
70
  isOptional: false;
71
71
  };
72
72
  }>>;
73
73
  /**
74
74
  * Event: A project has been archived.
75
75
  */
76
- declare const ProjectArchivedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema172.SchemaModel<{
76
+ declare const ProjectArchivedEvent: _contractspec_lib_contracts6.EventSpec<_contractspec_lib_schema247.SchemaModel<{
77
77
  projectId: {
78
- type: _contractspec_lib_schema172.FieldType<string, string>;
78
+ type: _contractspec_lib_schema247.FieldType<string, string>;
79
79
  isOptional: false;
80
80
  };
81
81
  archivedBy: {
82
- type: _contractspec_lib_schema172.FieldType<string, string>;
82
+ type: _contractspec_lib_schema247.FieldType<string, string>;
83
83
  isOptional: false;
84
84
  };
85
85
  archivedAt: {
86
- type: _contractspec_lib_schema172.FieldType<Date, string>;
86
+ type: _contractspec_lib_schema247.FieldType<Date, string>;
87
87
  isOptional: false;
88
88
  };
89
89
  }>>;