@stainless-api/docs 0.1.0-beta.40 → 0.1.0-beta.42
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/CHANGELOG.md +17 -0
- package/package.json +13 -13
- package/plugin/cms/server.ts +0 -1
- package/plugin/cms/sidebar-builder.ts +1 -1
- package/plugin/components/search/SearchAlgolia.astro +0 -22
- package/plugin/components/search/SearchIsland.tsx +1 -3
- package/plugin/index.ts +0 -1
- package/plugin/loadPluginConfig.ts +0 -16
- package/tsconfig.tsbuildinfo +1 -0
- package/virtual-module.d.ts +0 -2
package/virtual-module.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ declare module 'virtual:stl-starlight-virtual-module' {
|
|
|
2
2
|
import type { CreateShikiHighlighterOptions } from '@astrojs/markdown-remark';
|
|
3
3
|
import type { PropertySettingsType } from '@stainless-api/docs-ui/contexts';
|
|
4
4
|
import type { StlStarlightMiddleware } from '@stainless-api/docs/plugin/MiddlewareTypes';
|
|
5
|
-
import type { StainlessStarlightUserConfig } from './plugin/loadPluginConfig';
|
|
6
5
|
|
|
7
6
|
export const BASE_PATH: string;
|
|
8
7
|
export const CMS_PORT: number;
|
|
@@ -17,7 +16,6 @@ declare module 'virtual:stl-starlight-virtual-module' {
|
|
|
17
16
|
export const EXPERIMENTAL_COLLAPSIBLE_SNIPPETS: boolean | undefined;
|
|
18
17
|
export const PROPERTY_SETTINGS: PropertySettingsType;
|
|
19
18
|
export const MIDDLEWARE: StlStarlightMiddleware;
|
|
20
|
-
export const SEARCH: StainlessStarlightUserConfig['search'];
|
|
21
19
|
export const ENABLE_CONTEXT_MENU: boolean;
|
|
22
20
|
}
|
|
23
21
|
|