@redocly/config 0.26.1 → 0.26.3-rc.1

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.
Files changed (41) hide show
  1. package/lib/common.d.ts +160 -0
  2. package/lib/common.js +40 -0
  3. package/lib/default-theme-config-schema.d.ts +657 -4260
  4. package/lib/default-theme-config-schema.js +3 -2
  5. package/lib/entities-catalog-config-schema.d.ts +718 -0
  6. package/lib/entities-catalog-config-schema.js +84 -0
  7. package/lib/ex-theme-config-schemas.d.ts +147 -12
  8. package/lib/ex-theme-config-schemas.js +4 -12
  9. package/lib/graphql-config-schema.d.ts +9 -0
  10. package/lib/graphql-config-schema.js +9 -0
  11. package/lib/product-override-schema.d.ts +168 -24
  12. package/lib/root-config-schema.d.ts +30277 -25599
  13. package/lib/root-config-schema.js +12 -73
  14. package/lib/types/catalog-entity-types.d.ts +29 -0
  15. package/lib/types/catalog-entity-types.js +3 -0
  16. package/lib/types/code-walkthrough-types.d.ts +0 -1
  17. package/lib/types/config-types.d.ts +2 -0
  18. package/lib/types/index.d.ts +1 -0
  19. package/lib/types/index.js +1 -0
  20. package/lib/types/portal-shared-types.d.ts +12 -1
  21. package/lib-esm/common.d.ts +160 -0
  22. package/lib-esm/common.js +37 -0
  23. package/lib-esm/default-theme-config-schema.d.ts +657 -4260
  24. package/lib-esm/default-theme-config-schema.js +2 -1
  25. package/lib-esm/entities-catalog-config-schema.d.ts +718 -0
  26. package/lib-esm/entities-catalog-config-schema.js +81 -0
  27. package/lib-esm/ex-theme-config-schemas.d.ts +147 -12
  28. package/lib-esm/ex-theme-config-schemas.js +4 -12
  29. package/lib-esm/graphql-config-schema.d.ts +9 -0
  30. package/lib-esm/graphql-config-schema.js +9 -0
  31. package/lib-esm/product-override-schema.d.ts +168 -24
  32. package/lib-esm/root-config-schema.d.ts +37428 -32290
  33. package/lib-esm/root-config-schema.js +12 -73
  34. package/lib-esm/types/catalog-entity-types.d.ts +29 -0
  35. package/lib-esm/types/catalog-entity-types.js +2 -0
  36. package/lib-esm/types/code-walkthrough-types.d.ts +0 -1
  37. package/lib-esm/types/config-types.d.ts +2 -0
  38. package/lib-esm/types/index.d.ts +1 -0
  39. package/lib-esm/types/index.js +1 -0
  40. package/lib-esm/types/portal-shared-types.d.ts +12 -1
  41. package/package.json +2 -2
@@ -1,6 +1,7 @@
1
1
  import { graphqlConfigSchema } from './graphql-config-schema';
2
2
  import { feedbackConfigSchema } from './feedback-config-schema';
3
3
  import { logoConfigSchema, analyticsConfigSchema, breadcrumbsConfigSchema, catalogsConfigSchema, codeSnippetConfigSchema, colorModeConfigSchema, footerConfigSchema, linksConfigSchema, markdownConfigSchema, navbarConfigSchema, navigationConfigSchema, openapiConfigSchema, productsConfigSchema, scorecardConfigSchema, scriptsConfigSchema, searchConfigSchema, sidebarConfigSchema, userMenuConfigSchema, versionPickerConfigSchema, } from './ex-theme-config-schemas';
4
+ import { entitiesCatalogConfigSchema } from './entities-catalog-config-schema';
4
5
  export const themeConfigSchema = {
5
6
  type: 'object',
6
7
  properties: {
@@ -34,10 +35,10 @@ export const themeConfigSchema = {
34
35
  * @deprecated Should use `catalogClassic` instead
35
36
  */
36
37
  catalog: catalogsConfigSchema,
38
+ entitiesCatalog: entitiesCatalogConfigSchema,
37
39
  catalogClassic: catalogsConfigSchema,
38
40
  scorecard: scorecardConfigSchema,
39
41
  },
40
42
  additionalProperties: true,
41
43
  };
42
- export const closedThemeConfigSchema = Object.assign(Object.assign({}, themeConfigSchema), { additionalProperties: false });
43
44
  //# sourceMappingURL=default-theme-config-schema.js.map