diff --git a/packages/cli/cli-report.md b/packages/cli/cli-report.md index b8f9c468e9..2eb9bb8dea 100644 --- a/packages/cli/cli-report.md +++ b/packages/cli/cli-report.md @@ -38,16 +38,6 @@ Options: -h, --help ``` -### `backstage-cli config:docs` - -``` -Usage: backstage-cli config:docs [options] - -Options: - --package - -h, --help -``` - ### `backstage-cli config:check` ``` @@ -63,6 +53,16 @@ Options: -h, --help ``` +### `backstage-cli config:docs` + +``` +Usage: backstage-cli config:docs [options] + +Options: + --package + -h, --help +``` + ### `backstage-cli config:print` ``` diff --git a/packages/core-components/report-alpha.api.md b/packages/core-components/report-alpha.api.md index 0c4b6c0030..ea44f92093 100644 --- a/packages/core-components/report-alpha.api.md +++ b/packages/core-components/report-alpha.api.md @@ -16,33 +16,33 @@ export const coreComponentsTranslationRef: TranslationRef< readonly 'signIn.customProvider.title': 'Custom User'; readonly 'signIn.customProvider.subtitle': 'Enter your own User ID and credentials.\n This selection will not be stored.'; readonly 'signIn.customProvider.userId': 'User ID'; - readonly 'signIn.customProvider.idToken': 'ID Token (optional)'; readonly 'signIn.customProvider.tokenInvalid': 'Token is not a valid OpenID Connect JWT Token'; readonly 'signIn.customProvider.continue': 'Continue'; + readonly 'signIn.customProvider.idToken': 'ID Token (optional)'; readonly 'signIn.guestProvider.title': 'Guest'; - readonly 'signIn.guestProvider.subtitle': 'Enter as a Guest User.\n You will not have a verified identity, meaning some features might be unavailable.'; readonly 'signIn.guestProvider.enter': 'Enter'; - readonly 'emptyState.missingAnnotation.title': 'Missing Annotation'; - readonly 'emptyState.missingAnnotation.actionTitle': 'Add the annotation to your component YAML as shown in the highlighted example below:'; - readonly 'emptyState.missingAnnotation.readMore': 'Read more'; + readonly 'signIn.guestProvider.subtitle': 'Enter as a Guest User.\n You will not have a verified identity, meaning some features might be unavailable.'; + readonly skipToContent: 'Skip to content'; + readonly 'copyTextButton.tooltipText': 'Text copied to clipboard'; + readonly 'simpleStepper.finish': 'Finish'; + readonly 'simpleStepper.reset': 'Reset'; + readonly 'simpleStepper.next': 'Next'; + readonly 'simpleStepper.skip': 'Skip'; + readonly 'simpleStepper.back': 'Back'; readonly 'errorPage.title': 'Looks like someone dropped the mic!'; readonly 'errorPage.subtitle': 'ERROR {{status}}: {{statusMessage}}'; readonly 'errorPage.goBack': 'Go back'; readonly 'errorPage.showMoreDetails': 'Show more details'; readonly 'errorPage.showLessDetails': 'Show less details'; - readonly skipToContent: 'Skip to content'; - readonly 'copyTextButton.tooltipText': 'Text copied to clipboard'; - readonly 'simpleStepper.reset': 'Reset'; - readonly 'simpleStepper.finish': 'Finish'; - readonly 'simpleStepper.next': 'Next'; - readonly 'simpleStepper.skip': 'Skip'; - readonly 'simpleStepper.back': 'Back'; + readonly 'emptyState.missingAnnotation.title': 'Missing Annotation'; + readonly 'emptyState.missingAnnotation.actionTitle': 'Add the annotation to your component YAML as shown in the highlighted example below:'; + readonly 'emptyState.missingAnnotation.readMore': 'Read more'; readonly 'supportConfig.default.title': 'Support Not Configured'; readonly 'supportConfig.default.linkTitle': 'Add `app.support` config key'; readonly 'errorBoundary.title': 'Please contact {{slackChannel}} for help.'; readonly 'oauthRequestDialog.title': 'Login Required'; - readonly 'oauthRequestDialog.login': 'Log in'; readonly 'oauthRequestDialog.authRedirectTitle': 'This will trigger a http redirect to OAuth Login.'; + readonly 'oauthRequestDialog.login': 'Log in'; readonly 'oauthRequestDialog.rejectAll': 'Reject All'; readonly 'supportButton.title': 'Support'; readonly 'supportButton.close': 'Close'; diff --git a/plugins/auth-backend/report.api.md b/plugins/auth-backend/report.api.md index 2698545e11..80976525d3 100644 --- a/plugins/auth-backend/report.api.md +++ b/plugins/auth-backend/report.api.md @@ -533,8 +533,8 @@ export const providers: Readonly<{ resolvers: Readonly<{ emailMatchingUserEntityProfileEmail: () => SignInResolver_2; emailLocalPartMatchingUserEntityName: () => SignInResolver_2; - emailMatchingUserEntityAnnotation: () => SignInResolver_2; userIdMatchingUserEntityAnnotation: () => SignInResolver_2; + emailMatchingUserEntityAnnotation: () => SignInResolver_2; }>; }>; oauth2: Readonly<{ diff --git a/plugins/catalog-graph/report-alpha.api.md b/plugins/catalog-graph/report-alpha.api.md index de6d8cf4a4..944fa203f1 100644 --- a/plugins/catalog-graph/report-alpha.api.md +++ b/plugins/catalog-graph/report-alpha.api.md @@ -45,17 +45,17 @@ const _default: FrontendPlugin< filter: string | undefined; }; configInput: { - direction?: Direction | undefined; height?: number | undefined; - zoom?: 'disabled' | 'enabled' | 'enable-on-click' | undefined; + curve?: 'curveStepBefore' | 'curveMonotoneX' | undefined; + direction?: Direction | undefined; title?: string | undefined; + zoom?: 'disabled' | 'enabled' | 'enable-on-click' | undefined; + relations?: string[] | undefined; maxDepth?: number | undefined; + kinds?: string[] | undefined; unidirectional?: boolean | undefined; mergeRelations?: boolean | undefined; - kinds?: string[] | undefined; - relations?: string[] | undefined; relationPairs?: [string, string][] | undefined; - curve?: 'curveStepBefore' | 'curveMonotoneX' | undefined; } & { filter?: string | undefined; }; @@ -114,18 +114,18 @@ const _default: FrontendPlugin< path: string | undefined; }; configInput: { + curve?: 'curveStepBefore' | 'curveMonotoneX' | undefined; direction?: Direction | undefined; zoom?: 'disabled' | 'enabled' | 'enable-on-click' | undefined; + relations?: string[] | undefined; + rootEntityRefs?: string[] | undefined; maxDepth?: number | undefined; + kinds?: string[] | undefined; unidirectional?: boolean | undefined; mergeRelations?: boolean | undefined; - kinds?: string[] | undefined; - relations?: string[] | undefined; relationPairs?: [string, string][] | undefined; - curve?: 'curveStepBefore' | 'curveMonotoneX' | undefined; - selectedKinds?: string[] | undefined; selectedRelations?: string[] | undefined; - rootEntityRefs?: string[] | undefined; + selectedKinds?: string[] | undefined; showFilters?: boolean | undefined; } & { path?: string | undefined; diff --git a/plugins/devtools/report-alpha.api.md b/plugins/devtools/report-alpha.api.md index 75918d1769..aa1806277e 100644 --- a/plugins/devtools/report-alpha.api.md +++ b/plugins/devtools/report-alpha.api.md @@ -80,7 +80,7 @@ const _default: FrontendPlugin< >; inputs: {}; params: { - title: string /** @alpha */; + title: string; icon: IconComponent; routeRef: RouteRef; }; diff --git a/plugins/home/report.api.md b/plugins/home/report.api.md index 5151ca0815..985aed50ca 100644 --- a/plugins/home/report.api.md +++ b/plugins/home/report.api.md @@ -354,7 +354,7 @@ export type WelcomeTitleLanguageProps = { // src/plugin.d.ts:5:22 - (ae-undocumented) Missing documentation for "homePlugin". // src/plugin.d.ts:9:22 - (ae-undocumented) Missing documentation for "HomepageCompositionRoot". // src/plugin.d.ts:14:22 - (ae-undocumented) Missing documentation for "ComponentAccordion". -// src/plugin.d.ts:23:22 - (ae-undocumented) Missing documentation for "ComponentTabs". -// src/plugin.d.ts:31:22 - (ae-undocumented) Missing documentation for "ComponentTab". -// src/plugin.d.ts:52:22 - (ae-undocumented) Missing documentation for "HomePageRandomJoke". +// src/plugin.d.ts:24:22 - (ae-undocumented) Missing documentation for "ComponentTabs". +// src/plugin.d.ts:32:22 - (ae-undocumented) Missing documentation for "ComponentTab". +// src/plugin.d.ts:53:22 - (ae-undocumented) Missing documentation for "HomePageRandomJoke". ```