Merge pull request #7181 from backstage/rugvip/descriptions

Add package descriptions + separate table for plugins in API reference
This commit is contained in:
Patrik Oldsberg
2021-09-15 17:25:27 +02:00
committed by GitHub
248 changed files with 710 additions and 198 deletions
-2
View File
@@ -574,6 +574,4 @@ export function useHotCleanup(
// @public
export function useHotMemoize<T>(_module: NodeModule, valueFactory: () => T): T;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Common functionality library for Backstage backends
*
* @packageDocumentation
*/
export * from './cache';
export * from './config';
export * from './database';
@@ -27,6 +27,4 @@ export class TestDatabases {
// (undocumented)
supports(id: TestDatabaseId): boolean;
}
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* Test helpers library for Backstage backends
*
* @packageDocumentation
*/
export * from './database';
export * from './util';
-2
View File
@@ -140,6 +140,4 @@ export type DiscoveryApi = {
// @public
export const ENTITY_STATUS_CATALOG_PROCESSING_TYPE =
'backstage.io/catalog-processing';
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/catalog-client",
"description": "An isomorphic client for the catalog backend",
"version": "0.3.19",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* An isomorphic client for the catalog backend
*
* @packageDocumentation
*/
export { CatalogClient } from './CatalogClient';
export * from './types';
+3 -6
View File
@@ -278,10 +278,9 @@ export { GroupEntityV1alpha1 };
export const groupEntityV1alpha1Validator: KindValidator;
// @public (undocumented)
export type JSONSchema = JSONSchema7 &
{
[key in string]?: JsonValue;
};
export type JSONSchema = JSONSchema7 & {
[key in string]?: JsonValue;
};
// @public
export type KindValidator = {
@@ -613,6 +612,4 @@ export const VIEW_URL_ANNOTATION = 'backstage.io/view-url';
// Warnings were encountered during analysis:
//
// src/entity/Entity.d.ts:38:5 - (ae-incompatible-release-tags) The symbol "status" is marked as @public, but its signature references "UNSTABLE_EntityStatus" which is marked as @alpha
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/catalog-model",
"description": "Types and validators that help describe the model of a Backstage Catalog",
"version": "0.9.2",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Types and validators that help describe the model of a Backstage Catalog
*
* @packageDocumentation
*/
export * from './entity';
export { EntityPolicies } from './EntityPolicies';
export * from './kinds';
-2
View File
@@ -23,6 +23,4 @@ export type Paths = {
// @public (undocumented)
export type ResolveFunc = (...paths: string[]) => string;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Common functionality used by cli, backend, and create-app
*
* @packageDocumentation
*/
export { findPaths } from './paths';
export { isChildPath } from './isChildPath';
export type { Paths, ResolveFunc } from './paths';
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* CLI for developing Backstage plugins and apps
*
* @packageDocumentation
*/
import program from 'commander';
import chalk from 'chalk';
import { exitWithError } from './lib/errors';
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A collection of codemods for Backstage projects
*
* @packageDocumentation
*/
import program from 'commander';
import chalk from 'chalk';
import { codemods } from './codemods';
-2
View File
@@ -73,6 +73,4 @@ export type TransformFunc<T extends number | string | boolean> = (
visibility: ConfigVisibility;
},
) => T | undefined;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Config loading functionality used by Backstage backend, and CLI
*
* @packageDocumentation
*/
export { readEnvConfig, loadConfigSchema, mergeConfigSchemas } from './lib';
export type {
ConfigSchema,
-2
View File
@@ -90,6 +90,4 @@ export type JsonPrimitive = number | string | boolean | null;
// @public
export type JsonValue = JsonObject | JsonArray | JsonPrimitive;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Config API used by Backstage core, backend, and CLI
*
* @packageDocumentation
*/
export { ConfigReader } from './reader';
export type {
AppConfig,
+3 -6
View File
@@ -187,10 +187,9 @@ export type AppContext = {
// @public (undocumented)
export type AppOptions = {
apis?: Iterable<AnyApiFactory>;
icons?: Partial<AppIcons> &
{
[key in string]: IconComponent;
};
icons?: Partial<AppIcons> & {
[key in string]: IconComponent;
};
plugins?: BackstagePluginWithAnyOutput[];
components?: Partial<AppComponents>;
themes?: AppTheme[];
@@ -643,6 +642,4 @@ export class WebStorage implements StorageApi {
// src/apis/system/ApiProvider.d.ts:9:5 - (ae-forgotten-export) The symbol "ApiProviderProps" needs to be exported by the entry point index.d.ts
// src/app/types.d.ts:88:5 - (ae-forgotten-export) The symbol "UnknownPluginOutput" needs to be exported by the entry point index.d.ts
// src/app/types.d.ts:99:5 - (ae-forgotten-export) The symbol "AppIcons" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Core app API used by Backstage apps
*
* @packageDocumentation
*/
export * from './apis';
export * from './app';
export * from './routing';
-2
View File
@@ -1983,6 +1983,4 @@ export function WarningPanel(props: WarningProps): JSX.Element;
// src/components/TabbedLayout/RoutedTabs.d.ts:9:5 - (ae-forgotten-export) The symbol "SubRoute" needs to be exported by the entry point index.d.ts
// src/components/Table/Table.d.ts:15:5 - (ae-forgotten-export) The symbol "SelectedFilters" needs to be exported by the entry point index.d.ts
// src/layout/ErrorBoundary/ErrorBoundary.d.ts:7:5 - (ae-forgotten-export) The symbol "SlackChannel" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Core components used by Backstage plugins and apps
*
* @packageDocumentation
*/
export * from './components';
export * from './hooks';
export * from './icons';
-2
View File
@@ -903,6 +903,4 @@ export function withApis<T>(apis: TypesToApiRefs<T>): <P extends T>(
// src/extensions/extensions.d.ts:14:5 - (ae-forgotten-export) The symbol "ComponentLoader" needs to be exported by the entry point index.d.ts
// src/routing/RouteRef.d.ts:34:5 - (ae-forgotten-export) The symbol "OldIconComponent" needs to be exported by the entry point index.d.ts
// src/routing/types.d.ts:30:5 - (ae-forgotten-export) The symbol "ParamKeys" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Core API used by Backstage plugins
*
* @packageDocumentation
*/
export * from './apis';
export * from './app';
export * from './extensions';
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@backstage/create-app",
"description": "Create app package for Backstage",
"description": "A CLI that helps you create your own Backstage app",
"version": "0.3.40",
"private": false,
"publishConfig": {
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A CLI that helps you create your own Backstage app
*
* @packageDocumentation
*/
import program from 'commander';
import { exitWithError } from './lib/errors';
import { version } from '../package.json';
-2
View File
@@ -51,6 +51,4 @@ export const EntityGridItem: ({
}: Omit<GridProps<'div', {}>, 'container' | 'item'> & {
entity: Entity;
}) => JSX.Element;
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* Utilities for developing Backstage plugins.
*
* @packageDocumentation
*/
export * from './components';
export * from './devApp';
-2
View File
@@ -79,6 +79,4 @@ export function serializeError(
includeStack?: boolean;
},
): SerializedError;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/errors",
"description": "Common utilities for error handling within Backstage",
"version": "0.1.2",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* Common utilities for error handling within Backstage
*
* @packageDocumentation
*/
export * from './errors';
export * from './serialization';
-2
View File
@@ -30,6 +30,4 @@ export class ScmIntegrationsApi {
//
// @public (undocumented)
export const scmIntegrationsApiRef: ApiRef<ScmIntegrationRegistry>;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/integration-react",
"description": "Frontend package for managing integrations towards external systems",
"version": "0.1.8",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* Frontend package for managing integrations towards external systems
*
* @packageDocumentation
*/
export * from './api';
export * from './components';
-2
View File
@@ -537,6 +537,4 @@ export interface ScmIntegrationsGroup<T extends ScmIntegration> {
// src/github/config.d.ts:41:5 - (ae-forgotten-export) The symbol "GithubAppConfig" needs to be exported by the entry point index.d.ts
// src/gitlab/config.d.ts:27:68 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
// src/gitlab/config.d.ts:27:63 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/integration",
"description": "Helpers for managing integrations towards external systems",
"version": "0.6.3",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* Helpers for managing integrations towards external systems
*
* @packageDocumentation
*/
export * from './azure';
export * from './bitbucket';
export * from './github';
-2
View File
@@ -81,6 +81,4 @@ export interface SearchResultSet {
// (undocumented)
results: SearchResult[];
}
// (No @packageDocumentation comment for this package)
```
+7
View File
@@ -13,4 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Common functionalities for Search, to be shared between various search-enabled plugins
*
* @packageDocumentation
*/
export * from './types';
-2
View File
@@ -321,6 +321,4 @@ export class UrlPreparer implements PreparerBase {
// src/stages/prepare/types.d.ts:19:8 - (tsdoc-param-tag-with-invalid-name) The @param block should be followed by a valid parameter name: The identifier cannot non-word characters
// src/stages/prepare/types.d.ts:21:33 - (tsdoc-escape-right-brace) The "}" character should be escaped using a backslash to avoid confusion with a TSDoc inline tag
// src/stages/prepare/types.d.ts:21:16 - (tsdoc-malformed-inline-tag) Expecting a TSDoc tag starting with "{@"
// (No @packageDocumentation comment for this package)
```
+7
View File
@@ -13,6 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Common functionalities for TechDocs, to be shared between techdocs-backend plugin and techdocs-cli
*
* @packageDocumentation
*/
export * from './stages';
export * from './helpers';
export * from './techdocsTypes';
-2
View File
@@ -112,6 +112,4 @@ export function withLogCollector<T extends LogFuncs>(
logsToCollect: T[],
callback: SyncLogCollector,
): CollectedLogs<T>;
// (No @packageDocumentation comment for this package)
```
+7
View File
@@ -13,4 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Utilities to test Backstage core
*
* @packageDocumentation
*/
export * from './testUtils';
-2
View File
@@ -100,6 +100,4 @@ export function wrapInTestApp(
): ReactElement;
export * from '@backstage/test-utils-core';
// (No @packageDocumentation comment for this package)
```
+7
View File
@@ -13,5 +13,12 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* Utilities to test Backstage plugins and apps.
*
* @packageDocumentation
*/
export * from './testUtils';
export * from '@backstage/test-utils-core';
-2
View File
@@ -116,6 +116,4 @@ export type SimpleThemeOptions = {
pageTheme?: Record<string, PageTheme>;
fontFamily?: string;
};
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* material-ui theme for use with Backstage.
*
* @packageDocumentation
*/
export * from './themes';
export * from './baseTheme';
export * from './types';
-2
View File
@@ -45,6 +45,4 @@ export type VersionedValue<
version: Version,
): Versions[Version] | undefined;
};
// (No @packageDocumentation comment for this package)
```
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* Utilities used by Backstage packages to support multiple concurrent versions
*
* @packageDocumentation
*/
export * from './lib';
-2
View File
@@ -22,6 +22,4 @@ export const allurePlugin: BackstagePlugin<
//
// @public (undocumented)
export const EntityAllureReportContent: () => JSX.Element;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-allure",
"description": "A Backstage plugin that integrates with Allure",
"version": "0.1.1",
"main": "src/index.ts",
"types": "src/index.ts",
+7
View File
@@ -13,4 +13,11 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* A Backstage plugin that integrates with Allure
*
* @packageDocumentation
*/
export { allurePlugin, EntityAllureReportContent } from './plugin';
-2
View File
@@ -183,6 +183,4 @@ export const ProvidedApisCard: ({ variant }: Props_4) => JSX.Element;
//
// @public (undocumented)
export const ProvidingComponentsCard: ({ variant }: Props_7) => JSX.Element;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-api-docs",
"description": "A Backstage plugin that helps represent API entities in the frontend",
"version": "0.6.7",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage plugin that helps represent API entities in the frontend
*
* @packageDocumentation
*/
export * from './components';
export { apiDocsConfigRef } from './config';
export {
-2
View File
@@ -24,6 +24,4 @@ export interface RouterOptions {
logger: Logger_2;
staticFallbackHandler?: express.Handler;
}
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-app-backend",
"description": "A Backstage backend plugin that serves the Backstage frontend app",
"version": "0.3.16",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* A Backstage backend plugin that serves the Backstage frontend app
*
* @packageDocumentation
*/
export * from './service/router';
-2
View File
@@ -473,6 +473,4 @@ export type WebMessageResponse =
// src/providers/types.d.ts:109:5 - (ae-forgotten-export) The symbol "AuthProviderConfig" needs to be exported by the entry point index.d.ts
// src/providers/types.d.ts:115:5 - (ae-forgotten-export) The symbol "ExperimentalIdentityResolver" needs to be exported by the entry point index.d.ts
// src/providers/types.d.ts:132:8 - (tsdoc-missing-deprecation-message) The @deprecated block must include a deprecation message, e.g. describing the recommended alternative
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-auth-backend",
"description": "A Backstage backend plugin that handles authentication",
"version": "0.3.24",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage backend plugin that handles authentication
*
* @packageDocumentation
*/
export * from './service/router';
export { IdentityClient } from './identity';
export type { TokenIssuer } from './identity';
-2
View File
@@ -139,6 +139,4 @@ export interface RouterOptions {
// (undocumented)
discovery: PluginEndpointDiscovery;
}
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-badges-backend",
"description": "A Backstage backend plugin that generates README badges for your entities",
"version": "0.1.9",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage backend plugin that generates README badges for your entities
*
* @packageDocumentation
*/
export * from './badges';
export * from './lib';
export * from './service/router';
-2
View File
@@ -22,6 +22,4 @@ export const EntityBadgesDialog: ({
open: boolean;
onClose?: (() => any) | undefined;
}) => JSX.Element;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-badges",
"description": "A Backstage plugin that generates README badges for your entities",
"version": "0.2.8",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* A Backstage plugin that generates README badges for your entities
*
* @packageDocumentation
*/
export * from './plugin';
-2
View File
@@ -22,6 +22,4 @@ export const EntityBitriseContent: () => JSX.Element;
//
// @public (undocumented)
export const isBitriseAvailable: (entity: Entity) => boolean;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-bitrise",
"description": "A Backstage plugin that integrates towards Bitrise",
"version": "0.1.11",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage plugin that integrates towards Bitrise
*
* @packageDocumentation
*/
export { bitrisePlugin } from './plugin';
export { EntityBitriseContent } from './extensions';
export { isBitriseAvailable } from './components/BitriseBuildsComponent';
@@ -259,6 +259,4 @@ export type UserTransformer = (
//
// src/ldap/vendors.d.ts:17:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// src/ldap/vendors.d.ts:18:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// (No @packageDocumentation comment for this package)
```
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-ldap",
"description": "A Backstage catalog backend modules that helps integrate towards LDAP",
"version": "0.3.0",
"main": "src/index.ts",
"types": "src/index.ts",
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* A Backstage catalog backend modules that helps integrate towards LDAP
*
* @packageDocumentation
*/
export * from './processors';
export * from './ldap';
@@ -195,6 +195,4 @@ export type UserTransformer = (
// Warnings were encountered during analysis:
//
// src/microsoftGraph/config.d.ts:28:8 - (tsdoc-undefined-tag) The TSDoc tag "@visibility" is not defined in this configuration
// (No @packageDocumentation comment for this package)
```
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend-module-msgraph",
"description": "A Backstage catalog backend modules that helps integrate towards Microsoft Graph",
"version": "0.2.3",
"main": "src/index.ts",
"types": "src/index.ts",
@@ -14,5 +14,11 @@
* limitations under the License.
*/
/**
* A Backstage catalog backend modules that helps integrate towards Microsoft Graph
*
* @packageDocumentation
*/
export * from './processors';
export * from './microsoftGraph';
-2
View File
@@ -1466,6 +1466,4 @@ export class UrlReaderProcessor implements CatalogProcessor {
// src/ingestion/processors/types.d.ts:58:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// src/ingestion/types.d.ts:17:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// src/ingestion/types.d.ts:41:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-backend",
"description": "The Backstage backend plugin that provides the Backstage catalog",
"version": "0.13.7",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* The Backstage backend plugin that provides the Backstage catalog
*
* @packageDocumentation
*/
export * from './catalog';
export * from './database';
export * from './ingestion';
-2
View File
@@ -21,6 +21,4 @@ export interface ModuleOptions {
// (undocumented)
logger: Logger_2;
}
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-graphql",
"description": "An experimental Backstage catalog GraphQL module",
"version": "0.2.12",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* An experimental Backstage catalog GraphQL module
*
* @packageDocumentation
*/
export * from './graphql/module';
-2
View File
@@ -237,6 +237,4 @@ export const StepPrepareCreatePullRequest: ({
// Warnings were encountered during analysis:
//
// src/api/CatalogImportApi.d.ts:14:5 - (ae-forgotten-export) The symbol "PartialEntity" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-import",
"description": "A Backstage plugin the helps you import entities into your catalog",
"version": "0.5.20",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage plugin the helps you import entities into your catalog
*
* @packageDocumentation
*/
export {
catalogImportPlugin,
catalogImportPlugin as plugin,
-2
View File
@@ -882,6 +882,4 @@ export const useStarredEntities: () => {
// src/types.d.ts:16:8 - (tsdoc-param-tag-missing-hyphen) The @param block should be followed by a parameter name and then a hyphen
// src/types.d.ts:22:68 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
// src/types.d.ts:22:88 - (tsdoc-escape-greater-than) The ">" character should be escaped using a backslash to avoid confusion with an HTML tag
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog-react",
"description": "A frontend library that helps other Backstage plugins interact with the catalog",
"version": "0.4.5",
"main": "src/index.ts",
"types": "src/index.ts",
+7
View File
@@ -13,6 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* A frontend library that helps other Backstage plugins interact with the catalog
*
* @packageDocumentation
*/
export type { CatalogApi } from '@backstage/catalog-client';
export { CATALOG_FILTER_EXISTS } from '@backstage/catalog-client';
export { catalogApiRef } from './api';
-2
View File
@@ -416,6 +416,4 @@ export const Router: ({
// src/components/EntityLayout/EntityLayout.d.ts:44:5 - (ae-forgotten-export) The symbol "SubRoute" needs to be exported by the entry point index.d.ts
// src/components/EntityPageLayout/EntityPageLayout.d.ts:17:5 - (ae-forgotten-export) The symbol "EntityPageLayoutProps" needs to be exported by the entry point index.d.ts
// src/plugin.d.ts:22:5 - (ae-forgotten-export) The symbol "ColumnBreakpoints" needs to be exported by the entry point index.d.ts
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-catalog",
"description": "The Backstage plugin for browsing the Backstage catalog",
"version": "0.6.14",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* The Backstage plugin for browsing the Backstage catalog
*
* @packageDocumentation
*/
export { CatalogClientWrapper } from './CatalogClientWrapper';
export * from './components/AboutCard';
export * from './components/CatalogKindHeader';
-2
View File
@@ -103,6 +103,4 @@ export { isCircleCIAvailable as isPluginApplicableToEntity };
//
// @public (undocumented)
export const Router: (_props: Props) => JSX.Element;
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-circleci",
"description": "A Backstage plugin that integrates towards Circle CI",
"version": "0.2.22",
"main": "src/index.ts",
"types": "src/index.ts",
+6
View File
@@ -14,6 +14,12 @@
* limitations under the License.
*/
/**
* A Backstage plugin that integrates towards Circle CI
*
* @packageDocumentation
*/
export {
circleCIPlugin,
circleCIPlugin as plugin,
-2
View File
@@ -361,6 +361,4 @@ export interface Volume {
// (undocumented)
path: string;
}
// (No @packageDocumentation comment for this package)
```
+1
View File
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-cloudbuild",
"description": "A Backstage plugin that integrates towards Google Cloud Build",
"version": "0.2.22",
"main": "src/index.ts",
"types": "src/index.ts",
+7
View File
@@ -13,6 +13,13 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* A Backstage plugin that integrates towards Google Cloud Build
*
* @packageDocumentation
*/
export {
cloudbuildPlugin,
cloudbuildPlugin as plugin,
@@ -43,6 +43,4 @@ export interface RouterOptions {
// (undocumented)
urlReader: UrlReader;
}
// (No @packageDocumentation comment for this package)
```
@@ -1,5 +1,6 @@
{
"name": "@backstage/plugin-code-coverage-backend",
"description": "A Backstage backend plugin that helps you keep track of your code coverage",
"version": "0.1.10",
"main": "src/index.ts",
"types": "src/index.ts",
@@ -14,4 +14,10 @@
* limitations under the License.
*/
/**
* A Backstage backend plugin that helps you keep track of your code coverage
*
* @packageDocumentation
*/
export * from './service/router';

Some files were not shown because too many files have changed in this diff Show More