From 523e5a1ca0452c8f7d3863fca804c16a959dde00 Mon Sep 17 00:00:00 2001 From: Saurav Date: Fri, 8 Mar 2024 13:39:12 -0500 Subject: [PATCH 1/2] remove count --- packages/client/src/query/aggregations/AggregationsClause.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/client/src/query/aggregations/AggregationsClause.ts b/packages/client/src/query/aggregations/AggregationsClause.ts index 7652f9dce..5b862963f 100644 --- a/packages/client/src/query/aggregations/AggregationsClause.ts +++ b/packages/client/src/query/aggregations/AggregationsClause.ts @@ -17,9 +17,8 @@ import type { ObjectOrInterfaceDefinition } from "@osdk/api"; import type { AggregatableKeys } from "./AggregatableKeys.js"; -type StringAggregateOption = "approximateDistinct" | "count"; +type StringAggregateOption = "approximateDistinct"; type NumericAggregateOption = - | "count" | "min" | "max" | "sum" From 39bc8ab7787238ed083c0fc67feb16e013af2448 Mon Sep 17 00:00:00 2001 From: svc-changelog Date: Fri, 8 Mar 2024 20:45:51 +0000 Subject: [PATCH 2/2] Add generated changelog entries --- packages/client/changelog/@unreleased/pr-125.v2.yml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 packages/client/changelog/@unreleased/pr-125.v2.yml diff --git a/packages/client/changelog/@unreleased/pr-125.v2.yml b/packages/client/changelog/@unreleased/pr-125.v2.yml new file mode 100644 index 000000000..da0c0d909 --- /dev/null +++ b/packages/client/changelog/@unreleased/pr-125.v2.yml @@ -0,0 +1,5 @@ +type: feature +feature: + description: Remove count + links: + - https://github.com/palantir/osdk-ts/pull/125