@xyd-js/core 0.0.0-build-294eaf4-20250911201553 → 0.0.0-build-734e8b7-20250917165426
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 +1 -1
- package/dist/index.d.ts +14 -1
- package/package.json +1 -1
- package/src/types/settings.ts +16 -1
package/CHANGELOG.md
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -498,6 +498,10 @@ interface Settings {
|
|
|
498
498
|
* SEO configuration
|
|
499
499
|
*/
|
|
500
500
|
seo?: SEO;
|
|
501
|
+
/**
|
|
502
|
+
* Advanced configuration
|
|
503
|
+
*/
|
|
504
|
+
advanced?: Advanced;
|
|
501
505
|
/**
|
|
502
506
|
* @internal
|
|
503
507
|
*
|
|
@@ -1456,6 +1460,15 @@ interface SEO {
|
|
|
1456
1460
|
[tag: string]: string;
|
|
1457
1461
|
};
|
|
1458
1462
|
}
|
|
1463
|
+
/**
|
|
1464
|
+
* Advanced configuration
|
|
1465
|
+
*/
|
|
1466
|
+
interface Advanced {
|
|
1467
|
+
/**
|
|
1468
|
+
* basename
|
|
1469
|
+
*/
|
|
1470
|
+
basename?: string;
|
|
1471
|
+
}
|
|
1459
1472
|
/**
|
|
1460
1473
|
* Engine configuration
|
|
1461
1474
|
*/
|
|
@@ -1574,4 +1587,4 @@ interface UserPreferences {
|
|
|
1574
1587
|
themeColors?: ThemeColors;
|
|
1575
1588
|
}
|
|
1576
1589
|
|
|
1577
|
-
export type { API, APIAuth, APIFile, APIFileAdvanced, APIFileMap, APIInfo, APIInfoRequest, AnchorHeader, Anchors, Appearance, AppearanceBanner, AppearanceButtons, AppearanceContent, AppearanceFooter, AppearanceHeader, AppearanceLogo, AppearanceSearch, AppearanceSidebar, AppearanceTables, AppearanceTabs, AppsDirectory, Coder, Colors, ComponentLike, Components, EditLink, Engine, EnginePaths, EngineUniform, Font, HeadConfig, IconLibrary, Icons, IntegrationABTesting, IntegrationABTestingGrowthBook, IntegrationABTestingLaunchDarkly, IntegrationABTestingProviders, IntegrationAnalytics, IntegrationAnalyticsLiveSession, IntegrationAppGithubStar, IntegrationAppSupademo, IntegrationSearch, IntegrationSupport, IntegrationSupportChatwoot, IntegrationSupportIntercom, IntegrationSupportLivechat, Integrations, JSONComponent, Logo, MetaTags, Metadata, MetadataMap, Navigation, NavigationItem, NavigationItemButton, NavigationItemSocial, PageLayout, PageMetaUniform, PageMetaUniformDetails, PageURL, PluginConfig, Plugins, Redirects, SEO, Script, SearchType, Segment, Settings, Sidebar, SidebarDropdown, SidebarNavigation, SidebarRoute, Social, Tabs, Theme, ThemeColors, ThemeFont, ThemePresetName, TocCard, UserPreferences, VirtualPage, WebEditor, WebEditorBanner, WebEditorFooter, WebEditorFooterLink, WebEditorFooterLinkItem, WebEditorFooterLinks, WebEditorHeader, WebEditorNavigationItem, WebEditorSubHeader, Writer };
|
|
1590
|
+
export type { API, APIAuth, APIFile, APIFileAdvanced, APIFileMap, APIInfo, APIInfoRequest, Advanced, AnchorHeader, Anchors, Appearance, AppearanceBanner, AppearanceButtons, AppearanceContent, AppearanceFooter, AppearanceHeader, AppearanceLogo, AppearanceSearch, AppearanceSidebar, AppearanceTables, AppearanceTabs, AppsDirectory, Coder, Colors, ComponentLike, Components, EditLink, Engine, EnginePaths, EngineUniform, Font, HeadConfig, IconLibrary, Icons, IntegrationABTesting, IntegrationABTestingGrowthBook, IntegrationABTestingLaunchDarkly, IntegrationABTestingProviders, IntegrationAnalytics, IntegrationAnalyticsLiveSession, IntegrationAppGithubStar, IntegrationAppSupademo, IntegrationSearch, IntegrationSupport, IntegrationSupportChatwoot, IntegrationSupportIntercom, IntegrationSupportLivechat, Integrations, JSONComponent, Logo, MetaTags, Metadata, MetadataMap, Navigation, NavigationItem, NavigationItemButton, NavigationItemSocial, PageLayout, PageMetaUniform, PageMetaUniformDetails, PageURL, PluginConfig, Plugins, Redirects, SEO, Script, SearchType, Segment, Settings, Sidebar, SidebarDropdown, SidebarNavigation, SidebarRoute, Social, Tabs, Theme, ThemeColors, ThemeFont, ThemePresetName, TocCard, UserPreferences, VirtualPage, WebEditor, WebEditorBanner, WebEditorFooter, WebEditorFooterLink, WebEditorFooterLinkItem, WebEditorFooterLinks, WebEditorHeader, WebEditorNavigationItem, WebEditorSubHeader, Writer };
|
package/package.json
CHANGED
package/src/types/settings.ts
CHANGED
|
@@ -5,7 +5,7 @@ import type { Theme as SyntaxHighlight } from "@code-hike/lighter";
|
|
|
5
5
|
/**
|
|
6
6
|
* Main settings interface for the application
|
|
7
7
|
*/
|
|
8
|
-
export interface Settings {
|
|
8
|
+
export interface Settings {
|
|
9
9
|
/** Theme configuration for the application */
|
|
10
10
|
theme?: Theme
|
|
11
11
|
|
|
@@ -26,6 +26,11 @@ export interface Settings {
|
|
|
26
26
|
*/
|
|
27
27
|
seo?: SEO
|
|
28
28
|
|
|
29
|
+
/**
|
|
30
|
+
* Advanced configuration
|
|
31
|
+
*/
|
|
32
|
+
advanced?: Advanced
|
|
33
|
+
|
|
29
34
|
/**
|
|
30
35
|
* @internal
|
|
31
36
|
*
|
|
@@ -1237,6 +1242,16 @@ export interface SEO {
|
|
|
1237
1242
|
metatags?: { [tag: string]: string } // TODO: in the future type-safe
|
|
1238
1243
|
}
|
|
1239
1244
|
|
|
1245
|
+
/**
|
|
1246
|
+
* Advanced configuration
|
|
1247
|
+
*/
|
|
1248
|
+
export interface Advanced {
|
|
1249
|
+
/**
|
|
1250
|
+
* basename
|
|
1251
|
+
*/
|
|
1252
|
+
basename?: string
|
|
1253
|
+
}
|
|
1254
|
+
|
|
1240
1255
|
// ------ END settings for redirects END ------
|
|
1241
1256
|
|
|
1242
1257
|
// ------ START settings for engine START ------
|