@sentry/api 0.64.0 → 0.66.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 +7 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -4289,6 +4289,7 @@ export type ListWorkflow = Array<{
|
|
|
4289
4289
|
detectorIds: Array<string> | null;
|
|
4290
4290
|
enabled: boolean;
|
|
4291
4291
|
lastTriggered: string | null;
|
|
4292
|
+
owner: string | null;
|
|
4292
4293
|
}>;
|
|
4293
4294
|
export type Monitor = {
|
|
4294
4295
|
alertRule?: {
|
|
@@ -8585,6 +8586,7 @@ export type Workflow = {
|
|
|
8585
8586
|
detectorIds: Array<string> | null;
|
|
8586
8587
|
enabled: boolean;
|
|
8587
8588
|
lastTriggered: string | null;
|
|
8589
|
+
owner: string | null;
|
|
8588
8590
|
};
|
|
8589
8591
|
/**
|
|
8590
8592
|
* Allows parameters to be defined in snake case, but passed as camel case.
|
|
@@ -21459,6 +21461,7 @@ export type FetchAlertsResponses = {
|
|
|
21459
21461
|
detectorIds: Array<string> | null;
|
|
21460
21462
|
enabled: boolean;
|
|
21461
21463
|
lastTriggered: string | null;
|
|
21464
|
+
owner: string | null;
|
|
21462
21465
|
}>;
|
|
21463
21466
|
};
|
|
21464
21467
|
export type FetchAlertsResponse = FetchAlertsResponses[keyof FetchAlertsResponses];
|
|
@@ -22189,6 +22192,7 @@ export type CreateAnAlertForAnOrganizationResponses = {
|
|
|
22189
22192
|
detectorIds: Array<string> | null;
|
|
22190
22193
|
enabled: boolean;
|
|
22191
22194
|
lastTriggered: string | null;
|
|
22195
|
+
owner: string | null;
|
|
22192
22196
|
};
|
|
22193
22197
|
};
|
|
22194
22198
|
export type CreateAnAlertForAnOrganizationResponse = CreateAnAlertForAnOrganizationResponses[keyof CreateAnAlertForAnOrganizationResponses];
|
|
@@ -22304,6 +22308,7 @@ export type MutateAnOrganizationSAlertsResponses = {
|
|
|
22304
22308
|
detectorIds: Array<string> | null;
|
|
22305
22309
|
enabled: boolean;
|
|
22306
22310
|
lastTriggered: string | null;
|
|
22311
|
+
owner: string | null;
|
|
22307
22312
|
}>;
|
|
22308
22313
|
};
|
|
22309
22314
|
export type MutateAnOrganizationSAlertsResponse = MutateAnOrganizationSAlertsResponses[keyof MutateAnOrganizationSAlertsResponses];
|
|
@@ -22441,6 +22446,7 @@ export type FetchAnAlertResponses = {
|
|
|
22441
22446
|
detectorIds: Array<string> | null;
|
|
22442
22447
|
enabled: boolean;
|
|
22443
22448
|
lastTriggered: string | null;
|
|
22449
|
+
owner: string | null;
|
|
22444
22450
|
};
|
|
22445
22451
|
};
|
|
22446
22452
|
export type FetchAnAlertResponse = FetchAnAlertResponses[keyof FetchAnAlertResponses];
|
|
@@ -23175,6 +23181,7 @@ export type UpdateAnAlertByIdResponses = {
|
|
|
23175
23181
|
detectorIds: Array<string> | null;
|
|
23176
23182
|
enabled: boolean;
|
|
23177
23183
|
lastTriggered: string | null;
|
|
23184
|
+
owner: string | null;
|
|
23178
23185
|
};
|
|
23179
23186
|
};
|
|
23180
23187
|
export type UpdateAnAlertByIdResponse = UpdateAnAlertByIdResponses[keyof UpdateAnAlertByIdResponses];
|