@redocly/config 0.26.2 → 0.26.3
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/lib/common.d.ts +1 -1
- package/lib/common.js +1 -1
- package/lib/default-theme-config-schema.d.ts +573 -4326
- package/lib/default-theme-config-schema.js +3 -2
- package/lib/entities-catalog-config-schema.d.ts +718 -0
- package/lib/entities-catalog-config-schema.js +84 -0
- package/lib/ex-theme-config-schemas.d.ts +64 -0
- package/lib/ex-theme-config-schemas.js +1 -1
- package/lib/product-override-schema.d.ts +1 -1
- package/lib/root-config-schema.d.ts +3449 -209
- package/lib/root-config-schema.js +2 -1
- package/lib/types/catalog-entity-types.d.ts +29 -0
- package/lib/types/catalog-entity-types.js +3 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib/types/index.d.ts +1 -0
- package/lib/types/index.js +1 -0
- package/lib/types/portal-shared-types.d.ts +12 -1
- package/lib-esm/common.d.ts +1 -1
- package/lib-esm/common.js +1 -1
- package/lib-esm/default-theme-config-schema.d.ts +573 -4326
- package/lib-esm/default-theme-config-schema.js +2 -1
- package/lib-esm/entities-catalog-config-schema.d.ts +718 -0
- package/lib-esm/entities-catalog-config-schema.js +81 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +64 -0
- package/lib-esm/ex-theme-config-schemas.js +2 -2
- package/lib-esm/product-override-schema.d.ts +1 -1
- package/lib-esm/root-config-schema.d.ts +3449 -209
- package/lib-esm/root-config-schema.js +2 -1
- package/lib-esm/types/catalog-entity-types.d.ts +29 -0
- package/lib-esm/types/catalog-entity-types.js +2 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/lib-esm/types/index.d.ts +1 -0
- package/lib-esm/types/index.js +1 -0
- package/lib-esm/types/portal-shared-types.d.ts +12 -1
- package/package.json +2 -2
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.
|
|
3
|
+
exports.themeConfigSchema = void 0;
|
|
4
4
|
const graphql_config_schema_1 = require("./graphql-config-schema");
|
|
5
5
|
const feedback_config_schema_1 = require("./feedback-config-schema");
|
|
6
6
|
const ex_theme_config_schemas_1 = require("./ex-theme-config-schemas");
|
|
7
|
+
const entities_catalog_config_schema_1 = require("./entities-catalog-config-schema");
|
|
7
8
|
exports.themeConfigSchema = {
|
|
8
9
|
type: 'object',
|
|
9
10
|
properties: {
|
|
@@ -37,10 +38,10 @@ exports.themeConfigSchema = {
|
|
|
37
38
|
* @deprecated Should use `catalogClassic` instead
|
|
38
39
|
*/
|
|
39
40
|
catalog: ex_theme_config_schemas_1.catalogsConfigSchema,
|
|
41
|
+
entitiesCatalog: entities_catalog_config_schema_1.entitiesCatalogConfigSchema,
|
|
40
42
|
catalogClassic: ex_theme_config_schemas_1.catalogsConfigSchema,
|
|
41
43
|
scorecard: ex_theme_config_schemas_1.scorecardConfigSchema,
|
|
42
44
|
},
|
|
43
45
|
additionalProperties: true,
|
|
44
46
|
};
|
|
45
|
-
exports.closedThemeConfigSchema = Object.assign(Object.assign({}, exports.themeConfigSchema), { additionalProperties: false });
|
|
46
47
|
//# sourceMappingURL=default-theme-config-schema.js.map
|