@griddo/core 11.11.8 → 11.12.0

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.
@@ -330,6 +330,17 @@ interface ContentPresence {
330
330
  presenceType: "page-specific" | "page-custom" | "page-manual" | "all";
331
331
  relatedPages: Array<number> | null;
332
332
  }
333
+ /** Main conversion options */
334
+ interface JsConversionOptions {
335
+ /** Extract metadata from HTML */
336
+ extractMetadata?: boolean;
337
+ /** Skip image conversion (keep as HTML) */
338
+ skipImages?: boolean;
339
+ /** List of HTML tags to strip */
340
+ stripTags?: Array<string>;
341
+ /** Enable debug mode with diagnostic warnings */
342
+ debug?: boolean;
343
+ }
333
344
  interface Config {
334
345
  autotypes?: Partial<Schema.AutoTypesConfig>;
335
346
  schemas: {
@@ -341,6 +352,7 @@ interface Config {
341
352
  moduleCategories?: Schema.ModuleCategories;
342
353
  themes: Schema.Themes;
343
354
  subthemes?: Array<string>;
355
+ llms?: JsConversionOptions;
344
356
  };
345
357
  ui: {
346
358
  components: Record<string, Schema.Component>;
@@ -360,4 +372,4 @@ interface Config {
360
372
  };
361
373
  };
362
374
  }
363
- export type { BackgroundImageSizesProps, Breadcrumb, CloudinaryDefaults, Config, ContentPresence, ContentTypeRelations, FetchPriority, FooterModule, FullPath, GriddoDamDefaults, HeaderModule, ImageCropType, ImageDecoding, ImageFormats, ImageLoading, ImagePosition, ImageTransform, ISOLocale, LibraryComponentProps, ListContentType, Locale, LocaleTranslations, NavigationModule, Page, PageIntegration, PageLanguage, Renderers, ResponsiveImageProps, Site, SiteLanguage, SocialName, TimeZone, };
375
+ export type { BackgroundImageSizesProps, Breadcrumb, CloudinaryDefaults, Config, ContentPresence, ContentTypeRelations, FetchPriority, FooterModule, FullPath, GriddoDamDefaults, HeaderModule, ImageCropType, ImageDecoding, ImageFormats, ImageLoading, ImagePosition, ImageTransform, ISOLocale, JsConversionOptions, LibraryComponentProps, ListContentType, Locale, LocaleTranslations, NavigationModule, Page, PageIntegration, PageLanguage, Renderers, ResponsiveImageProps, Site, SiteLanguage, SocialName, TimeZone };
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@griddo/core",
3
3
  "description": "Reload version of Griddo Core",
4
4
  "license": "UNLICENSED",
5
- "version": "11.11.8",
5
+ "version": "11.12.0",
6
6
  "authors": [
7
7
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
8
8
  "Diego M. Béjar <diego.bejar@secuoyas.com>",
@@ -115,5 +115,5 @@
115
115
  "publishConfig": {
116
116
  "access": "public"
117
117
  },
118
- "gitHead": "730c81c2e29fd4a1a1dd52c0586203ba4ef50572"
118
+ "gitHead": "47dd37fe46a7bb09187b0c475c4ece29a6abc289"
119
119
  }