@redocly/config 0.19.1 → 0.19.2
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/default-theme-config-schema.d.ts +96 -0
- package/lib/ex-theme-config-schemas.d.ts +16 -0
- package/lib/feedback-config-schema.d.ts +33 -1
- package/lib/feedback-config-schema.js +16 -3
- package/lib/graphql-config-schema.d.ts +16 -0
- package/lib/product-override-schema.d.ts +160 -0
- package/lib/redoc-config-schema.d.ts +16 -0
- package/lib/root-config-schema.d.ts +582 -0
- package/lib/root-config-schema.js +7 -0
- package/lib/types.d.ts +3 -2
- package/lib-esm/default-theme-config-schema.d.ts +96 -0
- package/lib-esm/ex-theme-config-schemas.d.ts +16 -0
- package/lib-esm/feedback-config-schema.d.ts +33 -1
- package/lib-esm/feedback-config-schema.js +15 -2
- package/lib-esm/graphql-config-schema.d.ts +16 -0
- package/lib-esm/product-override-schema.d.ts +160 -0
- package/lib-esm/redoc-config-schema.d.ts +16 -0
- package/lib-esm/root-config-schema.d.ts +582 -0
- package/lib-esm/root-config-schema.js +7 -0
- package/lib-esm/types.d.ts +3 -2
- package/package.json +1 -1
|
@@ -175,6 +175,13 @@ export const rbacConfigSchema = {
|
|
|
175
175
|
teamFoldersBaseRoles: rbacScopeItemsSchema,
|
|
176
176
|
cms: rbacScopeItemsSchema, // deprecated in favor of reunite
|
|
177
177
|
reunite: rbacScopeItemsSchema,
|
|
178
|
+
features: {
|
|
179
|
+
type: 'object',
|
|
180
|
+
properties: {
|
|
181
|
+
aiSearch: rbacScopeItemsSchema,
|
|
182
|
+
},
|
|
183
|
+
additionalProperties: false,
|
|
184
|
+
},
|
|
178
185
|
content: {
|
|
179
186
|
type: 'object',
|
|
180
187
|
properties: {
|
package/lib-esm/types.d.ts
CHANGED
|
@@ -5,8 +5,8 @@ import type { apiConfigSchema, apigeeAdapterAuthOauth2Schema, apigeeAdapterAuthS
|
|
|
5
5
|
import type { RedocConfigTypes } from './redoc-types';
|
|
6
6
|
import type { GraphQLConfigTypes } from './graphql-types';
|
|
7
7
|
import type { productConfigSchema, productGoogleAnalyticsConfigSchema, markdownConfigSchema, amplitudeAnalyticsConfigSchema, rudderstackAnalyticsConfigSchema, segmentAnalyticsConfigSchema, gtmAnalyticsConfigSchema, googleAnalyticsConfigSchema, scorecardConfigSchema, catalogFilterSchema, catalogSchema, searchFacetsConfigSchema } from './ex-theme-config-schemas';
|
|
8
|
-
import type { reasonsSettingsSchema } from './feedback-config-schema';
|
|
9
8
|
import type { reuniteConfigSchema } from './reunite-config-schema';
|
|
9
|
+
import type { anonymousUserEmailSettings, reasonsSettings } from './feedback-config-schema';
|
|
10
10
|
/**
|
|
11
11
|
* @deprecated left for backwards compatibility. To be removed in Realm 1.0
|
|
12
12
|
*/
|
|
@@ -62,5 +62,6 @@ export type ApiConfig = BasicApiConfig & {
|
|
|
62
62
|
};
|
|
63
63
|
};
|
|
64
64
|
export type ProductConfigOverride = FromSchema<typeof productConfigOverrideSchema>;
|
|
65
|
-
export type ReasonsSettingsSchema = FromSchema<typeof
|
|
65
|
+
export type ReasonsSettingsSchema = FromSchema<typeof reasonsSettings>;
|
|
66
|
+
export type AnonymousUserEmailSettings = FromSchema<typeof anonymousUserEmailSettings>;
|
|
66
67
|
export {};
|