diff --git a/packages/catalog-client/api-report.md b/packages/catalog-client/api-report.md index c2b78aaa90..8a81c0eb10 100644 --- a/packages/catalog-client/api-report.md +++ b/packages/catalog-client/api-report.md @@ -19,6 +19,7 @@ export type AddLocationRequest = { export type AddLocationResponse = { location: Location_2; entities: Entity[]; + exists?: boolean; }; // @public (undocumented) diff --git a/plugins/catalog-backend/api-report.md b/plugins/catalog-backend/api-report.md index 72216ad151..89ef2c09d1 100644 --- a/plugins/catalog-backend/api-report.md +++ b/plugins/catalog-backend/api-report.md @@ -1148,6 +1148,7 @@ export interface LocationService { ): Promise<{ location: Location_2; entities: Entity[]; + exists?: boolean; }>; // (undocumented) deleteLocation(id: string): Promise; diff --git a/plugins/catalog-import/api-report.md b/plugins/catalog-import/api-report.md index 753244b28f..4deb66e01b 100644 --- a/plugins/catalog-import/api-report.md +++ b/plugins/catalog-import/api-report.md @@ -34,6 +34,7 @@ export type AnalyzeResult = type: 'locations'; locations: Array<{ target: string; + exists?: boolean; entities: EntityName[]; }>; } @@ -248,5 +249,5 @@ export const StepPrepareCreatePullRequest: ({ // Warnings were encountered during analysis: // -// src/api/CatalogImportApi.d.ts:14:5 - (ae-forgotten-export) The symbol "PartialEntity" needs to be exported by the entry point index.d.ts +// src/api/CatalogImportApi.d.ts:15:5 - (ae-forgotten-export) The symbol "PartialEntity" needs to be exported by the entry point index.d.ts ```