@contractspec/example.saas-boilerplate 1.57.0 → 1.59.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.log +160 -180
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +39 -0
- package/dist/billing/billing.entity.d.ts +40 -45
- package/dist/billing/billing.entity.d.ts.map +1 -1
- package/dist/billing/billing.entity.js +110 -118
- package/dist/billing/billing.enum.d.ts +2 -7
- package/dist/billing/billing.enum.d.ts.map +1 -1
- package/dist/billing/billing.enum.js +17 -24
- package/dist/billing/billing.event.d.ts +67 -73
- package/dist/billing/billing.event.d.ts.map +1 -1
- package/dist/billing/billing.event.js +84 -146
- package/dist/billing/billing.handler.d.ts +59 -62
- package/dist/billing/billing.handler.d.ts.map +1 -1
- package/dist/billing/billing.handler.js +140 -49
- package/dist/billing/billing.operations.d.ts +138 -144
- package/dist/billing/billing.operations.d.ts.map +1 -1
- package/dist/billing/billing.operations.js +273 -175
- package/dist/billing/billing.presentation.d.ts +2 -7
- package/dist/billing/billing.presentation.d.ts.map +1 -1
- package/dist/billing/billing.presentation.js +51 -57
- package/dist/billing/billing.schema.d.ts +159 -164
- package/dist/billing/billing.schema.d.ts.map +1 -1
- package/dist/billing/billing.schema.js +112 -204
- package/dist/billing/index.d.ts +11 -8
- package/dist/billing/index.d.ts.map +1 -0
- package/dist/billing/index.js +689 -9
- package/dist/browser/billing/billing.entity.js +113 -0
- package/dist/browser/billing/billing.enum.js +19 -0
- package/dist/browser/billing/billing.event.js +90 -0
- package/dist/browser/billing/billing.handler.js +148 -0
- package/dist/browser/billing/billing.operations.js +278 -0
- package/dist/browser/billing/billing.presentation.js +52 -0
- package/dist/browser/billing/billing.schema.js +121 -0
- package/dist/browser/billing/index.js +688 -0
- package/dist/browser/dashboard/dashboard.presentation.js +52 -0
- package/dist/browser/dashboard/index.js +52 -0
- package/dist/browser/docs/index.js +93 -0
- package/dist/browser/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/browser/example.js +39 -0
- package/dist/browser/handlers/index.js +358 -0
- package/dist/browser/handlers/saas.handlers.js +134 -0
- package/dist/browser/index.js +3340 -0
- package/dist/browser/presentations/index.js +290 -0
- package/dist/browser/project/index.js +790 -0
- package/dist/browser/project/project.entity.js +77 -0
- package/dist/browser/project/project.enum.js +18 -0
- package/dist/browser/project/project.event.js +103 -0
- package/dist/browser/project/project.handler.js +178 -0
- package/dist/browser/project/project.operations.js +372 -0
- package/dist/browser/project/project.presentation.js +177 -0
- package/dist/browser/project/project.schema.js +134 -0
- package/dist/browser/saas-boilerplate.feature.js +88 -0
- package/dist/browser/seeders/index.js +20 -0
- package/dist/browser/settings/index.js +75 -0
- package/dist/browser/settings/settings.entity.js +74 -0
- package/dist/browser/settings/settings.enum.js +11 -0
- package/dist/browser/shared/mock-data.js +104 -0
- package/dist/browser/shared/overlay-types.js +0 -0
- package/dist/browser/tests/operations.test-spec.js +112 -0
- package/dist/browser/ui/SaasDashboard.js +988 -0
- package/dist/browser/ui/SaasProjectList.js +162 -0
- package/dist/browser/ui/SaasSettingsPanel.js +145 -0
- package/dist/browser/ui/hooks/index.js +159 -0
- package/dist/browser/ui/hooks/useProjectList.js +66 -0
- package/dist/browser/ui/hooks/useProjectMutations.js +91 -0
- package/dist/browser/ui/index.js +1808 -0
- package/dist/browser/ui/modals/CreateProjectModal.js +153 -0
- package/dist/browser/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/browser/ui/modals/index.js +487 -0
- package/dist/browser/ui/overlays/demo-overlays.js +61 -0
- package/dist/browser/ui/overlays/index.js +61 -0
- package/dist/browser/ui/renderers/index.js +675 -0
- package/dist/browser/ui/renderers/project-list.markdown.js +499 -0
- package/dist/browser/ui/renderers/project-list.renderer.js +177 -0
- package/dist/dashboard/dashboard.presentation.d.ts +2 -7
- package/dist/dashboard/dashboard.presentation.d.ts.map +1 -1
- package/dist/dashboard/dashboard.presentation.js +51 -53
- package/dist/dashboard/index.d.ts +5 -2
- package/dist/dashboard/index.d.ts.map +1 -0
- package/dist/dashboard/index.js +53 -3
- package/dist/docs/index.d.ts +2 -1
- package/dist/docs/index.d.ts.map +1 -0
- package/dist/docs/index.js +94 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts +2 -1
- package/dist/docs/saas-boilerplate.docblock.d.ts.map +1 -0
- package/dist/docs/saas-boilerplate.docblock.js +45 -51
- package/dist/example.d.ts +2 -6
- package/dist/example.d.ts.map +1 -1
- package/dist/example.js +38 -50
- package/dist/handlers/index.d.ts +7 -4
- package/dist/handlers/index.d.ts.map +1 -0
- package/dist/handlers/index.js +358 -4
- package/dist/handlers/saas.handlers.d.ts +60 -59
- package/dist/handlers/saas.handlers.d.ts.map +1 -1
- package/dist/handlers/saas.handlers.js +127 -140
- package/dist/index.d.ts +15 -45
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +3335 -75
- package/dist/node/billing/billing.entity.js +113 -0
- package/dist/node/billing/billing.enum.js +19 -0
- package/dist/node/billing/billing.event.js +90 -0
- package/dist/node/billing/billing.handler.js +148 -0
- package/dist/node/billing/billing.operations.js +278 -0
- package/dist/node/billing/billing.presentation.js +52 -0
- package/dist/node/billing/billing.schema.js +121 -0
- package/dist/node/billing/index.js +688 -0
- package/dist/node/dashboard/dashboard.presentation.js +52 -0
- package/dist/node/dashboard/index.js +52 -0
- package/dist/node/docs/index.js +93 -0
- package/dist/node/docs/saas-boilerplate.docblock.js +93 -0
- package/dist/node/example.js +39 -0
- package/dist/node/handlers/index.js +358 -0
- package/dist/node/handlers/saas.handlers.js +134 -0
- package/dist/node/index.js +3340 -0
- package/dist/node/presentations/index.js +290 -0
- package/dist/node/project/index.js +790 -0
- package/dist/node/project/project.entity.js +77 -0
- package/dist/node/project/project.enum.js +18 -0
- package/dist/node/project/project.event.js +103 -0
- package/dist/node/project/project.handler.js +178 -0
- package/dist/node/project/project.operations.js +372 -0
- package/dist/node/project/project.presentation.js +177 -0
- package/dist/node/project/project.schema.js +134 -0
- package/dist/node/saas-boilerplate.feature.js +88 -0
- package/dist/node/seeders/index.js +20 -0
- package/dist/node/settings/index.js +75 -0
- package/dist/node/settings/settings.entity.js +74 -0
- package/dist/node/settings/settings.enum.js +11 -0
- package/dist/node/shared/mock-data.js +104 -0
- package/dist/node/shared/overlay-types.js +0 -0
- package/dist/node/tests/operations.test-spec.js +112 -0
- package/dist/node/ui/SaasDashboard.js +988 -0
- package/dist/node/ui/SaasProjectList.js +162 -0
- package/dist/node/ui/SaasSettingsPanel.js +145 -0
- package/dist/node/ui/hooks/index.js +159 -0
- package/dist/node/ui/hooks/useProjectList.js +66 -0
- package/dist/node/ui/hooks/useProjectMutations.js +91 -0
- package/dist/node/ui/index.js +1808 -0
- package/dist/node/ui/modals/CreateProjectModal.js +153 -0
- package/dist/node/ui/modals/ProjectActionsModal.js +335 -0
- package/dist/node/ui/modals/index.js +487 -0
- package/dist/node/ui/overlays/demo-overlays.js +61 -0
- package/dist/node/ui/overlays/index.js +61 -0
- package/dist/node/ui/renderers/index.js +675 -0
- package/dist/node/ui/renderers/project-list.markdown.js +499 -0
- package/dist/node/ui/renderers/project-list.renderer.js +177 -0
- package/dist/presentations/index.d.ts +13 -14
- package/dist/presentations/index.d.ts.map +1 -1
- package/dist/presentations/index.js +289 -15
- package/dist/project/index.d.ts +11 -8
- package/dist/project/index.d.ts.map +1 -0
- package/dist/project/index.js +791 -9
- package/dist/project/project.entity.d.ts +23 -28
- package/dist/project/project.entity.d.ts.map +1 -1
- package/dist/project/project.entity.js +75 -82
- package/dist/project/project.enum.d.ts +2 -7
- package/dist/project/project.enum.d.ts.map +1 -1
- package/dist/project/project.enum.js +16 -23
- package/dist/project/project.event.d.ts +69 -75
- package/dist/project/project.event.d.ts.map +1 -1
- package/dist/project/project.event.js +95 -156
- package/dist/project/project.handler.d.ts +44 -47
- package/dist/project/project.handler.d.ts.map +1 -1
- package/dist/project/project.handler.js +168 -71
- package/dist/project/project.operations.d.ts +341 -347
- package/dist/project/project.operations.d.ts.map +1 -1
- package/dist/project/project.operations.js +366 -253
- package/dist/project/project.presentation.d.ts +2 -7
- package/dist/project/project.presentation.d.ts.map +1 -1
- package/dist/project/project.presentation.js +174 -61
- package/dist/project/project.schema.d.ts +191 -196
- package/dist/project/project.schema.d.ts.map +1 -1
- package/dist/project/project.schema.js +125 -205
- package/dist/saas-boilerplate.feature.d.ts +1 -6
- package/dist/saas-boilerplate.feature.d.ts.map +1 -1
- package/dist/saas-boilerplate.feature.js +87 -206
- package/dist/seeders/index.d.ts +4 -8
- package/dist/seeders/index.d.ts.map +1 -1
- package/dist/seeders/index.js +18 -16
- package/dist/settings/index.d.ts +6 -3
- package/dist/settings/index.d.ts.map +1 -0
- package/dist/settings/index.js +75 -3
- package/dist/settings/settings.entity.d.ts +23 -28
- package/dist/settings/settings.entity.d.ts.map +1 -1
- package/dist/settings/settings.entity.js +72 -75
- package/dist/settings/settings.enum.d.ts +1 -6
- package/dist/settings/settings.enum.d.ts.map +1 -1
- package/dist/settings/settings.enum.js +10 -19
- package/dist/shared/mock-data.d.ts +74 -77
- package/dist/shared/mock-data.d.ts.map +1 -1
- package/dist/shared/mock-data.js +102 -135
- package/dist/shared/overlay-types.d.ts +25 -28
- package/dist/shared/overlay-types.d.ts.map +1 -1
- package/dist/shared/overlay-types.js +1 -0
- package/dist/tests/operations.test-spec.d.ts +4 -9
- package/dist/tests/operations.test-spec.d.ts.map +1 -1
- package/dist/tests/operations.test-spec.js +108 -118
- package/dist/ui/SaasDashboard.d.ts +1 -6
- package/dist/ui/SaasDashboard.d.ts.map +1 -1
- package/dist/ui/SaasDashboard.js +977 -286
- package/dist/ui/SaasProjectList.d.ts +4 -11
- package/dist/ui/SaasProjectList.d.ts.map +1 -1
- package/dist/ui/SaasProjectList.js +159 -72
- package/dist/ui/SaasSettingsPanel.d.ts +1 -6
- package/dist/ui/SaasSettingsPanel.d.ts.map +1 -1
- package/dist/ui/SaasSettingsPanel.js +142 -134
- package/dist/ui/hooks/index.d.ts +3 -3
- package/dist/ui/hooks/index.d.ts.map +1 -0
- package/dist/ui/hooks/index.js +158 -4
- package/dist/ui/hooks/useProjectList.d.ts +26 -30
- package/dist/ui/hooks/useProjectList.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectList.js +63 -71
- package/dist/ui/hooks/useProjectMutations.d.ts +20 -24
- package/dist/ui/hooks/useProjectMutations.d.ts.map +1 -1
- package/dist/ui/hooks/useProjectMutations.js +88 -142
- package/dist/ui/index.d.ts +8 -14
- package/dist/ui/index.d.ts.map +1 -0
- package/dist/ui/index.js +1809 -15
- package/dist/ui/modals/CreateProjectModal.d.ts +10 -19
- package/dist/ui/modals/CreateProjectModal.d.ts.map +1 -1
- package/dist/ui/modals/CreateProjectModal.js +150 -135
- package/dist/ui/modals/ProjectActionsModal.d.ts +20 -33
- package/dist/ui/modals/ProjectActionsModal.d.ts.map +1 -1
- package/dist/ui/modals/ProjectActionsModal.js +333 -289
- package/dist/ui/modals/index.d.ts +3 -3
- package/dist/ui/modals/index.d.ts.map +1 -0
- package/dist/ui/modals/index.js +487 -3
- package/dist/ui/overlays/demo-overlays.d.ts +10 -8
- package/dist/ui/overlays/demo-overlays.d.ts.map +1 -1
- package/dist/ui/overlays/demo-overlays.js +60 -68
- package/dist/ui/overlays/index.d.ts +2 -2
- package/dist/ui/overlays/index.d.ts.map +1 -0
- package/dist/ui/overlays/index.js +62 -3
- package/dist/ui/renderers/index.d.ts +3 -3
- package/dist/ui/renderers/index.d.ts.map +1 -0
- package/dist/ui/renderers/index.js +675 -3
- package/dist/ui/renderers/project-list.markdown.d.ts +15 -14
- package/dist/ui/renderers/project-list.markdown.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.markdown.js +496 -146
- package/dist/ui/renderers/project-list.renderer.d.ts +6 -7
- package/dist/ui/renderers/project-list.renderer.d.ts.map +1 -1
- package/dist/ui/renderers/project-list.renderer.js +176 -15
- package/package.json +508 -98
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$bundle.log +0 -180
- package/dist/billing/billing.entity.js.map +0 -1
- package/dist/billing/billing.enum.js.map +0 -1
- package/dist/billing/billing.event.js.map +0 -1
- package/dist/billing/billing.handler.js.map +0 -1
- package/dist/billing/billing.operations.js.map +0 -1
- package/dist/billing/billing.presentation.js.map +0 -1
- package/dist/billing/billing.schema.js.map +0 -1
- package/dist/dashboard/dashboard.presentation.js.map +0 -1
- package/dist/docs/saas-boilerplate.docblock.js.map +0 -1
- package/dist/example.js.map +0 -1
- package/dist/handlers/saas.handlers.js.map +0 -1
- package/dist/index.js.map +0 -1
- package/dist/presentations/index.js.map +0 -1
- package/dist/project/project.entity.js.map +0 -1
- package/dist/project/project.enum.js.map +0 -1
- package/dist/project/project.event.js.map +0 -1
- package/dist/project/project.handler.js.map +0 -1
- package/dist/project/project.operations.js.map +0 -1
- package/dist/project/project.presentation.js.map +0 -1
- package/dist/project/project.schema.js.map +0 -1
- package/dist/saas-boilerplate.feature.js.map +0 -1
- package/dist/seeders/index.js.map +0 -1
- package/dist/settings/settings.entity.js.map +0 -1
- package/dist/settings/settings.enum.js.map +0 -1
- package/dist/shared/mock-data.js.map +0 -1
- package/dist/tests/operations.test-spec.js.map +0 -1
- package/dist/ui/SaasDashboard.js.map +0 -1
- package/dist/ui/SaasProjectList.js.map +0 -1
- package/dist/ui/SaasSettingsPanel.js.map +0 -1
- package/dist/ui/hooks/useProjectList.js.map +0 -1
- package/dist/ui/hooks/useProjectMutations.js.map +0 -1
- package/dist/ui/modals/CreateProjectModal.js.map +0 -1
- package/dist/ui/modals/ProjectActionsModal.js.map +0 -1
- package/dist/ui/overlays/demo-overlays.js.map +0 -1
- package/dist/ui/renderers/project-list.markdown.js.map +0 -1
- package/dist/ui/renderers/project-list.renderer.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,181 +1,161 @@
|
|
|
1
|
-
$ bun
|
|
2
|
-
$
|
|
3
|
-
$
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
[34mℹ[39m target: [34mesnext[39m
|
|
8
|
-
[34mℹ[39m tsconfig: [34mtsconfig.json[39m
|
|
9
|
-
[34mℹ[39m Build start
|
|
10
|
-
[34mℹ[39m [2mdist/[22m[1mui/SaasDashboard.js[22m [2m 9.85 kB[22m [2m│ gzip: 2.66 kB[22m
|
|
11
|
-
[34mℹ[39m [2mdist/[22m[1mui/modals/ProjectActionsModal.js[22m [2m 8.96 kB[22m [2m│ gzip: 1.97 kB[22m
|
|
12
|
-
[34mℹ[39m [2mdist/[22m[1mindex.js[22m [2m 6.54 kB[22m [2m│ gzip: 1.38 kB[22m
|
|
13
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.operations.js[22m [2m 5.85 kB[22m [2m│ gzip: 1.46 kB[22m
|
|
14
|
-
[34mℹ[39m [2mdist/[22m[1mui/renderers/project-list.markdown.js[22m [2m 5.56 kB[22m [2m│ gzip: 1.49 kB[22m
|
|
15
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.schema.js[22m [2m 4.79 kB[22m [2m│ gzip: 0.86 kB[22m
|
|
16
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.schema.js[22m [2m 4.60 kB[22m [2m│ gzip: 0.77 kB[22m
|
|
17
|
-
[34mℹ[39m [2mdist/[22m[1mui/modals/CreateProjectModal.js[22m [2m 4.42 kB[22m [2m│ gzip: 1.50 kB[22m
|
|
18
|
-
[34mℹ[39m [2mdist/[22m[1mui/SaasSettingsPanel.js[22m [2m 4.28 kB[22m [2m│ gzip: 1.15 kB[22m
|
|
19
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.operations.js[22m [2m 4.28 kB[22m [2m│ gzip: 1.28 kB[22m
|
|
20
|
-
[34mℹ[39m [2mdist/[22m[1mhandlers/saas.handlers.js[22m [2m 4.16 kB[22m [2m│ gzip: 1.32 kB[22m
|
|
21
|
-
[34mℹ[39m [2mdist/[22m[1mdocs/saas-boilerplate.docblock.js[22m [2m 3.77 kB[22m [2m│ gzip: 1.47 kB[22m
|
|
22
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.event.js[22m [2m 3.69 kB[22m [2m│ gzip: 0.66 kB[22m
|
|
23
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.entity.js[22m [2m 3.65 kB[22m [2m│ gzip: 1.12 kB[22m
|
|
24
|
-
[34mℹ[39m [2mdist/[22m[1msaas-boilerplate.feature.js[22m [2m 3.46 kB[22m [2m│ gzip: 0.76 kB[22m
|
|
25
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.event.js[22m [2m 3.36 kB[22m [2m│ gzip: 0.71 kB[22m
|
|
26
|
-
[34mℹ[39m [2mdist/[22m[1mui/hooks/useProjectMutations.js[22m [2m 3.18 kB[22m [2m│ gzip: 0.90 kB[22m
|
|
27
|
-
[34mℹ[39m [2mdist/[22m[1mshared/mock-data.js[22m [2m 2.89 kB[22m [2m│ gzip: 0.98 kB[22m
|
|
28
|
-
[34mℹ[39m [2mdist/[22m[1mtests/operations.test-spec.js[22m [2m 2.77 kB[22m [2m│ gzip: 0.53 kB[22m
|
|
29
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.handler.js[22m [2m 2.61 kB[22m [2m│ gzip: 0.89 kB[22m
|
|
30
|
-
[34mℹ[39m [2mdist/[22m[1mui/SaasProjectList.js[22m [2m 2.52 kB[22m [2m│ gzip: 1.00 kB[22m
|
|
31
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.entity.js[22m [2m 2.37 kB[22m [2m│ gzip: 0.84 kB[22m
|
|
32
|
-
[34mℹ[39m [2mdist/[22m[1msettings/settings.entity.js[22m [2m 2.14 kB[22m [2m│ gzip: 0.80 kB[22m
|
|
33
|
-
[34mℹ[39m [2mdist/[22m[1mui/hooks/useProjectList.js[22m [2m 2.08 kB[22m [2m│ gzip: 0.92 kB[22m
|
|
34
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/index.js[22m [2m 1.68 kB[22m [2m│ gzip: 0.39 kB[22m
|
|
35
|
-
[34mℹ[39m [2mdist/[22m[1mproject/index.js[22m [2m 1.67 kB[22m [2m│ gzip: 0.37 kB[22m
|
|
36
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.presentation.js[22m [2m 1.66 kB[22m [2m│ gzip: 0.63 kB[22m
|
|
37
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.presentation.js[22m [2m 1.56 kB[22m [2m│ gzip: 0.57 kB[22m
|
|
38
|
-
[34mℹ[39m [2mdist/[22m[1mdashboard/dashboard.presentation.js[22m [2m 1.51 kB[22m [2m│ gzip: 0.58 kB[22m
|
|
39
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.handler.js[22m [2m 1.45 kB[22m [2m│ gzip: 0.58 kB[22m
|
|
40
|
-
[34mℹ[39m [2mdist/[22m[1mui/overlays/demo-overlays.js[22m [2m 1.40 kB[22m [2m│ gzip: 0.57 kB[22m
|
|
41
|
-
[34mℹ[39m [2mdist/[22m[1mui/index.js[22m [2m 1.15 kB[22m [2m│ gzip: 0.31 kB[22m
|
|
42
|
-
[34mℹ[39m [2mdist/[22m[1mexample.js[22m [2m 1.08 kB[22m [2m│ gzip: 0.56 kB[22m
|
|
43
|
-
[34mℹ[39m [2mdist/[22m[1mpresentations/index.js[22m [2m 0.86 kB[22m [2m│ gzip: 0.28 kB[22m
|
|
44
|
-
[34mℹ[39m [2mdist/[22m[1mhandlers/index.js[22m [2m 0.66 kB[22m [2m│ gzip: 0.22 kB[22m
|
|
45
|
-
[34mℹ[39m [2mdist/[22m[1mbilling/billing.enum.js[22m [2m 0.64 kB[22m [2m│ gzip: 0.36 kB[22m
|
|
46
|
-
[34mℹ[39m [2mdist/[22m[1mui/renderers/project-list.renderer.js[22m [2m 0.62 kB[22m [2m│ gzip: 0.33 kB[22m
|
|
47
|
-
[34mℹ[39m [2mdist/[22m[1mproject/project.enum.js[22m [2m 0.61 kB[22m [2m│ gzip: 0.32 kB[22m
|
|
48
|
-
[34mℹ[39m [2mdist/[22m[1mseeders/index.js[22m [2m 0.59 kB[22m [2m│ gzip: 0.41 kB[22m
|
|
49
|
-
[34mℹ[39m [2mdist/[22m[1msettings/settings.enum.js[22m [2m 0.40 kB[22m [2m│ gzip: 0.27 kB[22m
|
|
50
|
-
[34mℹ[39m [2mdist/[22m[1mui/renderers/index.js[22m [2m 0.33 kB[22m [2m│ gzip: 0.14 kB[22m
|
|
51
|
-
[34mℹ[39m [2mdist/[22m[1msettings/index.js[22m [2m 0.20 kB[22m [2m│ gzip: 0.11 kB[22m
|
|
52
|
-
[34mℹ[39m [2mdist/[22m[1mui/hooks/index.js[22m [2m 0.18 kB[22m [2m│ gzip: 0.10 kB[22m
|
|
53
|
-
[34mℹ[39m [2mdist/[22m[1mui/modals/index.js[22m [2m 0.18 kB[22m [2m│ gzip: 0.09 kB[22m
|
|
54
|
-
[34mℹ[39m [2mdist/[22m[1mdashboard/index.js[22m [2m 0.17 kB[22m [2m│ gzip: 0.10 kB[22m
|
|
55
|
-
[34mℹ[39m [2mdist/[22m[1mui/overlays/index.js[22m [2m 0.15 kB[22m [2m│ gzip: 0.09 kB[22m
|
|
56
|
-
[34mℹ[39m [2mdist/[22m[1mdocs/index.js[22m [2m 0.04 kB[22m [2m│ gzip: 0.06 kB[22m
|
|
57
|
-
[34mℹ[39m [2mdist/[22m[1mshared/overlay-types.js[22m [2m 0.00 kB[22m [2m│ gzip: 0.02 kB[22m
|
|
58
|
-
[34mℹ[39m [2mdist/[22mui/SaasDashboard.js.map [2m13.95 kB[22m [2m│ gzip: 4.28 kB[22m
|
|
59
|
-
[34mℹ[39m [2mdist/[22mui/modals/ProjectActionsModal.js.map [2m13.61 kB[22m [2m│ gzip: 3.24 kB[22m
|
|
60
|
-
[34mℹ[39m [2mdist/[22mhandlers/saas.handlers.js.map [2m10.14 kB[22m [2m│ gzip: 2.92 kB[22m
|
|
61
|
-
[34mℹ[39m [2mdist/[22mui/renderers/project-list.markdown.js.map [2m10.01 kB[22m [2m│ gzip: 2.54 kB[22m
|
|
62
|
-
[34mℹ[39m [2mdist/[22mproject/project.operations.js.map [2m 9.59 kB[22m [2m│ gzip: 1.99 kB[22m
|
|
63
|
-
[34mℹ[39m [2mdist/[22mui/modals/CreateProjectModal.js.map [2m 7.15 kB[22m [2m│ gzip: 2.45 kB[22m
|
|
64
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.schema.js.map [2m 6.87 kB[22m [2m│ gzip: 1.26 kB[22m
|
|
65
|
-
[34mℹ[39m [2mdist/[22mproject/project.schema.js.map [2m 6.85 kB[22m [2m│ gzip: 1.13 kB[22m
|
|
66
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.operations.js.map [2m 6.82 kB[22m [2m│ gzip: 1.76 kB[22m
|
|
67
|
-
[34mℹ[39m [2mdist/[22mui/hooks/useProjectMutations.js.map [2m 6.40 kB[22m [2m│ gzip: 1.72 kB[22m
|
|
68
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.entity.js.map [2m 6.25 kB[22m [2m│ gzip: 1.77 kB[22m
|
|
69
|
-
[34mℹ[39m [2mdist/[22mproject/project.handler.js.map [2m 5.62 kB[22m [2m│ gzip: 1.68 kB[22m
|
|
70
|
-
[34mℹ[39m [2mdist/[22mproject/project.event.js.map [2m 5.53 kB[22m [2m│ gzip: 0.95 kB[22m
|
|
71
|
-
[34mℹ[39m [2mdist/[22msaas-boilerplate.feature.js.map [2m 5.48 kB[22m [2m│ gzip: 1.33 kB[22m
|
|
72
|
-
[34mℹ[39m [2mdist/[22mui/SaasSettingsPanel.js.map [2m 4.93 kB[22m [2m│ gzip: 1.57 kB[22m
|
|
73
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.event.js.map [2m 4.93 kB[22m [2m│ gzip: 1.05 kB[22m
|
|
74
|
-
[34mℹ[39m [2mdist/[22mtests/operations.test-spec.js.map [2m 4.75 kB[22m [2m│ gzip: 0.82 kB[22m
|
|
75
|
-
[34mℹ[39m [2mdist/[22mdocs/saas-boilerplate.docblock.js.map [2m 4.63 kB[22m [2m│ gzip: 1.68 kB[22m
|
|
76
|
-
[34mℹ[39m [2mdist/[22mshared/mock-data.js.map [2m 4.50 kB[22m [2m│ gzip: 1.31 kB[22m
|
|
77
|
-
[34mℹ[39m [2mdist/[22mui/hooks/useProjectList.js.map [2m 4.25 kB[22m [2m│ gzip: 1.69 kB[22m
|
|
78
|
-
[34mℹ[39m [2mdist/[22mui/SaasProjectList.js.map [2m 4.01 kB[22m [2m│ gzip: 1.55 kB[22m
|
|
79
|
-
[34mℹ[39m [2mdist/[22mproject/project.entity.js.map [2m 3.94 kB[22m [2m│ gzip: 1.30 kB[22m
|
|
80
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.handler.js.map [2m 3.76 kB[22m [2m│ gzip: 1.29 kB[22m
|
|
81
|
-
[34mℹ[39m [2mdist/[22msettings/settings.entity.js.map [2m 3.62 kB[22m [2m│ gzip: 1.22 kB[22m
|
|
82
|
-
[34mℹ[39m [2mdist/[22mindex.js.map [2m 2.59 kB[22m [2m│ gzip: 0.88 kB[22m
|
|
83
|
-
[34mℹ[39m [2mdist/[22mui/overlays/demo-overlays.js.map [2m 2.42 kB[22m [2m│ gzip: 0.90 kB[22m
|
|
84
|
-
[34mℹ[39m [2mdist/[22mproject/project.presentation.js.map [2m 2.39 kB[22m [2m│ gzip: 0.85 kB[22m
|
|
85
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.presentation.js.map [2m 2.28 kB[22m [2m│ gzip: 0.78 kB[22m
|
|
86
|
-
[34mℹ[39m [2mdist/[22mdashboard/dashboard.presentation.js.map [2m 2.23 kB[22m [2m│ gzip: 0.78 kB[22m
|
|
87
|
-
[34mℹ[39m [2mdist/[22mexample.js.map [2m 1.60 kB[22m [2m│ gzip: 0.78 kB[22m
|
|
88
|
-
[34mℹ[39m [2mdist/[22mpresentations/index.js.map [2m 1.14 kB[22m [2m│ gzip: 0.45 kB[22m
|
|
89
|
-
[34mℹ[39m [2mdist/[22mseeders/index.js.map [2m 1.06 kB[22m [2m│ gzip: 0.64 kB[22m
|
|
90
|
-
[34mℹ[39m [2mdist/[22mui/renderers/project-list.renderer.js.map [2m 1.05 kB[22m [2m│ gzip: 0.52 kB[22m
|
|
91
|
-
[34mℹ[39m [2mdist/[22mhandlers/saas.handlers.d.ts.map [2m 0.97 kB[22m [2m│ gzip: 0.37 kB[22m
|
|
92
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.handler.d.ts.map [2m 0.95 kB[22m [2m│ gzip: 0.36 kB[22m
|
|
93
|
-
[34mℹ[39m [2mdist/[22mproject/project.handler.d.ts.map [2m 0.89 kB[22m [2m│ gzip: 0.33 kB[22m
|
|
94
|
-
[34mℹ[39m [2mdist/[22mproject/project.operations.d.ts.map [2m 0.88 kB[22m [2m│ gzip: 0.25 kB[22m
|
|
95
|
-
[34mℹ[39m [2mdist/[22mbilling/billing.enum.js.map [2m 0.81 kB[22m [2m│ gzip: 0.44 kB[22m
|
|
96
|
-
[33m[PLUGIN_TIMINGS] Warning:[0m Your build spent significant time in plugin `tsdown:external`. See https://rolldown.rs/options/checks#plugintimings for more details.
|
|
97
|
-
[34mℹ[39m [2mdist/[22mproject/project.enum.js.map [2m 0.77 kB[22m [2m│ gzip: 0.39 kB[22m
|
|
1
|
+
$ contractspec-bun-build prebuild
|
|
2
|
+
$ bun run prebuild && bun run build:bundle && bun run build:types
|
|
3
|
+
$ contractspec-bun-build prebuild
|
|
4
|
+
$ contractspec-bun-build transpile
|
|
5
|
+
[contractspec-bun-build] transpile target=bun root=src entries=48
|
|
6
|
+
Bundled 48 modules in 74ms
|
|
98
7
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
8
|
+
billing/billing.entity.js 3.54 KB (entry point)
|
|
9
|
+
tests/operations.test-spec.js 2.89 KB (entry point)
|
|
10
|
+
seeders/index.js 0.60 KB (entry point)
|
|
11
|
+
shared/overlay-types.js 8 bytes (entry point)
|
|
12
|
+
presentations/index.js 8.92 KB (entry point)
|
|
13
|
+
./index.js 113.19 KB (entry point)
|
|
14
|
+
ui/index.js 65.70 KB (entry point)
|
|
15
|
+
ui/modals/index.js 19.42 KB (entry point)
|
|
16
|
+
ui/overlays/index.js 1.31 KB (entry point)
|
|
17
|
+
ui/overlays/demo-overlays.js 1.31 KB (entry point)
|
|
18
|
+
ui/renderers/index.js 21.34 KB (entry point)
|
|
19
|
+
ui/renderers/project-list.markdown.js 15.53 KB (entry point)
|
|
20
|
+
ui/renderers/project-list.renderer.js 5.82 KB (entry point)
|
|
21
|
+
ui/SaasDashboard.js 38.33 KB (entry point)
|
|
22
|
+
ui/modals/CreateProjectModal.js 6.22 KB (entry point)
|
|
23
|
+
ui/modals/ProjectActionsModal.js 13.12 KB (entry point)
|
|
24
|
+
ui/SaasProjectList.js 5.28 KB (entry point)
|
|
25
|
+
ui/SaasSettingsPanel.js 6.42 KB (entry point)
|
|
26
|
+
ui/hooks/index.js 5.0 KB (entry point)
|
|
27
|
+
ui/hooks/useProjectList.js 2.1 KB (entry point)
|
|
28
|
+
ui/hooks/useProjectMutations.js 2.91 KB (entry point)
|
|
29
|
+
./saas-boilerplate.feature.js 2.98 KB (entry point)
|
|
30
|
+
settings/index.js 2.30 KB (entry point)
|
|
31
|
+
settings/settings.entity.js 2.28 KB (entry point)
|
|
32
|
+
settings/settings.enum.js 310 bytes (entry point)
|
|
33
|
+
project/index.js 22.46 KB (entry point)
|
|
34
|
+
project/project.entity.js 2.27 KB (entry point)
|
|
35
|
+
project/project.event.js 3.31 KB (entry point)
|
|
36
|
+
project/project.operations.js 10.13 KB (entry point)
|
|
37
|
+
project/project.presentation.js 5.63 KB (entry point)
|
|
38
|
+
project/project.schema.js 4.39 KB (entry point)
|
|
39
|
+
project/project.enum.js 387 bytes (entry point)
|
|
40
|
+
dashboard/index.js 1.42 KB (entry point)
|
|
41
|
+
dashboard/dashboard.presentation.js 1.42 KB (entry point)
|
|
42
|
+
docs/index.js 3.83 KB (entry point)
|
|
43
|
+
docs/saas-boilerplate.docblock.js 3.83 KB (entry point)
|
|
44
|
+
./example.js 1.1 KB (entry point)
|
|
45
|
+
handlers/index.js 10.38 KB (entry point)
|
|
46
|
+
project/project.handler.js 4.99 KB (entry point)
|
|
47
|
+
handlers/saas.handlers.js 4.19 KB (entry point)
|
|
48
|
+
billing/index.js 20.61 KB (entry point)
|
|
49
|
+
billing/billing.event.js 2.99 KB (entry point)
|
|
50
|
+
billing/billing.handler.js 3.84 KB (entry point)
|
|
51
|
+
shared/mock-data.js 2.68 KB (entry point)
|
|
52
|
+
billing/billing.operations.js 8.46 KB (entry point)
|
|
53
|
+
billing/billing.presentation.js 1.47 KB (entry point)
|
|
54
|
+
billing/billing.schema.js 4.50 KB (entry point)
|
|
55
|
+
billing/billing.enum.js 443 bytes (entry point)
|
|
56
|
+
|
|
57
|
+
[contractspec-bun-build] transpile target=node root=src entries=48
|
|
58
|
+
Bundled 48 modules in 86ms
|
|
59
|
+
|
|
60
|
+
billing/billing.entity.js 3.53 KB (entry point)
|
|
61
|
+
tests/operations.test-spec.js 2.89 KB (entry point)
|
|
62
|
+
seeders/index.js 0.59 KB (entry point)
|
|
63
|
+
shared/overlay-types.js 0 KB (entry point)
|
|
64
|
+
presentations/index.js 8.91 KB (entry point)
|
|
65
|
+
./index.js 113.1 KB (entry point)
|
|
66
|
+
ui/index.js 65.60 KB (entry point)
|
|
67
|
+
ui/modals/index.js 19.40 KB (entry point)
|
|
68
|
+
ui/overlays/index.js 1.30 KB (entry point)
|
|
69
|
+
ui/overlays/demo-overlays.js 1.30 KB (entry point)
|
|
70
|
+
ui/renderers/index.js 21.28 KB (entry point)
|
|
71
|
+
ui/renderers/project-list.markdown.js 15.47 KB (entry point)
|
|
72
|
+
ui/renderers/project-list.renderer.js 5.81 KB (entry point)
|
|
73
|
+
ui/SaasDashboard.js 38.29 KB (entry point)
|
|
74
|
+
ui/modals/CreateProjectModal.js 6.21 KB (entry point)
|
|
75
|
+
ui/modals/ProjectActionsModal.js 13.1 KB (entry point)
|
|
76
|
+
ui/SaasProjectList.js 5.27 KB (entry point)
|
|
77
|
+
ui/SaasSettingsPanel.js 6.41 KB (entry point)
|
|
78
|
+
ui/hooks/index.js 5.0 KB (entry point)
|
|
79
|
+
ui/hooks/useProjectList.js 2.0 KB (entry point)
|
|
80
|
+
ui/hooks/useProjectMutations.js 2.91 KB (entry point)
|
|
81
|
+
./saas-boilerplate.feature.js 2.97 KB (entry point)
|
|
82
|
+
settings/index.js 2.29 KB (entry point)
|
|
83
|
+
settings/settings.entity.js 2.27 KB (entry point)
|
|
84
|
+
settings/settings.enum.js 302 bytes (entry point)
|
|
85
|
+
project/index.js 22.45 KB (entry point)
|
|
86
|
+
project/project.entity.js 2.26 KB (entry point)
|
|
87
|
+
project/project.event.js 3.30 KB (entry point)
|
|
88
|
+
project/project.operations.js 10.12 KB (entry point)
|
|
89
|
+
project/project.presentation.js 5.63 KB (entry point)
|
|
90
|
+
project/project.schema.js 4.38 KB (entry point)
|
|
91
|
+
project/project.enum.js 379 bytes (entry point)
|
|
92
|
+
dashboard/index.js 1.41 KB (entry point)
|
|
93
|
+
dashboard/dashboard.presentation.js 1.41 KB (entry point)
|
|
94
|
+
docs/index.js 3.81 KB (entry point)
|
|
95
|
+
docs/saas-boilerplate.docblock.js 3.81 KB (entry point)
|
|
96
|
+
./example.js 1.1 KB (entry point)
|
|
97
|
+
handlers/index.js 10.37 KB (entry point)
|
|
98
|
+
project/project.handler.js 4.98 KB (entry point)
|
|
99
|
+
handlers/saas.handlers.js 4.19 KB (entry point)
|
|
100
|
+
billing/index.js 20.60 KB (entry point)
|
|
101
|
+
billing/billing.event.js 2.99 KB (entry point)
|
|
102
|
+
billing/billing.handler.js 3.83 KB (entry point)
|
|
103
|
+
shared/mock-data.js 2.68 KB (entry point)
|
|
104
|
+
billing/billing.operations.js 8.45 KB (entry point)
|
|
105
|
+
billing/billing.presentation.js 1.46 KB (entry point)
|
|
106
|
+
billing/billing.schema.js 4.49 KB (entry point)
|
|
107
|
+
billing/billing.enum.js 435 bytes (entry point)
|
|
108
|
+
|
|
109
|
+
[contractspec-bun-build] transpile target=browser root=src entries=48
|
|
110
|
+
Bundled 48 modules in 75ms
|
|
111
|
+
|
|
112
|
+
billing/billing.entity.js 3.53 KB (entry point)
|
|
113
|
+
tests/operations.test-spec.js 2.89 KB (entry point)
|
|
114
|
+
seeders/index.js 0.59 KB (entry point)
|
|
115
|
+
shared/overlay-types.js 0 KB (entry point)
|
|
116
|
+
presentations/index.js 8.91 KB (entry point)
|
|
117
|
+
./index.js 113.1 KB (entry point)
|
|
118
|
+
ui/index.js 65.60 KB (entry point)
|
|
119
|
+
ui/modals/index.js 19.40 KB (entry point)
|
|
120
|
+
ui/overlays/index.js 1.30 KB (entry point)
|
|
121
|
+
ui/overlays/demo-overlays.js 1.30 KB (entry point)
|
|
122
|
+
ui/renderers/index.js 21.28 KB (entry point)
|
|
123
|
+
ui/renderers/project-list.markdown.js 15.47 KB (entry point)
|
|
124
|
+
ui/renderers/project-list.renderer.js 5.81 KB (entry point)
|
|
125
|
+
ui/SaasDashboard.js 38.29 KB (entry point)
|
|
126
|
+
ui/modals/CreateProjectModal.js 6.21 KB (entry point)
|
|
127
|
+
ui/modals/ProjectActionsModal.js 13.1 KB (entry point)
|
|
128
|
+
ui/SaasProjectList.js 5.27 KB (entry point)
|
|
129
|
+
ui/SaasSettingsPanel.js 6.41 KB (entry point)
|
|
130
|
+
ui/hooks/index.js 5.0 KB (entry point)
|
|
131
|
+
ui/hooks/useProjectList.js 2.0 KB (entry point)
|
|
132
|
+
ui/hooks/useProjectMutations.js 2.91 KB (entry point)
|
|
133
|
+
./saas-boilerplate.feature.js 2.97 KB (entry point)
|
|
134
|
+
settings/index.js 2.29 KB (entry point)
|
|
135
|
+
settings/settings.entity.js 2.27 KB (entry point)
|
|
136
|
+
settings/settings.enum.js 302 bytes (entry point)
|
|
137
|
+
project/index.js 22.45 KB (entry point)
|
|
138
|
+
project/project.entity.js 2.26 KB (entry point)
|
|
139
|
+
project/project.event.js 3.30 KB (entry point)
|
|
140
|
+
project/project.operations.js 10.12 KB (entry point)
|
|
141
|
+
project/project.presentation.js 5.63 KB (entry point)
|
|
142
|
+
project/project.schema.js 4.38 KB (entry point)
|
|
143
|
+
project/project.enum.js 379 bytes (entry point)
|
|
144
|
+
dashboard/index.js 1.41 KB (entry point)
|
|
145
|
+
dashboard/dashboard.presentation.js 1.41 KB (entry point)
|
|
146
|
+
docs/index.js 3.81 KB (entry point)
|
|
147
|
+
docs/saas-boilerplate.docblock.js 3.81 KB (entry point)
|
|
148
|
+
./example.js 1.1 KB (entry point)
|
|
149
|
+
handlers/index.js 10.37 KB (entry point)
|
|
150
|
+
project/project.handler.js 4.98 KB (entry point)
|
|
151
|
+
handlers/saas.handlers.js 4.19 KB (entry point)
|
|
152
|
+
billing/index.js 20.60 KB (entry point)
|
|
153
|
+
billing/billing.event.js 2.99 KB (entry point)
|
|
154
|
+
billing/billing.handler.js 3.83 KB (entry point)
|
|
155
|
+
shared/mock-data.js 2.68 KB (entry point)
|
|
156
|
+
billing/billing.operations.js 8.45 KB (entry point)
|
|
157
|
+
billing/billing.presentation.js 1.46 KB (entry point)
|
|
158
|
+
billing/billing.schema.js 4.49 KB (entry point)
|
|
159
|
+
billing/billing.enum.js 435 bytes (entry point)
|
|
160
|
+
|
|
161
|
+
$ contractspec-bun-build types
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
$ contractspec-bun-build prebuild
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,44 @@
|
|
|
1
1
|
# @contractspec/example.saas-boilerplate
|
|
2
2
|
|
|
3
|
+
## 1.59.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1a0cf44: fix: publishConfig not supported by bun
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1a0cf44]
|
|
12
|
+
- @contractspec/lib.example-shared-ui@1.13.0
|
|
13
|
+
- @contractspec/module.notifications@1.59.0
|
|
14
|
+
- @contractspec/lib.runtime-sandbox@0.14.0
|
|
15
|
+
- @contractspec/module.audit-trail@1.59.0
|
|
16
|
+
- @contractspec/lib.design-system@1.59.0
|
|
17
|
+
- @contractspec/lib.identity-rbac@1.59.0
|
|
18
|
+
- @contractspec/lib.contracts@1.59.0
|
|
19
|
+
- @contractspec/lib.schema@1.59.0
|
|
20
|
+
- @contractspec/lib.jobs@1.59.0
|
|
21
|
+
|
|
22
|
+
## 1.58.0
|
|
23
|
+
|
|
24
|
+
### Minor Changes
|
|
25
|
+
|
|
26
|
+
- d1f0fd0: chore: Migrate non-app package builds from tsdown to shared Bun tooling, add `@contractspec/tool.bun`, and standardize `prebuild`/`build`/`typecheck` with platform-aware exports and `tsc` declaration emission into `dist`.
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- Updated dependencies [d1f0fd0]
|
|
31
|
+
- Updated dependencies [4355a9e]
|
|
32
|
+
- @contractspec/lib.example-shared-ui@1.12.0
|
|
33
|
+
- @contractspec/module.notifications@1.58.0
|
|
34
|
+
- @contractspec/lib.runtime-sandbox@0.13.0
|
|
35
|
+
- @contractspec/module.audit-trail@1.58.0
|
|
36
|
+
- @contractspec/lib.design-system@1.58.0
|
|
37
|
+
- @contractspec/lib.identity-rbac@1.58.0
|
|
38
|
+
- @contractspec/lib.contracts@1.58.0
|
|
39
|
+
- @contractspec/lib.schema@1.58.0
|
|
40
|
+
- @contractspec/lib.jobs@1.58.0
|
|
41
|
+
|
|
3
42
|
## 1.57.0
|
|
4
43
|
|
|
5
44
|
### Minor Changes
|
|
@@ -1,61 +1,56 @@
|
|
|
1
|
-
import * as _contractspec_lib_schema0 from "@contractspec/lib.schema";
|
|
2
|
-
|
|
3
|
-
//#region src/billing/billing.entity.d.ts
|
|
4
1
|
/**
|
|
5
2
|
* Subscription status enum for entities.
|
|
6
3
|
*/
|
|
7
|
-
declare const SubscriptionStatusEnum:
|
|
4
|
+
export declare const SubscriptionStatusEnum: import("@contractspec/lib.schema").EntityEnumDef;
|
|
8
5
|
/**
|
|
9
6
|
* Subscription entity - organization subscription info.
|
|
10
7
|
*/
|
|
11
|
-
declare const SubscriptionEntity:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
8
|
+
export declare const SubscriptionEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
9
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
10
|
+
organizationId: import("@contractspec/lib.schema").EntityScalarField;
|
|
11
|
+
planId: import("@contractspec/lib.schema").EntityScalarField;
|
|
12
|
+
planName: import("@contractspec/lib.schema").EntityScalarField;
|
|
13
|
+
status: import("@contractspec/lib.schema").EntityEnumField;
|
|
14
|
+
currentPeriodStart: import("@contractspec/lib.schema").EntityScalarField;
|
|
15
|
+
currentPeriodEnd: import("@contractspec/lib.schema").EntityScalarField;
|
|
16
|
+
trialEndsAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
17
|
+
cancelAtPeriodEnd: import("@contractspec/lib.schema").EntityScalarField;
|
|
18
|
+
canceledAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
19
|
+
stripeSubscriptionId: import("@contractspec/lib.schema").EntityScalarField;
|
|
20
|
+
stripeCustomerId: import("@contractspec/lib.schema").EntityScalarField;
|
|
21
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
22
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
23
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
27
24
|
}>;
|
|
28
25
|
/**
|
|
29
26
|
* BillingUsage entity - track feature usage.
|
|
30
27
|
*/
|
|
31
|
-
declare const BillingUsageEntity:
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
28
|
+
export declare const BillingUsageEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
29
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
30
|
+
organizationId: import("@contractspec/lib.schema").EntityScalarField;
|
|
31
|
+
feature: import("@contractspec/lib.schema").EntityScalarField;
|
|
32
|
+
quantity: import("@contractspec/lib.schema").EntityScalarField;
|
|
33
|
+
unit: import("@contractspec/lib.schema").EntityScalarField;
|
|
34
|
+
billingPeriod: import("@contractspec/lib.schema").EntityScalarField;
|
|
35
|
+
recordedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
36
|
+
sourceId: import("@contractspec/lib.schema").EntityScalarField;
|
|
37
|
+
sourceType: import("@contractspec/lib.schema").EntityScalarField;
|
|
38
|
+
metadata: import("@contractspec/lib.schema").EntityScalarField;
|
|
42
39
|
}>;
|
|
43
40
|
/**
|
|
44
41
|
* UsageLimit entity - feature usage limits per plan.
|
|
45
42
|
*/
|
|
46
|
-
declare const UsageLimitEntity:
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
43
|
+
export declare const UsageLimitEntity: import("@contractspec/lib.schema").EntitySpec<{
|
|
44
|
+
id: import("@contractspec/lib.schema").EntityScalarField;
|
|
45
|
+
planId: import("@contractspec/lib.schema").EntityScalarField;
|
|
46
|
+
organizationId: import("@contractspec/lib.schema").EntityScalarField;
|
|
47
|
+
feature: import("@contractspec/lib.schema").EntityScalarField;
|
|
48
|
+
limit: import("@contractspec/lib.schema").EntityScalarField;
|
|
49
|
+
resetPeriod: import("@contractspec/lib.schema").EntityScalarField;
|
|
50
|
+
isSoftLimit: import("@contractspec/lib.schema").EntityScalarField;
|
|
51
|
+
overage: import("@contractspec/lib.schema").EntityScalarField;
|
|
52
|
+
overageRate: import("@contractspec/lib.schema").EntityScalarField;
|
|
53
|
+
createdAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
54
|
+
updatedAt: import("@contractspec/lib.schema").EntityScalarField;
|
|
58
55
|
}>;
|
|
59
|
-
//#endregion
|
|
60
|
-
export { BillingUsageEntity, SubscriptionEntity, SubscriptionStatusEnum, UsageLimitEntity };
|
|
61
56
|
//# sourceMappingURL=billing.entity.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"billing.entity.d.ts","
|
|
1
|
+
{"version":3,"file":"billing.entity.d.ts","sourceRoot":"","sources":["../../src/billing/billing.entity.ts"],"names":[],"mappings":"AAOA;;GAEG;AACH,eAAO,MAAM,sBAAsB,kDAKjC,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;;;;;;EAuC7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,kBAAkB;;;;;;;;;;;EA2C7B,CAAC;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB;;;;;;;;;;;;EA6C3B,CAAC"}
|