@redocly/config 0.37.0 → 0.38.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.
@@ -5216,6 +5216,9 @@ export declare const seoConfigSchema: {
5216
5216
  readonly title: {
5217
5217
  readonly type: "string";
5218
5218
  };
5219
+ readonly projectTitle: {
5220
+ readonly type: "string";
5221
+ };
5219
5222
  readonly description: {
5220
5223
  readonly type: "string";
5221
5224
  };
@@ -17768,6 +17771,9 @@ export declare const redoclyConfigSchema: {
17768
17771
  readonly title: {
17769
17772
  readonly type: "string";
17770
17773
  };
17774
+ readonly projectTitle: {
17775
+ readonly type: "string";
17776
+ };
17771
17777
  readonly description: {
17772
17778
  readonly type: "string";
17773
17779
  };
@@ -32204,6 +32210,9 @@ export declare const rootRedoclyConfigSchema: {
32204
32210
  image: {
32205
32211
  type: "string";
32206
32212
  };
32213
+ projectTitle: {
32214
+ type: "string";
32215
+ };
32207
32216
  siteUrl: {
32208
32217
  type: "string";
32209
32218
  };
@@ -46263,6 +46272,9 @@ export declare const rootRedoclyConfigSchema: {
46263
46272
  readonly title: {
46264
46273
  readonly type: "string";
46265
46274
  };
46275
+ readonly projectTitle: {
46276
+ readonly type: "string";
46277
+ };
46266
46278
  readonly description: {
46267
46279
  readonly type: "string";
46268
46280
  };
@@ -197,6 +197,7 @@ exports.seoConfigSchema = {
197
197
  type: 'object',
198
198
  properties: {
199
199
  title: { type: 'string' },
200
+ projectTitle: { type: 'string' },
200
201
  description: { type: 'string' },
201
202
  siteUrl: { type: 'string' },
202
203
  image: { type: 'string' },
@@ -11,7 +11,6 @@ export type UiAccessibleConfig = Pick<RedoclyConfig, 'logo' | 'navbar' | 'produc
11
11
  title: string | undefined;
12
12
  }[];
13
13
  devLogin?: boolean;
14
- loginUrls?: Record<string, string>;
15
14
  };
16
15
  breadcrumbs?: {
17
16
  prefixItems?: ResolvedNavLinkItem[];
@@ -5216,6 +5216,9 @@ export declare const seoConfigSchema: {
5216
5216
  readonly title: {
5217
5217
  readonly type: "string";
5218
5218
  };
5219
+ readonly projectTitle: {
5220
+ readonly type: "string";
5221
+ };
5219
5222
  readonly description: {
5220
5223
  readonly type: "string";
5221
5224
  };
@@ -17768,6 +17771,9 @@ export declare const redoclyConfigSchema: {
17768
17771
  readonly title: {
17769
17772
  readonly type: "string";
17770
17773
  };
17774
+ readonly projectTitle: {
17775
+ readonly type: "string";
17776
+ };
17771
17777
  readonly description: {
17772
17778
  readonly type: "string";
17773
17779
  };
@@ -32204,6 +32210,9 @@ export declare const rootRedoclyConfigSchema: {
32204
32210
  image: {
32205
32211
  type: "string";
32206
32212
  };
32213
+ projectTitle: {
32214
+ type: "string";
32215
+ };
32207
32216
  siteUrl: {
32208
32217
  type: "string";
32209
32218
  };
@@ -46263,6 +46272,9 @@ export declare const rootRedoclyConfigSchema: {
46263
46272
  readonly title: {
46264
46273
  readonly type: "string";
46265
46274
  };
46275
+ readonly projectTitle: {
46276
+ readonly type: "string";
46277
+ };
46266
46278
  readonly description: {
46267
46279
  readonly type: "string";
46268
46280
  };
@@ -194,6 +194,7 @@ export const seoConfigSchema = {
194
194
  type: 'object',
195
195
  properties: {
196
196
  title: { type: 'string' },
197
+ projectTitle: { type: 'string' },
197
198
  description: { type: 'string' },
198
199
  siteUrl: { type: 'string' },
199
200
  image: { type: 'string' },
@@ -11,7 +11,6 @@ export type UiAccessibleConfig = Pick<RedoclyConfig, 'logo' | 'navbar' | 'produc
11
11
  title: string | undefined;
12
12
  }[];
13
13
  devLogin?: boolean;
14
- loginUrls?: Record<string, string>;
15
14
  };
16
15
  breadcrumbs?: {
17
16
  prefixItems?: ResolvedNavLinkItem[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@redocly/config",
3
- "version": "0.37.0",
3
+ "version": "0.38.0",
4
4
  "license": "MIT",
5
5
  "main": "./lib/index.js",
6
6
  "module": "./lib-esm/index.js",