@talonic/docs 0.20.2 → 0.20.3
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/content.d.ts +9 -1
- package/dist/content.js +1075 -7
- package/dist/index.d.ts +13 -1
- package/dist/index.js +89 -0
- package/dist/index.js.map +1 -1
- package/dist/seo.d.ts +13 -1
- package/dist/seo.js +90 -1
- package/package.json +1 -1
package/dist/content.d.ts
CHANGED
|
@@ -130,5 +130,13 @@ declare function getAllPlatformSections(): DocSection[];
|
|
|
130
130
|
declare function getApiSection(slug: string): DocSection | null;
|
|
131
131
|
/** Get all API sections in reading order. */
|
|
132
132
|
declare function getAllApiSections(): DocSection[];
|
|
133
|
+
/** Get a single SDK section by slug, or null if not found. */
|
|
134
|
+
declare function getSdkSection(slug: string): DocSection | null;
|
|
135
|
+
/** Get all SDK sections in reading order. */
|
|
136
|
+
declare function getAllSdkSections(): DocSection[];
|
|
137
|
+
/** Get a single MCP section by slug, or null if not found. */
|
|
138
|
+
declare function getMcpSection(slug: string): DocSection | null;
|
|
139
|
+
/** Get all MCP sections in reading order. */
|
|
140
|
+
declare function getAllMcpSections(): DocSection[];
|
|
133
141
|
|
|
134
|
-
export { type DocBlock, type DocSection, type HttpMethod, type Param, type RawSection, getAllApiSections, getAllPlatformSections, getApiSection, getPlatformSection };
|
|
142
|
+
export { type DocBlock, type DocSection, type HttpMethod, type Param, type RawSection, getAllApiSections, getAllMcpSections, getAllPlatformSections, getAllSdkSections, getApiSection, getMcpSection, getPlatformSection, getSdkSection };
|