@sentry/api 0.88.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.
@@ -2104,8 +2104,9 @@ export type DetailedOrganizationSerializerWithProjectsAndTeams = {
2104
2104
  defaultSeerScannerAutomation: boolean;
2105
2105
  enableSeerEnhancedAlerts: boolean;
2106
2106
  enableSeerCoding: boolean;
2107
- defaultCodingAgent: string | null;
2107
+ defaultCodingAgent: string;
2108
2108
  defaultCodingAgentIntegrationId: number | null;
2109
+ defaultAutomatedRunStoppingPoint: string;
2109
2110
  autoEnableCodeReview: boolean;
2110
2111
  autoOpenPrs: boolean;
2111
2112
  defaultCodeReviewTriggers: Array<string>;
@@ -5848,7 +5849,9 @@ export type OrganizationEventsTimeseriesResponse = {
5848
5849
  yAxis: string;
5849
5850
  groupBy?: Array<{
5850
5851
  key: string;
5851
- value: string | null;
5852
+ value: string | number | {
5853
+ [key: string]: unknown;
5854
+ } | null;
5852
5855
  }>;
5853
5856
  meta: {
5854
5857
  order?: number;
@@ -9906,8 +9909,9 @@ export type UpdateAnOrganizationResponses = {
9906
9909
  defaultSeerScannerAutomation: boolean;
9907
9910
  enableSeerEnhancedAlerts: boolean;
9908
9911
  enableSeerCoding: boolean;
9909
- defaultCodingAgent: string | null;
9912
+ defaultCodingAgent: string;
9910
9913
  defaultCodingAgentIntegrationId: number | null;
9914
+ defaultAutomatedRunStoppingPoint: string;
9911
9915
  autoEnableCodeReview: boolean;
9912
9916
  autoOpenPrs: boolean;
9913
9917
  defaultCodeReviewTriggers: Array<string>;
@@ -13443,7 +13447,9 @@ export type QueryExploreEventsInTimeseriesFormatResponses = {
13443
13447
  yAxis: string;
13444
13448
  groupBy?: Array<{
13445
13449
  key: string;
13446
- value: string | null;
13450
+ value: string | number | {
13451
+ [key: string]: unknown;
13452
+ } | null;
13447
13453
  }>;
13448
13454
  meta: {
13449
13455
  order?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.88.0",
3
+ "version": "0.90.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",