@redocly/config
Advanced tools
Comparing version 0.17.1 to 0.18.0
@@ -586,4 +586,8 @@ import { redocConfigSchema } from './redoc-config-schema'; | ||
}, | ||
ignore: { | ||
type: 'array', | ||
items: { type: 'string' }, | ||
}, | ||
}, | ||
}; | ||
//# sourceMappingURL=ex-theme-config-schemas.js.map |
@@ -62,3 +62,3 @@ import { DEFAULT_TEAM_CLAIM_NAME, AuthProviderType, ApigeeDevOnboardingIntegrationAuthType, } from './constants'; | ||
}; | ||
export const ssoOnPremConfigSchema = { | ||
export const ssoDirectConfigSchema = { | ||
type: 'object', | ||
@@ -345,3 +345,3 @@ additionalProperties: authProviderConfigSchema, | ||
preprocessors: { type: 'object', additionalProperties: true }, | ||
ssoOnPrem: ssoOnPremConfigSchema, | ||
ssoDirect: ssoDirectConfigSchema, | ||
sso: ssoConfigSchema, | ||
@@ -348,0 +348,0 @@ residency: { type: 'string' }, |
import type { FromSchema } from 'json-schema-to-ts'; | ||
import type { themeConfigSchema } from './default-theme-config-schema'; | ||
import type { productConfigOverrideSchema } from './product-override-schema'; | ||
import type { apiConfigSchema, apigeeAdapterAuthOauth2Schema, apigeeAdapterAuthServiceAccountSchema, apigeeEdgeAdapterConfigSchema, apigeeXAdapterConfigSchema, authProviderConfigSchema, devOnboardingAdapterConfigSchema, graviteeAdapterConfigSchema, l10nConfigSchema, oidcIssuerMetadataSchema, oidcProviderConfigSchema, rbacConfigSchema, rbacScopeItemsSchema, redirectConfigSchema, redirectsConfigSchema, rootRedoclyConfigSchema, saml2ProviderConfigSchema, seoConfigSchema, ssoOnPremConfigSchema } from './root-config-schema'; | ||
import type { apiConfigSchema, apigeeAdapterAuthOauth2Schema, apigeeAdapterAuthServiceAccountSchema, apigeeEdgeAdapterConfigSchema, apigeeXAdapterConfigSchema, authProviderConfigSchema, devOnboardingAdapterConfigSchema, graviteeAdapterConfigSchema, l10nConfigSchema, oidcIssuerMetadataSchema, oidcProviderConfigSchema, rbacConfigSchema, rbacScopeItemsSchema, redirectConfigSchema, redirectsConfigSchema, rootRedoclyConfigSchema, saml2ProviderConfigSchema, seoConfigSchema, ssoDirectConfigSchema } from './root-config-schema'; | ||
import type { RedocConfigTypes } from './redoc-types'; | ||
@@ -52,3 +52,3 @@ import type { GraphQLConfigTypes } from './graphql-types'; | ||
export type ApigeeAdapterAuthServiceAccount = FromSchema<typeof apigeeAdapterAuthServiceAccountSchema>; | ||
export type SsoConfig = FromSchema<typeof ssoOnPremConfigSchema>; | ||
export type SsoConfig = FromSchema<typeof ssoDirectConfigSchema>; | ||
export type L10nConfig = FromSchema<typeof l10nConfigSchema>; | ||
@@ -55,0 +55,0 @@ type BasicApiConfig = FromSchema<typeof apiConfigSchema>; |
@@ -589,4 +589,8 @@ "use strict"; | ||
}, | ||
ignore: { | ||
type: 'array', | ||
items: { type: 'string' }, | ||
}, | ||
}, | ||
}; | ||
//# sourceMappingURL=ex-theme-config-schemas.js.map |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.rootRedoclyConfigSchema = exports.redoclyConfigSchema = exports.l10nConfigSchema = exports.devOnboardingAdapterConfigSchema = exports.apigeeEdgeAdapterConfigSchema = exports.apigeeXAdapterConfigSchema = exports.apigeeAdapterAuthServiceAccountSchema = exports.apigeeAdapterAuthOauth2Schema = exports.graviteeAdapterConfigSchema = exports.graviteeAdapterAuthIdpSchema = exports.graviteeAdapterAuthStaticSchema = exports.rbacConfigSchema = exports.rbacScopeItemsSchema = exports.seoConfigSchema = exports.apiConfigSchema = exports.redirectsConfigSchema = exports.redirectConfigSchema = exports.ssoConfigSchema = exports.ssoOnPremConfigSchema = exports.authProviderConfigSchema = exports.saml2ProviderConfigSchema = exports.oidcProviderConfigSchema = exports.oidcIssuerMetadataSchema = void 0; | ||
exports.rootRedoclyConfigSchema = exports.redoclyConfigSchema = exports.l10nConfigSchema = exports.devOnboardingAdapterConfigSchema = exports.apigeeEdgeAdapterConfigSchema = exports.apigeeXAdapterConfigSchema = exports.apigeeAdapterAuthServiceAccountSchema = exports.apigeeAdapterAuthOauth2Schema = exports.graviteeAdapterConfigSchema = exports.graviteeAdapterAuthIdpSchema = exports.graviteeAdapterAuthStaticSchema = exports.rbacConfigSchema = exports.rbacScopeItemsSchema = exports.seoConfigSchema = exports.apiConfigSchema = exports.redirectsConfigSchema = exports.redirectConfigSchema = exports.ssoConfigSchema = exports.ssoDirectConfigSchema = exports.authProviderConfigSchema = exports.saml2ProviderConfigSchema = exports.oidcProviderConfigSchema = exports.oidcIssuerMetadataSchema = void 0; | ||
const constants_1 = require("./constants"); | ||
@@ -65,3 +65,3 @@ const default_theme_config_schema_1 = require("./default-theme-config-schema"); | ||
}; | ||
exports.ssoOnPremConfigSchema = { | ||
exports.ssoDirectConfigSchema = { | ||
type: 'object', | ||
@@ -348,3 +348,3 @@ additionalProperties: exports.authProviderConfigSchema, | ||
preprocessors: { type: 'object', additionalProperties: true }, | ||
ssoOnPrem: exports.ssoOnPremConfigSchema, | ||
ssoDirect: exports.ssoDirectConfigSchema, | ||
sso: exports.ssoConfigSchema, | ||
@@ -351,0 +351,0 @@ residency: { type: 'string' }, |
import type { FromSchema } from 'json-schema-to-ts'; | ||
import type { themeConfigSchema } from './default-theme-config-schema'; | ||
import type { productConfigOverrideSchema } from './product-override-schema'; | ||
import type { apiConfigSchema, apigeeAdapterAuthOauth2Schema, apigeeAdapterAuthServiceAccountSchema, apigeeEdgeAdapterConfigSchema, apigeeXAdapterConfigSchema, authProviderConfigSchema, devOnboardingAdapterConfigSchema, graviteeAdapterConfigSchema, l10nConfigSchema, oidcIssuerMetadataSchema, oidcProviderConfigSchema, rbacConfigSchema, rbacScopeItemsSchema, redirectConfigSchema, redirectsConfigSchema, rootRedoclyConfigSchema, saml2ProviderConfigSchema, seoConfigSchema, ssoOnPremConfigSchema } from './root-config-schema'; | ||
import type { apiConfigSchema, apigeeAdapterAuthOauth2Schema, apigeeAdapterAuthServiceAccountSchema, apigeeEdgeAdapterConfigSchema, apigeeXAdapterConfigSchema, authProviderConfigSchema, devOnboardingAdapterConfigSchema, graviteeAdapterConfigSchema, l10nConfigSchema, oidcIssuerMetadataSchema, oidcProviderConfigSchema, rbacConfigSchema, rbacScopeItemsSchema, redirectConfigSchema, redirectsConfigSchema, rootRedoclyConfigSchema, saml2ProviderConfigSchema, seoConfigSchema, ssoDirectConfigSchema } from './root-config-schema'; | ||
import type { RedocConfigTypes } from './redoc-types'; | ||
@@ -52,3 +52,3 @@ import type { GraphQLConfigTypes } from './graphql-types'; | ||
export type ApigeeAdapterAuthServiceAccount = FromSchema<typeof apigeeAdapterAuthServiceAccountSchema>; | ||
export type SsoConfig = FromSchema<typeof ssoOnPremConfigSchema>; | ||
export type SsoConfig = FromSchema<typeof ssoDirectConfigSchema>; | ||
export type L10nConfig = FromSchema<typeof l10nConfigSchema>; | ||
@@ -55,0 +55,0 @@ type BasicApiConfig = FromSchema<typeof apiConfigSchema>; |
{ | ||
"name": "@redocly/config", | ||
"version": "0.17.1", | ||
"version": "0.18.0", | ||
"license": "MIT", | ||
@@ -5,0 +5,0 @@ "main": "./lib/index.js", |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
7914332
142363