update api reports for catalog-node

Signed-off-by: Dharmik <dharmik.gangani17@gmail.com>
This commit is contained in:
Dharmik
2025-10-23 19:55:41 -03:00
parent b4137828b4
commit 8c26af4079
4 changed files with 19 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-catalog-backend': minar
'@backstage/plugin-catalog-node': minar
---
Enable YAML merge keys in yamlPlaceholderResolver
+7
View File
@@ -313,8 +313,15 @@ export function locationSpecToMetadataName(location: LocationSpec_2): string;
export function parseEntityYaml(
data: string | Buffer,
location: LocationSpec_2,
options?: ParseEntityYamlOptions,
): Iterable<CatalogProcessorResult>;
// @public
export interface ParseEntityYamlOptions {
// (undocumented)
enableYamlMerge?: boolean;
}
// @public (undocumented)
export type PlaceholderResolver = (
params: PlaceholderResolverParams,
+1 -1
View File
@@ -24,4 +24,4 @@ export type {
LocationAnalyzer,
ScmLocationAnalyzer,
} from './types';
export { parseEntityYaml } from './parse';
export { parseEntityYaml, type ParseEntityYamlOptions } from './parse';
@@ -21,6 +21,11 @@ import { LocationSpec } from '@backstage/plugin-catalog-common';
import { CatalogProcessorResult } from '../api/processor';
import { processingResult } from '../api/processingResult';
/**
* Options for parsing entity YAML files.
*
* @public
*/
export interface ParseEntityYamlOptions {
enableYamlMerge?: boolean;
}