@sentry/api 0.86.0 → 0.88.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.
@@ -2465,6 +2465,7 @@ export type DetailedProject = {
2465
2465
  tempestFetchScreenshots: boolean;
2466
2466
  autofixAutomationTuning: string;
2467
2467
  seerScannerAutomation: boolean;
2468
+ scmSourceContextEnabled: boolean;
2468
2469
  debugFilesRole: string | null;
2469
2470
  };
2470
2471
  export type Detector = {
@@ -6541,6 +6542,10 @@ export type ProjectAdmin = {
6541
6542
  * E.g. `['release', 'environment']`
6542
6543
  */
6543
6544
  highlightTags?: Array<string>;
6545
+ /**
6546
+ * Enable on-demand source context fetching from SCM integrations for stack traces.
6547
+ */
6548
+ scmSourceContextEnabled?: boolean;
6544
6549
  };
6545
6550
  export type ProjectEventsResponseDict = Array<{
6546
6551
  id: string;
@@ -8662,6 +8667,10 @@ export type WorkflowValidator = {
8662
8667
  * Whether the alert is enabled or disabled
8663
8668
  */
8664
8669
  enabled?: boolean;
8670
+ /**
8671
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
8672
+ */
8673
+ detector_ids?: Array<number>;
8665
8674
  /**
8666
8675
  *
8667
8676
  * Typically the frequency at which the alert will fire, in minutes.
@@ -21561,6 +21570,10 @@ export type CreateAnAlertForAnOrganizationData = {
21561
21570
  * Whether the alert is enabled or disabled
21562
21571
  */
21563
21572
  enabled?: boolean;
21573
+ /**
21574
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
21575
+ */
21576
+ detector_ids?: Array<number>;
21564
21577
  /**
21565
21578
  *
21566
21579
  * Typically the frequency at which the alert will fire, in minutes.
@@ -22546,6 +22559,10 @@ export type UpdateAnAlertByIdData = {
22546
22559
  * Whether the alert is enabled or disabled
22547
22560
  */
22548
22561
  enabled?: boolean;
22562
+ /**
22563
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
22564
+ */
22565
+ detector_ids?: Array<number>;
22549
22566
  /**
22550
22567
  *
22551
22568
  * Typically the frequency at which the alert will fire, in minutes.
@@ -23500,6 +23517,7 @@ export type RetrieveAProjectResponses = {
23500
23517
  tempestFetchScreenshots: boolean;
23501
23518
  autofixAutomationTuning: string;
23502
23519
  seerScannerAutomation: boolean;
23520
+ scmSourceContextEnabled: boolean;
23503
23521
  debugFilesRole: string | null;
23504
23522
  };
23505
23523
  };
@@ -23551,6 +23569,10 @@ export type UpdateAProjectData = {
23551
23569
  * E.g. `['release', 'environment']`
23552
23570
  */
23553
23571
  highlightTags?: Array<string>;
23572
+ /**
23573
+ * Enable on-demand source context fetching from SCM integrations for stack traces.
23574
+ */
23575
+ scmSourceContextEnabled?: boolean;
23554
23576
  };
23555
23577
  path: {
23556
23578
  /**
@@ -23756,6 +23778,7 @@ export type UpdateAProjectResponses = {
23756
23778
  tempestFetchScreenshots: boolean;
23757
23779
  autofixAutomationTuning: string;
23758
23780
  seerScannerAutomation: boolean;
23781
+ scmSourceContextEnabled: boolean;
23759
23782
  debugFilesRole: string | null;
23760
23783
  };
23761
23784
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.86.0",
3
+ "version": "0.88.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",