@sentry/api 0.89.0 → 0.91.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5849,7 +5849,9 @@ export type OrganizationEventsTimeseriesResponse = {
5849
5849
  yAxis: string;
5850
5850
  groupBy?: Array<{
5851
5851
  key: string;
5852
- value: string | null;
5852
+ value: string | number | {
5853
+ [key: string]: unknown;
5854
+ } | null;
5853
5855
  }>;
5854
5856
  meta: {
5855
5857
  order?: number;
@@ -13445,7 +13447,9 @@ export type QueryExploreEventsInTimeseriesFormatResponses = {
13445
13447
  yAxis: string;
13446
13448
  groupBy?: Array<{
13447
13449
  key: string;
13448
- value: string | null;
13450
+ value: string | number | {
13451
+ [key: string]: unknown;
13452
+ } | null;
13449
13453
  }>;
13450
13454
  meta: {
13451
13455
  order?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.89.0",
3
+ "version": "0.91.0",
4
4
  "description": "Auto-generated TypeScript client for the Sentry API",
5
5
  "license": "FSL-1.1-Apache-2.0",
6
6
  "type": "module",