@mintlify/validation 0.1.702 → 0.1.704
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/index.js +2 -0
- package/dist/mint-config/schemas/v2/index.d.ts +120 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.d.ts +7 -0
- package/dist/mint-config/schemas/v2/properties/navigation/groups.js +3 -2
- package/dist/mint-config/schemas/v2/properties/navigation/index.d.ts +16 -0
- package/dist/mint-config/schemas/v2/properties/navigation/pages.d.ts +4 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.d.ts +6 -0
- package/dist/mint-config/schemas/v2/properties/navigation/tabs.js +2 -1
- package/dist/mint-config/schemas/v2/properties/reusable/searchable.d.ts +2 -0
- package/dist/mint-config/schemas/v2/properties/reusable/searchable.js +4 -0
- package/dist/mint-config/schemas/v2/themes/almond.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/aspen.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/linden.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/luma.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/maple.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/mint.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/palm.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/reusable/index.d.ts +8 -0
- package/dist/mint-config/schemas/v2/themes/sequoia.d.ts +12 -0
- package/dist/mint-config/schemas/v2/themes/willow.d.ts +12 -0
- package/dist/mint-config/validateConfig.d.ts +36 -0
- package/dist/tsconfig.build.tsbuildinfo +1 -1
- package/dist/types/serverStaticProps.d.ts +2 -0
- package/dist/types/serverStaticProps.js +4 -1
- package/package.json +2 -2
|
@@ -57,7 +57,9 @@ export type StaticMetadataProps = {
|
|
|
57
57
|
export type StaticNavProps = {
|
|
58
58
|
navigation: DecoratedNavigation;
|
|
59
59
|
docsDecoratedNav?: DecoratedNavigationConfig;
|
|
60
|
+
anonymizedDocsDecoratedNav?: DecoratedNavigationConfig;
|
|
60
61
|
};
|
|
62
|
+
export declare const SKELETON_HREF_MARKER = "#__mintlify-skeleton__/f5d8f9c2-5e3d-4b8a-9c1e-7b6a0f2a3e4d/";
|
|
61
63
|
export type StaticCssAndJsFilesProps = {
|
|
62
64
|
cssFiles: CssFileType[];
|
|
63
65
|
jsFiles: JsFileType[];
|
|
@@ -1 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
// Sentinel prefix for anonymized nav entries. Any href starting with this
|
|
2
|
+
// string is a skeleton placeholder — never a real page path. The UUID
|
|
3
|
+
// suffix prevents accidental collisions with customer-defined hrefs.
|
|
4
|
+
export const SKELETON_HREF_MARKER = '#__mintlify-skeleton__/f5d8f9c2-5e3d-4b8a-9c1e-7b6a0f2a3e4d/';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mintlify/validation",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.704",
|
|
4
4
|
"description": "Validates mint.json files",
|
|
5
5
|
"author": "Mintlify, Inc.",
|
|
6
6
|
"bugs": {
|
|
@@ -71,5 +71,5 @@
|
|
|
71
71
|
"typescript": "5.5.3",
|
|
72
72
|
"vitest": "2.1.9"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "737a4433fb0c7897659aaed91c85fc2e13973f5b"
|
|
75
75
|
}
|