@sentry/api 0.134.0 → 0.136.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.
@@ -6154,6 +6154,7 @@ export type OrganizationSentryAppDetailsResponse = Array<{
6154
6154
  status: string;
6155
6155
  uuid: string;
6156
6156
  verifyInstall: boolean;
6157
+ isDisabled?: boolean;
6157
6158
  author?: string | null;
6158
6159
  overview?: string | null;
6159
6160
  popularity?: number | null;
@@ -7737,6 +7738,7 @@ export type SentryAppDetailsResponse = {
7737
7738
  status: string;
7738
7739
  uuid: string;
7739
7740
  verifyInstall: boolean;
7741
+ isDisabled?: boolean;
7740
7742
  author?: string | null;
7741
7743
  overview?: string | null;
7742
7744
  popularity?: number | null;
@@ -9349,7 +9351,9 @@ export type WorkflowValidator = {
9349
9351
  * ```
9350
9352
  *
9351
9353
  */
9352
- action_filters?: Array<unknown>;
9354
+ action_filters?: Array<{
9355
+ [key: string]: unknown;
9356
+ }>;
9353
9357
  /**
9354
9358
  *
9355
9359
  * The ID user or team who owns the monitor or alert prefaced by the string 'user' or 'team'.
@@ -20570,6 +20574,7 @@ export type RetrieveTheCustomIntegrationsCreatedByAnOrganizationResponses = {
20570
20574
  status: string;
20571
20575
  uuid: string;
20572
20576
  verifyInstall: boolean;
20577
+ isDisabled?: boolean;
20573
20578
  author?: string | null;
20574
20579
  overview?: string | null;
20575
20580
  popularity?: number | null;
@@ -22355,7 +22360,9 @@ export type CreateAnAlertForAnOrganizationData = {
22355
22360
  * ```
22356
22361
  *
22357
22362
  */
22358
- action_filters?: Array<unknown>;
22363
+ action_filters?: Array<{
22364
+ [key: string]: unknown;
22365
+ }>;
22359
22366
  /**
22360
22367
  *
22361
22368
  * The ID user or team who owns the monitor or alert prefaced by the string 'user' or 'team'.
@@ -23363,7 +23370,9 @@ export type UpdateAnAlertByIdData = {
23363
23370
  * ```
23364
23371
  *
23365
23372
  */
23366
- action_filters?: Array<unknown>;
23373
+ action_filters?: Array<{
23374
+ [key: string]: unknown;
23375
+ }>;
23367
23376
  /**
23368
23377
  *
23369
23378
  * The ID user or team who owns the monitor or alert prefaced by the string 'user' or 'team'.
@@ -28389,6 +28398,7 @@ export type RetrieveACustomIntegrationByIdOrSlugResponses = {
28389
28398
  status: string;
28390
28399
  uuid: string;
28391
28400
  verifyInstall: boolean;
28401
+ isDisabled?: boolean;
28392
28402
  author?: string | null;
28393
28403
  overview?: string | null;
28394
28404
  popularity?: number | null;
@@ -28497,6 +28507,7 @@ export type UpdateAnExistingCustomIntegrationResponses = {
28497
28507
  status: string;
28498
28508
  uuid: string;
28499
28509
  verifyInstall: boolean;
28510
+ isDisabled?: boolean;
28500
28511
  author?: string | null;
28501
28512
  overview?: string | null;
28502
28513
  popularity?: number | null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.134.0",
3
+ "version": "0.136.0",
4
4
  "description": "Official auto-generated TypeScript client for the Sentry public REST API",
5
5
  "keywords": [
6
6
  "sentry",