@redocly/config 0.49.0 → 0.50.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/asyncapi-config-schema.d.ts +106 -106
- package/lib/common.d.ts +158 -135
- package/lib/constants/config.d.ts +10 -10
- package/lib/constants/entities.d.ts +21 -43
- package/lib/constants/identity-provider-slug.d.ts +8 -0
- package/lib/default-theme-config-schema.d.ts +3534 -3488
- package/lib/entities-catalog-config-schema.d.ts +469 -469
- package/lib/entities-catalog-entity-file-schema.d.ts +441 -441
- package/lib/ex-theme-config-schemas.d.ts +3020 -2997
- package/lib/feedback-config-schema.d.ts +99 -99
- package/lib/graphql-config-schema.d.ts +165 -165
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -1
- package/lib/product-override-schema.d.ts +11541 -11518
- package/lib/redoc-config-schema.d.ts +155 -155
- package/lib/reference-docs-config-schema.d.ts +481 -481
- package/lib/reunite-config-schema.d.ts +41 -41
- package/lib/root-config-schema.d.ts +52200 -51598
- package/lib/scorecards-config-schema.d.ts +405 -405
- package/lib/types/config-types.d.ts +5 -1
- package/lib-esm/asyncapi-config-schema.d.ts +106 -106
- package/lib-esm/common.d.ts +158 -135
- package/lib-esm/constants/config.d.ts +10 -10
- package/lib-esm/constants/entities.d.ts +21 -43
- package/lib-esm/constants/identity-provider-slug.d.ts +8 -0
- package/lib-esm/default-theme-config-schema.d.ts +3534 -3488
- package/lib-esm/entities-catalog-config-schema.d.ts +469 -469
- package/lib-esm/entities-catalog-entity-file-schema.d.ts +441 -441
- package/lib-esm/ex-theme-config-schemas.d.ts +3020 -2997
- package/lib-esm/feedback-config-schema.d.ts +99 -99
- package/lib-esm/graphql-config-schema.d.ts +165 -165
- package/lib-esm/index.d.ts +1 -0
- package/lib-esm/index.js +1 -1
- package/lib-esm/product-override-schema.d.ts +11541 -11518
- package/lib-esm/redoc-config-schema.d.ts +155 -155
- package/lib-esm/reference-docs-config-schema.d.ts +481 -481
- package/lib-esm/reunite-config-schema.d.ts +41 -41
- package/lib-esm/root-config-schema.d.ts +52200 -51598
- package/lib-esm/scorecards-config-schema.d.ts +405 -405
- package/lib-esm/types/config-types.d.ts +5 -1
- package/package.json +9 -9
|
@@ -33,7 +33,7 @@ export type ScorecardConfig = FromSchema<typeof scorecardConfigSchema>;
|
|
|
33
33
|
export type ScorecardsConfig = FromSchema<typeof scorecardsConfigSchema>;
|
|
34
34
|
export type SearchFacetsConfig = FromSchema<typeof searchFacetsConfigSchema>;
|
|
35
35
|
type RootRedoclyConfig = FromSchema<typeof rootRedoclyConfigSchema>;
|
|
36
|
-
export type RedoclyConfig = Omit<RootRedoclyConfig, 'theme' | 'apis' | 'rbac' | 'requiresLogin' | 'sso' | 'residency' | 'logoutReturnUrl'> & {
|
|
36
|
+
export type RedoclyConfig = Omit<RootRedoclyConfig, 'theme' | 'apis' | 'rbac' | 'requiresLogin' | 'sso' | 'idps' | 'residency' | 'logoutReturnUrl'> & {
|
|
37
37
|
/**
|
|
38
38
|
* @deprecated Should use `access.rbac` instead
|
|
39
39
|
*/
|
|
@@ -46,6 +46,10 @@ export type RedoclyConfig = Omit<RootRedoclyConfig, 'theme' | 'apis' | 'rbac' |
|
|
|
46
46
|
* @deprecated Should use `access.sso` instead
|
|
47
47
|
*/
|
|
48
48
|
sso?: RootRedoclyConfig['sso'];
|
|
49
|
+
/**
|
|
50
|
+
* @deprecated Should use `access.idps` instead
|
|
51
|
+
*/
|
|
52
|
+
idps?: RootRedoclyConfig['idps'];
|
|
49
53
|
/**
|
|
50
54
|
* @deprecated Should use `access.residency` instead
|
|
51
55
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@redocly/config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.50.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./lib/index.js",
|
|
@@ -20,23 +20,23 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@markdoc/markdoc": "0.5.2",
|
|
23
|
-
"esbuild": "0.
|
|
24
|
-
"@redocly/openapi-core": "2.
|
|
25
|
-
"@types/node": "
|
|
23
|
+
"esbuild": "0.28.1",
|
|
24
|
+
"@redocly/openapi-core": "2.35.0",
|
|
25
|
+
"@types/node": "24.1.0",
|
|
26
26
|
"@types/react": "^19.2.7",
|
|
27
|
-
"@vitest/coverage-v8": "4.
|
|
27
|
+
"@vitest/coverage-v8": "4.1.8",
|
|
28
28
|
"react-router-dom": "^6.30.3",
|
|
29
29
|
"rimraf": "5.0.7",
|
|
30
|
-
"typescript": "
|
|
31
|
-
"vitest": "4.
|
|
30
|
+
"typescript": "6.0.3",
|
|
31
|
+
"vitest": "4.1.8"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"json-schema-to-ts": "2.7.2"
|
|
35
35
|
},
|
|
36
36
|
"scripts": {
|
|
37
37
|
"clean": "rimraf lib lib-esm",
|
|
38
|
-
"ts:check": "
|
|
39
|
-
"compile": "pnpm run ts:check && node build.mjs &&
|
|
38
|
+
"ts:check": "tsgo --noEmit",
|
|
39
|
+
"compile": "pnpm run ts:check && node build.mjs && tsgo -p tsconfig.build.json && tsgo -p tsconfig.build-esm.json",
|
|
40
40
|
"build": "pnpm run clean && pnpm run compile",
|
|
41
41
|
"test": "nx run vitest:test"
|
|
42
42
|
}
|