Skip to content

Commit

Permalink
chore: rebuild api reports
Browse files Browse the repository at this point in the history
  • Loading branch information
mareklibra committed Dec 19, 2024
1 parent c4e7611 commit b2797f4
Show file tree
Hide file tree
Showing 5 changed files with 171 additions and 173 deletions.
66 changes: 32 additions & 34 deletions workspaces/homepage/plugins/dynamic-home-page/report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import { BackstagePlugin } from '@backstage/core-plugin-api';
import { FeaturedDocsCardProps } from '@backstage/plugin-home';
import { default as React_2 } from 'react';
Expand All @@ -17,18 +18,14 @@ export const CatalogStarredEntitiesCard: React_2.ComponentType<StarredEntitiesPr
export const DynamicHomePage: React_2.ComponentType<DynamicHomePageProps>;

// @public
export const dynamicHomePagePlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
},
{},
{}
>;
export const dynamicHomePagePlugin: BackstagePlugin< {
root: RouteRef<undefined>;
}, {}, {}>;

// @public (undocumented)
export interface DynamicHomePageProps {
// (undocumented)
title?: string;
// (undocumented)
title?: string;
}

// @public (undocumented)
Expand All @@ -39,15 +36,15 @@ export const Headline: React_2.ComponentType<HeadlineProps>;

// @public (undocumented)
export interface HeadlineProps {
// (undocumented)
align?: 'left' | 'center' | 'right';
// (undocumented)
title?: string;
// (undocumented)
align?: 'left' | 'center' | 'right';
// (undocumented)
title?: string;
}

// @public (undocumented)
export const JokeCard: React_2.ComponentType<{
defaultCategory?: 'any' | 'programming';
defaultCategory?: 'any' | 'programming';
}>;

// @public (undocumented)
Expand All @@ -58,40 +55,40 @@ export const MarkdownCard: React_2.ComponentType<MarkdownCardProps>;

// @public (undocumented)
export interface MarkdownCardProps {
// (undocumented)
content?: string;
// (undocumented)
title?: string;
// (undocumented)
content?: string;
// (undocumented)
title?: string;
}

// @public (undocumented)
export interface MarkdownProps {
// (undocumented)
content?: string;
// (undocumented)
title?: string;
// (undocumented)
content?: string;
// (undocumented)
title?: string;
}

// @public (undocumented)
export const Placeholder: React_2.ComponentType<PlaceholderProps>;

// @public (undocumented)
export interface PlaceholderProps {
// (undocumented)
debugContent?: string;
// (undocumented)
showBorder?: boolean;
// (undocumented)
debugContent?: string;
// (undocumented)
showBorder?: boolean;
}

// @public (undocumented)
export const QuickAccessCard: React_2.ComponentType<QuickAccessCardProps>;

// @public (undocumented)
export interface QuickAccessCardProps {
// (undocumented)
path?: string;
// (undocumented)
title?: string;
// (undocumented)
path?: string;
// (undocumented)
title?: string;
}

// @public (undocumented)
Expand All @@ -102,15 +99,16 @@ export const SearchBar: React_2.ComponentType<SearchBarProps>;

// @public (undocumented)
export interface SearchBarProps {
// (undocumented)
path?: string;
// (undocumented)
queryParam?: string;
// (undocumented)
path?: string;
// (undocumented)
queryParam?: string;
}

// @public (undocumented)
export const TopVisitedCard: React_2.ComponentType<VisitedByTypeProps>;

// @public (undocumented)
export const VisitListener: () => React_2.JSX.Element | null;

```
54 changes: 28 additions & 26 deletions workspaces/marketplace/plugins/marketplace-common/report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,50 +3,52 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

import { Entity } from '@backstage/catalog-model';
import { JsonObject } from '@backstage/types';

// @public (undocumented)
export const MARKETPLACE_API_VERSION = 'marketplace.backstage.io/v1alpha1';
export const MARKETPLACE_API_VERSION = "marketplace.backstage.io/v1alpha1";

// @public (undocumented)
export enum MarketplaceKinds {
// (undocumented)
plugin = 'Plugin',
// (undocumented)
pluginList = 'PluginList',
// (undocumented)
plugin = "Plugin",
// (undocumented)
pluginList = "PluginList"
}

// @public (undocumented)
export interface MarketplacePluginEntry extends Entity {
// (undocumented)
spec?: MarketplacePluginSpec;
// (undocumented)
spec?: MarketplacePluginSpec;
}

// @public (undocumented)
export interface MarketplacePluginList {
// (undocumented)
spec?: {
plugins: string[];
} & MarketplacePluginSpec;
// (undocumented)
spec?: {
plugins: string[];
} & MarketplacePluginSpec;
}

// @public (undocumented)
export interface MarketplacePluginSpec extends JsonObject {
// (undocumented)
categories?: string[];
// (undocumented)
description?: string;
// (undocumented)
developer?: string;
// (undocumented)
highlights?: string[];
// (undocumented)
icon?: string;
// (undocumented)
installation?: {
markdown?: string;
appconfig?: string;
};
// (undocumented)
categories?: string[];
// (undocumented)
description?: string;
// (undocumented)
developer?: string;
// (undocumented)
highlights?: string[];
// (undocumented)
icon?: string;
// (undocumented)
installation?: {
markdown?: string;
appconfig?: string;
};
}

```
12 changes: 5 additions & 7 deletions workspaces/marketplace/plugins/marketplace/report.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
```ts

/// <reference types="react" />

import { BackstagePlugin } from '@backstage/core-plugin-api';
Expand All @@ -20,13 +21,10 @@ export const MarketplaceIcon: IconComponent;
export const MarketplacePage: () => JSX_2.Element;

// @public
export const marketplacePlugin: BackstagePlugin<
{
root: RouteRef<undefined>;
},
{},
{}
>;
export const marketplacePlugin: BackstagePlugin< {
root: RouteRef<undefined>;
}, {}, {}>;

// (No @packageDocumentation comment for this package)

```
Loading

0 comments on commit b2797f4

Please sign in to comment.