Update API report

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2021-09-21 13:30:55 +02:00
parent fcab72f3a1
commit 232715679b
3 changed files with 4 additions and 1 deletions
+1
View File
@@ -19,6 +19,7 @@ export type AddLocationRequest = {
export type AddLocationResponse = {
location: Location_2;
entities: Entity[];
exists?: boolean;
};
// @public (undocumented)
+1
View File
@@ -1148,6 +1148,7 @@ export interface LocationService {
): Promise<{
location: Location_2;
entities: Entity[];
exists?: boolean;
}>;
// (undocumented)
deleteLocation(id: string): Promise<void>;
+2 -1
View File
@@ -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
```