@redocly/config 0.55.0 → 0.56.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.
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/recheck-config-schema.d.ts +268 -0
- package/lib/root-config-schema.d.ts +804 -0
- package/lib/types/config-types.d.ts +2 -0
- package/lib-esm/index.d.ts +1 -0
- package/lib-esm/index.js +1 -1
- package/lib-esm/recheck-config-schema.d.ts +268 -0
- package/lib-esm/root-config-schema.d.ts +804 -0
- package/lib-esm/types/config-types.d.ts +2 -0
- package/package.json +6 -4
|
@@ -6,6 +6,7 @@ import type { RedocConfigTypes } from './redoc-types.js';
|
|
|
6
6
|
import type { GraphQLConfigTypes } from './graphql-types.js';
|
|
7
7
|
import type { productConfigSchema, productGoogleAnalyticsConfigSchema, markdownConfigSchema, amplitudeAnalyticsConfigSchema, rudderstackAnalyticsConfigSchema, segmentAnalyticsConfigSchema, gtmAnalyticsConfigSchema, googleAnalyticsConfigSchema, scorecardConfigSchema, catalogFilterSchema, catalogSchema, searchFacetsConfigSchema } from '../ex-theme-config-schemas.js';
|
|
8
8
|
import type { scorecardsConfigSchema } from '../scorecards-config-schema.js';
|
|
9
|
+
import type { recheckConfigSchema } from '../recheck-config-schema.js';
|
|
9
10
|
import type { reuniteConfigSchema } from '../reunite-config-schema.js';
|
|
10
11
|
import type { optionalEmailSettings, reasonsSettings } from '../feedback-config-schema.js';
|
|
11
12
|
import type { AsyncApiConfigTypes } from './asyncapi-types.js';
|
|
@@ -31,6 +32,7 @@ export type CatalogFilterConfig = FromSchema<typeof catalogFilterSchema>;
|
|
|
31
32
|
export type ReuniteConfig = FromSchema<typeof reuniteConfigSchema>;
|
|
32
33
|
export type ScorecardConfig = FromSchema<typeof scorecardConfigSchema>;
|
|
33
34
|
export type ScorecardsConfig = FromSchema<typeof scorecardsConfigSchema>;
|
|
35
|
+
export type RecheckConfig = FromSchema<typeof recheckConfigSchema>;
|
|
34
36
|
export type SearchFacetsConfig = FromSchema<typeof searchFacetsConfigSchema>;
|
|
35
37
|
export type SkillsConfig = FromSchema<typeof skillsConfigSchema>;
|
|
36
38
|
type RootRedoclyConfig = FromSchema<typeof rootRedoclyConfigSchema>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.56.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -21,14 +21,16 @@
|
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@markdoc/markdoc": "0.5.2",
|
|
23
23
|
"esbuild": "0.28.1",
|
|
24
|
-
"@redocly/
|
|
24
|
+
"@redocly/ajv": "8.18.0",
|
|
25
|
+
"@redocly/openapi-core": "2.49.1",
|
|
25
26
|
"@types/node": "24.1.0",
|
|
26
27
|
"@types/react": "^19.2.7",
|
|
27
|
-
"@vitest/coverage-v8": "4.1.
|
|
28
|
+
"@vitest/coverage-v8": "4.1.11",
|
|
29
|
+
"ajv-formats": "^3.0.1",
|
|
28
30
|
"react-router": "^8.3.0",
|
|
29
31
|
"rimraf": "5.0.7",
|
|
30
32
|
"typescript": "6.0.3",
|
|
31
|
-
"vitest": "4.1.
|
|
33
|
+
"vitest": "4.1.11"
|
|
32
34
|
},
|
|
33
35
|
"dependencies": {
|
|
34
36
|
"json-schema-to-ts": "2.7.2"
|