run api-report

Signed-off-by: Paul Cowan <paul.cowan@cutting.scot>
This commit is contained in:
Paul Cowan
2022-08-17 20:33:58 +01:00
committed by blam
parent d0994dbf00
commit a112a106cc
2 changed files with 31 additions and 1 deletions
+31
View File
@@ -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<TReturnValue, TInputProps>,
): Extension<FieldExtensionComponent<TReturnValue, TInputProps>>;
// 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<GetProps<typeof options>>;
// @public
export type CustomFieldValidator<TFieldReturnValue> = (
data: TFieldReturnValue,
@@ -110,6 +119,16 @@ export type FieldExtensionOptions<
validation?: CustomFieldValidator<TFieldReturnValue>;
};
// 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<P = any> {
// (undocumented)
component: ObjectFieldTemplate<P>;
// (undocumented)
name: string;
}
// @public
export type ListActionsResponse = Array<{
id: string;
@@ -149,6 +168,13 @@ export const NextScaffolderPage: (
props: PropsWithChildren<NextRouterProps>,
) => 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<P = any> = (
c: ObjectFieldTemplateProps<P>,
) => 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;