@contractspec/example.saas-boilerplate 1.52.0 → 1.54.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/.turbo/turbo-build$colon$bundle.log +2 -2
- package/.turbo/turbo-build.log +3 -3
- package/CHANGELOG.md +41 -0
- package/dist/billing/billing.event.d.ts +4 -4
- package/dist/billing/billing.operations.d.ts +5 -5
- package/dist/billing/billing.presentation.d.ts +3 -3
- package/dist/billing/billing.presentation.d.ts.map +1 -1
- package/dist/dashboard/dashboard.presentation.d.ts +3 -3
- package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
- package/dist/example.d.ts +2 -2
- 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 +22 -22
- package/dist/project/project.operations.d.ts +103 -103
- package/dist/project/project.presentation.d.ts +3 -3
- package/dist/saas-boilerplate.feature.d.ts +2 -2
- package/dist/settings/settings.entity.d.ts +24 -24
- package/dist/settings/settings.enum.d.ts +2 -2
- package/dist/ui/SaasDashboard.d.ts +2 -2
- package/dist/ui/SaasProjectList.d.ts +2 -2
- package/dist/ui/SaasSettingsPanel.d.ts +2 -2
- package/dist/ui/modals/CreateProjectModal.d.ts +2 -2
- package/dist/ui/modals/ProjectActionsModal.d.ts +2 -2
- package/package.json +14 -14
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime0 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/modals/CreateProjectModal.d.ts
|
|
4
4
|
interface CreateProjectInput {
|
|
@@ -17,7 +17,7 @@ declare function CreateProjectModal({
|
|
|
17
17
|
onClose,
|
|
18
18
|
onSubmit,
|
|
19
19
|
isLoading
|
|
20
|
-
}: CreateProjectModalProps):
|
|
20
|
+
}: CreateProjectModalProps): react_jsx_runtime0.JSX.Element | null;
|
|
21
21
|
//#endregion
|
|
22
22
|
export { CreateProjectInput, CreateProjectModal };
|
|
23
23
|
//# sourceMappingURL=CreateProjectModal.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime1 from "react/jsx-runtime";
|
|
2
2
|
|
|
3
3
|
//#region src/ui/modals/ProjectActionsModal.d.ts
|
|
4
4
|
interface Project {
|
|
@@ -32,7 +32,7 @@ declare function ProjectActionsModal({
|
|
|
32
32
|
onActivate,
|
|
33
33
|
onDelete,
|
|
34
34
|
isLoading
|
|
35
|
-
}: ProjectActionsModalProps):
|
|
35
|
+
}: ProjectActionsModalProps): react_jsx_runtime1.JSX.Element | null;
|
|
36
36
|
//#endregion
|
|
37
37
|
export { Project, ProjectActionsModal, UpdateProjectInput };
|
|
38
38
|
//# sourceMappingURL=ProjectActionsModal.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.saas-boilerplate",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.54.0",
|
|
4
4
|
"description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -69,21 +69,21 @@
|
|
|
69
69
|
"test": "bun test"
|
|
70
70
|
},
|
|
71
71
|
"dependencies": {
|
|
72
|
-
"@contractspec/lib.identity-rbac": "1.
|
|
73
|
-
"@contractspec/lib.jobs": "1.
|
|
74
|
-
"@contractspec/module.audit-trail": "1.
|
|
75
|
-
"@contractspec/module.notifications": "1.
|
|
76
|
-
"@contractspec/lib.contracts": "1.
|
|
77
|
-
"@contractspec/lib.schema": "1.
|
|
78
|
-
"@contractspec/lib.example-shared-ui": "1.
|
|
79
|
-
"@contractspec/lib.design-system": "1.
|
|
80
|
-
"@contractspec/lib.runtime-sandbox": "0.
|
|
81
|
-
"react": "19.2.
|
|
82
|
-
"react-dom": "19.2.
|
|
72
|
+
"@contractspec/lib.identity-rbac": "1.54.0",
|
|
73
|
+
"@contractspec/lib.jobs": "1.54.0",
|
|
74
|
+
"@contractspec/module.audit-trail": "1.54.0",
|
|
75
|
+
"@contractspec/module.notifications": "1.54.0",
|
|
76
|
+
"@contractspec/lib.contracts": "1.54.0",
|
|
77
|
+
"@contractspec/lib.schema": "1.54.0",
|
|
78
|
+
"@contractspec/lib.example-shared-ui": "1.8.0",
|
|
79
|
+
"@contractspec/lib.design-system": "1.54.0",
|
|
80
|
+
"@contractspec/lib.runtime-sandbox": "0.9.0",
|
|
81
|
+
"react": "19.2.4",
|
|
82
|
+
"react-dom": "19.2.4"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@contractspec/tool.tsdown": "1.
|
|
86
|
-
"@contractspec/tool.typescript": "1.
|
|
85
|
+
"@contractspec/tool.tsdown": "1.54.0",
|
|
86
|
+
"@contractspec/tool.typescript": "1.54.0",
|
|
87
87
|
"tsdown": "^0.19.0",
|
|
88
88
|
"typescript": "^5.9.3",
|
|
89
89
|
"@types/react": "^19.2.8",
|