@sentry/api 0.93.0 → 0.94.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.
@@ -105,6 +105,10 @@ export type BaseDetectorTypeValidator = {
105
105
  * The type of monitor - `metric_issue`.
106
106
  */
107
107
  type: string;
108
+ /**
109
+ * The IDs of the alerts to connect this monitor to. Use the 'Fetch Alerts' endpoint to find the IDs.
110
+ */
111
+ workflow_ids?: Array<number>;
108
112
  /**
109
113
  *
110
114
  * The data sources for the monitor to use based on what you want to measure.
@@ -11770,6 +11774,10 @@ export type CreateAMonitorForAProjectData = {
11770
11774
  * The type of monitor - `metric_issue`.
11771
11775
  */
11772
11776
  type: string;
11777
+ /**
11778
+ * The IDs of the alerts to connect this monitor to. Use the 'Fetch Alerts' endpoint to find the IDs.
11779
+ */
11780
+ workflow_ids?: Array<number>;
11773
11781
  /**
11774
11782
  *
11775
11783
  * The data sources for the monitor to use based on what you want to measure.
@@ -12220,6 +12228,10 @@ export type UpdateAMonitorByIdData = {
12220
12228
  * The type of monitor - `metric_issue`.
12221
12229
  */
12222
12230
  type: string;
12231
+ /**
12232
+ * The IDs of the alerts to connect this monitor to. Use the 'Fetch Alerts' endpoint to find the IDs.
12233
+ */
12234
+ workflow_ids?: Array<number>;
12223
12235
  /**
12224
12236
  *
12225
12237
  * The data sources for the monitor to use based on what you want to measure.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.93.0",
3
+ "version": "0.94.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",