diff --git a/.changeset/tender-tigers-joke.md b/.changeset/tender-tigers-joke.md index a6541fdf9e..2c7d28c552 100644 --- a/.changeset/tender-tigers-joke.md +++ b/.changeset/tender-tigers-joke.md @@ -1,5 +1,4 @@ --- -'example-app': minor '@backstage/plugin-scaffolder': minor --- diff --git a/plugins/scaffolder/api-report.md b/plugins/scaffolder/api-report.md index 9541098934..3d91316ceb 100644 --- a/plugins/scaffolder/api-report.md +++ b/plugins/scaffolder/api-report.md @@ -20,6 +20,7 @@ import { IdentityApi } from '@backstage/core-plugin-api'; import { JsonObject } from '@backstage/types'; import { JSONSchema7 } from 'json-schema'; import { JsonValue } from '@backstage/types'; +import { ObjectFieldTemplateProps } from '@rjsf/core'; import { Observable } from '@backstage/types'; import { PropsWithChildren } from 'react'; import { default as React_2 } from 'react'; @@ -37,6 +38,14 @@ export function createScaffolderFieldExtension< options: FieldExtensionOptions, ): Extension>; +// Warning: (ae-forgotten-export) The symbol "GetProps" needs to be exported by the entry point index.d.ts +// Warning: (ae-missing-release-tag) "createScaffolderLayout" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export function createScaffolderLayout( + options: LayoutOptions, +): Extension>; + // @public export type CustomFieldValidator = ( data: TFieldReturnValue, @@ -110,6 +119,16 @@ export type FieldExtensionOptions< validation?: CustomFieldValidator; }; +// Warning: (ae-missing-release-tag) "LayoutOptions" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export interface LayoutOptions

{ + // (undocumented) + component: ObjectFieldTemplate

; + // (undocumented) + name: string; +} + // @public export type ListActionsResponse = Array<{ id: string; @@ -149,6 +168,13 @@ export const NextScaffolderPage: ( props: PropsWithChildren, ) => JSX.Element; +// Warning: (ae-missing-release-tag) "ObjectFieldTemplate" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export type ObjectFieldTemplate

= ( + c: ObjectFieldTemplateProps

, +) => JSX.Element; + // @public export const OwnedEntityPickerFieldExtension: FieldExtensionComponent< string, @@ -349,6 +375,11 @@ export interface ScaffolderGetIntegrationsListResponse { }[]; } +// Warning: (ae-missing-release-tag) "ScaffolderLayouts" is exported by the package, but it is missing a release tag (@alpha, @beta, @public, or @internal) +// +// @public (undocumented) +export const ScaffolderLayouts: React.ComponentType; + // @public (undocumented) export type ScaffolderOutputLink = { title?: string;