@contractspec/bundle.library 3.9.8 → 3.9.9

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.
Files changed (70) hide show
  1. package/.turbo/turbo-build.log +222 -214
  2. package/CHANGELOG.md +52 -0
  3. package/dist/components/docs/DocsIndexPage.js +2 -2
  4. package/dist/components/docs/docsManifest.js +1 -1
  5. package/dist/components/docs/getting-started/DataViewTutorialPage.js +81 -6
  6. package/dist/components/docs/getting-started/index.js +94 -19
  7. package/dist/components/docs/guides/GuideDataExchangeImportTemplatesPage.content.d.ts +6 -0
  8. package/dist/components/docs/guides/GuideDataExchangeImportTemplatesPage.content.js +176 -0
  9. package/dist/components/docs/guides/GuideDataExchangeImportTemplatesPage.d.ts +1 -0
  10. package/dist/components/docs/guides/GuideDataExchangeImportTemplatesPage.js +176 -0
  11. package/dist/components/docs/guides/GuidesIndexPage.js +2 -2
  12. package/dist/components/docs/guides/index.d.ts +1 -0
  13. package/dist/components/docs/guides/index.js +220 -46
  14. package/dist/components/docs/index.js +1003 -309
  15. package/dist/components/docs/libraries/LibrariesApplicationShellPage.content.d.ts +22 -5
  16. package/dist/components/docs/libraries/LibrariesApplicationShellPage.content.js +125 -37
  17. package/dist/components/docs/libraries/LibrariesApplicationShellPage.js +125 -37
  18. package/dist/components/docs/libraries/LibrariesDataViewsPage.js +120 -3
  19. package/dist/components/docs/libraries/LibrariesDesignSystemPage.js +101 -2
  20. package/dist/components/docs/libraries/LibrariesOverviewPage.js +1 -1
  21. package/dist/components/docs/libraries/LibrariesPersonalizationPage.js +58 -4
  22. package/dist/components/docs/libraries/LibrariesTranslationRuntimePage.content.d.ts +10 -0
  23. package/dist/components/docs/libraries/LibrariesTranslationRuntimePage.content.js +43 -0
  24. package/dist/components/docs/libraries/LibrariesTranslationRuntimePage.d.ts +1 -0
  25. package/dist/components/docs/libraries/LibrariesTranslationRuntimePage.js +43 -0
  26. package/dist/components/docs/libraries/index.d.ts +1 -0
  27. package/dist/components/docs/libraries/index.js +496 -97
  28. package/dist/components/docs/specs/SpecsDataViewsPage.js +49 -3
  29. package/dist/components/docs/specs/index.js +60 -14
  30. package/dist/index.js +1014 -320
  31. package/dist/node/components/docs/DocsIndexPage.js +2 -2
  32. package/dist/node/components/docs/docsManifest.js +1 -1
  33. package/dist/node/components/docs/getting-started/DataViewTutorialPage.js +81 -6
  34. package/dist/node/components/docs/getting-started/index.js +94 -19
  35. package/dist/node/components/docs/guides/GuideDataExchangeImportTemplatesPage.content.js +175 -0
  36. package/dist/node/components/docs/guides/GuideDataExchangeImportTemplatesPage.js +175 -0
  37. package/dist/node/components/docs/guides/GuidesIndexPage.js +2 -2
  38. package/dist/node/components/docs/guides/index.js +220 -46
  39. package/dist/node/components/docs/index.js +1003 -309
  40. package/dist/node/components/docs/libraries/LibrariesApplicationShellPage.content.js +125 -37
  41. package/dist/node/components/docs/libraries/LibrariesApplicationShellPage.js +125 -37
  42. package/dist/node/components/docs/libraries/LibrariesDataViewsPage.js +120 -3
  43. package/dist/node/components/docs/libraries/LibrariesDesignSystemPage.js +101 -2
  44. package/dist/node/components/docs/libraries/LibrariesOverviewPage.js +1 -1
  45. package/dist/node/components/docs/libraries/LibrariesPersonalizationPage.js +58 -4
  46. package/dist/node/components/docs/libraries/LibrariesTranslationRuntimePage.content.js +42 -0
  47. package/dist/node/components/docs/libraries/LibrariesTranslationRuntimePage.js +42 -0
  48. package/dist/node/components/docs/libraries/index.js +496 -97
  49. package/dist/node/components/docs/specs/SpecsDataViewsPage.js +49 -3
  50. package/dist/node/components/docs/specs/index.js +60 -14
  51. package/dist/node/index.js +1014 -320
  52. package/package.json +74 -26
  53. package/src/components/docs/docsManifest.test.ts +87 -0
  54. package/src/components/docs/docsManifest.ts +90 -3
  55. package/src/components/docs/generated/docs-index.notifications.json +7 -7
  56. package/src/components/docs/getting-started/DataViewTutorialPage.tsx +181 -50
  57. package/src/components/docs/guides/GuideDataExchangeImportTemplatesPage.content.ts +185 -0
  58. package/src/components/docs/guides/GuideDataExchangeImportTemplatesPage.tsx +186 -0
  59. package/src/components/docs/guides/GuidesIndexPage.tsx +49 -42
  60. package/src/components/docs/guides/index.ts +1 -0
  61. package/src/components/docs/libraries/LibrariesApplicationShellPage.content.ts +148 -35
  62. package/src/components/docs/libraries/LibrariesApplicationShellPage.tsx +38 -5
  63. package/src/components/docs/libraries/LibrariesDataViewsPage.tsx +267 -64
  64. package/src/components/docs/libraries/LibrariesDesignSystemPage.tsx +235 -0
  65. package/src/components/docs/libraries/LibrariesOverviewPage.tsx +8 -2
  66. package/src/components/docs/libraries/LibrariesPersonalizationPage.tsx +141 -31
  67. package/src/components/docs/libraries/LibrariesTranslationRuntimePage.content.ts +78 -0
  68. package/src/components/docs/libraries/LibrariesTranslationRuntimePage.tsx +137 -0
  69. package/src/components/docs/libraries/index.ts +1 -0
  70. package/src/components/docs/specs/SpecsDataViewsPage.tsx +239 -113
@@ -1,259 +1,263 @@
1
1
  $ contractspec-bun-build prebuild
2
2
  $ bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build transpile
4
- [contractspec-bun-build] transpile target=bun root=src entries=323 noBundle=false
5
- Bundled 323 modules in 474ms
4
+ [contractspec-bun-build] transpile target=bun root=src entries=327 noBundle=false
5
+ Bundled 327 modules in 152ms
6
6
 
7
7
  application/context-storage/index.js 0.85 KB (entry point)
8
8
  presentation/features/templates/types.js 8 bytes (entry point)
9
- presentation/features/organisms/FeatureDiscovery/types.js 8 bytes (entry point)
10
9
  presentation/features/organisms/index.js 23.0 KB (entry point)
11
- presentation/features/molecules/index.js 8.41 KB (entry point)
12
10
  presentation/features/organisms/FeatureDetail/types.js 8 bytes (entry point)
13
- presentation/features/molecules/FeatureCard/types.js 8 bytes (entry point)
11
+ presentation/features/organisms/FeatureDiscovery/types.js 8 bytes (entry point)
14
12
  presentation/features/molecules/FeatureFilters/types.js 8 bytes (entry point)
15
- presentation/features/atoms/index.js 1.46 KB (entry point)
13
+ presentation/features/molecules/index.js 8.41 KB (entry point)
16
14
  presentation/features/index.js 50.56 KB (entry point)
17
- presentation/features/templates/FeaturePresentationsTemplate/index.js 6.0 KB (entry point)
18
- presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js 6.0 KB (entry point)
19
- presentation/features/templates/FeatureOperationsTemplate/index.js 3.41 KB (entry point)
20
- presentation/features/templates/FeatureOperationsTemplate/FeatureOperationsTemplate.js 3.41 KB (entry point)
21
15
  presentation/features/templates/FeatureOverviewTemplate/index.js 3.1 KB (entry point)
22
- presentation/features/templates/FeatureOverviewTemplate/FeatureOverviewTemplate.js 3.1 KB (entry point)
23
16
  presentation/features/templates/FeaturePresentationDetailTemplate/index.js 5.15 KB (entry point)
24
17
  presentation/features/templates/FeaturePresentationDetailTemplate/FeaturePresentationDetailTemplate.js 5.15 KB (entry point)
25
18
  presentation/features/templates/FeaturePresentationDetailTemplate/types.js 8 bytes (entry point)
26
- presentation/features/templates/FeatureEventsTemplate/index.js 5.96 KB (entry point)
27
- presentation/features/templates/FeatureFormDetailTemplate/index.js 5.45 KB (entry point)
28
- presentation/features/templates/FeatureFormDetailTemplate/FeatureFormDetailTemplate.js 5.45 KB (entry point)
29
- presentation/features/templates/FeatureFormDetailTemplate/types.js 8 bytes (entry point)
19
+ presentation/features/templates/FeaturePresentationsTemplate/index.js 6.0 KB (entry point)
20
+ presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js 6.0 KB (entry point)
30
21
  presentation/features/templates/FeatureFormsTemplate/index.js 5.97 KB (entry point)
31
22
  presentation/features/templates/FeatureFormsTemplate/FeatureFormsTemplate.js 5.97 KB (entry point)
32
23
  presentation/features/templates/FeatureOperationDetailTemplate/index.js 4.92 KB (entry point)
33
- presentation/features/templates/FeatureOperationDetailTemplate/types.js 8 bytes (entry point)
34
24
  presentation/features/templates/FeatureOperationDetailTemplate/FeatureOperationDetailTemplate.js 4.92 KB (entry point)
35
- presentation/features/templates/FeatureDataViewDetailTemplate/index.js 5.51 KB (entry point)
36
- presentation/features/templates/FeatureDataViewDetailTemplate/types.js 8 bytes (entry point)
37
- presentation/features/templates/FeatureDataViewsTemplate/index.js 5.98 KB (entry point)
38
- presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js 5.98 KB (entry point)
25
+ presentation/features/templates/FeatureOperationDetailTemplate/types.js 8 bytes (entry point)
26
+ presentation/features/templates/FeatureOperationsTemplate/index.js 3.41 KB (entry point)
27
+ presentation/features/templates/FeatureOperationsTemplate/FeatureOperationsTemplate.js 3.41 KB (entry point)
28
+ presentation/features/templates/FeatureOverviewTemplate/FeatureOverviewTemplate.js 3.1 KB (entry point)
39
29
  presentation/features/templates/FeatureEventDetailTemplate/index.js 5.1 KB (entry point)
40
30
  presentation/features/templates/FeatureEventDetailTemplate/FeatureEventDetailTemplate.js 5.1 KB (entry point)
41
31
  presentation/features/templates/FeatureEventDetailTemplate/types.js 8 bytes (entry point)
32
+ presentation/features/templates/FeatureEventsTemplate/index.js 5.96 KB (entry point)
42
33
  presentation/features/templates/FeatureEventsTemplate/FeatureEventsTemplate.js 5.96 KB (entry point)
43
- presentation/features/organisms/FeatureDiscovery/index.js 15.59 KB (entry point)
44
- presentation/features/organisms/FeatureEventsList.js 5.33 KB (entry point)
45
- presentation/features/organisms/FeatureFormsList.js 5.34 KB (entry point)
34
+ presentation/features/templates/FeatureFormDetailTemplate/index.js 5.45 KB (entry point)
35
+ presentation/features/templates/FeatureFormDetailTemplate/FeatureFormDetailTemplate.js 5.45 KB (entry point)
36
+ presentation/features/templates/FeatureFormDetailTemplate/types.js 8 bytes (entry point)
46
37
  presentation/features/organisms/FeatureOperationsList.js 2.77 KB (entry point)
47
38
  presentation/features/organisms/FeaturePresentationsList.js 5.35 KB (entry point)
39
+ presentation/features/templates/FeatureDataViewDetailTemplate/index.js 5.51 KB (entry point)
48
40
  presentation/features/templates/FeatureDataViewDetailTemplate/FeatureDataViewDetailTemplate.js 5.51 KB (entry point)
49
- presentation/features/organisms/FeatureDataViewsList.js 5.34 KB (entry point)
41
+ presentation/features/templates/FeatureDataViewDetailTemplate/types.js 8 bytes (entry point)
42
+ presentation/features/templates/FeatureDataViewsTemplate/index.js 5.98 KB (entry point)
43
+ presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js 5.98 KB (entry point)
50
44
  presentation/features/organisms/FeatureDetail/index.js 2.49 KB (entry point)
51
45
  presentation/features/organisms/FeatureDetail/FeatureDetail.js 2.49 KB (entry point)
46
+ presentation/features/organisms/FeatureDiscovery/index.js 15.59 KB (entry point)
52
47
  presentation/features/organisms/FeatureDiscovery/FeatureDiscovery.js 15.59 KB (entry point)
48
+ presentation/features/organisms/FeatureEventsList.js 5.33 KB (entry point)
49
+ presentation/features/organisms/FeatureFormsList.js 5.34 KB (entry point)
50
+ presentation/features/molecules/FeatureCategoryHeader/index.js 1.30 KB (entry point)
51
+ presentation/features/molecules/FeatureFilters/index.js 1.64 KB (entry point)
52
+ presentation/features/molecules/FeatureFilters/FeatureFilters.js 1.64 KB (entry point)
53
+ presentation/features/organisms/FeatureDataViewsList.js 5.34 KB (entry point)
54
+ presentation/features/hooks/useRelatedDocs.js 0.77 KB (entry point)
53
55
  presentation/features/molecules/FeatureCard/index.js 5.88 KB (entry point)
54
56
  presentation/features/molecules/FeatureCard/FeatureCard.js 5.88 KB (entry point)
55
57
  presentation/features/molecules/FeatureHoverPreview/index.js 3.1 KB (entry point)
56
58
  presentation/features/molecules/FeatureHoverPreview/FeatureHoverPreview.js 3.1 KB (entry point)
57
- presentation/features/molecules/FeatureCategoryHeader/index.js 1.30 KB (entry point)
59
+ presentation/features/molecules/FeatureCard/types.js 8 bytes (entry point)
58
60
  presentation/features/molecules/FeatureCategoryHeader/FeatureCategoryHeader.js 1.30 KB (entry point)
59
- presentation/features/molecules/FeatureFilters/index.js 1.64 KB (entry point)
60
- presentation/features/molecules/FeatureFilters/FeatureFilters.js 1.64 KB (entry point)
61
+ libs/posthog/native.js 0.77 KB (entry point)
62
+ libs/posthog/server.js 455 bytes (entry point)
63
+ libs/pricing-examples.js 473 bytes (entry point)
64
+ presentation/features/atoms/index.js 1.46 KB (entry point)
61
65
  presentation/features/atoms/FeatureIcon/index.js 1.46 KB (entry point)
66
+ presentation/features/atoms/FeatureIcon/FeatureIcon.js 1.46 KB (entry point)
62
67
  presentation/features/hooks/index.js 6.78 KB (entry point)
63
- presentation/features/hooks/useContractsRegistry.js 5.0 KB (entry point)
64
68
  presentation/features/hooks/useFeatureFilters.js 1.47 KB (entry point)
65
69
  presentation/features/hooks/useFeatureRegistry.js 3.0 KB (entry point)
66
- presentation/features/hooks/useRelatedDocs.js 0.77 KB (entry point)
70
+ presentation/features/hooks/useContractsRegistry.js 5.0 KB (entry point)
71
+ libs/email/types.js 8 bytes (entry point)
67
72
  libs/posthog/client.js 1.29 KB (entry point)
68
- libs/posthog/native.js 0.77 KB (entry point)
69
- libs/posthog/server.js 455 bytes (entry point)
70
- libs/pricing-examples.js 473 bytes (entry point)
71
- presentation/features/atoms/FeatureIcon/FeatureIcon.js 1.46 KB (entry point)
73
+ ./index.js 0.82 MB (entry point)
72
74
  infrastructure/index.js 0.75 KB (entry point)
73
75
  infrastructure/elysia/index.js 0.75 KB (entry point)
74
76
  libs/email.js 15.32 KB (entry point)
75
- libs/email/waitlist-application.js 7.92 KB (entry point)
76
- libs/email/waitlist.js 5.35 KB (entry point)
77
77
  libs/email/contact.js 4.0 KB (entry point)
78
78
  libs/email/newsletter.js 4.73 KB (entry point)
79
- libs/email/utils.js 387 bytes (entry point)
79
+ libs/email/waitlist-application.js 7.92 KB (entry point)
80
+ libs/email/waitlist.js 5.35 KB (entry point)
80
81
  libs/email/client.js 2.16 KB (entry point)
81
- libs/email/types.js 8 bytes (entry point)
82
- ./index.js 0.76 MB (entry point)
82
+ libs/email/utils.js 387 bytes (entry point)
83
+ config/index.js 2.58 KB (entry point)
83
84
  features/index.js 6.0 KB (entry point)
84
- features/docs/index.js 0.54 KB (entry point)
85
- features/docs/docs.contracts.js 0.54 KB (entry point)
86
85
  features/registry.js 2.63 KB (entry point)
87
- features/docs.feature.js 0.90 KB (entry point)
88
86
  features/mcp.feature.js 0.86 KB (entry point)
89
87
  features/presentations.feature.js 0.96 KB (entry point)
88
+ features/docs.feature.js 0.90 KB (entry point)
89
+ features/docs/index.js 0.54 KB (entry point)
90
+ features/docs/docs.contracts.js 0.54 KB (entry point)
91
+ components/templates/recipes/types.js 8 bytes (entry point)
90
92
  components/templates/todos/types.js 8 bytes (entry point)
91
- config/index.js 2.58 KB (entry point)
92
93
  config/contractspec-blueprint.js 2.49 KB (entry point)
93
94
  config/contractspec-branding.js 0.86 KB (entry point)
94
95
  config/contractspec-routes.js 0.88 KB (entry point)
95
- components/templates/recipes/types.js 8 bytes (entry point)
96
+ components/templates/messaging/types.js 8 bytes (entry point)
97
+ components/shell/index.js 4.23 KB (entry point)
98
+ components/shell/WorkspaceShellRenderer.js 3.40 KB (entry point)
99
+ components/templates/engine/index.js 0.86 KB (entry point)
96
100
  components/templates/index.js 20.23 KB (entry point)
97
101
  components/templates/todos/index.js 9.31 KB (entry point)
98
102
  components/templates/todos/TaskList.js 9.27 KB (entry point)
99
- components/templates/recipes/index.js 5.35 KB (entry point)
100
- components/templates/recipes/RecipeList.js 5.30 KB (entry point)
101
- components/templates/recipes/RecipeCard.js 1.60 KB (entry point)
102
- components/templates/recipes/RecipeDetail.js 1.55 KB (entry point)
103
103
  components/templates/todos/FilterBar.js 2.17 KB (entry point)
104
104
  components/templates/todos/TaskForm.js 3.1 KB (entry point)
105
105
  components/templates/todos/TaskItem.js 2.18 KB (entry point)
106
106
  components/templates/messaging/index.js 5.91 KB (entry point)
107
107
  components/templates/messaging/MessagingWorkspace.js 5.82 KB (entry point)
108
+ components/templates/recipes/index.js 5.35 KB (entry point)
109
+ components/templates/recipes/RecipeList.js 5.30 KB (entry point)
110
+ components/templates/recipes/LanguageSwitcher.js 0.68 KB (entry point)
111
+ components/templates/recipes/RecipeCard.js 1.60 KB (entry point)
112
+ components/templates/recipes/RecipeDetail.js 1.55 KB (entry point)
108
113
  components/templates/messaging/ConversationList.js 2.15 KB (entry point)
109
114
  components/templates/messaging/MessageComposer.js 3.48 KB (entry point)
110
115
  components/templates/messaging/MessageThread.js 2.24 KB (entry point)
111
- components/templates/messaging/types.js 8 bytes (entry point)
112
- components/templates/recipes/LanguageSwitcher.js 0.68 KB (entry point)
116
+ components/legal/index.js 42.84 KB (entry point)
117
+ components/legal/PrivacyTemplate.js 20.32 KB (entry point)
118
+ components/legal/TermsTemplate.js 22.77 KB (entry point)
113
119
  components/shared/index.js 0.86 KB (entry point)
114
120
  components/shared/FeatureGateNotice.js 0.86 KB (entry point)
115
- components/shell/index.js 4.23 KB (entry point)
116
121
  components/shell/WorkspaceProjectShellLayout.js 3.31 KB (entry point)
117
- components/shell/WorkspaceShellRenderer.js 3.40 KB (entry point)
118
- components/shell/WorkspaceHeader.js 1.72 KB (entry point)
119
122
  components/shell/WorkspaceSidebar.js 1.1 KB (entry point)
120
- components/templates/engine/index.js 0.86 KB (entry point)
123
+ components/shell/WorkspaceHeader.js 1.72 KB (entry point)
124
+ components/docs/tech/contracts/tech-docs.docblocks.js 0.73 KB (entry point)
121
125
  components/integrations/index.js 10.29 KB (entry point)
126
+ components/integrations/organisms/KnowledgeSourceList.js 2.11 KB (entry point)
122
127
  components/integrations/organisms/IntegrationMarketplace.js 4.1 KB (entry point)
123
128
  components/integrations/molecules/IntegrationCard.js 1.91 KB (entry point)
124
129
  components/integrations/organisms/IntegrationSettings.js 4.52 KB (entry point)
125
- components/integrations/organisms/KnowledgeSourceList.js 2.11 KB (entry point)
126
- components/legal/index.js 42.84 KB (entry point)
127
- components/legal/PrivacyTemplate.js 20.32 KB (entry point)
128
- components/legal/TermsTemplate.js 22.77 KB (entry point)
129
- components/docs/tech/contracts/tech-docs.docblocks.js 0.73 KB (entry point)
130
130
  components/docs/ops/ops.docs.js 22.56 KB (entry point)
131
+ components/docs/product/product.docblocks.js 2.95 KB (entry point)
132
+ components/docs/ops/ops-lifecycle.docblocks.js 6.19 KB (entry point)
131
133
  components/docs/ops/ops-runbooks-a.docblocks.js 5.28 KB (entry point)
132
134
  components/docs/ops/ops-runbooks-b.docblocks.js 4.96 KB (entry point)
133
135
  components/docs/ops/ops-slo-tenant.docblocks.js 6.33 KB (entry point)
134
136
  components/docs/ops/ops-top.docs.js 0.75 KB (entry point)
135
- components/docs/product/product.docblocks.js 2.95 KB (entry point)
136
- components/docs/ops/ops-lifecycle.docblocks.js 6.19 KB (entry point)
137
- components/docs/index.js 0.67 MB (entry point)
137
+ components/docs/index.js 0.73 MB (entry point)
138
138
  components/docs/studio/index.js 6.62 KB (entry point)
139
+ components/docs/studio/StudioOverviewPage.js 4.21 KB (entry point)
140
+ components/docs/studio/StudioVisualBuilderPage.js 0.72 KB (entry point)
141
+ components/docs/specs/index.js 69.43 KB (entry point)
142
+ components/docs/specs/SpecsOverviewPage.js 5.42 KB (entry point)
143
+ components/docs/specs/SpecsPolicyPage.js 9.0 KB (entry point)
144
+ components/docs/specs/SpecsWorkflowsPage.js 7.79 KB (entry point)
139
145
  components/docs/studio/StudioBYOKPage.js 0.70 KB (entry point)
140
146
  components/docs/studio/StudioDeploymentsPage.js 0.70 KB (entry point)
141
147
  components/docs/studio/StudioGettingStartedPage.js 0.72 KB (entry point)
142
148
  components/docs/studio/StudioIntegrationsPage.js 0.70 KB (entry point)
143
- components/docs/studio/StudioOverviewPage.js 4.21 KB (entry point)
144
- components/docs/studio/StudioVisualBuilderPage.js 0.72 KB (entry point)
145
- components/docs/specs/index.js 66.19 KB (entry point)
149
+ components/docs/safety/index.js 32.59 KB (entry point)
150
+ components/docs/specs/SpecsBuilderControlPlanePage.js 8.83 KB (entry point)
151
+ components/docs/specs/SpecsCapabilitiesPage.js 3.95 KB (entry point)
146
152
  components/docs/specs/SpecsConnectPage.js 7.85 KB (entry point)
147
- components/docs/specs/SpecsDataViewsPage.js 8.33 KB (entry point)
153
+ components/docs/specs/SpecsDataViewsPage.js 11.55 KB (entry point)
148
154
  components/docs/specs/SpecsModuleBundlesPage.js 7.87 KB (entry point)
149
155
  components/docs/specs/SpecsOverlaysPage.js 8.94 KB (entry point)
150
- components/docs/specs/SpecsOverviewPage.js 5.42 KB (entry point)
151
- components/docs/specs/SpecsPolicyPage.js 9.0 KB (entry point)
152
- components/docs/specs/SpecsWorkflowsPage.js 7.79 KB (entry point)
153
- components/docs/safety/index.js 32.59 KB (entry point)
156
+ components/docs/reference/index.js 7.76 KB (entry point)
157
+ components/docs/safety/SafetyAuditingPage.js 8.17 KB (entry point)
158
+ components/docs/safety/SafetyMigrationsPage.js 8.47 KB (entry point)
159
+ components/docs/safety/SafetyOverviewPage.js 2.59 KB (entry point)
154
160
  components/docs/safety/SafetyPDPPage.js 6.63 KB (entry point)
155
161
  components/docs/safety/SafetySecurityTrustPage.js 4.0 KB (entry point)
156
162
  components/docs/safety/SafetySigningPage.js 2.1 KB (entry point)
157
163
  components/docs/safety/SafetyTenantIsolationPage.js 1.99 KB (entry point)
158
- components/docs/specs/SpecsBuilderControlPlanePage.js 8.83 KB (entry point)
159
- components/docs/specs/SpecsCapabilitiesPage.js 3.95 KB (entry point)
160
- components/docs/reference/index.js 7.76 KB (entry point)
161
164
  components/docs/reference/DocsReferenceIndexPage.js 3.91 KB (entry point)
162
165
  components/docs/reference/DocsReferenceIndexClient.js 2.29 KB (entry point)
163
166
  components/docs/reference/DocsReferencePage.js 4.0 KB (entry point)
164
- components/docs/safety/SafetyAuditingPage.js 8.17 KB (entry point)
165
- components/docs/safety/SafetyMigrationsPage.js 8.47 KB (entry point)
166
- components/docs/safety/SafetyOverviewPage.js 2.59 KB (entry point)
167
167
  components/docs/reference/DocsReferenceContent.js 3.92 KB (entry point)
168
168
  components/docs/reference/DocsMarkdownContent.js 2.91 KB (entry point)
169
169
  components/docs/reference/docsMarkdownParser.js 1.66 KB (entry point)
170
- components/docs/libraries/index.js 127.80 KB (entry point)
171
- components/docs/libraries/LibrariesWorkflowComposerPage.js 2.1 KB (entry point)
172
- components/docs/libraries/LibrariesWorkflowsPage.js 3.72 KB (entry point)
173
- components/docs/manifesto/ManifestoPage.js 2.79 KB (entry point)
174
170
  components/docs/ops/index.js 4.53 KB (entry point)
175
171
  components/docs/ops/AutoEvolutionOpsPage.js 3.28 KB (entry point)
176
172
  components/docs/ops/DistributedTracingOpsPage.js 1.48 KB (entry point)
173
+ components/docs/libraries/index.js 161.21 KB (entry point)
174
+ components/docs/libraries/LibrariesTranslationRuntimePage.js 7.69 KB (entry point)
175
+ components/docs/libraries/LibrariesTranslationRuntimePage.content.js 3.78 KB (entry point)
176
+ components/docs/libraries/LibrariesUIKitPage.js 5.50 KB (entry point)
177
+ components/docs/libraries/LibrariesUIKitWebPage.js 4.36 KB (entry point)
178
+ components/docs/libraries/LibrariesWorkflowComposerPage.js 2.1 KB (entry point)
179
+ components/docs/libraries/LibrariesWorkflowsPage.js 3.72 KB (entry point)
180
+ components/docs/manifesto/ManifestoPage.js 2.79 KB (entry point)
181
+ components/docs/libraries/LibrariesPersonalizationPage.js 6.51 KB (entry point)
182
+ components/docs/libraries/LibrariesProgressiveDeliveryPage.js 3.0 KB (entry point)
177
183
  components/docs/libraries/LibrariesResiliencePage.js 2.66 KB (entry point)
178
184
  components/docs/libraries/LibrariesRuntimePage.js 5.18 KB (entry point)
179
185
  components/docs/libraries/LibrariesSLOPage.js 2.59 KB (entry point)
180
186
  components/docs/libraries/LibrariesSchemaPage.js 5.0 KB (entry point)
181
187
  components/docs/libraries/LibrariesSupportBotPage.js 2.88 KB (entry point)
182
188
  components/docs/libraries/LibrariesTestingPage.js 3.31 KB (entry point)
183
- components/docs/libraries/LibrariesUIKitPage.js 5.50 KB (entry point)
184
- components/docs/libraries/LibrariesUIKitWebPage.js 4.36 KB (entry point)
189
+ components/docs/libraries/LibrariesDesignSystemPage.js 18.45 KB (entry point)
190
+ components/docs/libraries/LibrariesEvolutionPage.js 3.68 KB (entry point)
185
191
  components/docs/libraries/LibrariesGraphQLPage.js 3.98 KB (entry point)
186
192
  components/docs/libraries/LibrariesGrowthPage.js 2.55 KB (entry point)
187
193
  components/docs/libraries/LibrariesMultiTenancyPage.js 2.34 KB (entry point)
188
194
  components/docs/libraries/LibrariesObservabilityPage.js 3.19 KB (entry point)
189
195
  components/docs/libraries/LibrariesOverlayEnginePage.js 2.88 KB (entry point)
190
- components/docs/libraries/LibrariesOverviewPage.js 5.21 KB (entry point)
191
- components/docs/libraries/LibrariesPersonalizationPage.js 2.95 KB (entry point)
192
- components/docs/libraries/LibrariesProgressiveDeliveryPage.js 3.0 KB (entry point)
196
+ components/docs/libraries/LibrariesOverviewPage.js 5.52 KB (entry point)
197
+ components/docs/libraries/LibrariesApplicationShellPage.js 17.15 KB (entry point)
198
+ components/docs/libraries/LibrariesContentGenPage.js 2.71 KB (entry point)
193
199
  components/docs/libraries/LibrariesContractsPage.js 6.86 KB (entry point)
194
200
  components/docs/libraries/LibrariesCostTrackingPage.js 2.48 KB (entry point)
195
201
  components/docs/libraries/LibrariesCrossPlatformUIPage.js 16.87 KB (entry point)
196
202
  components/docs/libraries/LibrariesCrossPlatformUIPage.content.js 11.0 KB (entry point)
197
203
  components/docs/libraries/LibrariesDataBackendPage.js 3.78 KB (entry point)
198
- components/docs/libraries/LibrariesDataViewsPage.js 4.55 KB (entry point)
199
- components/docs/libraries/LibrariesDesignSystemPage.js 8.85 KB (entry point)
200
- components/docs/libraries/LibrariesEvolutionPage.js 3.68 KB (entry point)
204
+ components/docs/libraries/LibrariesDataViewsPage.js 10.57 KB (entry point)
201
205
  components/docs/knowledge/index.js 38.73 KB (entry point)
206
+ components/docs/knowledge/KnowledgeOverviewPage.js 2.60 KB (entry point)
207
+ components/docs/knowledge/KnowledgeSourcesPage.js 8.67 KB (entry point)
202
208
  components/docs/knowledge/KnowledgeSpacesPage.js 7.12 KB (entry point)
203
209
  components/docs/libraries/LibrariesAccessibilityPage.js 4.11 KB (entry point)
204
210
  components/docs/libraries/LibrariesAiAgentPage.js 3.28 KB (entry point)
205
211
  components/docs/libraries/LibrariesAnalyticsPage.js 2.28 KB (entry point)
206
- components/docs/libraries/LibrariesApplicationShellPage.js 10.94 KB (entry point)
207
- components/docs/libraries/LibrariesApplicationShellPage.content.js 7.74 KB (entry point)
208
- components/docs/libraries/LibrariesContentGenPage.js 2.71 KB (entry point)
212
+ components/docs/libraries/LibrariesApplicationShellPage.content.js 12.86 KB (entry point)
209
213
  components/docs/intent/index.js 34.41 KB (entry point)
214
+ components/docs/intent/GenerateClientFromSchemaPage.js 8.95 KB (entry point)
215
+ components/docs/intent/OpenapiAlternativePage.js 4.72 KB (entry point)
210
216
  components/docs/intent/SchemaValidationTypescriptPage.js 5.0 KB (entry point)
211
217
  components/docs/intent/SpecDrivenDevelopmentPage.js 4.89 KB (entry point)
212
218
  components/docs/intent/intent-pages.docblocks.js 5.0 KB (entry point)
213
219
  components/docs/knowledge/KnowledgeCategoriesPage.js 13.56 KB (entry point)
214
220
  components/docs/knowledge/KnowledgeExamplesPage.js 7.69 KB (entry point)
215
- components/docs/knowledge/KnowledgeOverviewPage.js 2.60 KB (entry point)
216
- components/docs/knowledge/KnowledgeSourcesPage.js 8.67 KB (entry point)
217
221
  components/docs/integrations/index.js 74.22 KB (entry point)
222
+ components/docs/integrations/IntegrationsSpecModelPage.js 10.89 KB (entry point)
223
+ components/docs/integrations/IntegrationsStripePage.js 8.1 KB (entry point)
218
224
  components/docs/integrations/IntegrationsTwilioPage.js 2.75 KB (entry point)
219
225
  components/docs/integrations/IntegrationsWhatsappMetaPage.js 2.98 KB (entry point)
220
226
  components/docs/integrations/IntegrationsWhatsappTwilioPage.js 3.1 KB (entry point)
221
227
  components/docs/intent/ContractFirstApiPage.js 3.43 KB (entry point)
222
228
  components/docs/intent/DeterministicCodegenPage.js 3.98 KB (entry point)
223
- components/docs/intent/GenerateClientFromSchemaPage.js 8.95 KB (entry point)
224
- components/docs/intent/OpenapiAlternativePage.js 4.72 KB (entry point)
229
+ components/docs/integrations/IntegrationsOpenAIPage.js 3.62 KB (entry point)
230
+ components/docs/integrations/IntegrationsOverviewPage.js 3.80 KB (entry point)
225
231
  components/docs/integrations/IntegrationsPostmarkPage.js 4.95 KB (entry point)
226
232
  components/docs/integrations/IntegrationsPowensPage.js 7.33 KB (entry point)
227
233
  components/docs/integrations/IntegrationsQdrantPage.js 3.47 KB (entry point)
228
234
  components/docs/integrations/IntegrationsResendPage.js 2.31 KB (entry point)
229
235
  components/docs/integrations/IntegrationsS3Page.js 3.1 KB (entry point)
230
236
  components/docs/integrations/IntegrationsSlackPage.js 3.19 KB (entry point)
231
- components/docs/integrations/IntegrationsSpecModelPage.js 10.89 KB (entry point)
232
- components/docs/integrations/IntegrationsStripePage.js 8.1 KB (entry point)
237
+ components/docs/integrations/IntegrationsCircuitBreakersPage.js 1.38 KB (entry point)
233
238
  components/docs/integrations/IntegrationsElevenLabsPage.js 2.30 KB (entry point)
234
239
  components/docs/integrations/IntegrationsGithubPage.js 3.1 KB (entry point)
235
240
  components/docs/integrations/IntegrationsGmailPage.js 2.61 KB (entry point)
236
241
  components/docs/integrations/IntegrationsGoogleCalendarPage.js 1.99 KB (entry point)
237
242
  components/docs/integrations/IntegrationsHealthRoutingPage.js 3.61 KB (entry point)
238
243
  components/docs/integrations/IntegrationsMistralPage.js 3.89 KB (entry point)
239
- components/docs/integrations/IntegrationsOpenAIPage.js 3.62 KB (entry point)
240
- components/docs/integrations/IntegrationsOverviewPage.js 3.80 KB (entry point)
241
- components/docs/guides/index.js 94.35 KB (entry point)
244
+ components/docs/guides/index.js 106.0 KB (entry point)
245
+ components/docs/guides/GuideHostBuilderWorkbenchPage.js 9.39 KB (entry point)
246
+ components/docs/guides/GuideImportExistingCodebasesPage.js 15.55 KB (entry point)
242
247
  components/docs/guides/GuideNextjsOneEndpointPage.js 6.44 KB (entry point)
243
248
  components/docs/guides/GuideReleaseCapsulesPage.js 5.0 KB (entry point)
244
249
  components/docs/guides/GuideSpecValidationTypingPage.js 5.58 KB (entry point)
245
- components/docs/guides/GuidesIndexPage.js 4.80 KB (entry point)
250
+ components/docs/guides/GuidesIndexPage.js 5.1 KB (entry point)
246
251
  components/docs/guides/guides.docblocks.js 3.43 KB (entry point)
247
- components/docs/integrations/IntegrationsCircuitBreakersPage.js 1.38 KB (entry point)
248
252
  components/docs/guides/GuideContractDrivenFormsPage.js 8.15 KB (entry point)
249
253
  components/docs/guides/GuideContractDrivenFormsPage.content.js 3.58 KB (entry point)
250
254
  components/docs/guides/GuideContractTypesPage.js 16.11 KB (entry point)
255
+ components/docs/guides/GuideDataExchangeImportTemplatesPage.js 11.52 KB (entry point)
256
+ components/docs/guides/GuideDataExchangeImportTemplatesPage.content.js 6.36 KB (entry point)
251
257
  components/docs/guides/GuideDocsPipelinePage.js 4.40 KB (entry point)
252
258
  components/docs/guides/GuideFirstModuleBundlePage.js 6.48 KB (entry point)
253
259
  components/docs/guides/GuideGenerateDocsClientsSchemasPage.js 4.24 KB (entry point)
254
- components/docs/guides/GuideHostBuilderWorkbenchPage.js 9.39 KB (entry point)
255
- components/docs/guides/GuideImportExistingCodebasesPage.js 15.55 KB (entry point)
256
- components/docs/getting-started/index.js 42.31 KB (entry point)
260
+ components/docs/getting-started/index.js 45.46 KB (entry point)
257
261
  components/docs/getting-started/InstallationPage.js 2.78 KB (entry point)
258
262
  components/docs/getting-started/StartHerePage.js 2.28 KB (entry point)
259
263
  components/docs/getting-started/TroubleshootingPage.js 2.95 KB (entry point)
@@ -266,7 +270,7 @@ Bundled 323 modules in 474ms
266
270
  components/docs/generated/docs-index.generated.js 284 bytes (entry point)
267
271
  components/docs/getting-started/CLIPage.js 5.67 KB (entry point)
268
272
  components/docs/getting-started/CompatibilityPage.js 3.23 KB (entry point)
269
- components/docs/getting-started/DataViewTutorialPage.js 6.45 KB (entry point)
273
+ components/docs/getting-started/DataViewTutorialPage.js 9.58 KB (entry point)
270
274
  components/docs/getting-started/DeveloperToolsPage.js 3.85 KB (entry point)
271
275
  components/docs/getting-started/HelloWorldPage.js 6.43 KB (entry point)
272
276
  components/docs/ecosystem/index.js 13.44 KB (entry point)
@@ -303,8 +307,8 @@ Bundled 323 modules in 474ms
303
307
  components/docs/architecture/ArchitectureAppConfigPage.js 8.1 KB (entry point)
304
308
  bundles/index.js 1.0 KB (entry point)
305
309
  bundles/LibraryBundle.js 1.0 KB (entry point)
306
- components/docs/DocsIndexPage.js 26.1 KB (entry point)
307
- components/docs/docsManifest.js 18.51 KB (entry point)
310
+ components/docs/DocsIndexPage.js 28.42 KB (entry point)
311
+ components/docs/docsManifest.js 20.85 KB (entry point)
308
312
  application/mcp/contractsMcpTypes.js 8 bytes (entry point)
309
313
  application/mcp/docsMcp.catalog.js 6.20 KB (entry point)
310
314
  application/index.js 49.74 KB (entry point)
@@ -328,259 +332,263 @@ Bundled 323 modules in 474ms
328
332
  application/mcp/contractsMcpAdoptionTools.js 2.54 KB (entry point)
329
333
  application/mcp/contractsMcpResources.js 3.47 KB (entry point)
330
334
 
331
- [contractspec-bun-build] transpile target=node root=src entries=323 noBundle=false
332
- Bundled 323 modules in 416ms
335
+ [contractspec-bun-build] transpile target=node root=src entries=327 noBundle=false
336
+ Bundled 327 modules in 121ms
333
337
 
334
338
  application/context-storage/index.js 0.85 KB (entry point)
335
339
  presentation/features/templates/types.js 0 KB (entry point)
336
- presentation/features/organisms/FeatureDiscovery/types.js 0 KB (entry point)
337
340
  presentation/features/organisms/index.js 23.0 KB (entry point)
338
- presentation/features/molecules/index.js 8.41 KB (entry point)
339
341
  presentation/features/organisms/FeatureDetail/types.js 0 KB (entry point)
340
- presentation/features/molecules/FeatureCard/types.js 0 KB (entry point)
342
+ presentation/features/organisms/FeatureDiscovery/types.js 0 KB (entry point)
341
343
  presentation/features/molecules/FeatureFilters/types.js 0 KB (entry point)
342
- presentation/features/atoms/index.js 1.45 KB (entry point)
344
+ presentation/features/molecules/index.js 8.41 KB (entry point)
343
345
  presentation/features/index.js 50.55 KB (entry point)
344
- presentation/features/templates/FeaturePresentationsTemplate/index.js 6.0 KB (entry point)
345
- presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js 6.0 KB (entry point)
346
- presentation/features/templates/FeatureOperationsTemplate/index.js 3.41 KB (entry point)
347
- presentation/features/templates/FeatureOperationsTemplate/FeatureOperationsTemplate.js 3.41 KB (entry point)
348
346
  presentation/features/templates/FeatureOverviewTemplate/index.js 3.1 KB (entry point)
349
- presentation/features/templates/FeatureOverviewTemplate/FeatureOverviewTemplate.js 3.1 KB (entry point)
350
347
  presentation/features/templates/FeaturePresentationDetailTemplate/index.js 5.14 KB (entry point)
351
348
  presentation/features/templates/FeaturePresentationDetailTemplate/FeaturePresentationDetailTemplate.js 5.14 KB (entry point)
352
349
  presentation/features/templates/FeaturePresentationDetailTemplate/types.js 0 KB (entry point)
353
- presentation/features/templates/FeatureEventsTemplate/index.js 5.95 KB (entry point)
354
- presentation/features/templates/FeatureFormDetailTemplate/index.js 5.45 KB (entry point)
355
- presentation/features/templates/FeatureFormDetailTemplate/FeatureFormDetailTemplate.js 5.45 KB (entry point)
356
- presentation/features/templates/FeatureFormDetailTemplate/types.js 0 KB (entry point)
350
+ presentation/features/templates/FeaturePresentationsTemplate/index.js 6.0 KB (entry point)
351
+ presentation/features/templates/FeaturePresentationsTemplate/FeaturePresentationsTemplate.js 6.0 KB (entry point)
357
352
  presentation/features/templates/FeatureFormsTemplate/index.js 5.96 KB (entry point)
358
353
  presentation/features/templates/FeatureFormsTemplate/FeatureFormsTemplate.js 5.96 KB (entry point)
359
354
  presentation/features/templates/FeatureOperationDetailTemplate/index.js 4.92 KB (entry point)
360
- presentation/features/templates/FeatureOperationDetailTemplate/types.js 0 KB (entry point)
361
355
  presentation/features/templates/FeatureOperationDetailTemplate/FeatureOperationDetailTemplate.js 4.92 KB (entry point)
362
- presentation/features/templates/FeatureDataViewDetailTemplate/index.js 5.50 KB (entry point)
363
- presentation/features/templates/FeatureDataViewDetailTemplate/types.js 0 KB (entry point)
364
- presentation/features/templates/FeatureDataViewsTemplate/index.js 5.97 KB (entry point)
365
- presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js 5.97 KB (entry point)
356
+ presentation/features/templates/FeatureOperationDetailTemplate/types.js 0 KB (entry point)
357
+ presentation/features/templates/FeatureOperationsTemplate/index.js 3.41 KB (entry point)
358
+ presentation/features/templates/FeatureOperationsTemplate/FeatureOperationsTemplate.js 3.41 KB (entry point)
359
+ presentation/features/templates/FeatureOverviewTemplate/FeatureOverviewTemplate.js 3.1 KB (entry point)
366
360
  presentation/features/templates/FeatureEventDetailTemplate/index.js 5.1 KB (entry point)
367
361
  presentation/features/templates/FeatureEventDetailTemplate/FeatureEventDetailTemplate.js 5.1 KB (entry point)
368
362
  presentation/features/templates/FeatureEventDetailTemplate/types.js 0 KB (entry point)
363
+ presentation/features/templates/FeatureEventsTemplate/index.js 5.95 KB (entry point)
369
364
  presentation/features/templates/FeatureEventsTemplate/FeatureEventsTemplate.js 5.95 KB (entry point)
370
- presentation/features/organisms/FeatureDiscovery/index.js 15.58 KB (entry point)
371
- presentation/features/organisms/FeatureEventsList.js 5.32 KB (entry point)
372
- presentation/features/organisms/FeatureFormsList.js 5.33 KB (entry point)
365
+ presentation/features/templates/FeatureFormDetailTemplate/index.js 5.45 KB (entry point)
366
+ presentation/features/templates/FeatureFormDetailTemplate/FeatureFormDetailTemplate.js 5.45 KB (entry point)
367
+ presentation/features/templates/FeatureFormDetailTemplate/types.js 0 KB (entry point)
373
368
  presentation/features/organisms/FeatureOperationsList.js 2.76 KB (entry point)
374
369
  presentation/features/organisms/FeaturePresentationsList.js 5.35 KB (entry point)
370
+ presentation/features/templates/FeatureDataViewDetailTemplate/index.js 5.50 KB (entry point)
375
371
  presentation/features/templates/FeatureDataViewDetailTemplate/FeatureDataViewDetailTemplate.js 5.50 KB (entry point)
376
- presentation/features/organisms/FeatureDataViewsList.js 5.33 KB (entry point)
372
+ presentation/features/templates/FeatureDataViewDetailTemplate/types.js 0 KB (entry point)
373
+ presentation/features/templates/FeatureDataViewsTemplate/index.js 5.97 KB (entry point)
374
+ presentation/features/templates/FeatureDataViewsTemplate/FeatureDataViewsTemplate.js 5.97 KB (entry point)
377
375
  presentation/features/organisms/FeatureDetail/index.js 2.48 KB (entry point)
378
376
  presentation/features/organisms/FeatureDetail/FeatureDetail.js 2.48 KB (entry point)
377
+ presentation/features/organisms/FeatureDiscovery/index.js 15.58 KB (entry point)
379
378
  presentation/features/organisms/FeatureDiscovery/FeatureDiscovery.js 15.58 KB (entry point)
379
+ presentation/features/organisms/FeatureEventsList.js 5.32 KB (entry point)
380
+ presentation/features/organisms/FeatureFormsList.js 5.33 KB (entry point)
381
+ presentation/features/molecules/FeatureCategoryHeader/index.js 1.29 KB (entry point)
382
+ presentation/features/molecules/FeatureFilters/index.js 1.63 KB (entry point)
383
+ presentation/features/molecules/FeatureFilters/FeatureFilters.js 1.63 KB (entry point)
384
+ presentation/features/organisms/FeatureDataViewsList.js 5.33 KB (entry point)
385
+ presentation/features/hooks/useRelatedDocs.js 0.76 KB (entry point)
380
386
  presentation/features/molecules/FeatureCard/index.js 5.87 KB (entry point)
381
387
  presentation/features/molecules/FeatureCard/FeatureCard.js 5.87 KB (entry point)
382
388
  presentation/features/molecules/FeatureHoverPreview/index.js 3.0 KB (entry point)
383
389
  presentation/features/molecules/FeatureHoverPreview/FeatureHoverPreview.js 3.0 KB (entry point)
384
- presentation/features/molecules/FeatureCategoryHeader/index.js 1.29 KB (entry point)
390
+ presentation/features/molecules/FeatureCard/types.js 0 KB (entry point)
385
391
  presentation/features/molecules/FeatureCategoryHeader/FeatureCategoryHeader.js 1.29 KB (entry point)
386
- presentation/features/molecules/FeatureFilters/index.js 1.63 KB (entry point)
387
- presentation/features/molecules/FeatureFilters/FeatureFilters.js 1.63 KB (entry point)
392
+ libs/posthog/native.js 0.76 KB (entry point)
393
+ libs/posthog/server.js 447 bytes (entry point)
394
+ libs/pricing-examples.js 462 bytes (entry point)
395
+ presentation/features/atoms/index.js 1.45 KB (entry point)
388
396
  presentation/features/atoms/FeatureIcon/index.js 1.45 KB (entry point)
397
+ presentation/features/atoms/FeatureIcon/FeatureIcon.js 1.45 KB (entry point)
389
398
  presentation/features/hooks/index.js 6.77 KB (entry point)
390
- presentation/features/hooks/useContractsRegistry.js 5.00 KB (entry point)
391
399
  presentation/features/hooks/useFeatureFilters.js 1.46 KB (entry point)
392
400
  presentation/features/hooks/useFeatureRegistry.js 3.0 KB (entry point)
393
- presentation/features/hooks/useRelatedDocs.js 0.76 KB (entry point)
401
+ presentation/features/hooks/useContractsRegistry.js 5.00 KB (entry point)
402
+ libs/email/types.js 0 KB (entry point)
394
403
  libs/posthog/client.js 1.28 KB (entry point)
395
- libs/posthog/native.js 0.76 KB (entry point)
396
- libs/posthog/server.js 447 bytes (entry point)
397
- libs/pricing-examples.js 462 bytes (entry point)
398
- presentation/features/atoms/FeatureIcon/FeatureIcon.js 1.45 KB (entry point)
404
+ ./index.js 0.82 MB (entry point)
399
405
  infrastructure/index.js 0.74 KB (entry point)
400
406
  infrastructure/elysia/index.js 0.74 KB (entry point)
401
407
  libs/email.js 15.26 KB (entry point)
402
- libs/email/waitlist-application.js 7.90 KB (entry point)
403
- libs/email/waitlist.js 5.32 KB (entry point)
404
408
  libs/email/contact.js 4.0 KB (entry point)
405
409
  libs/email/newsletter.js 4.71 KB (entry point)
406
- libs/email/utils.js 379 bytes (entry point)
410
+ libs/email/waitlist-application.js 7.90 KB (entry point)
411
+ libs/email/waitlist.js 5.32 KB (entry point)
407
412
  libs/email/client.js 2.15 KB (entry point)
408
- libs/email/types.js 0 KB (entry point)
409
- ./index.js 0.76 MB (entry point)
413
+ libs/email/utils.js 379 bytes (entry point)
414
+ config/index.js 2.57 KB (entry point)
410
415
  features/index.js 6.0 KB (entry point)
411
- features/docs/index.js 0.53 KB (entry point)
412
- features/docs/docs.contracts.js 0.53 KB (entry point)
413
416
  features/registry.js 2.62 KB (entry point)
414
- features/docs.feature.js 0.89 KB (entry point)
415
417
  features/mcp.feature.js 0.85 KB (entry point)
416
418
  features/presentations.feature.js 0.95 KB (entry point)
419
+ features/docs.feature.js 0.89 KB (entry point)
420
+ features/docs/index.js 0.53 KB (entry point)
421
+ features/docs/docs.contracts.js 0.53 KB (entry point)
422
+ components/templates/recipes/types.js 0 KB (entry point)
417
423
  components/templates/todos/types.js 0 KB (entry point)
418
- config/index.js 2.57 KB (entry point)
419
424
  config/contractspec-blueprint.js 2.48 KB (entry point)
420
425
  config/contractspec-branding.js 0.86 KB (entry point)
421
426
  config/contractspec-routes.js 0.87 KB (entry point)
422
- components/templates/recipes/types.js 0 KB (entry point)
427
+ components/templates/messaging/types.js 0 KB (entry point)
428
+ components/shell/index.js 4.22 KB (entry point)
429
+ components/shell/WorkspaceShellRenderer.js 3.40 KB (entry point)
430
+ components/templates/engine/index.js 0.85 KB (entry point)
423
431
  components/templates/index.js 20.20 KB (entry point)
424
432
  components/templates/todos/index.js 9.30 KB (entry point)
425
433
  components/templates/todos/TaskList.js 9.26 KB (entry point)
426
- components/templates/recipes/index.js 5.34 KB (entry point)
427
- components/templates/recipes/RecipeList.js 5.28 KB (entry point)
428
- components/templates/recipes/RecipeCard.js 1.59 KB (entry point)
429
- components/templates/recipes/RecipeDetail.js 1.54 KB (entry point)
430
434
  components/templates/todos/FilterBar.js 2.16 KB (entry point)
431
435
  components/templates/todos/TaskForm.js 3.1 KB (entry point)
432
436
  components/templates/todos/TaskItem.js 2.17 KB (entry point)
433
437
  components/templates/messaging/index.js 5.88 KB (entry point)
434
438
  components/templates/messaging/MessagingWorkspace.js 5.80 KB (entry point)
439
+ components/templates/recipes/index.js 5.34 KB (entry point)
440
+ components/templates/recipes/RecipeList.js 5.28 KB (entry point)
441
+ components/templates/recipes/LanguageSwitcher.js 0.67 KB (entry point)
442
+ components/templates/recipes/RecipeCard.js 1.59 KB (entry point)
443
+ components/templates/recipes/RecipeDetail.js 1.54 KB (entry point)
435
444
  components/templates/messaging/ConversationList.js 2.13 KB (entry point)
436
445
  components/templates/messaging/MessageComposer.js 3.46 KB (entry point)
437
446
  components/templates/messaging/MessageThread.js 2.23 KB (entry point)
438
- components/templates/messaging/types.js 0 KB (entry point)
439
- components/templates/recipes/LanguageSwitcher.js 0.67 KB (entry point)
447
+ components/legal/index.js 42.77 KB (entry point)
448
+ components/legal/PrivacyTemplate.js 20.27 KB (entry point)
449
+ components/legal/TermsTemplate.js 22.75 KB (entry point)
440
450
  components/shared/index.js 0.85 KB (entry point)
441
451
  components/shared/FeatureGateNotice.js 0.85 KB (entry point)
442
- components/shell/index.js 4.22 KB (entry point)
443
452
  components/shell/WorkspaceProjectShellLayout.js 3.30 KB (entry point)
444
- components/shell/WorkspaceShellRenderer.js 3.40 KB (entry point)
445
- components/shell/WorkspaceHeader.js 1.71 KB (entry point)
446
453
  components/shell/WorkspaceSidebar.js 1.1 KB (entry point)
447
- components/templates/engine/index.js 0.85 KB (entry point)
454
+ components/shell/WorkspaceHeader.js 1.71 KB (entry point)
455
+ components/docs/tech/contracts/tech-docs.docblocks.js 0.72 KB (entry point)
448
456
  components/integrations/index.js 10.29 KB (entry point)
457
+ components/integrations/organisms/KnowledgeSourceList.js 2.10 KB (entry point)
449
458
  components/integrations/organisms/IntegrationMarketplace.js 4.1 KB (entry point)
450
459
  components/integrations/molecules/IntegrationCard.js 1.90 KB (entry point)
451
460
  components/integrations/organisms/IntegrationSettings.js 4.51 KB (entry point)
452
- components/integrations/organisms/KnowledgeSourceList.js 2.10 KB (entry point)
453
- components/legal/index.js 42.77 KB (entry point)
454
- components/legal/PrivacyTemplate.js 20.27 KB (entry point)
455
- components/legal/TermsTemplate.js 22.75 KB (entry point)
456
- components/docs/tech/contracts/tech-docs.docblocks.js 0.72 KB (entry point)
457
461
  components/docs/ops/ops.docs.js 22.52 KB (entry point)
462
+ components/docs/product/product.docblocks.js 2.94 KB (entry point)
463
+ components/docs/ops/ops-lifecycle.docblocks.js 6.18 KB (entry point)
458
464
  components/docs/ops/ops-runbooks-a.docblocks.js 5.26 KB (entry point)
459
465
  components/docs/ops/ops-runbooks-b.docblocks.js 4.94 KB (entry point)
460
466
  components/docs/ops/ops-slo-tenant.docblocks.js 6.32 KB (entry point)
461
467
  components/docs/ops/ops-top.docs.js 0.75 KB (entry point)
462
- components/docs/product/product.docblocks.js 2.94 KB (entry point)
463
- components/docs/ops/ops-lifecycle.docblocks.js 6.18 KB (entry point)
464
- components/docs/index.js 0.67 MB (entry point)
468
+ components/docs/index.js 0.73 MB (entry point)
465
469
  components/docs/studio/index.js 6.61 KB (entry point)
470
+ components/docs/studio/StudioOverviewPage.js 4.20 KB (entry point)
471
+ components/docs/studio/StudioVisualBuilderPage.js 0.71 KB (entry point)
472
+ components/docs/specs/index.js 69.26 KB (entry point)
473
+ components/docs/specs/SpecsOverviewPage.js 5.41 KB (entry point)
474
+ components/docs/specs/SpecsPolicyPage.js 8.96 KB (entry point)
475
+ components/docs/specs/SpecsWorkflowsPage.js 7.76 KB (entry point)
466
476
  components/docs/studio/StudioBYOKPage.js 0.70 KB (entry point)
467
477
  components/docs/studio/StudioDeploymentsPage.js 0.70 KB (entry point)
468
478
  components/docs/studio/StudioGettingStartedPage.js 0.71 KB (entry point)
469
479
  components/docs/studio/StudioIntegrationsPage.js 0.70 KB (entry point)
470
- components/docs/studio/StudioOverviewPage.js 4.20 KB (entry point)
471
- components/docs/studio/StudioVisualBuilderPage.js 0.71 KB (entry point)
472
- components/docs/specs/index.js 66.0 KB (entry point)
480
+ components/docs/safety/index.js 32.46 KB (entry point)
481
+ components/docs/specs/SpecsBuilderControlPlanePage.js 8.82 KB (entry point)
482
+ components/docs/specs/SpecsCapabilitiesPage.js 3.93 KB (entry point)
473
483
  components/docs/specs/SpecsConnectPage.js 7.84 KB (entry point)
474
- components/docs/specs/SpecsDataViewsPage.js 8.30 KB (entry point)
484
+ components/docs/specs/SpecsDataViewsPage.js 11.51 KB (entry point)
475
485
  components/docs/specs/SpecsModuleBundlesPage.js 7.86 KB (entry point)
476
486
  components/docs/specs/SpecsOverlaysPage.js 8.87 KB (entry point)
477
- components/docs/specs/SpecsOverviewPage.js 5.41 KB (entry point)
478
- components/docs/specs/SpecsPolicyPage.js 8.96 KB (entry point)
479
- components/docs/specs/SpecsWorkflowsPage.js 7.76 KB (entry point)
480
- components/docs/safety/index.js 32.46 KB (entry point)
487
+ components/docs/reference/index.js 7.76 KB (entry point)
488
+ components/docs/safety/SafetyAuditingPage.js 8.13 KB (entry point)
489
+ components/docs/safety/SafetyMigrationsPage.js 8.41 KB (entry point)
490
+ components/docs/safety/SafetyOverviewPage.js 2.58 KB (entry point)
481
491
  components/docs/safety/SafetyPDPPage.js 6.58 KB (entry point)
482
492
  components/docs/safety/SafetySecurityTrustPage.js 4.0 KB (entry point)
483
493
  components/docs/safety/SafetySigningPage.js 2.1 KB (entry point)
484
494
  components/docs/safety/SafetyTenantIsolationPage.js 1.98 KB (entry point)
485
- components/docs/specs/SpecsBuilderControlPlanePage.js 8.82 KB (entry point)
486
- components/docs/specs/SpecsCapabilitiesPage.js 3.93 KB (entry point)
487
- components/docs/reference/index.js 7.76 KB (entry point)
488
495
  components/docs/reference/DocsReferenceIndexPage.js 3.92 KB (entry point)
489
496
  components/docs/reference/DocsReferenceIndexClient.js 2.28 KB (entry point)
490
497
  components/docs/reference/DocsReferencePage.js 4.0 KB (entry point)
491
- components/docs/safety/SafetyAuditingPage.js 8.13 KB (entry point)
492
- components/docs/safety/SafetyMigrationsPage.js 8.41 KB (entry point)
493
- components/docs/safety/SafetyOverviewPage.js 2.58 KB (entry point)
494
498
  components/docs/reference/DocsReferenceContent.js 3.91 KB (entry point)
495
499
  components/docs/reference/DocsMarkdownContent.js 2.90 KB (entry point)
496
500
  components/docs/reference/docsMarkdownParser.js 1.65 KB (entry point)
497
- components/docs/libraries/index.js 127.77 KB (entry point)
498
- components/docs/libraries/LibrariesWorkflowComposerPage.js 2.1 KB (entry point)
499
- components/docs/libraries/LibrariesWorkflowsPage.js 3.72 KB (entry point)
500
- components/docs/manifesto/ManifestoPage.js 2.79 KB (entry point)
501
501
  components/docs/ops/index.js 4.52 KB (entry point)
502
502
  components/docs/ops/AutoEvolutionOpsPage.js 3.27 KB (entry point)
503
503
  components/docs/ops/DistributedTracingOpsPage.js 1.47 KB (entry point)
504
+ components/docs/libraries/index.js 161.18 KB (entry point)
505
+ components/docs/libraries/LibrariesTranslationRuntimePage.js 7.68 KB (entry point)
506
+ components/docs/libraries/LibrariesTranslationRuntimePage.content.js 3.77 KB (entry point)
507
+ components/docs/libraries/LibrariesUIKitPage.js 5.49 KB (entry point)
508
+ components/docs/libraries/LibrariesUIKitWebPage.js 4.35 KB (entry point)
509
+ components/docs/libraries/LibrariesWorkflowComposerPage.js 2.1 KB (entry point)
510
+ components/docs/libraries/LibrariesWorkflowsPage.js 3.72 KB (entry point)
511
+ components/docs/manifesto/ManifestoPage.js 2.79 KB (entry point)
512
+ components/docs/libraries/LibrariesPersonalizationPage.js 6.50 KB (entry point)
513
+ components/docs/libraries/LibrariesProgressiveDeliveryPage.js 3.0 KB (entry point)
504
514
  components/docs/libraries/LibrariesResiliencePage.js 2.65 KB (entry point)
505
515
  components/docs/libraries/LibrariesRuntimePage.js 5.17 KB (entry point)
506
516
  components/docs/libraries/LibrariesSLOPage.js 2.58 KB (entry point)
507
517
  components/docs/libraries/LibrariesSchemaPage.js 5.00 KB (entry point)
508
518
  components/docs/libraries/LibrariesSupportBotPage.js 2.87 KB (entry point)
509
519
  components/docs/libraries/LibrariesTestingPage.js 3.30 KB (entry point)
510
- components/docs/libraries/LibrariesUIKitPage.js 5.49 KB (entry point)
511
- components/docs/libraries/LibrariesUIKitWebPage.js 4.35 KB (entry point)
520
+ components/docs/libraries/LibrariesDesignSystemPage.js 18.44 KB (entry point)
521
+ components/docs/libraries/LibrariesEvolutionPage.js 3.67 KB (entry point)
512
522
  components/docs/libraries/LibrariesGraphQLPage.js 3.97 KB (entry point)
513
523
  components/docs/libraries/LibrariesGrowthPage.js 2.55 KB (entry point)
514
524
  components/docs/libraries/LibrariesMultiTenancyPage.js 2.33 KB (entry point)
515
525
  components/docs/libraries/LibrariesObservabilityPage.js 3.18 KB (entry point)
516
526
  components/docs/libraries/LibrariesOverlayEnginePage.js 2.87 KB (entry point)
517
- components/docs/libraries/LibrariesOverviewPage.js 5.20 KB (entry point)
518
- components/docs/libraries/LibrariesPersonalizationPage.js 2.94 KB (entry point)
519
- components/docs/libraries/LibrariesProgressiveDeliveryPage.js 3.0 KB (entry point)
527
+ components/docs/libraries/LibrariesOverviewPage.js 5.51 KB (entry point)
528
+ components/docs/libraries/LibrariesApplicationShellPage.js 17.14 KB (entry point)
529
+ components/docs/libraries/LibrariesContentGenPage.js 2.70 KB (entry point)
520
530
  components/docs/libraries/LibrariesContractsPage.js 6.86 KB (entry point)
521
531
  components/docs/libraries/LibrariesCostTrackingPage.js 2.47 KB (entry point)
522
532
  components/docs/libraries/LibrariesCrossPlatformUIPage.js 16.85 KB (entry point)
523
533
  components/docs/libraries/LibrariesCrossPlatformUIPage.content.js 11.0 KB (entry point)
524
534
  components/docs/libraries/LibrariesDataBackendPage.js 3.77 KB (entry point)
525
- components/docs/libraries/LibrariesDataViewsPage.js 4.54 KB (entry point)
526
- components/docs/libraries/LibrariesDesignSystemPage.js 8.84 KB (entry point)
527
- components/docs/libraries/LibrariesEvolutionPage.js 3.67 KB (entry point)
535
+ components/docs/libraries/LibrariesDataViewsPage.js 10.56 KB (entry point)
528
536
  components/docs/knowledge/index.js 38.69 KB (entry point)
537
+ components/docs/knowledge/KnowledgeOverviewPage.js 2.59 KB (entry point)
538
+ components/docs/knowledge/KnowledgeSourcesPage.js 8.66 KB (entry point)
529
539
  components/docs/knowledge/KnowledgeSpacesPage.js 7.11 KB (entry point)
530
540
  components/docs/libraries/LibrariesAccessibilityPage.js 4.10 KB (entry point)
531
541
  components/docs/libraries/LibrariesAiAgentPage.js 3.27 KB (entry point)
532
542
  components/docs/libraries/LibrariesAnalyticsPage.js 2.27 KB (entry point)
533
- components/docs/libraries/LibrariesApplicationShellPage.js 10.93 KB (entry point)
534
- components/docs/libraries/LibrariesApplicationShellPage.content.js 7.73 KB (entry point)
535
- components/docs/libraries/LibrariesContentGenPage.js 2.70 KB (entry point)
543
+ components/docs/libraries/LibrariesApplicationShellPage.content.js 12.85 KB (entry point)
536
544
  components/docs/intent/index.js 34.37 KB (entry point)
545
+ components/docs/intent/GenerateClientFromSchemaPage.js 8.95 KB (entry point)
546
+ components/docs/intent/OpenapiAlternativePage.js 4.68 KB (entry point)
537
547
  components/docs/intent/SchemaValidationTypescriptPage.js 5.0 KB (entry point)
538
548
  components/docs/intent/SpecDrivenDevelopmentPage.js 4.88 KB (entry point)
539
549
  components/docs/intent/intent-pages.docblocks.js 5.0 KB (entry point)
540
550
  components/docs/knowledge/KnowledgeCategoriesPage.js 13.52 KB (entry point)
541
551
  components/docs/knowledge/KnowledgeExamplesPage.js 7.68 KB (entry point)
542
- components/docs/knowledge/KnowledgeOverviewPage.js 2.59 KB (entry point)
543
- components/docs/knowledge/KnowledgeSourcesPage.js 8.66 KB (entry point)
544
552
  components/docs/integrations/index.js 74.19 KB (entry point)
553
+ components/docs/integrations/IntegrationsSpecModelPage.js 10.88 KB (entry point)
554
+ components/docs/integrations/IntegrationsStripePage.js 8.1 KB (entry point)
545
555
  components/docs/integrations/IntegrationsTwilioPage.js 2.75 KB (entry point)
546
556
  components/docs/integrations/IntegrationsWhatsappMetaPage.js 2.98 KB (entry point)
547
557
  components/docs/integrations/IntegrationsWhatsappTwilioPage.js 3.1 KB (entry point)
548
558
  components/docs/intent/ContractFirstApiPage.js 3.43 KB (entry point)
549
559
  components/docs/intent/DeterministicCodegenPage.js 3.97 KB (entry point)
550
- components/docs/intent/GenerateClientFromSchemaPage.js 8.95 KB (entry point)
551
- components/docs/intent/OpenapiAlternativePage.js 4.68 KB (entry point)
560
+ components/docs/integrations/IntegrationsOpenAIPage.js 3.61 KB (entry point)
561
+ components/docs/integrations/IntegrationsOverviewPage.js 3.79 KB (entry point)
552
562
  components/docs/integrations/IntegrationsPostmarkPage.js 4.93 KB (entry point)
553
563
  components/docs/integrations/IntegrationsPowensPage.js 7.32 KB (entry point)
554
564
  components/docs/integrations/IntegrationsQdrantPage.js 3.46 KB (entry point)
555
565
  components/docs/integrations/IntegrationsResendPage.js 2.30 KB (entry point)
556
566
  components/docs/integrations/IntegrationsS3Page.js 3.1 KB (entry point)
557
567
  components/docs/integrations/IntegrationsSlackPage.js 3.18 KB (entry point)
558
- components/docs/integrations/IntegrationsSpecModelPage.js 10.88 KB (entry point)
559
- components/docs/integrations/IntegrationsStripePage.js 8.1 KB (entry point)
568
+ components/docs/integrations/IntegrationsCircuitBreakersPage.js 1.37 KB (entry point)
560
569
  components/docs/integrations/IntegrationsElevenLabsPage.js 2.29 KB (entry point)
561
570
  components/docs/integrations/IntegrationsGithubPage.js 3.1 KB (entry point)
562
571
  components/docs/integrations/IntegrationsGmailPage.js 2.60 KB (entry point)
563
572
  components/docs/integrations/IntegrationsGoogleCalendarPage.js 1.99 KB (entry point)
564
573
  components/docs/integrations/IntegrationsHealthRoutingPage.js 3.60 KB (entry point)
565
574
  components/docs/integrations/IntegrationsMistralPage.js 3.88 KB (entry point)
566
- components/docs/integrations/IntegrationsOpenAIPage.js 3.61 KB (entry point)
567
- components/docs/integrations/IntegrationsOverviewPage.js 3.79 KB (entry point)
568
- components/docs/guides/index.js 94.33 KB (entry point)
575
+ components/docs/guides/index.js 105.99 KB (entry point)
576
+ components/docs/guides/GuideHostBuilderWorkbenchPage.js 9.38 KB (entry point)
577
+ components/docs/guides/GuideImportExistingCodebasesPage.js 15.53 KB (entry point)
569
578
  components/docs/guides/GuideNextjsOneEndpointPage.js 6.43 KB (entry point)
570
579
  components/docs/guides/GuideReleaseCapsulesPage.js 4.99 KB (entry point)
571
580
  components/docs/guides/GuideSpecValidationTypingPage.js 5.58 KB (entry point)
572
- components/docs/guides/GuidesIndexPage.js 4.79 KB (entry point)
581
+ components/docs/guides/GuidesIndexPage.js 5.1 KB (entry point)
573
582
  components/docs/guides/guides.docblocks.js 3.42 KB (entry point)
574
- components/docs/integrations/IntegrationsCircuitBreakersPage.js 1.37 KB (entry point)
575
583
  components/docs/guides/GuideContractDrivenFormsPage.js 8.14 KB (entry point)
576
584
  components/docs/guides/GuideContractDrivenFormsPage.content.js 3.57 KB (entry point)
577
585
  components/docs/guides/GuideContractTypesPage.js 16.11 KB (entry point)
586
+ components/docs/guides/GuideDataExchangeImportTemplatesPage.js 11.51 KB (entry point)
587
+ components/docs/guides/GuideDataExchangeImportTemplatesPage.content.js 6.34 KB (entry point)
578
588
  components/docs/guides/GuideDocsPipelinePage.js 4.39 KB (entry point)
579
589
  components/docs/guides/GuideFirstModuleBundlePage.js 6.47 KB (entry point)
580
590
  components/docs/guides/GuideGenerateDocsClientsSchemasPage.js 4.23 KB (entry point)
581
- components/docs/guides/GuideHostBuilderWorkbenchPage.js 9.38 KB (entry point)
582
- components/docs/guides/GuideImportExistingCodebasesPage.js 15.53 KB (entry point)
583
- components/docs/getting-started/index.js 42.30 KB (entry point)
591
+ components/docs/getting-started/index.js 45.45 KB (entry point)
584
592
  components/docs/getting-started/InstallationPage.js 2.77 KB (entry point)
585
593
  components/docs/getting-started/StartHerePage.js 2.27 KB (entry point)
586
594
  components/docs/getting-started/TroubleshootingPage.js 2.94 KB (entry point)
@@ -593,7 +601,7 @@ Bundled 323 modules in 416ms
593
601
  components/docs/generated/docs-index.generated.js 276 bytes (entry point)
594
602
  components/docs/getting-started/CLIPage.js 5.66 KB (entry point)
595
603
  components/docs/getting-started/CompatibilityPage.js 3.22 KB (entry point)
596
- components/docs/getting-started/DataViewTutorialPage.js 6.44 KB (entry point)
604
+ components/docs/getting-started/DataViewTutorialPage.js 9.58 KB (entry point)
597
605
  components/docs/getting-started/DeveloperToolsPage.js 3.84 KB (entry point)
598
606
  components/docs/getting-started/HelloWorldPage.js 6.41 KB (entry point)
599
607
  components/docs/ecosystem/index.js 13.44 KB (entry point)
@@ -630,8 +638,8 @@ Bundled 323 modules in 416ms
630
638
  components/docs/architecture/ArchitectureAppConfigPage.js 8.1 KB (entry point)
631
639
  bundles/index.js 1.0 KB (entry point)
632
640
  bundles/LibraryBundle.js 1.0 KB (entry point)
633
- components/docs/DocsIndexPage.js 26.1 KB (entry point)
634
- components/docs/docsManifest.js 18.50 KB (entry point)
641
+ components/docs/DocsIndexPage.js 28.41 KB (entry point)
642
+ components/docs/docsManifest.js 20.84 KB (entry point)
635
643
  application/mcp/contractsMcpTypes.js 0 KB (entry point)
636
644
  application/mcp/docsMcp.catalog.js 6.19 KB (entry point)
637
645
  application/index.js 49.74 KB (entry point)