diff --git a/plugins/scaffolder/api-report.md b/plugins/scaffolder/api-report.md index 59d2d54fcc..a776628da5 100644 --- a/plugins/scaffolder/api-report.md +++ b/plugins/scaffolder/api-report.md @@ -241,6 +241,24 @@ export const OwnedEntityPickerFieldExtension: FieldExtensionComponent_2< defaultKind?: string | undefined; allowArbitraryValues?: boolean | undefined; defaultNamespace?: string | false | undefined; + catalogFilter?: + | Record< + string, + | string + | string[] + | { + exists?: boolean | undefined; + } + > + | Record< + string, + | string + | string[] + | { + exists?: boolean | undefined; + } + >[] + | undefined; } >; @@ -252,6 +270,24 @@ export const OwnedEntityPickerFieldSchema: FieldSchema< defaultKind?: string | undefined; allowArbitraryValues?: boolean | undefined; defaultNamespace?: string | false | undefined; + catalogFilter?: + | Record< + string, + | string + | string[] + | { + exists?: boolean | undefined; + } + > + | Record< + string, + | string + | string[] + | { + exists?: boolean | undefined; + } + >[] + | undefined; } >;