From 7e8a7c8aee46c04c71f7201b9abeb5ad635ebc47 Mon Sep 17 00:00:00 2001 From: Alper Altay Date: Fri, 22 Mar 2024 11:13:48 +0100 Subject: [PATCH 1/2] chore: added missing commas to queryEntities Signed-off-by: Alper Altay --- .changeset/mighty-cooks-lie.md | 5 +++++ packages/catalog-client/src/types/api.ts | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 .changeset/mighty-cooks-lie.md diff --git a/.changeset/mighty-cooks-lie.md b/.changeset/mighty-cooks-lie.md new file mode 100644 index 0000000000..2e1388caf5 --- /dev/null +++ b/.changeset/mighty-cooks-lie.md @@ -0,0 +1,5 @@ +--- +'@backstage/catalog-client': patch +--- + +Added missing commas to the example of queryEntities diff --git a/packages/catalog-client/src/types/api.ts b/packages/catalog-client/src/types/api.ts index 91ae64fff3..7eded50776 100644 --- a/packages/catalog-client/src/types/api.ts +++ b/packages/catalog-client/src/types/api.ts @@ -498,8 +498,8 @@ export interface CatalogApi { * limit: 20, * fullTextFilter: { * term: 'A', - * } - * orderFields: { field: 'metadata.name' order: 'asc' }, + * }, + * orderFields: { field: 'metadata.name', order: 'asc' }, * }); * ``` * From e499f694efe91997b75923f65ae54b488770f17e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20Adel=C3=B6w?= Date: Fri, 22 Mar 2024 11:50:01 +0100 Subject: [PATCH 2/2] Update .changeset/mighty-cooks-lie.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fredrik Adelöw --- .changeset/mighty-cooks-lie.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/mighty-cooks-lie.md b/.changeset/mighty-cooks-lie.md index 2e1388caf5..eb0583153b 100644 --- a/.changeset/mighty-cooks-lie.md +++ b/.changeset/mighty-cooks-lie.md @@ -2,4 +2,4 @@ '@backstage/catalog-client': patch --- -Added missing commas to the example of queryEntities +Added missing commas to the example of `queryEntities`