@sentry/api 0.85.0 → 0.87.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.
@@ -8662,6 +8662,10 @@ export type WorkflowValidator = {
8662
8662
  * Whether the alert is enabled or disabled
8663
8663
  */
8664
8664
  enabled?: boolean;
8665
+ /**
8666
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
8667
+ */
8668
+ detector_ids?: Array<number>;
8665
8669
  /**
8666
8670
  *
8667
8671
  * Typically the frequency at which the alert will fire, in minutes.
@@ -21561,6 +21565,10 @@ export type CreateAnAlertForAnOrganizationData = {
21561
21565
  * Whether the alert is enabled or disabled
21562
21566
  */
21563
21567
  enabled?: boolean;
21568
+ /**
21569
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
21570
+ */
21571
+ detector_ids?: Array<number>;
21564
21572
  /**
21565
21573
  *
21566
21574
  * Typically the frequency at which the alert will fire, in minutes.
@@ -22546,6 +22554,10 @@ export type UpdateAnAlertByIdData = {
22546
22554
  * Whether the alert is enabled or disabled
22547
22555
  */
22548
22556
  enabled?: boolean;
22557
+ /**
22558
+ * The IDs of the monitors to connect this alert to. Use 'Fetch an Organization's Monitors' to find the IDs.
22559
+ */
22560
+ detector_ids?: Array<number>;
22549
22561
  /**
22550
22562
  *
22551
22563
  * Typically the frequency at which the alert will fire, in minutes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.85.0",
3
+ "version": "0.87.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",