@contractspec/bundle.marketing 1.12.0 → 1.14.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 +146 -175
- package/.turbo/turbo-prebuild.log +1 -0
- package/CHANGELOG.md +57 -0
- package/dist/browser/components/marketing/ChangelogPage.js +92 -0
- package/dist/browser/components/marketing/CofounderPage.js +581 -0
- package/dist/browser/components/marketing/ContactClient.js +1379 -0
- package/dist/browser/components/marketing/ContributePage.js +487 -0
- package/dist/browser/components/marketing/DesignPartnerPage.js +272 -0
- package/dist/browser/components/marketing/LandingPage.js +629 -0
- package/dist/browser/components/marketing/PricingClient.js +1972 -0
- package/dist/browser/components/marketing/ProductClientPage.js +563 -0
- package/dist/browser/components/marketing/index.js +4818 -0
- package/dist/browser/components/marketing/pricing-thinking-modal.js +258 -0
- package/dist/browser/components/marketing/sections/AudienceSection.js +90 -0
- package/dist/browser/components/marketing/sections/CorePositioningSection.js +72 -0
- package/dist/browser/components/marketing/sections/CtaSection.js +67 -0
- package/dist/browser/components/marketing/sections/DevelopersSection.js +50 -0
- package/dist/browser/components/marketing/sections/FearsSection.js +105 -0
- package/dist/browser/components/marketing/sections/HeroMarketingSection.js +93 -0
- package/dist/browser/components/marketing/sections/IconGridSection.js +63 -0
- package/dist/browser/components/marketing/sections/OutputsSection.js +116 -0
- package/dist/browser/components/marketing/sections/ProblemSection.js +103 -0
- package/dist/browser/components/marketing/sections/SolutionSection.js +103 -0
- package/dist/browser/components/marketing/sections/StepsSection.js +109 -0
- package/dist/browser/components/marketing/waitlist-section.js +1104 -0
- package/dist/browser/components/templates/TemplatesClientPage.js +5662 -0
- package/dist/browser/components/templates/TemplatesPage.js +177 -0
- package/dist/browser/components/templates/TemplatesPreviewModal.js +124 -0
- package/dist/browser/components/templates/index.js +5831 -0
- package/dist/browser/index.js +6485 -0
- package/dist/browser/libs/email/client.js +122 -0
- package/dist/browser/libs/email/contact.js +190 -0
- package/dist/browser/libs/email/newsletter.js +215 -0
- package/dist/browser/libs/email/types.js +2 -0
- package/dist/browser/libs/email/utils.js +16 -0
- package/dist/browser/libs/email/waitlist-application.js +295 -0
- package/dist/browser/libs/email/waitlist.js +225 -0
- package/dist/browser/libs/pricing-examples.js +26 -0
- package/dist/browser/registry/engine.js +5293 -0
- package/dist/browser/registry/factory.js +52 -0
- package/dist/browser/registry/index.js +5358 -0
- package/dist/browser/registry/registry-docs.js +343 -0
- package/dist/browser/registry/registry-landing.js +4937 -0
- package/dist/browser/registry/registry.js +5279 -0
- package/dist/browser/registry/types.js +0 -0
- package/dist/browser/registry/utils.js +5340 -0
- package/dist/components/marketing/ChangelogPage.d.ts +11 -17
- package/dist/components/marketing/ChangelogPage.d.ts.map +1 -1
- package/dist/components/marketing/ChangelogPage.js +84 -62
- package/dist/components/marketing/CofounderPage.d.ts +1 -6
- package/dist/components/marketing/CofounderPage.d.ts.map +1 -1
- package/dist/components/marketing/CofounderPage.js +544 -436
- package/dist/components/marketing/ContactClient.d.ts +1 -6
- package/dist/components/marketing/ContactClient.d.ts.map +1 -1
- package/dist/components/marketing/ContactClient.js +1371 -155
- package/dist/components/marketing/ContributePage.d.ts +3 -8
- package/dist/components/marketing/ContributePage.d.ts.map +1 -1
- package/dist/components/marketing/ContributePage.js +478 -358
- package/dist/components/marketing/DesignPartnerPage.d.ts +3 -8
- package/dist/components/marketing/DesignPartnerPage.d.ts.map +1 -1
- package/dist/components/marketing/DesignPartnerPage.js +263 -211
- package/dist/components/marketing/LandingPage.d.ts +1 -6
- package/dist/components/marketing/LandingPage.d.ts.map +1 -1
- package/dist/components/marketing/LandingPage.js +623 -37
- package/dist/components/marketing/PricingClient.d.ts +1 -6
- package/dist/components/marketing/PricingClient.d.ts.map +1 -1
- package/dist/components/marketing/PricingClient.js +1962 -516
- package/dist/components/marketing/ProductClientPage.d.ts +1 -6
- package/dist/components/marketing/ProductClientPage.d.ts.map +1 -1
- package/dist/components/marketing/ProductClientPage.js +556 -458
- package/dist/components/marketing/index.d.ts +11 -11
- package/dist/components/marketing/index.d.ts.map +1 -0
- package/dist/components/marketing/index.js +4813 -12
- package/dist/components/marketing/pricing-thinking-modal.d.ts +5 -13
- package/dist/components/marketing/pricing-thinking-modal.d.ts.map +1 -1
- package/dist/components/marketing/pricing-thinking-modal.js +248 -197
- package/dist/components/marketing/sections/AudienceSection.d.ts +1 -6
- package/dist/components/marketing/sections/AudienceSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/AudienceSection.js +80 -63
- package/dist/components/marketing/sections/CorePositioningSection.d.ts +1 -6
- package/dist/components/marketing/sections/CorePositioningSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CorePositioningSection.js +62 -54
- package/dist/components/marketing/sections/CtaSection.d.ts +1 -6
- package/dist/components/marketing/sections/CtaSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/CtaSection.js +58 -50
- package/dist/components/marketing/sections/DevelopersSection.d.ts +1 -6
- package/dist/components/marketing/sections/DevelopersSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/DevelopersSection.js +40 -40
- package/dist/components/marketing/sections/FearsSection.d.ts +1 -6
- package/dist/components/marketing/sections/FearsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/FearsSection.js +96 -44
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts +1 -6
- package/dist/components/marketing/sections/HeroMarketingSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js +82 -71
- package/dist/components/marketing/sections/IconGridSection.d.ts +25 -39
- package/dist/components/marketing/sections/IconGridSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/IconGridSection.js +55 -41
- package/dist/components/marketing/sections/OutputsSection.d.ts +1 -6
- package/dist/components/marketing/sections/OutputsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/OutputsSection.js +107 -55
- package/dist/components/marketing/sections/ProblemSection.d.ts +1 -6
- package/dist/components/marketing/sections/ProblemSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/ProblemSection.js +94 -42
- package/dist/components/marketing/sections/SolutionSection.d.ts +1 -6
- package/dist/components/marketing/sections/SolutionSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/SolutionSection.js +94 -42
- package/dist/components/marketing/sections/StepsSection.d.ts +1 -6
- package/dist/components/marketing/sections/StepsSection.d.ts.map +1 -1
- package/dist/components/marketing/sections/StepsSection.js +100 -48
- package/dist/components/marketing/waitlist-section.d.ts +5 -12
- package/dist/components/marketing/waitlist-section.d.ts.map +1 -1
- package/dist/components/marketing/waitlist-section.js +1089 -568
- package/dist/components/templates/TemplatesClientPage.d.ts +1 -6
- package/dist/components/templates/TemplatesClientPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesClientPage.js +5649 -617
- package/dist/components/templates/TemplatesPage.d.ts +1 -6
- package/dist/components/templates/TemplatesPage.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPage.js +163 -116
- package/dist/components/templates/TemplatesPreviewModal.d.ts +5 -12
- package/dist/components/templates/TemplatesPreviewModal.d.ts.map +1 -1
- package/dist/components/templates/TemplatesPreviewModal.js +113 -131
- package/dist/components/templates/index.d.ts +4 -4
- package/dist/components/templates/index.d.ts.map +1 -0
- package/dist/components/templates/index.js +5825 -4
- package/dist/index.d.ts +9 -29
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +6480 -28
- package/dist/libs/email/client.d.ts +9 -12
- package/dist/libs/email/client.d.ts.map +1 -1
- package/dist/libs/email/client.js +109 -105
- package/dist/libs/email/client.test.d.ts +2 -0
- package/dist/libs/email/client.test.d.ts.map +1 -0
- package/dist/libs/email/contact.d.ts +2 -6
- package/dist/libs/email/contact.d.ts.map +1 -1
- package/dist/libs/email/contact.js +155 -41
- package/dist/libs/email/newsletter.d.ts +2 -6
- package/dist/libs/email/newsletter.d.ts.map +1 -1
- package/dist/libs/email/newsletter.js +169 -54
- package/dist/libs/email/types.d.ts +48 -52
- package/dist/libs/email/types.d.ts.map +1 -1
- package/dist/libs/email/types.js +3 -1
- package/dist/libs/email/utils.d.ts +2 -5
- package/dist/libs/email/utils.d.ts.map +1 -1
- package/dist/libs/email/utils.js +10 -6
- package/dist/libs/email/waitlist-application.d.ts +2 -6
- package/dist/libs/email/waitlist-application.d.ts.map +1 -1
- package/dist/libs/email/waitlist-application.js +191 -71
- package/dist/libs/email/waitlist.d.ts +2 -6
- package/dist/libs/email/waitlist.d.ts.map +1 -1
- package/dist/libs/email/waitlist.js +171 -56
- package/dist/libs/pricing-examples.d.ts +13 -16
- package/dist/libs/pricing-examples.d.ts.map +1 -1
- package/dist/libs/pricing-examples.js +20 -20
- package/dist/node/components/marketing/ChangelogPage.js +87 -0
- package/dist/node/components/marketing/CofounderPage.js +576 -0
- package/dist/node/components/marketing/ContactClient.js +1374 -0
- package/dist/node/components/marketing/ContributePage.js +482 -0
- package/dist/node/components/marketing/DesignPartnerPage.js +267 -0
- package/dist/node/components/marketing/LandingPage.js +624 -0
- package/dist/node/components/marketing/PricingClient.js +1967 -0
- package/dist/node/components/marketing/ProductClientPage.js +558 -0
- package/dist/node/components/marketing/index.js +4813 -0
- package/dist/node/components/marketing/pricing-thinking-modal.js +253 -0
- package/dist/node/components/marketing/sections/AudienceSection.js +85 -0
- package/dist/node/components/marketing/sections/CorePositioningSection.js +67 -0
- package/dist/node/components/marketing/sections/CtaSection.js +62 -0
- package/dist/node/components/marketing/sections/DevelopersSection.js +45 -0
- package/dist/node/components/marketing/sections/FearsSection.js +100 -0
- package/dist/node/components/marketing/sections/HeroMarketingSection.js +88 -0
- package/dist/node/components/marketing/sections/IconGridSection.js +58 -0
- package/dist/node/components/marketing/sections/OutputsSection.js +111 -0
- package/dist/node/components/marketing/sections/ProblemSection.js +98 -0
- package/dist/node/components/marketing/sections/SolutionSection.js +98 -0
- package/dist/node/components/marketing/sections/StepsSection.js +104 -0
- package/dist/node/components/marketing/waitlist-section.js +1099 -0
- package/dist/node/components/templates/TemplatesClientPage.js +5657 -0
- package/dist/node/components/templates/TemplatesPage.js +172 -0
- package/dist/node/components/templates/TemplatesPreviewModal.js +119 -0
- package/dist/node/components/templates/index.js +5826 -0
- package/dist/node/index.js +6480 -0
- package/dist/node/libs/email/client.js +117 -0
- package/dist/node/libs/email/contact.js +185 -0
- package/dist/node/libs/email/newsletter.js +210 -0
- package/dist/node/libs/email/types.js +2 -0
- package/dist/node/libs/email/utils.js +11 -0
- package/dist/node/libs/email/waitlist-application.js +290 -0
- package/dist/node/libs/email/waitlist.js +220 -0
- package/dist/node/libs/pricing-examples.js +21 -0
- package/dist/node/registry/engine.js +5288 -0
- package/dist/node/registry/factory.js +47 -0
- package/dist/node/registry/index.js +5353 -0
- package/dist/node/registry/registry-docs.js +338 -0
- package/dist/node/registry/registry-landing.js +4932 -0
- package/dist/node/registry/registry.js +5274 -0
- package/dist/node/registry/types.js +0 -0
- package/dist/node/registry/utils.js +5335 -0
- package/dist/registry/engine.d.ts +4 -8
- package/dist/registry/engine.d.ts.map +1 -1
- package/dist/registry/engine.js +5287 -23
- package/dist/registry/factory.d.ts +30 -34
- package/dist/registry/factory.d.ts.map +1 -1
- package/dist/registry/factory.js +42 -56
- package/dist/registry/index.d.ts +8 -8
- package/dist/registry/index.d.ts.map +1 -0
- package/dist/registry/index.js +5353 -8
- package/dist/registry/registry-docs.d.ts +4 -8
- package/dist/registry/registry-docs.d.ts.map +1 -1
- package/dist/registry/registry-docs.js +242 -209
- package/dist/registry/registry-landing.d.ts +5 -9
- package/dist/registry/registry-landing.d.ts.map +1 -1
- package/dist/registry/registry-landing.js +4930 -93
- package/dist/registry/registry.d.ts +7 -11
- package/dist/registry/registry.d.ts.map +1 -1
- package/dist/registry/registry.js +5262 -49
- package/dist/registry/types.d.ts +6 -10
- package/dist/registry/types.d.ts.map +1 -1
- package/dist/registry/types.js +1 -0
- package/dist/registry/utils.d.ts +10 -14
- package/dist/registry/utils.d.ts.map +1 -1
- package/dist/registry/utils.js +5330 -49
- package/package.json +355 -73
- package/tsdown.config.js +1 -2
- package/.turbo/turbo-build$colon$types.log +0 -1
- package/.turbo/turbo-lint.log +0 -3
- package/dist/components/marketing/ChangelogPage.js.map +0 -1
- package/dist/components/marketing/CofounderPage.js.map +0 -1
- package/dist/components/marketing/ContactClient.js.map +0 -1
- package/dist/components/marketing/ContributePage.js.map +0 -1
- package/dist/components/marketing/DesignPartnerPage.js.map +0 -1
- package/dist/components/marketing/LandingPage.js.map +0 -1
- package/dist/components/marketing/PricingClient.js.map +0 -1
- package/dist/components/marketing/ProductClientPage.js.map +0 -1
- package/dist/components/marketing/pricing-thinking-modal.js.map +0 -1
- package/dist/components/marketing/sections/AudienceSection.js.map +0 -1
- package/dist/components/marketing/sections/CorePositioningSection.js.map +0 -1
- package/dist/components/marketing/sections/CtaSection.js.map +0 -1
- package/dist/components/marketing/sections/DevelopersSection.js.map +0 -1
- package/dist/components/marketing/sections/FearsSection.js.map +0 -1
- package/dist/components/marketing/sections/HeroMarketingSection.js.map +0 -1
- package/dist/components/marketing/sections/IconGridSection.js.map +0 -1
- package/dist/components/marketing/sections/OutputsSection.js.map +0 -1
- package/dist/components/marketing/sections/ProblemSection.js.map +0 -1
- package/dist/components/marketing/sections/SolutionSection.js.map +0 -1
- package/dist/components/marketing/sections/StepsSection.js.map +0 -1
- package/dist/components/marketing/waitlist-section.js.map +0 -1
- package/dist/components/templates/TemplatesClientPage.js.map +0 -1
- package/dist/components/templates/TemplatesPage.js.map +0 -1
- package/dist/components/templates/TemplatesPreviewModal.js.map +0 -1
- package/dist/libs/email/client.js.map +0 -1
- package/dist/libs/email/contact.js.map +0 -1
- package/dist/libs/email/newsletter.js.map +0 -1
- package/dist/libs/email/utils.js.map +0 -1
- package/dist/libs/email/waitlist-application.js.map +0 -1
- package/dist/libs/email/waitlist.js.map +0 -1
- package/dist/libs/pricing-examples.js.map +0 -1
- package/dist/registry/engine.js.map +0 -1
- package/dist/registry/factory.js.map +0 -1
- package/dist/registry/registry-docs.js.map +0 -1
- package/dist/registry/registry-landing.js.map +0 -1
- package/dist/registry/registry.js.map +0 -1
- package/dist/registry/utils.js.map +0 -1
- package/tsconfig.tsbuildinfo +0 -1
|
@@ -0,0 +1,343 @@
|
|
|
1
|
+
var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x, {
|
|
2
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
3
|
+
}) : x)(function(x) {
|
|
4
|
+
if (typeof require !== "undefined")
|
|
5
|
+
return require.apply(this, arguments);
|
|
6
|
+
throw Error('Dynamic require of "' + x + '" is not supported');
|
|
7
|
+
});
|
|
8
|
+
|
|
9
|
+
// src/registry/factory.ts
|
|
10
|
+
import {
|
|
11
|
+
OwnersEnum,
|
|
12
|
+
StabilityEnum,
|
|
13
|
+
TagsEnum
|
|
14
|
+
} from "@contractspec/lib.contracts/ownership";
|
|
15
|
+
function createComponentPresentation(opts) {
|
|
16
|
+
const source = {
|
|
17
|
+
type: "component",
|
|
18
|
+
framework: "react",
|
|
19
|
+
componentKey: opts.componentKey
|
|
20
|
+
};
|
|
21
|
+
return {
|
|
22
|
+
meta: {
|
|
23
|
+
key: opts.key,
|
|
24
|
+
version: opts.version ?? "1.0.0",
|
|
25
|
+
description: opts.description,
|
|
26
|
+
goal: opts.goal,
|
|
27
|
+
context: opts.context,
|
|
28
|
+
stability: opts.stability ?? StabilityEnum.Stable,
|
|
29
|
+
owners: opts.owners ?? [OwnersEnum.PlatformCore],
|
|
30
|
+
tags: opts.tags ?? []
|
|
31
|
+
},
|
|
32
|
+
source,
|
|
33
|
+
targets: opts.targets ?? ["react", "markdown"]
|
|
34
|
+
};
|
|
35
|
+
}
|
|
36
|
+
function tagsFromPath(path) {
|
|
37
|
+
return path.split("/").filter((segment) => segment.length > 0).map((segment) => segment);
|
|
38
|
+
}
|
|
39
|
+
var DOCS_GOAL = "Educate developers on ContractSpec usage and concepts";
|
|
40
|
+
var DOCS_CONTEXT = "Part of the ContractSpec documentation site, rendered on contractspec.io";
|
|
41
|
+
var MARKETING_GOAL = "Convert visitors into ContractSpec users and customers";
|
|
42
|
+
var MARKETING_CONTEXT = "Marketing content on contractspec.io, designed for conversion";
|
|
43
|
+
var DOCS_TAGS = [TagsEnum.Docs];
|
|
44
|
+
|
|
45
|
+
// src/registry/registry-docs.ts
|
|
46
|
+
import { TagsEnum as TagsEnum2 } from "@contractspec/lib.contracts/ownership";
|
|
47
|
+
import { AdvancedMCPPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedMCPPage";
|
|
48
|
+
import { AdvancedOverlayEditorPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedOverlayEditorPage";
|
|
49
|
+
import { AdvancedRenderersPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedRenderersPage";
|
|
50
|
+
import { AdvancedSpecExperimentsPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedSpecExperimentsPage";
|
|
51
|
+
import { AdvancedTelemetryPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedTelemetryPage";
|
|
52
|
+
import { AdvancedWorkflowMonitoringPage } from "@contractspec/bundle.library/components/docs/advanced/AdvancedWorkflowMonitoringPage";
|
|
53
|
+
import { ArchitectureAppConfigPage } from "@contractspec/bundle.library/components/docs/architecture/ArchitectureAppConfigPage";
|
|
54
|
+
import { ArchitectureIntegrationBindingPage } from "@contractspec/bundle.library/components/docs/architecture/ArchitectureIntegrationBindingPage";
|
|
55
|
+
import { ArchitectureKnowledgeBindingPage } from "@contractspec/bundle.library/components/docs/architecture/ArchitectureKnowledgeBindingPage";
|
|
56
|
+
import { ArchitectureMultiTenancyPage } from "@contractspec/bundle.library/components/docs/architecture/ArchitectureMultiTenancyPage";
|
|
57
|
+
import { ArchitectureOverviewPage } from "@contractspec/bundle.library/components/docs/architecture/ArchitectureOverviewPage";
|
|
58
|
+
import { ComparisonAutomationPlatformsPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonAutomationPlatformsPage";
|
|
59
|
+
import { ComparisonEnterprisePlatformsPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonEnterprisePlatformsPage";
|
|
60
|
+
import { ComparisonInternalToolBuildersPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonInternalToolBuildersPage";
|
|
61
|
+
import { ComparisonOverviewPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonOverviewPage";
|
|
62
|
+
import { ComparisonWindmillPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonWindmillPage";
|
|
63
|
+
import { ComparisonWorkflowEnginesPage } from "@contractspec/bundle.library/components/docs/comparison/ComparisonWorkflowEnginesPage";
|
|
64
|
+
import { CLIPage } from "@contractspec/bundle.library/components/docs/getting-started/CLIPage";
|
|
65
|
+
import { DataViewTutorialPage } from "@contractspec/bundle.library/components/docs/getting-started/DataViewTutorialPage";
|
|
66
|
+
import { HelloWorldPage } from "@contractspec/bundle.library/components/docs/getting-started/HelloWorldPage";
|
|
67
|
+
import { InstallationPage } from "@contractspec/bundle.library/components/docs/getting-started/InstallationPage";
|
|
68
|
+
import { StartHerePage } from "@contractspec/bundle.library/components/docs/getting-started/StartHerePage";
|
|
69
|
+
import { TroubleshootingPage } from "@contractspec/bundle.library/components/docs/getting-started/TroubleshootingPage";
|
|
70
|
+
import { CompatibilityPage } from "@contractspec/bundle.library/components/docs/getting-started/CompatibilityPage";
|
|
71
|
+
import { IntegrationsCircuitBreakersPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsCircuitBreakersPage";
|
|
72
|
+
import { IntegrationsElevenLabsPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsElevenLabsPage";
|
|
73
|
+
import { IntegrationsGmailPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsGmailPage";
|
|
74
|
+
import { IntegrationsGoogleCalendarPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsGoogleCalendarPage";
|
|
75
|
+
import { IntegrationsOpenAIPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsOpenAIPage";
|
|
76
|
+
import { IntegrationsOverviewPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsOverviewPage";
|
|
77
|
+
import { IntegrationsPostmarkPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsPostmarkPage";
|
|
78
|
+
import { IntegrationsPowensPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsPowensPage";
|
|
79
|
+
import { IntegrationsQdrantPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsQdrantPage";
|
|
80
|
+
import { IntegrationsResendPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsResendPage";
|
|
81
|
+
import { IntegrationsS3Page } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsS3Page";
|
|
82
|
+
import { IntegrationsSpecModelPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsSpecModelPage";
|
|
83
|
+
import { IntegrationsStripePage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsStripePage";
|
|
84
|
+
import { IntegrationsTwilioPage } from "@contractspec/bundle.library/components/docs/integrations/IntegrationsTwilioPage";
|
|
85
|
+
import { KnowledgeCategoriesPage } from "@contractspec/bundle.library/components/docs/knowledge/KnowledgeCategoriesPage";
|
|
86
|
+
import { KnowledgeExamplesPage } from "@contractspec/bundle.library/components/docs/knowledge/KnowledgeExamplesPage";
|
|
87
|
+
import { KnowledgeOverviewPage } from "@contractspec/bundle.library/components/docs/knowledge/KnowledgeOverviewPage";
|
|
88
|
+
import { KnowledgeSourcesPage } from "@contractspec/bundle.library/components/docs/knowledge/KnowledgeSourcesPage";
|
|
89
|
+
import { KnowledgeSpacesPage } from "@contractspec/bundle.library/components/docs/knowledge/KnowledgeSpacesPage";
|
|
90
|
+
import { LibrariesAccessibilityPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesAccessibilityPage";
|
|
91
|
+
import { LibrariesAiAgentPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesAiAgentPage";
|
|
92
|
+
import { LibrariesAnalyticsPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesAnalyticsPage";
|
|
93
|
+
import { LibrariesContentGenPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesContentGenPage";
|
|
94
|
+
import { LibrariesContractsPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesContractsPage";
|
|
95
|
+
import { LibrariesCostTrackingPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesCostTrackingPage";
|
|
96
|
+
import { LibrariesDataBackendPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesDataBackendPage";
|
|
97
|
+
import { LibrariesDataViewsPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesDataViewsPage";
|
|
98
|
+
import { LibrariesDesignSystemPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesDesignSystemPage";
|
|
99
|
+
import { LibrariesEvolutionPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesEvolutionPage";
|
|
100
|
+
import { LibrariesGraphQLPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesGraphQLPage";
|
|
101
|
+
import { LibrariesGrowthPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesGrowthPage";
|
|
102
|
+
import { LibrariesMultiTenancyPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesMultiTenancyPage";
|
|
103
|
+
import { LibrariesObservabilityPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesObservabilityPage";
|
|
104
|
+
import { LibrariesOverlayEnginePage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesOverlayEnginePage";
|
|
105
|
+
import { LibrariesOverviewPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesOverviewPage";
|
|
106
|
+
import { LibrariesPersonalizationPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesPersonalizationPage";
|
|
107
|
+
import { LibrariesProgressiveDeliveryPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesProgressiveDeliveryPage";
|
|
108
|
+
import { LibrariesResiliencePage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesResiliencePage";
|
|
109
|
+
import { LibrariesRuntimePage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesRuntimePage";
|
|
110
|
+
import { LibrariesSchemaPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesSchemaPage";
|
|
111
|
+
import { LibrariesSLOPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesSLOPage";
|
|
112
|
+
import { LibrariesSupportBotPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesSupportBotPage";
|
|
113
|
+
import { LibrariesTestingPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesTestingPage";
|
|
114
|
+
import { LibrariesUIKitPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesUIKitPage";
|
|
115
|
+
import { LibrariesWorkflowComposerPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesWorkflowComposerPage";
|
|
116
|
+
import { LibrariesWorkflowsPage } from "@contractspec/bundle.library/components/docs/libraries/LibrariesWorkflowsPage";
|
|
117
|
+
import { ManifestoPage } from "@contractspec/bundle.library/components/docs/manifesto/ManifestoPage";
|
|
118
|
+
import { OpsAutoEvolutionPage } from "@contractspec/bundle.library/components/docs/ops/AutoEvolutionOpsPage";
|
|
119
|
+
import { OpsDistributedTracingPage } from "@contractspec/bundle.library/components/docs/ops/DistributedTracingOpsPage";
|
|
120
|
+
import { SafetyAuditingPage } from "@contractspec/bundle.library/components/docs/safety/SafetyAuditingPage";
|
|
121
|
+
import { SafetyMigrationsPage } from "@contractspec/bundle.library/components/docs/safety/SafetyMigrationsPage";
|
|
122
|
+
import { SafetyOverviewPage } from "@contractspec/bundle.library/components/docs/safety/SafetyOverviewPage";
|
|
123
|
+
import { SafetyPDPPage } from "@contractspec/bundle.library/components/docs/safety/SafetyPDPPage";
|
|
124
|
+
import { SafetySigningPage } from "@contractspec/bundle.library/components/docs/safety/SafetySigningPage";
|
|
125
|
+
import { SafetyTenantIsolationPage } from "@contractspec/bundle.library/components/docs/safety/SafetyTenantIsolationPage";
|
|
126
|
+
import { SpecsCapabilitiesPage } from "@contractspec/bundle.library/components/docs/specs/SpecsCapabilitiesPage";
|
|
127
|
+
import { SpecsDataViewsPage } from "@contractspec/bundle.library/components/docs/specs/SpecsDataViewsPage";
|
|
128
|
+
import { SpecsOverlaysPage } from "@contractspec/bundle.library/components/docs/specs/SpecsOverlaysPage";
|
|
129
|
+
import { SpecsOverviewPage } from "@contractspec/bundle.library/components/docs/specs/SpecsOverviewPage";
|
|
130
|
+
import { SpecsPolicyPage } from "@contractspec/bundle.library/components/docs/specs/SpecsPolicyPage";
|
|
131
|
+
import { SpecsWorkflowsPage } from "@contractspec/bundle.library/components/docs/specs/SpecsWorkflowsPage";
|
|
132
|
+
import { StudioBYOKPage } from "@contractspec/bundle.library/components/docs/studio/StudioBYOKPage";
|
|
133
|
+
import { StudioDeploymentsPage } from "@contractspec/bundle.library/components/docs/studio/StudioDeploymentsPage";
|
|
134
|
+
import { StudioGettingStartedPage } from "@contractspec/bundle.library/components/docs/studio/StudioGettingStartedPage";
|
|
135
|
+
import { StudioIntegrationsPage } from "@contractspec/bundle.library/components/docs/studio/StudioIntegrationsPage";
|
|
136
|
+
import { StudioOverviewPage } from "@contractspec/bundle.library/components/docs/studio/StudioOverviewPage";
|
|
137
|
+
import { StudioVisualBuilderPage } from "@contractspec/bundle.library/components/docs/studio/StudioVisualBuilderPage";
|
|
138
|
+
import { DocsIndexPage } from "@contractspec/bundle.library/components/docs/DocsIndexPage";
|
|
139
|
+
var docsComponentMap = {
|
|
140
|
+
DocsIndexPage,
|
|
141
|
+
InstallationPage,
|
|
142
|
+
StartHerePage,
|
|
143
|
+
TroubleshootingPage,
|
|
144
|
+
CompatibilityPage,
|
|
145
|
+
HelloWorldPage,
|
|
146
|
+
CLIPage,
|
|
147
|
+
DataViewTutorialPage,
|
|
148
|
+
SpecsOverviewPage,
|
|
149
|
+
SpecsCapabilitiesPage,
|
|
150
|
+
SpecsDataViewsPage,
|
|
151
|
+
SpecsWorkflowsPage,
|
|
152
|
+
SpecsPolicyPage,
|
|
153
|
+
SpecsOverlaysPage,
|
|
154
|
+
LibrariesOverviewPage,
|
|
155
|
+
LibrariesContractsPage,
|
|
156
|
+
LibrariesAiAgentPage,
|
|
157
|
+
LibrariesAnalyticsPage,
|
|
158
|
+
LibrariesAccessibilityPage,
|
|
159
|
+
LibrariesContentGenPage,
|
|
160
|
+
LibrariesCostTrackingPage,
|
|
161
|
+
LibrariesDataBackendPage,
|
|
162
|
+
LibrariesDataViewsPage,
|
|
163
|
+
LibrariesDesignSystemPage,
|
|
164
|
+
LibrariesEvolutionPage,
|
|
165
|
+
LibrariesGraphQLPage,
|
|
166
|
+
LibrariesGrowthPage,
|
|
167
|
+
LibrariesMultiTenancyPage,
|
|
168
|
+
LibrariesObservabilityPage,
|
|
169
|
+
LibrariesOverlayEnginePage,
|
|
170
|
+
LibrariesPersonalizationPage,
|
|
171
|
+
LibrariesProgressiveDeliveryPage,
|
|
172
|
+
LibrariesResiliencePage,
|
|
173
|
+
LibrariesRuntimePage,
|
|
174
|
+
LibrariesSchemaPage,
|
|
175
|
+
LibrariesSLOPage,
|
|
176
|
+
LibrariesSupportBotPage,
|
|
177
|
+
LibrariesTestingPage,
|
|
178
|
+
LibrariesUIKitPage,
|
|
179
|
+
LibrariesWorkflowsPage,
|
|
180
|
+
LibrariesWorkflowComposerPage,
|
|
181
|
+
ArchitectureOverviewPage,
|
|
182
|
+
ArchitectureAppConfigPage,
|
|
183
|
+
ArchitectureMultiTenancyPage,
|
|
184
|
+
ArchitectureIntegrationBindingPage,
|
|
185
|
+
ArchitectureKnowledgeBindingPage,
|
|
186
|
+
AdvancedRenderersPage,
|
|
187
|
+
AdvancedMCPPage,
|
|
188
|
+
AdvancedTelemetryPage,
|
|
189
|
+
AdvancedWorkflowMonitoringPage,
|
|
190
|
+
AdvancedOverlayEditorPage,
|
|
191
|
+
AdvancedSpecExperimentsPage,
|
|
192
|
+
SafetyOverviewPage,
|
|
193
|
+
SafetySigningPage,
|
|
194
|
+
SafetyAuditingPage,
|
|
195
|
+
SafetyMigrationsPage,
|
|
196
|
+
SafetyPDPPage,
|
|
197
|
+
SafetyTenantIsolationPage,
|
|
198
|
+
IntegrationsOverviewPage,
|
|
199
|
+
IntegrationsCircuitBreakersPage,
|
|
200
|
+
IntegrationsElevenLabsPage,
|
|
201
|
+
IntegrationsGmailPage,
|
|
202
|
+
IntegrationsGoogleCalendarPage,
|
|
203
|
+
IntegrationsOpenAIPage,
|
|
204
|
+
IntegrationsPostmarkPage,
|
|
205
|
+
IntegrationsPowensPage,
|
|
206
|
+
IntegrationsQdrantPage,
|
|
207
|
+
IntegrationsResendPage,
|
|
208
|
+
IntegrationsS3Page,
|
|
209
|
+
IntegrationsSpecModelPage,
|
|
210
|
+
IntegrationsStripePage,
|
|
211
|
+
IntegrationsTwilioPage,
|
|
212
|
+
KnowledgeOverviewPage,
|
|
213
|
+
KnowledgeCategoriesPage,
|
|
214
|
+
KnowledgeExamplesPage,
|
|
215
|
+
KnowledgeSourcesPage,
|
|
216
|
+
KnowledgeSpacesPage,
|
|
217
|
+
ComparisonOverviewPage,
|
|
218
|
+
ComparisonAutomationPlatformsPage,
|
|
219
|
+
ComparisonEnterprisePlatformsPage,
|
|
220
|
+
ComparisonInternalToolBuildersPage,
|
|
221
|
+
ComparisonWorkflowEnginesPage,
|
|
222
|
+
ComparisonWindmillPage,
|
|
223
|
+
OpsAutoEvolutionPage,
|
|
224
|
+
OpsDistributedTracingPage,
|
|
225
|
+
ManifestoPage,
|
|
226
|
+
StudioOverviewPage,
|
|
227
|
+
StudioGettingStartedPage,
|
|
228
|
+
StudioVisualBuilderPage,
|
|
229
|
+
StudioIntegrationsPage,
|
|
230
|
+
StudioDeploymentsPage,
|
|
231
|
+
StudioBYOKPage
|
|
232
|
+
};
|
|
233
|
+
function docsEntry(route, key, componentKey, description) {
|
|
234
|
+
return [
|
|
235
|
+
route,
|
|
236
|
+
createComponentPresentation({
|
|
237
|
+
key,
|
|
238
|
+
componentKey,
|
|
239
|
+
description,
|
|
240
|
+
goal: DOCS_GOAL,
|
|
241
|
+
context: DOCS_CONTEXT,
|
|
242
|
+
tags: [TagsEnum2.Docs, ...tagsFromPath(route)]
|
|
243
|
+
})
|
|
244
|
+
];
|
|
245
|
+
}
|
|
246
|
+
var docsPresentations = [
|
|
247
|
+
docsEntry("/docs", "web-landing.docs.index", "DocsIndexPage", "ContractSpec documentation index page"),
|
|
248
|
+
docsEntry("/docs/getting-started/start-here", "web-landing.docs.start-here", "StartHerePage", "ContractSpec start here onboarding guide"),
|
|
249
|
+
docsEntry("/docs/getting-started/troubleshooting", "web-landing.docs.troubleshooting", "TroubleshootingPage", "ContractSpec getting started troubleshooting"),
|
|
250
|
+
docsEntry("/docs/getting-started/compatibility", "web-landing.docs.compatibility", "CompatibilityPage", "ContractSpec compatibility and requirements"),
|
|
251
|
+
docsEntry("/docs/getting-started/installation", "web-landing.docs.installation", "InstallationPage", "ContractSpec installation guide"),
|
|
252
|
+
docsEntry("/docs/getting-started/hello-world", "web-landing.docs.hello-world", "HelloWorldPage", "ContractSpec hello world tutorial"),
|
|
253
|
+
docsEntry("/docs/getting-started/cli", "web-landing.docs.cli", "CLIPage", "ContractSpec CLI reference guide"),
|
|
254
|
+
docsEntry("/docs/getting-started/dataviews", "web-landing.docs.dataviews-tutorial", "DataViewTutorialPage", "ContractSpec DataView tutorial"),
|
|
255
|
+
docsEntry("/docs/specs", "web-landing.docs.specs.overview", "SpecsOverviewPage", "ContractSpec specifications overview"),
|
|
256
|
+
docsEntry("/docs/specs/capabilities", "web-landing.docs.specs.capabilities", "SpecsCapabilitiesPage", "ContractSpec capabilities"),
|
|
257
|
+
docsEntry("/docs/specs/dataviews", "web-landing.docs.specs.dataviews", "SpecsDataViewsPage", "ContractSpec DataViews specification"),
|
|
258
|
+
docsEntry("/docs/specs/workflows", "web-landing.docs.specs.workflows", "SpecsWorkflowsPage", "ContractSpec workflows specification"),
|
|
259
|
+
docsEntry("/docs/specs/policy", "web-landing.docs.specs.policy", "SpecsPolicyPage", "ContractSpec policy specification"),
|
|
260
|
+
docsEntry("/docs/specs/overlays", "web-landing.docs.specs.overlays", "SpecsOverlaysPage", "ContractSpec overlays specification"),
|
|
261
|
+
docsEntry("/docs/libraries", "web-landing.docs.libraries.overview", "LibrariesOverviewPage", "ContractSpec libraries overview"),
|
|
262
|
+
docsEntry("/docs/libraries/contracts", "web-landing.docs.libraries.contracts", "LibrariesContractsPage", "ContractSpec contracts library"),
|
|
263
|
+
docsEntry("/docs/libraries/ai-agent", "web-landing.docs.libraries.ai-agent", "LibrariesAiAgentPage", "ContractSpec AI agent library"),
|
|
264
|
+
docsEntry("/docs/libraries/analytics", "web-landing.docs.libraries.analytics", "LibrariesAnalyticsPage", "ContractSpec analytics library"),
|
|
265
|
+
docsEntry("/docs/libraries/accessibility", "web-landing.docs.libraries.accessibility", "LibrariesAccessibilityPage", "ContractSpec accessibility library"),
|
|
266
|
+
docsEntry("/docs/libraries/content-gen", "web-landing.docs.libraries.content-gen", "LibrariesContentGenPage", "ContractSpec content generation library"),
|
|
267
|
+
docsEntry("/docs/libraries/cost-tracking", "web-landing.docs.libraries.cost-tracking", "LibrariesCostTrackingPage", "ContractSpec cost tracking library"),
|
|
268
|
+
docsEntry("/docs/libraries/data-backend", "web-landing.docs.libraries.data-backend", "LibrariesDataBackendPage", "ContractSpec data backend library"),
|
|
269
|
+
docsEntry("/docs/libraries/data-views", "web-landing.docs.libraries.data-views", "LibrariesDataViewsPage", "ContractSpec data views library"),
|
|
270
|
+
docsEntry("/docs/libraries/design-system", "web-landing.docs.libraries.design-system", "LibrariesDesignSystemPage", "ContractSpec design system library"),
|
|
271
|
+
docsEntry("/docs/libraries/evolution", "web-landing.docs.libraries.evolution", "LibrariesEvolutionPage", "ContractSpec evolution library"),
|
|
272
|
+
docsEntry("/docs/libraries/graphql", "web-landing.docs.libraries.graphql", "LibrariesGraphQLPage", "ContractSpec GraphQL library"),
|
|
273
|
+
docsEntry("/docs/libraries/growth", "web-landing.docs.libraries.growth", "LibrariesGrowthPage", "ContractSpec growth library"),
|
|
274
|
+
docsEntry("/docs/libraries/multi-tenancy", "web-landing.docs.libraries.multi-tenancy", "LibrariesMultiTenancyPage", "ContractSpec multi-tenancy library"),
|
|
275
|
+
docsEntry("/docs/libraries/observability", "web-landing.docs.libraries.observability", "LibrariesObservabilityPage", "ContractSpec observability library"),
|
|
276
|
+
docsEntry("/docs/libraries/overlay-engine", "web-landing.docs.libraries.overlay-engine", "LibrariesOverlayEnginePage", "ContractSpec overlay engine library"),
|
|
277
|
+
docsEntry("/docs/libraries/personalization", "web-landing.docs.libraries.personalization", "LibrariesPersonalizationPage", "ContractSpec personalization library"),
|
|
278
|
+
docsEntry("/docs/libraries/progressive-delivery", "web-landing.docs.libraries.progressive-delivery", "LibrariesProgressiveDeliveryPage", "ContractSpec progressive delivery library"),
|
|
279
|
+
docsEntry("/docs/libraries/resilience", "web-landing.docs.libraries.resilience", "LibrariesResiliencePage", "ContractSpec resilience library"),
|
|
280
|
+
docsEntry("/docs/libraries/runtime", "web-landing.docs.libraries.runtime", "LibrariesRuntimePage", "ContractSpec runtime library"),
|
|
281
|
+
docsEntry("/docs/libraries/schema", "web-landing.docs.libraries.schema", "LibrariesSchemaPage", "ContractSpec schema library"),
|
|
282
|
+
docsEntry("/docs/libraries/slo", "web-landing.docs.libraries.slo", "LibrariesSLOPage", "ContractSpec SLO library"),
|
|
283
|
+
docsEntry("/docs/libraries/support-bot", "web-landing.docs.libraries.support-bot", "LibrariesSupportBotPage", "ContractSpec support bot library"),
|
|
284
|
+
docsEntry("/docs/libraries/testing", "web-landing.docs.libraries.testing", "LibrariesTestingPage", "ContractSpec testing library"),
|
|
285
|
+
docsEntry("/docs/libraries/ui-kit", "web-landing.docs.libraries.ui-kit", "LibrariesUIKitPage", "ContractSpec UI kit library"),
|
|
286
|
+
docsEntry("/docs/libraries/workflows", "web-landing.docs.libraries.workflows", "LibrariesWorkflowsPage", "ContractSpec workflows library"),
|
|
287
|
+
docsEntry("/docs/libraries/workflow-composer", "web-landing.docs.libraries.workflow-composer", "LibrariesWorkflowComposerPage", "ContractSpec workflow composer library"),
|
|
288
|
+
docsEntry("/docs/architecture", "web-landing.docs.architecture.overview", "ArchitectureOverviewPage", "ContractSpec architecture overview"),
|
|
289
|
+
docsEntry("/docs/architecture/app-config", "web-landing.docs.architecture.app-config", "ArchitectureAppConfigPage", "ContractSpec app configuration"),
|
|
290
|
+
docsEntry("/docs/architecture/multi-tenancy", "web-landing.docs.architecture.multi-tenancy", "ArchitectureMultiTenancyPage", "ContractSpec multi-tenancy architecture"),
|
|
291
|
+
docsEntry("/docs/architecture/integration-binding", "web-landing.docs.architecture.integration-binding", "ArchitectureIntegrationBindingPage", "ContractSpec integration binding"),
|
|
292
|
+
docsEntry("/docs/architecture/knowledge-binding", "web-landing.docs.architecture.knowledge-binding", "ArchitectureKnowledgeBindingPage", "ContractSpec knowledge binding"),
|
|
293
|
+
docsEntry("/docs/advanced/renderers", "web-landing.docs.advanced.renderers", "AdvancedRenderersPage", "ContractSpec renderers documentation"),
|
|
294
|
+
docsEntry("/docs/advanced/mcp", "web-landing.docs.advanced.mcp", "AdvancedMCPPage", "ContractSpec MCP documentation"),
|
|
295
|
+
docsEntry("/docs/advanced/telemetry", "web-landing.docs.advanced.telemetry", "AdvancedTelemetryPage", "ContractSpec telemetry documentation"),
|
|
296
|
+
docsEntry("/docs/advanced/workflow-monitoring", "web-landing.docs.advanced.workflow-monitoring", "AdvancedWorkflowMonitoringPage", "ContractSpec workflow monitoring"),
|
|
297
|
+
docsEntry("/docs/advanced/overlay-editor", "web-landing.docs.advanced.overlay-editor", "AdvancedOverlayEditorPage", "ContractSpec overlay editor"),
|
|
298
|
+
docsEntry("/docs/advanced/spec-experiments", "web-landing.docs.advanced.spec-experiments", "AdvancedSpecExperimentsPage", "ContractSpec spec experiments"),
|
|
299
|
+
docsEntry("/docs/safety", "web-landing.docs.safety.overview", "SafetyOverviewPage", "ContractSpec safety overview"),
|
|
300
|
+
docsEntry("/docs/safety/signing", "web-landing.docs.safety.signing", "SafetySigningPage", "ContractSpec signing and attestation"),
|
|
301
|
+
docsEntry("/docs/safety/auditing", "web-landing.docs.safety.auditing", "SafetyAuditingPage", "ContractSpec auditing documentation"),
|
|
302
|
+
docsEntry("/docs/safety/migrations", "web-landing.docs.safety.migrations", "SafetyMigrationsPage", "ContractSpec migrations documentation"),
|
|
303
|
+
docsEntry("/docs/safety/pdp", "web-landing.docs.safety.pdp", "SafetyPDPPage", "ContractSpec Policy Decision Point"),
|
|
304
|
+
docsEntry("/docs/safety/tenant-isolation", "web-landing.docs.safety.tenant-isolation", "SafetyTenantIsolationPage", "ContractSpec tenant isolation"),
|
|
305
|
+
docsEntry("/docs/integrations", "web-landing.docs.integrations.overview", "IntegrationsOverviewPage", "ContractSpec integrations overview"),
|
|
306
|
+
docsEntry("/docs/integrations/circuit-breakers", "web-landing.docs.integrations.circuit-breakers", "IntegrationsCircuitBreakersPage", "ContractSpec circuit breakers"),
|
|
307
|
+
docsEntry("/docs/integrations/elevenlabs", "web-landing.docs.integrations.elevenlabs", "IntegrationsElevenLabsPage", "ContractSpec ElevenLabs integration"),
|
|
308
|
+
docsEntry("/docs/integrations/gmail", "web-landing.docs.integrations.gmail", "IntegrationsGmailPage", "ContractSpec Gmail integration"),
|
|
309
|
+
docsEntry("/docs/integrations/google-calendar", "web-landing.docs.integrations.google-calendar", "IntegrationsGoogleCalendarPage", "ContractSpec Google Calendar"),
|
|
310
|
+
docsEntry("/docs/integrations/openai", "web-landing.docs.integrations.openai", "IntegrationsOpenAIPage", "ContractSpec OpenAI integration"),
|
|
311
|
+
docsEntry("/docs/integrations/postmark", "web-landing.docs.integrations.postmark", "IntegrationsPostmarkPage", "ContractSpec Postmark integration"),
|
|
312
|
+
docsEntry("/docs/integrations/powens", "web-landing.docs.integrations.powens", "IntegrationsPowensPage", "ContractSpec Powens integration"),
|
|
313
|
+
docsEntry("/docs/integrations/qdrant", "web-landing.docs.integrations.qdrant", "IntegrationsQdrantPage", "ContractSpec Qdrant integration"),
|
|
314
|
+
docsEntry("/docs/integrations/resend", "web-landing.docs.integrations.resend", "IntegrationsResendPage", "ContractSpec Resend integration"),
|
|
315
|
+
docsEntry("/docs/integrations/s3", "web-landing.docs.integrations.s3", "IntegrationsS3Page", "ContractSpec S3 integration"),
|
|
316
|
+
docsEntry("/docs/integrations/spec-model", "web-landing.docs.integrations.spec-model", "IntegrationsSpecModelPage", "ContractSpec spec model integration"),
|
|
317
|
+
docsEntry("/docs/integrations/stripe", "web-landing.docs.integrations.stripe", "IntegrationsStripePage", "ContractSpec Stripe integration"),
|
|
318
|
+
docsEntry("/docs/integrations/twilio", "web-landing.docs.integrations.twilio", "IntegrationsTwilioPage", "ContractSpec Twilio integration"),
|
|
319
|
+
docsEntry("/docs/knowledge", "web-landing.docs.knowledge.overview", "KnowledgeOverviewPage", "ContractSpec knowledge overview"),
|
|
320
|
+
docsEntry("/docs/knowledge/categories", "web-landing.docs.knowledge.categories", "KnowledgeCategoriesPage", "ContractSpec knowledge categories"),
|
|
321
|
+
docsEntry("/docs/knowledge/examples", "web-landing.docs.knowledge.examples", "KnowledgeExamplesPage", "ContractSpec knowledge examples"),
|
|
322
|
+
docsEntry("/docs/knowledge/sources", "web-landing.docs.knowledge.sources", "KnowledgeSourcesPage", "ContractSpec knowledge sources"),
|
|
323
|
+
docsEntry("/docs/knowledge/spaces", "web-landing.docs.knowledge.spaces", "KnowledgeSpacesPage", "ContractSpec knowledge spaces"),
|
|
324
|
+
docsEntry("/docs/comparison", "web-landing.docs.comparison.overview", "ComparisonOverviewPage", "ContractSpec comparison overview"),
|
|
325
|
+
docsEntry("/docs/comparison/automation-platforms", "web-landing.docs.comparison.automation-platforms", "ComparisonAutomationPlatformsPage", "Comparison with automation platforms"),
|
|
326
|
+
docsEntry("/docs/comparison/enterprise-platforms", "web-landing.docs.comparison.enterprise-platforms", "ComparisonEnterprisePlatformsPage", "Comparison with enterprise platforms"),
|
|
327
|
+
docsEntry("/docs/comparison/internal-tool-builders", "web-landing.docs.comparison.internal-tool-builders", "ComparisonInternalToolBuildersPage", "Comparison with internal tool builders"),
|
|
328
|
+
docsEntry("/docs/comparison/workflow-engines", "web-landing.docs.comparison.workflow-engines", "ComparisonWorkflowEnginesPage", "Comparison with workflow engines"),
|
|
329
|
+
docsEntry("/docs/comparison/windmill", "web-landing.docs.comparison.windmill", "ComparisonWindmillPage", "Comparison with Windmill"),
|
|
330
|
+
docsEntry("/docs/ops/auto-evolution", "web-landing.docs.ops.auto-evolution", "OpsAutoEvolutionPage", "ContractSpec auto-evolution operations"),
|
|
331
|
+
docsEntry("/docs/ops/distributed-tracing", "web-landing.docs.ops.distributed-tracing", "OpsDistributedTracingPage", "ContractSpec distributed tracing"),
|
|
332
|
+
docsEntry("/docs/manifesto", "web-landing.docs.manifesto", "ManifestoPage", "ContractSpec manifesto"),
|
|
333
|
+
docsEntry("/docs/studio", "web-landing.docs.studio.overview", "StudioOverviewPage", "ContractSpec Studio overview"),
|
|
334
|
+
docsEntry("/docs/studio/getting-started", "web-landing.docs.studio.getting-started", "StudioGettingStartedPage", "ContractSpec Studio getting started"),
|
|
335
|
+
docsEntry("/docs/studio/visual-builder", "web-landing.docs.studio.visual-builder", "StudioVisualBuilderPage", "ContractSpec Studio visual builder"),
|
|
336
|
+
docsEntry("/docs/studio/integrations", "web-landing.docs.studio.integrations", "StudioIntegrationsPage", "ContractSpec Studio integrations"),
|
|
337
|
+
docsEntry("/docs/studio/deployments", "web-landing.docs.studio.deployments", "StudioDeploymentsPage", "ContractSpec Studio deployments"),
|
|
338
|
+
docsEntry("/docs/studio/byok", "web-landing.docs.studio.byok", "StudioBYOKPage", "ContractSpec Studio BYOK")
|
|
339
|
+
];
|
|
340
|
+
export {
|
|
341
|
+
docsPresentations,
|
|
342
|
+
docsComponentMap
|
|
343
|
+
};
|