Skip to content

Commit

Permalink
chore: fixing api-reprots
Browse files Browse the repository at this point in the history
Signed-off-by: blam <ben@blam.sh>
  • Loading branch information
benjdlambert committed Jun 13, 2023
1 parent 5d695c3 commit 65bff8d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 28 deletions.
50 changes: 25 additions & 25 deletions plugins/scaffolder/api-report.md
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,31 @@ export function makeFieldSchemaFromZod<
: never
>;

// @public
export const MyGroupsPickerFieldExtension: FieldExtensionComponent_2<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;

// @public
export const MyGroupsPickerFieldSchema: FieldSchema<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;

// @public
export const MyGroupsPickerSchema: CustomFieldExtensionSchema_2;

// @public
export type MyGroupsPickerUiOptions =
typeof MyGroupsPickerFieldSchema.uiOptionsType;

// @public
export const OwnedEntityPickerFieldExtension: FieldExtensionComponent_2<
string,
Expand Down Expand Up @@ -292,31 +317,6 @@ export const OwnerPickerFieldSchema: FieldSchema<
// @public
export type OwnerPickerUiOptions = typeof OwnerPickerFieldSchema.uiOptionsType;

// @public
export const OwnershipEntityRefPickerFieldExtension: FieldExtensionComponent_2<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;

// @public
export const OwnershipEntityRefPickerFieldSchema: FieldSchema<
string,
{
title?: string | undefined;
description?: string | undefined;
}
>;

// @public
export const OwnershipEntityRefPickerSchema: CustomFieldExtensionSchema_2;

// @public
export type OwnershipEntityRefPickerUiOptions =
typeof OwnershipEntityRefPickerFieldSchema.uiOptionsType;

// @public
export const repoPickerValidation: (
value: string,
Expand Down
3 changes: 1 addition & 2 deletions plugins/scaffolder/src/extensions/default.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ import {
MyGroupsPicker,
MyGroupsPickerSchema,
} from '../components/fields/MyGroupsPicker/MyGroupsPicker';
import { MyGroupsPickerFieldSchema } from '../components';

export const DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS = [
{
Expand Down Expand Up @@ -81,6 +80,6 @@ export const DEFAULT_SCAFFOLDER_FIELD_EXTENSIONS = [
{
component: MyGroupsPicker,
name: 'MyGroupsPicker',
schema: MyGroupsPickerFieldSchema,
schema: MyGroupsPickerSchema,
},
];
2 changes: 1 addition & 1 deletion plugins/scaffolder/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export {
EntityTagsPickerFieldExtension,
OwnerPickerFieldExtension,
OwnedEntityPickerFieldExtension,
OwnershipEntityRefPickerFieldExtension,
MyGroupsPickerFieldExtension,
RepoUrlPickerFieldExtension,
ScaffolderPage,
scaffolderPlugin,
Expand Down

0 comments on commit 65bff8d

Please sign in to comment.