@contractspec/example.saas-boilerplate 1.52.0 → 1.53.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 +8 -8
- package/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +22 -0
- 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.operations.d.ts +42 -42
- package/dist/billing/billing.operations.d.ts.map +1 -1
- package/dist/billing/billing.presentation.d.ts +3 -3
- package/dist/billing/billing.schema.d.ts +47 -47
- package/dist/billing/billing.schema.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.schema.d.ts +54 -54
- 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/modals/CreateProjectModal.d.ts +2 -2
- package/dist/ui/modals/ProjectActionsModal.d.ts +2 -2
- package/package.json +12 -12
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_contracts6 from "@contractspec/lib.contracts";
|
|
2
2
|
|
|
3
3
|
//#region src/saas-boilerplate.feature.d.ts
|
|
4
4
|
|
|
@@ -6,7 +6,7 @@ import * as _contractspec_lib_contracts0 from "@contractspec/lib.contracts";
|
|
|
6
6
|
* SaaS Boilerplate feature module that bundles project management,
|
|
7
7
|
* billing, and settings operations into an installable feature.
|
|
8
8
|
*/
|
|
9
|
-
declare const SaasBoilerplateFeature:
|
|
9
|
+
declare const SaasBoilerplateFeature: _contractspec_lib_contracts6.FeatureModuleSpec;
|
|
10
10
|
//#endregion
|
|
11
11
|
export { SaasBoilerplateFeature };
|
|
12
12
|
//# sourceMappingURL=saas-boilerplate.feature.d.ts.map
|
|
@@ -1,36 +1,36 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema347 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/settings/settings.entity.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Settings entity - key-value configuration store.
|
|
6
6
|
*/
|
|
7
|
-
declare const SettingsEntity:
|
|
8
|
-
id:
|
|
9
|
-
key:
|
|
10
|
-
scope:
|
|
11
|
-
scopeId:
|
|
12
|
-
value:
|
|
13
|
-
valueType:
|
|
14
|
-
schema:
|
|
15
|
-
description:
|
|
16
|
-
isSecret:
|
|
17
|
-
createdAt:
|
|
18
|
-
updatedAt:
|
|
7
|
+
declare const SettingsEntity: _contractspec_lib_schema347.EntitySpec<{
|
|
8
|
+
id: _contractspec_lib_schema347.EntityScalarField;
|
|
9
|
+
key: _contractspec_lib_schema347.EntityScalarField;
|
|
10
|
+
scope: _contractspec_lib_schema347.EntityEnumField;
|
|
11
|
+
scopeId: _contractspec_lib_schema347.EntityScalarField;
|
|
12
|
+
value: _contractspec_lib_schema347.EntityScalarField;
|
|
13
|
+
valueType: _contractspec_lib_schema347.EntityScalarField;
|
|
14
|
+
schema: _contractspec_lib_schema347.EntityScalarField;
|
|
15
|
+
description: _contractspec_lib_schema347.EntityScalarField;
|
|
16
|
+
isSecret: _contractspec_lib_schema347.EntityScalarField;
|
|
17
|
+
createdAt: _contractspec_lib_schema347.EntityScalarField;
|
|
18
|
+
updatedAt: _contractspec_lib_schema347.EntityScalarField;
|
|
19
19
|
}>;
|
|
20
20
|
/**
|
|
21
21
|
* FeatureFlag entity - feature toggles.
|
|
22
22
|
*/
|
|
23
|
-
declare const FeatureFlagEntity:
|
|
24
|
-
id:
|
|
25
|
-
key:
|
|
26
|
-
name:
|
|
27
|
-
description:
|
|
28
|
-
enabled:
|
|
29
|
-
defaultValue:
|
|
30
|
-
rules:
|
|
31
|
-
rolloutPercentage:
|
|
32
|
-
createdAt:
|
|
33
|
-
updatedAt:
|
|
23
|
+
declare const FeatureFlagEntity: _contractspec_lib_schema347.EntitySpec<{
|
|
24
|
+
id: _contractspec_lib_schema347.EntityScalarField;
|
|
25
|
+
key: _contractspec_lib_schema347.EntityScalarField;
|
|
26
|
+
name: _contractspec_lib_schema347.EntityScalarField;
|
|
27
|
+
description: _contractspec_lib_schema347.EntityScalarField;
|
|
28
|
+
enabled: _contractspec_lib_schema347.EntityScalarField;
|
|
29
|
+
defaultValue: _contractspec_lib_schema347.EntityScalarField;
|
|
30
|
+
rules: _contractspec_lib_schema347.EntityScalarField;
|
|
31
|
+
rolloutPercentage: _contractspec_lib_schema347.EntityScalarField;
|
|
32
|
+
createdAt: _contractspec_lib_schema347.EntityScalarField;
|
|
33
|
+
updatedAt: _contractspec_lib_schema347.EntityScalarField;
|
|
34
34
|
}>;
|
|
35
35
|
//#endregion
|
|
36
36
|
export { FeatureFlagEntity, SettingsEntity };
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _contractspec_lib_schema293 from "@contractspec/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/settings/settings.enum.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Settings scope enum.
|
|
6
6
|
*/
|
|
7
|
-
declare const SettingsScopeEnum:
|
|
7
|
+
declare const SettingsScopeEnum: _contractspec_lib_schema293.EntityEnumDef;
|
|
8
8
|
//#endregion
|
|
9
9
|
export { SettingsScopeEnum };
|
|
10
10
|
//# sourceMappingURL=settings.enum.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as react_jsx_runtime2 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_runtime2.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_runtime3 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_runtime3.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.53.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.
|
|
72
|
+
"@contractspec/lib.identity-rbac": "1.53.0",
|
|
73
|
+
"@contractspec/lib.jobs": "1.53.0",
|
|
74
|
+
"@contractspec/module.audit-trail": "1.53.0",
|
|
75
|
+
"@contractspec/module.notifications": "1.53.0",
|
|
76
|
+
"@contractspec/lib.contracts": "1.53.0",
|
|
77
|
+
"@contractspec/lib.schema": "1.53.0",
|
|
78
|
+
"@contractspec/lib.example-shared-ui": "1.7.0",
|
|
79
|
+
"@contractspec/lib.design-system": "1.53.0",
|
|
80
|
+
"@contractspec/lib.runtime-sandbox": "0.8.0",
|
|
81
81
|
"react": "19.2.3",
|
|
82
82
|
"react-dom": "19.2.3"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@contractspec/tool.tsdown": "1.
|
|
86
|
-
"@contractspec/tool.typescript": "1.
|
|
85
|
+
"@contractspec/tool.tsdown": "1.53.0",
|
|
86
|
+
"@contractspec/tool.typescript": "1.53.0",
|
|
87
87
|
"tsdown": "^0.19.0",
|
|
88
88
|
"typescript": "^5.9.3",
|
|
89
89
|
"@types/react": "^19.2.8",
|