@lssm/example.saas-boilerplate 0.0.0-canary-20251221144710 → 0.0.0-canary-20251221153314
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/.turbo/turbo-build$colon$bundle.log +131 -131
- package/.turbo/turbo-build.log +130 -130
- package/CHANGELOG.md +8 -8
- package/dist/billing/billing.entity.d.ts +41 -41
- package/dist/billing/billing.entity.d.ts.map +1 -1
- package/dist/billing/billing.enum.d.ts +3 -3
- package/dist/billing/billing.enum.d.ts.map +1 -1
- package/dist/billing/billing.event.d.ts +21 -21
- package/dist/billing/billing.event.d.ts.map +1 -1
- package/dist/billing/billing.schema.d.ts +47 -47
- package/dist/project/project.contracts.d.ts +103 -103
- package/dist/project/project.contracts.d.ts.map +1 -1
- package/dist/project/project.entity.d.ts +24 -24
- package/dist/project/project.enum.d.ts +3 -3
- package/dist/project/project.event.d.ts +21 -21
- package/package.json +10 -10
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,89 +1,89 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema273 from "@lssm/lib.schema";
|
|
2
2
|
import * as _lssm_lib_contracts11 from "@lssm/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: _lssm_lib_contracts11.EventSpec<
|
|
8
|
+
declare const ProjectCreatedEvent: _lssm_lib_contracts11.EventSpec<_lssm_lib_schema273.SchemaModel<{
|
|
9
9
|
projectId: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
name: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
organizationId: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
createdBy: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
createdAt: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema273.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: _lssm_lib_contracts11.EventSpec<
|
|
33
|
+
declare const ProjectUpdatedEvent: _lssm_lib_contracts11.EventSpec<_lssm_lib_schema273.SchemaModel<{
|
|
34
34
|
projectId: {
|
|
35
|
-
type:
|
|
35
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
36
36
|
isOptional: false;
|
|
37
37
|
};
|
|
38
38
|
updatedFields: {
|
|
39
|
-
type:
|
|
39
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
40
40
|
isArray: true;
|
|
41
41
|
isOptional: false;
|
|
42
42
|
};
|
|
43
43
|
updatedBy: {
|
|
44
|
-
type:
|
|
44
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
45
45
|
isOptional: false;
|
|
46
46
|
};
|
|
47
47
|
updatedAt: {
|
|
48
|
-
type:
|
|
48
|
+
type: _lssm_lib_schema273.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: _lssm_lib_contracts11.EventSpec<
|
|
55
|
+
declare const ProjectDeletedEvent: _lssm_lib_contracts11.EventSpec<_lssm_lib_schema273.SchemaModel<{
|
|
56
56
|
projectId: {
|
|
57
|
-
type:
|
|
57
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
58
58
|
isOptional: false;
|
|
59
59
|
};
|
|
60
60
|
organizationId: {
|
|
61
|
-
type:
|
|
61
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
62
62
|
isOptional: false;
|
|
63
63
|
};
|
|
64
64
|
deletedBy: {
|
|
65
|
-
type:
|
|
65
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
66
66
|
isOptional: false;
|
|
67
67
|
};
|
|
68
68
|
deletedAt: {
|
|
69
|
-
type:
|
|
69
|
+
type: _lssm_lib_schema273.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: _lssm_lib_contracts11.EventSpec<
|
|
76
|
+
declare const ProjectArchivedEvent: _lssm_lib_contracts11.EventSpec<_lssm_lib_schema273.SchemaModel<{
|
|
77
77
|
projectId: {
|
|
78
|
-
type:
|
|
78
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
79
79
|
isOptional: false;
|
|
80
80
|
};
|
|
81
81
|
archivedBy: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema273.FieldType<string, string>;
|
|
83
83
|
isOptional: false;
|
|
84
84
|
};
|
|
85
85
|
archivedAt: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema273.FieldType<Date, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
}>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lssm/example.saas-boilerplate",
|
|
3
|
-
"version": "0.0.0-canary-
|
|
3
|
+
"version": "0.0.0-canary-20251221153314",
|
|
4
4
|
"description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,18 +51,18 @@
|
|
|
51
51
|
"test": "bun run"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@lssm/lib.schema": "0.0.0-canary-
|
|
55
|
-
"@lssm/lib.contracts": "0.0.0-canary-
|
|
56
|
-
"@lssm/lib.bus": "0.0.0-canary-
|
|
57
|
-
"@lssm/lib.identity-rbac": "0.0.0-canary-
|
|
58
|
-
"@lssm/lib.jobs": "0.0.0-canary-
|
|
59
|
-
"@lssm/module.audit-trail": "0.0.0-canary-
|
|
60
|
-
"@lssm/module.notifications": "0.0.0-canary-
|
|
54
|
+
"@lssm/lib.schema": "0.0.0-canary-20251221153314",
|
|
55
|
+
"@lssm/lib.contracts": "0.0.0-canary-20251221153314",
|
|
56
|
+
"@lssm/lib.bus": "0.0.0-canary-20251221153314",
|
|
57
|
+
"@lssm/lib.identity-rbac": "0.0.0-canary-20251221153314",
|
|
58
|
+
"@lssm/lib.jobs": "0.0.0-canary-20251221153314",
|
|
59
|
+
"@lssm/module.audit-trail": "0.0.0-canary-20251221153314",
|
|
60
|
+
"@lssm/module.notifications": "0.0.0-canary-20251221153314",
|
|
61
61
|
"zod": "^4.1.13"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@lssm/tool.tsdown": "0.0.0-canary-
|
|
65
|
-
"@lssm/tool.typescript": "0.0.0-canary-
|
|
64
|
+
"@lssm/tool.tsdown": "0.0.0-canary-20251221153314",
|
|
65
|
+
"@lssm/tool.typescript": "0.0.0-canary-20251221153314",
|
|
66
66
|
"tsdown": "^0.18.1",
|
|
67
67
|
"typescript": "^5.9.3"
|
|
68
68
|
},
|