@sentry/api 0.89.0 → 0.90.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.
- package/dist/types.gen.d.ts +6 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -5849,7 +5849,9 @@ export type OrganizationEventsTimeseriesResponse = {
|
|
|
5849
5849
|
yAxis: string;
|
|
5850
5850
|
groupBy?: Array<{
|
|
5851
5851
|
key: string;
|
|
5852
|
-
value: string |
|
|
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 |
|
|
13450
|
+
value: string | number | {
|
|
13451
|
+
[key: string]: unknown;
|
|
13452
|
+
} | null;
|
|
13449
13453
|
}>;
|
|
13450
13454
|
meta: {
|
|
13451
13455
|
order?: number;
|