@contractspec/example.saas-boilerplate 3.8.2 → 3.8.4
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.log +3 -3
- package/CHANGELOG.md +36 -0
- package/dist/ui/renderers/project-list.markdown.d.ts +1 -1
- package/dist/ui/renderers/project-list.renderer.d.ts +1 -1
- package/package.json +14 -13
- package/src/ui/renderers/project-list.markdown.ts +1 -1
- package/src/ui/renderers/project-list.renderer.tsx +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
|
|
|
3
3
|
$ contractspec-bun-build prebuild
|
|
4
4
|
$ contractspec-bun-build transpile
|
|
5
5
|
[contractspec-bun-build] transpile target=bun root=src entries=52 noBundle=false
|
|
6
|
-
Bundled 52 modules in
|
|
6
|
+
Bundled 52 modules in 92ms
|
|
7
7
|
|
|
8
8
|
billing/billing.entity.js 3.54 KB (entry point)
|
|
9
9
|
tests/operations.test-spec.js 2.91 KB (entry point)
|
|
@@ -59,7 +59,7 @@ Bundled 52 modules in 68ms
|
|
|
59
59
|
billing/billing.enum.js 443 bytes (entry point)
|
|
60
60
|
|
|
61
61
|
[contractspec-bun-build] transpile target=node root=src entries=52 noBundle=false
|
|
62
|
-
Bundled 52 modules in
|
|
62
|
+
Bundled 52 modules in 95ms
|
|
63
63
|
|
|
64
64
|
billing/billing.entity.js 3.53 KB (entry point)
|
|
65
65
|
tests/operations.test-spec.js 2.90 KB (entry point)
|
|
@@ -115,7 +115,7 @@ Bundled 52 modules in 40ms
|
|
|
115
115
|
billing/billing.enum.js 435 bytes (entry point)
|
|
116
116
|
|
|
117
117
|
[contractspec-bun-build] transpile target=browser root=src entries=52 noBundle=false
|
|
118
|
-
Bundled 52 modules in
|
|
118
|
+
Bundled 52 modules in 33ms
|
|
119
119
|
|
|
120
120
|
billing/billing.entity.js 3.53 KB (entry point)
|
|
121
121
|
tests/operations.test-spec.js 2.90 KB (entry point)
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @contractspec/example.saas-boilerplate
|
|
2
2
|
|
|
3
|
+
## 3.8.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [81256ea]
|
|
8
|
+
- Updated dependencies [2619dd8]
|
|
9
|
+
- Updated dependencies [6de2f1c]
|
|
10
|
+
- Updated dependencies [81256ea]
|
|
11
|
+
- Updated dependencies [a4489bb]
|
|
12
|
+
- Updated dependencies [9cb304e]
|
|
13
|
+
- @contractspec/lib.contracts-spec@5.0.0
|
|
14
|
+
- @contractspec/lib.presentation-runtime-core@3.9.0
|
|
15
|
+
- @contractspec/lib.schema@3.7.10
|
|
16
|
+
- @contractspec/lib.design-system@3.8.5
|
|
17
|
+
- @contractspec/lib.example-shared-ui@6.0.12
|
|
18
|
+
- @contractspec/lib.identity-rbac@3.7.12
|
|
19
|
+
- @contractspec/lib.jobs@3.7.12
|
|
20
|
+
- @contractspec/module.audit-trail@3.7.12
|
|
21
|
+
- @contractspec/module.notifications@3.7.12
|
|
22
|
+
|
|
23
|
+
## 3.8.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- fix: release
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @contractspec/lib.example-shared-ui@6.0.11
|
|
30
|
+
- @contractspec/module.notifications@3.7.11
|
|
31
|
+
- @contractspec/lib.runtime-sandbox@2.7.10
|
|
32
|
+
- @contractspec/lib.contracts-spec@4.1.3
|
|
33
|
+
- @contractspec/module.audit-trail@3.7.11
|
|
34
|
+
- @contractspec/lib.design-system@3.8.4
|
|
35
|
+
- @contractspec/lib.identity-rbac@3.7.11
|
|
36
|
+
- @contractspec/lib.schema@3.7.9
|
|
37
|
+
- @contractspec/lib.jobs@3.7.11
|
|
38
|
+
|
|
3
39
|
## 3.8.2
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses dynamic import to ensure correct build order.
|
|
5
5
|
*/
|
|
6
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
6
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
7
7
|
/**
|
|
8
8
|
* Markdown renderer for saas-boilerplate.project.list presentation
|
|
9
9
|
* Only handles ProjectListView component
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* React renderer for SaaS Project List presentation
|
|
3
3
|
*/
|
|
4
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
4
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
5
5
|
import * as React from 'react';
|
|
6
6
|
export declare const projectListReactRenderer: PresentationRenderer<React.ReactElement>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/example.saas-boilerplate",
|
|
3
|
-
"version": "3.8.
|
|
3
|
+
"version": "3.8.4",
|
|
4
4
|
"description": "SaaS Boilerplate - Users, Orgs, Projects, Billing, Settings",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -386,24 +386,25 @@
|
|
|
386
386
|
"typecheck": "tsc --noEmit"
|
|
387
387
|
},
|
|
388
388
|
"dependencies": {
|
|
389
|
-
"@contractspec/lib.identity-rbac": "3.7.
|
|
390
|
-
"@contractspec/lib.jobs": "3.7.
|
|
391
|
-
"@contractspec/module.audit-trail": "3.7.
|
|
392
|
-
"@contractspec/module.notifications": "3.7.
|
|
393
|
-
"@contractspec/lib.contracts-spec": "
|
|
394
|
-
"@contractspec/lib.schema": "3.7.
|
|
395
|
-
"@contractspec/lib.example-shared-ui": "6.0.
|
|
396
|
-
"@contractspec/lib.design-system": "3.8.
|
|
397
|
-
"@contractspec/lib.runtime-sandbox": "2.7.
|
|
389
|
+
"@contractspec/lib.identity-rbac": "3.7.12",
|
|
390
|
+
"@contractspec/lib.jobs": "3.7.12",
|
|
391
|
+
"@contractspec/module.audit-trail": "3.7.12",
|
|
392
|
+
"@contractspec/module.notifications": "3.7.12",
|
|
393
|
+
"@contractspec/lib.contracts-spec": "5.0.0",
|
|
394
|
+
"@contractspec/lib.schema": "3.7.10",
|
|
395
|
+
"@contractspec/lib.example-shared-ui": "6.0.12",
|
|
396
|
+
"@contractspec/lib.design-system": "3.8.5",
|
|
397
|
+
"@contractspec/lib.runtime-sandbox": "2.7.10",
|
|
398
398
|
"react": "19.2.0",
|
|
399
|
-
"react-dom": "19.2.0"
|
|
399
|
+
"react-dom": "19.2.0",
|
|
400
|
+
"@contractspec/lib.presentation-runtime-core": "3.9.0"
|
|
400
401
|
},
|
|
401
402
|
"devDependencies": {
|
|
402
|
-
"@contractspec/tool.typescript": "3.7.
|
|
403
|
+
"@contractspec/tool.typescript": "3.7.9",
|
|
403
404
|
"typescript": "^5.9.3",
|
|
404
405
|
"@types/react": "^19.2.14",
|
|
405
406
|
"@types/react-dom": "^19.2.2",
|
|
406
|
-
"@contractspec/tool.bun": "3.7.
|
|
407
|
+
"@contractspec/tool.bun": "3.7.9"
|
|
407
408
|
},
|
|
408
409
|
"publishConfig": {
|
|
409
410
|
"exports": {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Uses dynamic import to ensure correct build order.
|
|
5
5
|
*/
|
|
6
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
6
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
7
7
|
import {
|
|
8
8
|
mockGetSubscriptionHandler,
|
|
9
9
|
mockListProjectsHandler,
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* React renderer for SaaS Project List presentation
|
|
3
3
|
*/
|
|
4
4
|
|
|
5
|
-
import type { PresentationRenderer } from '@contractspec/lib.
|
|
5
|
+
import type { PresentationRenderer } from '@contractspec/lib.presentation-runtime-core/transform-engine';
|
|
6
6
|
import * as React from 'react';
|
|
7
7
|
import { SaasProjectList } from '../SaasProjectList';
|
|
8
8
|
|