@sentry/api 0.42.0 → 0.44.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.
@@ -1279,6 +1279,11 @@ export type Dashboard = {
1279
1279
  * * `dataMin`
1280
1280
  */
1281
1281
  axis_range?: 'auto' | 'dataMin' | null;
1282
+ /**
1283
+ * * `default`
1284
+ * * `breakdown`
1285
+ */
1286
+ legend_type?: 'default' | 'breakdown' | null;
1282
1287
  }>;
1283
1288
  /**
1284
1289
  * The saved projects filter for this dashboard.
@@ -1444,6 +1449,11 @@ export type DashboardDetails = {
1444
1449
  * * `dataMin`
1445
1450
  */
1446
1451
  axis_range?: 'auto' | 'dataMin' | null;
1452
+ /**
1453
+ * * `default`
1454
+ * * `breakdown`
1455
+ */
1456
+ legend_type?: 'default' | 'breakdown' | null;
1447
1457
  }>;
1448
1458
  /**
1449
1459
  * The saved projects filter for this dashboard.
@@ -1589,6 +1599,7 @@ export type DashboardDetailsModel = {
1589
1599
  [key: string]: number;
1590
1600
  } | null;
1591
1601
  axisRange: string | null;
1602
+ legendType: 'default' | 'breakdown';
1592
1603
  datasetSource: string | null;
1593
1604
  exploreUrls: Array<string> | null;
1594
1605
  changedReason: Array<{
@@ -1803,6 +1814,11 @@ export type DashboardWidget = {
1803
1814
  * * `dataMin`
1804
1815
  */
1805
1816
  axis_range?: 'auto' | 'dataMin' | null;
1817
+ /**
1818
+ * * `default`
1819
+ * * `breakdown`
1820
+ */
1821
+ legend_type?: 'default' | 'breakdown' | null;
1806
1822
  };
1807
1823
  /**
1808
1824
  * Allows parameters to be defined in snake case, but passed as camel case.
@@ -10741,6 +10757,11 @@ export type CreateANewDashboardForAnOrganizationData = {
10741
10757
  * * `dataMin`
10742
10758
  */
10743
10759
  axis_range?: 'auto' | 'dataMin' | null;
10760
+ /**
10761
+ * * `default`
10762
+ * * `breakdown`
10763
+ */
10764
+ legend_type?: 'default' | 'breakdown' | null;
10744
10765
  }>;
10745
10766
  /**
10746
10767
  * The saved projects filter for this dashboard.
@@ -10918,6 +10939,7 @@ export type CreateANewDashboardForAnOrganizationResponses = {
10918
10939
  [key: string]: number;
10919
10940
  } | null;
10920
10941
  axisRange: string | null;
10942
+ legendType: 'default' | 'breakdown';
10921
10943
  datasetSource: string | null;
10922
10944
  exploreUrls: Array<string> | null;
10923
10945
  changedReason: Array<{
@@ -11103,6 +11125,7 @@ export type RetrieveAnOrganizationSCustomDashboardResponses = {
11103
11125
  [key: string]: number;
11104
11126
  } | null;
11105
11127
  axisRange: string | null;
11128
+ legendType: 'default' | 'breakdown';
11106
11129
  datasetSource: string | null;
11107
11130
  exploreUrls: Array<string> | null;
11108
11131
  changedReason: Array<{
@@ -11247,6 +11270,11 @@ export type EditAnOrganizationSCustomDashboardData = {
11247
11270
  * * `dataMin`
11248
11271
  */
11249
11272
  axis_range?: 'auto' | 'dataMin' | null;
11273
+ /**
11274
+ * * `default`
11275
+ * * `breakdown`
11276
+ */
11277
+ legend_type?: 'default' | 'breakdown' | null;
11250
11278
  }>;
11251
11279
  /**
11252
11280
  * The saved projects filter for this dashboard.
@@ -11420,6 +11448,7 @@ export type EditAnOrganizationSCustomDashboardResponses = {
11420
11448
  [key: string]: number;
11421
11449
  } | null;
11422
11450
  axisRange: string | null;
11451
+ legendType: 'default' | 'breakdown';
11423
11452
  datasetSource: string | null;
11424
11453
  exploreUrls: Array<string> | null;
11425
11454
  changedReason: Array<{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.42.0",
3
+ "version": "0.44.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",