@farming-labs/docs 0.2.65 → 0.2.66
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/dist/{agent-CQTH7NFu.mjs → agent-B81ztzxZ.mjs} +2 -2
- package/dist/{agent-DKKptIgy.mjs → agent-CcR8_Yyd.mjs} +1 -1
- package/dist/{agent-evals-B7MIxuEX.mjs → agent-evals-Bn_dA1_A.mjs} +1 -1
- package/dist/{agent-export-CBgWgPvH.mjs → agent-export-CyhCaE8J.mjs} +7 -7
- package/dist/agent-skills-bundle.d.mts +1 -1
- package/dist/{agent-skills-server-CPja6Syt.d.mts → agent-skills-server-CHvqnM4R.d.mts} +2 -2
- package/dist/{agent-skills-server-DraIb6FV.mjs → agent-skills-server-Cuoqu8Jv.mjs} +1 -1
- package/dist/agent-skills-vite.d.mts +3 -3
- package/dist/agent-skills-vite.mjs +2 -2
- package/dist/{agents-XWZBub6f.mjs → agents-BZ_hXI_Z.mjs} +6 -6
- package/dist/cli/index.mjs +14 -14
- package/dist/client/react.d.mts +1 -1
- package/dist/{cloud-ask-ai-zpwkdwnF.d.mts → cloud-ask-ai-BD1SeVZv.d.mts} +1 -1
- package/dist/docs-cloud-server.d.mts +2 -2
- package/dist/{doctor-DtGYZ41i.mjs → doctor-BJt0ZFkJ.mjs} +11 -11
- package/dist/{golden-evaluations-Dj-9Eo3v.mjs → golden-evaluations-D7lSUeQl.mjs} +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.mjs +7 -7
- package/dist/{mcp-B9dcsivk.mjs → mcp-jGoU4pLD.mjs} +6 -6
- package/dist/mcp.d.mts +2 -2
- package/dist/mcp.mjs +314 -14
- package/dist/{metadata-DWExHQnx.mjs → metadata-Cna0CtWZ.mjs} +1 -1
- package/dist/{reading-time-CYZ5VvKU.mjs → reading-time-oAnc4Brq.mjs} +3 -3
- package/dist/{review-CLoHTywU.mjs → review-CUo6iXMw.mjs} +6 -6
- package/dist/{robots-CUTahhoY.mjs → robots-NL_OsxEC.mjs} +3 -3
- package/dist/{robots-BIpC4j4P.mjs → robots-vU80KRFy.mjs} +2 -2
- package/dist/{search-CaSyi6H6.d.mts → search-B-BfnROL.d.mts} +2 -2
- package/dist/{search-DSjCeOk7.mjs → search-B_CixCu9.mjs} +6 -6
- package/dist/{search-B6V6qtiI.mjs → search-D0A9lRGJ.mjs} +1 -1
- package/dist/server.d.mts +4 -4
- package/dist/server.mjs +6 -6
- package/dist/{sitemap-Cykpe3Tz.mjs → sitemap-B4mIK0ka.mjs} +6 -6
- package/dist/{sitemap-server-C_6Wes83.mjs → sitemap-server-atbbiVzW.mjs} +1 -1
- package/dist/{standards-discovery-jkykaXq1.mjs → standards-discovery-C7p5lBhc.mjs} +314 -37
- package/dist/{standards-discovery-C4HUqMd2.d.mts → standards-discovery-iOmUel-o.d.mts} +21 -38
- package/dist/{types-lMBIdZg0.d.mts → types-BQC05SQm.d.mts} +203 -9
- package/package.json +1 -1
|
@@ -2553,22 +2553,216 @@ interface DocsAgentSkillsConfig {
|
|
|
2553
2553
|
}
|
|
2554
2554
|
/** Concise array shorthand for `agent.skills.paths`. */
|
|
2555
2555
|
type DocsAgentSkillsInput = string | readonly string[] | DocsAgentSkillsConfig;
|
|
2556
|
-
/**
|
|
2557
|
-
|
|
2558
|
-
|
|
2556
|
+
/** Core A2A v1 bindings plus URI-identified custom bindings. */
|
|
2557
|
+
type DocsAgentA2AProtocolBinding = "JSONRPC" | "GRPC" | "HTTP+JSON" | (string & {});
|
|
2558
|
+
/** One A2A protocol interface advertised by an Agent Card. */
|
|
2559
|
+
interface DocsAgentA2AInterfaceConfig {
|
|
2560
|
+
/** Absolute binding-appropriate URL. Core bindings require HTTPS outside loopback development. */
|
|
2561
|
+
url: string;
|
|
2562
|
+
/** A2A protocol binding implemented at this URL. @default "HTTP+JSON" */
|
|
2563
|
+
protocolBinding?: DocsAgentA2AProtocolBinding;
|
|
2564
|
+
/** A2A protocol version implemented at this URL. @default "1.0" */
|
|
2565
|
+
protocolVersion?: string;
|
|
2566
|
+
/** Optional tenant identifier clients must send when calling this interface. */
|
|
2567
|
+
tenant?: string;
|
|
2568
|
+
}
|
|
2569
|
+
/** A protocol extension implemented by the configured A2A service. */
|
|
2570
|
+
interface DocsAgentA2AExtension {
|
|
2571
|
+
/** Stable URI identifying the extension. */
|
|
2572
|
+
uri: string;
|
|
2573
|
+
/** How this agent implements the extension. */
|
|
2574
|
+
description?: string;
|
|
2575
|
+
/** Whether clients must understand the extension before using the agent. */
|
|
2576
|
+
required?: boolean;
|
|
2577
|
+
/** Extension-specific JSON configuration. */
|
|
2578
|
+
params?: Readonly<Record<string, unknown>>;
|
|
2579
|
+
}
|
|
2580
|
+
/** Optional capabilities implemented by the configured A2A service. */
|
|
2581
|
+
interface DocsAgentA2ACapabilities {
|
|
2582
|
+
streaming?: boolean;
|
|
2583
|
+
pushNotifications?: boolean;
|
|
2584
|
+
extensions?: readonly DocsAgentA2AExtension[];
|
|
2585
|
+
/** Requires implemented GetExtendedAgentCard plus a declared scheme and security requirement. */
|
|
2586
|
+
extendedAgentCard?: boolean;
|
|
2587
|
+
}
|
|
2588
|
+
/** A list of OAuth scopes associated with one named security scheme. */
|
|
2589
|
+
interface DocsAgentA2ASecurityScopeList {
|
|
2590
|
+
list: readonly string[];
|
|
2591
|
+
}
|
|
2592
|
+
/** One alternative set of security schemes required to call an A2A service or skill. */
|
|
2593
|
+
interface DocsAgentA2ASecurityRequirement {
|
|
2594
|
+
schemes: Readonly<Record<string, DocsAgentA2ASecurityScopeList>>;
|
|
2595
|
+
}
|
|
2596
|
+
interface DocsAgentA2AApiKeySecurityScheme {
|
|
2597
|
+
description?: string;
|
|
2598
|
+
location: "query" | "header" | "cookie";
|
|
2599
|
+
name: string;
|
|
2600
|
+
}
|
|
2601
|
+
interface DocsAgentA2AHttpAuthSecurityScheme {
|
|
2602
|
+
description?: string;
|
|
2603
|
+
scheme: string;
|
|
2604
|
+
bearerFormat?: string;
|
|
2605
|
+
}
|
|
2606
|
+
interface DocsAgentA2AOAuthAuthorizationCodeFlow {
|
|
2607
|
+
authorizationUrl: string;
|
|
2608
|
+
tokenUrl: string;
|
|
2609
|
+
refreshUrl?: string;
|
|
2610
|
+
scopes: Readonly<Record<string, string>>;
|
|
2611
|
+
pkceRequired?: boolean;
|
|
2612
|
+
}
|
|
2613
|
+
interface DocsAgentA2AOAuthClientCredentialsFlow {
|
|
2614
|
+
tokenUrl: string;
|
|
2615
|
+
refreshUrl?: string;
|
|
2616
|
+
scopes: Readonly<Record<string, string>>;
|
|
2617
|
+
}
|
|
2618
|
+
interface DocsAgentA2AOAuthDeviceCodeFlow {
|
|
2619
|
+
deviceAuthorizationUrl: string;
|
|
2620
|
+
tokenUrl: string;
|
|
2621
|
+
refreshUrl?: string;
|
|
2622
|
+
scopes: Readonly<Record<string, string>>;
|
|
2623
|
+
}
|
|
2624
|
+
/** @deprecated A2A v1 retains this OAuth flow for compatibility only. */
|
|
2625
|
+
interface DocsAgentA2AOAuthImplicitFlow {
|
|
2626
|
+
authorizationUrl: string;
|
|
2627
|
+
refreshUrl?: string;
|
|
2628
|
+
scopes: Readonly<Record<string, string>>;
|
|
2629
|
+
}
|
|
2630
|
+
/** @deprecated A2A v1 retains this OAuth flow for compatibility only. */
|
|
2631
|
+
interface DocsAgentA2AOAuthPasswordFlow {
|
|
2632
|
+
tokenUrl: string;
|
|
2633
|
+
refreshUrl?: string;
|
|
2634
|
+
scopes: Readonly<Record<string, string>>;
|
|
2635
|
+
}
|
|
2636
|
+
/** A2A v1 OAuth flow union. Exactly one flow is allowed by the protocol. */
|
|
2637
|
+
type DocsAgentA2AOAuthFlows = {
|
|
2638
|
+
authorizationCode: DocsAgentA2AOAuthAuthorizationCodeFlow;
|
|
2639
|
+
clientCredentials?: never;
|
|
2640
|
+
deviceCode?: never;
|
|
2641
|
+
implicit?: never;
|
|
2642
|
+
password?: never;
|
|
2643
|
+
} | {
|
|
2644
|
+
authorizationCode?: never;
|
|
2645
|
+
clientCredentials: DocsAgentA2AOAuthClientCredentialsFlow;
|
|
2646
|
+
deviceCode?: never;
|
|
2647
|
+
implicit?: never;
|
|
2648
|
+
password?: never;
|
|
2649
|
+
} | {
|
|
2650
|
+
authorizationCode?: never;
|
|
2651
|
+
clientCredentials?: never;
|
|
2652
|
+
deviceCode: DocsAgentA2AOAuthDeviceCodeFlow;
|
|
2653
|
+
implicit?: never;
|
|
2654
|
+
password?: never;
|
|
2655
|
+
} | {
|
|
2656
|
+
authorizationCode?: never;
|
|
2657
|
+
clientCredentials?: never;
|
|
2658
|
+
deviceCode?: never;
|
|
2659
|
+
implicit: DocsAgentA2AOAuthImplicitFlow;
|
|
2660
|
+
password?: never;
|
|
2661
|
+
} | {
|
|
2662
|
+
authorizationCode?: never;
|
|
2663
|
+
clientCredentials?: never;
|
|
2664
|
+
deviceCode?: never;
|
|
2665
|
+
implicit?: never;
|
|
2666
|
+
password: DocsAgentA2AOAuthPasswordFlow;
|
|
2667
|
+
};
|
|
2668
|
+
interface DocsAgentA2AOAuth2SecurityScheme {
|
|
2669
|
+
description?: string;
|
|
2670
|
+
flows: DocsAgentA2AOAuthFlows;
|
|
2671
|
+
oauth2MetadataUrl?: string;
|
|
2672
|
+
}
|
|
2673
|
+
interface DocsAgentA2AOpenIdConnectSecurityScheme {
|
|
2674
|
+
description?: string;
|
|
2675
|
+
openIdConnectUrl: string;
|
|
2676
|
+
}
|
|
2677
|
+
interface DocsAgentA2AMutualTlsSecurityScheme {
|
|
2678
|
+
description?: string;
|
|
2679
|
+
}
|
|
2680
|
+
/** A2A v1 security scheme union. Exactly one scheme is allowed by the protocol. */
|
|
2681
|
+
type DocsAgentA2ASecurityScheme = {
|
|
2682
|
+
apiKeySecurityScheme: DocsAgentA2AApiKeySecurityScheme;
|
|
2683
|
+
httpAuthSecurityScheme?: never;
|
|
2684
|
+
oauth2SecurityScheme?: never;
|
|
2685
|
+
openIdConnectSecurityScheme?: never;
|
|
2686
|
+
mtlsSecurityScheme?: never;
|
|
2687
|
+
} | {
|
|
2688
|
+
apiKeySecurityScheme?: never;
|
|
2689
|
+
httpAuthSecurityScheme: DocsAgentA2AHttpAuthSecurityScheme;
|
|
2690
|
+
oauth2SecurityScheme?: never;
|
|
2691
|
+
openIdConnectSecurityScheme?: never;
|
|
2692
|
+
mtlsSecurityScheme?: never;
|
|
2693
|
+
} | {
|
|
2694
|
+
apiKeySecurityScheme?: never;
|
|
2695
|
+
httpAuthSecurityScheme?: never;
|
|
2696
|
+
oauth2SecurityScheme: DocsAgentA2AOAuth2SecurityScheme;
|
|
2697
|
+
openIdConnectSecurityScheme?: never;
|
|
2698
|
+
mtlsSecurityScheme?: never;
|
|
2699
|
+
} | {
|
|
2700
|
+
apiKeySecurityScheme?: never;
|
|
2701
|
+
httpAuthSecurityScheme?: never;
|
|
2702
|
+
oauth2SecurityScheme?: never;
|
|
2703
|
+
openIdConnectSecurityScheme: DocsAgentA2AOpenIdConnectSecurityScheme;
|
|
2704
|
+
mtlsSecurityScheme?: never;
|
|
2705
|
+
} | {
|
|
2706
|
+
apiKeySecurityScheme?: never;
|
|
2707
|
+
httpAuthSecurityScheme?: never;
|
|
2708
|
+
oauth2SecurityScheme?: never;
|
|
2709
|
+
openIdConnectSecurityScheme?: never;
|
|
2710
|
+
mtlsSecurityScheme: DocsAgentA2AMutualTlsSecurityScheme;
|
|
2711
|
+
};
|
|
2712
|
+
/** One capability implemented by the configured A2A service. */
|
|
2713
|
+
interface DocsAgentA2ASkill {
|
|
2714
|
+
id: string;
|
|
2559
2715
|
name: string;
|
|
2560
2716
|
description: string;
|
|
2561
|
-
|
|
2562
|
-
|
|
2717
|
+
tags: readonly string[];
|
|
2718
|
+
examples?: readonly string[];
|
|
2719
|
+
inputModes?: readonly string[];
|
|
2720
|
+
outputModes?: readonly string[];
|
|
2721
|
+
securityRequirements?: readonly DocsAgentA2ASecurityRequirement[];
|
|
2722
|
+
}
|
|
2723
|
+
interface DocsAgentA2ABaseConfig {
|
|
2724
|
+
name: string;
|
|
2725
|
+
description: string;
|
|
2726
|
+
/** Absolute HTTPS documentation URL; HTTP is allowed only for loopback development. */
|
|
2727
|
+
documentationUrl?: string;
|
|
2728
|
+
/** Provider identity with an absolute HTTPS URL outside loopback development. */
|
|
2729
|
+
provider?: {
|
|
2563
2730
|
organization: string;
|
|
2564
2731
|
url: string;
|
|
2565
2732
|
};
|
|
2566
2733
|
version?: string;
|
|
2567
|
-
/**
|
|
2734
|
+
/** Absolute HTTPS icon URL; HTTP is allowed only for loopback development. */
|
|
2735
|
+
iconUrl?: string;
|
|
2736
|
+
capabilities?: DocsAgentA2ACapabilities;
|
|
2737
|
+
/** Agent-wide supported input media types. @default ["text/plain"] */
|
|
2738
|
+
defaultInputModes?: readonly string[];
|
|
2739
|
+
/** Agent-wide supported output media types. @default ["text/plain"] */
|
|
2740
|
+
defaultOutputModes?: readonly string[];
|
|
2741
|
+
securitySchemes?: Readonly<Record<string, DocsAgentA2ASecurityScheme>>;
|
|
2742
|
+
securityRequirements?: readonly DocsAgentA2ASecurityRequirement[];
|
|
2743
|
+
}
|
|
2744
|
+
interface DocsAgentA2ASingleInterfaceConfig {
|
|
2745
|
+
/** @deprecated Prefer `supportedInterfaces` for new A2A v1 configurations. */
|
|
2746
|
+
interfaceUrl: string;
|
|
2747
|
+
supportedInterfaces?: never;
|
|
2748
|
+
/** A2A protocol version exposed by the shorthand interface. @default "0.3" */
|
|
2568
2749
|
protocolVersion?: string;
|
|
2569
|
-
/** Transport binding exposed by the interface. @default "HTTP+JSON" */
|
|
2570
|
-
protocolBinding?:
|
|
2750
|
+
/** Transport binding exposed by the shorthand interface. @default "HTTP+JSON" */
|
|
2751
|
+
protocolBinding?: DocsAgentA2AProtocolBinding;
|
|
2752
|
+
/** Explicit A2A skills; published documentation skills are projected when omitted. */
|
|
2753
|
+
skills?: readonly DocsAgentA2ASkill[];
|
|
2754
|
+
}
|
|
2755
|
+
interface DocsAgentA2AInterfacesConfig {
|
|
2756
|
+
/** Ordered interfaces; the first entry is preferred. At least one is required. */
|
|
2757
|
+
supportedInterfaces: readonly [DocsAgentA2AInterfaceConfig, ...DocsAgentA2AInterfaceConfig[]];
|
|
2758
|
+
/** Capabilities actually implemented by the configured A2A interfaces. */
|
|
2759
|
+
skills: readonly DocsAgentA2ASkill[];
|
|
2760
|
+
interfaceUrl?: never;
|
|
2761
|
+
protocolVersion?: never;
|
|
2762
|
+
protocolBinding?: never;
|
|
2571
2763
|
}
|
|
2764
|
+
/** Explicit A2A service metadata. Configure this only when the URL implements A2A. */
|
|
2765
|
+
type DocsAgentA2AConfig = DocsAgentA2ABaseConfig & (DocsAgentA2ASingleInterfaceConfig | DocsAgentA2AInterfacesConfig);
|
|
2572
2766
|
interface DocsAgentConfig {
|
|
2573
2767
|
/**
|
|
2574
2768
|
* Defaults for `docs agent compact`.
|
|
@@ -3312,4 +3506,4 @@ interface DocsConfig {
|
|
|
3312
3506
|
og?: OGConfig;
|
|
3313
3507
|
}
|
|
3314
3508
|
//#endregion
|
|
3315
|
-
export {
|
|
3509
|
+
export { DocsAgentSkillsInput as $, ResolvedDocsRelatedLink as $n, DocsReviewRulesConfig as $t, DocsAgentA2ASecurityScheme as A, LlmsTxtMaxCharsMode as An, DocsFeedbackData as At, DocsAgentEvaluationSourceReference as B, OrderingItem as Bn, DocsMcpOriginContext as Bt, DocsAgentA2AOAuthDeviceCodeFlow as C, DocsTheme as Cn, DocsCodeBlocksPlannerProvider as Ct, DocsAgentA2AOpenIdConnectSecurityScheme as D, LastUpdatedConfig as Dn, DocsCodeBlocksValidationMode as Dt, DocsAgentA2AOAuthPasswordFlow as E, GithubConfig as En, DocsCodeBlocksValidateConfig as Et, DocsAgentEvaluationAnswerInput as F, OpenDocsProvider as Fn, DocsMcpAuthenticate as Ft, DocsAgentFeedbackData as G, PageAgentFrontmatter as Gn, DocsNav as Gt, DocsAgentEvaluationTaskInput as H, PageAgentAppliesTo as Hn, DocsMcpSecurityConfig as Ht, DocsAgentEvaluationAnswerProvider as I, OpenDocsProviderConfig as In, DocsMcpAuthenticateContext as It, DocsAgentGoldenExpectedExample as J, PageOpenGraph as Jn, DocsObservabilityEventInput as Jt, DocsAgentGoldenAnswerExpectation as K, PageAgentVerification as Kn, DocsObservabilityConfig as Kt, DocsAgentEvaluationAnswerRequest as L, OpenDocsProviderId as Ln, DocsMcpAuthenticateResult as Lt, DocsAgentA2ASkill as M, McpDocsSearchConfig as Mn, DocsI18nConfig as Mt, DocsAgentCompactConfig as N, OGConfig as Nn, DocsMcpAllowedOrigins as Nt, DocsAgentA2AProtocolBinding as O, LlmsTxtConfig as On, DocsCodeBlocksValidationPolicy as Ot, DocsAgentConfig as P, OpenDocsConfig as Pn, DocsMcpAuthPrincipal as Pt, DocsAgentSkillsConfig as Q, ReadingTimeFormat as Qn, DocsReviewConfig as Qt, DocsAgentEvaluationAnswerResult as R, OpenDocsTarget as Rn, DocsMcpConfig as Rt, DocsAgentA2AOAuthClientCredentialsFlow as S, DocsTelemetryFramework as Sn, DocsCodeBlocksPlannerConfig as St, DocsAgentA2AOAuthImplicitFlow as T, FontStyle as Tn, DocsCodeBlocksRunnerProvider as Tt, DocsAgentEvaluationsConfig as U, PageAgentCommand as Un, DocsMcpToolsConfig as Ut, DocsAgentEvaluationSurface as V, PageActionsConfig as Vn, DocsMcpProtectedResourceConfig as Vt, DocsAgentFeedbackContext as W, PageAgentFailureMode as Wn, DocsMetadata as Wt, DocsAgentGoldenTaskExpectation as X, PageTwitter as Xn, DocsReviewCiConfig as Xt, DocsAgentGoldenTask as Y, PageSidebarFrontmatter as Yn, DocsRelatedItem as Yt, DocsAgentGoldenTaskFilters as Z, ReadingTimeConfig as Zn, DocsReviewCiMode as Zt, DocsAgentA2AHttpAuthSecurityScheme as _, DocsTelemetryConfig as _n, DocsCloudConfig as _t, ApiReferenceRenderer as a, DocsSearchAdapterContext as an, SidebarPageNode as ar, DocsAnalyticsEventInput as at, DocsAgentA2AOAuth2SecurityScheme as b, DocsTelemetryEventType as bn, DocsCloudPublishConfig as bt, ChangelogFrontmatter as c, DocsSearchConfig as cn, ThemeToggleConfig as cr, DocsAnalyticsSource as ct, CopyMarkdownFormat as d, DocsSearchQuery as dn, UIConfig as dr, DocsAskAIFeedbackConfig as dt, DocsReviewScoreConfig as en, SidebarComponentProps as er, DocsAgentTraceEventInput as et, CustomDocsSearchConfig as f, DocsSearchResult as fn, DocsAskAIFeedbackData as ft, DocsAgentA2AExtension as g, DocsTelemetryAgentSurface as gn, DocsCloudApiKeyConfig as gt, DocsAgentA2AConfig as h, DocsSitemapConfig as hn, DocsAskAIMcpConfig as ht, ApiReferenceConfig as i, DocsSearchAdapter as in, SidebarNode as ir, DocsAnalyticsEvent as it, DocsAgentA2ASecurityScopeList as j, LlmsTxtSectionConfig as jn, DocsFeedbackValue as jt, DocsAgentA2ASecurityRequirement as k, LlmsTxtMaxCharsConfig as kn, DocsConfig as kt, CodeBlockCopyData as l, DocsSearchDocument as ln, TypesenseDocsSearchConfig as lr, DocsAskAIActionData as lt, DocsAgentA2ACapabilities as m, DocsSearchSourcePage as mn, DocsAskAIFeedbackValue as mt, AgentFeedbackConfig as n, DocsRobotsConfig as nn, SidebarFolderIndexBehavior as nr, DocsAgentTraceStatus as nt, BreadcrumbConfig as o, DocsSearchAdapterFactory as on, SidebarTree as or, DocsAnalyticsEventType as ot, DocsAgentA2AApiKeySecurityScheme as p, DocsSearchResultType as pn, DocsAskAIFeedbackMessage as pt, DocsAgentGoldenExampleVerification as q, PageFrontmatter as qn, DocsObservabilityEvent as qt, AlgoliaDocsSearchConfig as r, DocsRobotsRule as rn, SidebarFolderNode as rr, DocsAnalyticsConfig as rt, ChangelogConfig as s, DocsSearchChunkingConfig as sn, SimpleDocsSearchConfig as sr, DocsAnalyticsInput as st, AIConfig as t, DocsReviewSeverity as tn, SidebarConfig as tr, DocsAgentTraceEventType as tt, CopyMarkdownConfig as u, DocsSearchEmbeddingsConfig as un, TypographyConfig as ur, DocsAskAIActionType as ut, DocsAgentA2AInterfaceConfig as v, DocsTelemetryEvent as vn, DocsCloudFeatureConfig as vt, DocsAgentA2AOAuthFlows as w, FeedbackConfig as wn, DocsCodeBlocksRunnerConfig as wt, DocsAgentA2AOAuthAuthorizationCodeFlow as x, DocsTelemetryFeatures as xn, DocsCodeBlocksConfig as xt, DocsAgentA2AMutualTlsSecurityScheme as y, DocsTelemetryEventInput as yn, DocsCloudPreviewConfig as yt, DocsAgentEvaluationAnswerRunner as z, OpenGraphImage as zn, DocsMcpCorsConfig as zt };
|