Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@redocly/config

Package Overview
Dependencies
Maintainers
9
Versions
59
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@redocly/config - npm Package Compare versions

Comparing version 0.17.1 to 0.18.0

4

lib-esm/ex-theme-config-schemas.js

@@ -586,4 +586,8 @@ import { redocConfigSchema } from './redoc-config-schema';

},
ignore: {
type: 'array',
items: { type: 'string' },
},
},
};
//# sourceMappingURL=ex-theme-config-schemas.js.map

4

lib-esm/root-config-schema.js

@@ -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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc