@sentry/api 0.13.0 → 0.14.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 +29 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1247,6 +1247,11 @@ export type Dashboard = {
|
|
|
1247
1247
|
layout?: {
|
|
1248
1248
|
[key: string]: unknown;
|
|
1249
1249
|
} | null;
|
|
1250
|
+
/**
|
|
1251
|
+
* * `auto`
|
|
1252
|
+
* * `dataMin`
|
|
1253
|
+
*/
|
|
1254
|
+
axis_range?: 'auto' | 'dataMin' | null;
|
|
1250
1255
|
}>;
|
|
1251
1256
|
/**
|
|
1252
1257
|
* The saved projects filter for this dashboard.
|
|
@@ -1380,6 +1385,11 @@ export type DashboardDetails = {
|
|
|
1380
1385
|
layout?: {
|
|
1381
1386
|
[key: string]: unknown;
|
|
1382
1387
|
} | null;
|
|
1388
|
+
/**
|
|
1389
|
+
* * `auto`
|
|
1390
|
+
* * `dataMin`
|
|
1391
|
+
*/
|
|
1392
|
+
axis_range?: 'auto' | 'dataMin' | null;
|
|
1383
1393
|
}>;
|
|
1384
1394
|
/**
|
|
1385
1395
|
* The saved projects filter for this dashboard.
|
|
@@ -1524,6 +1534,7 @@ export type DashboardDetailsModel = {
|
|
|
1524
1534
|
layout: {
|
|
1525
1535
|
[key: string]: number;
|
|
1526
1536
|
} | null;
|
|
1537
|
+
axisRange: string | null;
|
|
1527
1538
|
datasetSource: string | null;
|
|
1528
1539
|
exploreUrls: Array<string> | null;
|
|
1529
1540
|
changedReason: Array<{
|
|
@@ -1706,6 +1717,11 @@ export type DashboardWidget = {
|
|
|
1706
1717
|
layout?: {
|
|
1707
1718
|
[key: string]: unknown;
|
|
1708
1719
|
} | null;
|
|
1720
|
+
/**
|
|
1721
|
+
* * `auto`
|
|
1722
|
+
* * `dataMin`
|
|
1723
|
+
*/
|
|
1724
|
+
axis_range?: 'auto' | 'dataMin' | null;
|
|
1709
1725
|
};
|
|
1710
1726
|
/**
|
|
1711
1727
|
* Allows parameters to be defined in snake case, but passed as camel case.
|
|
@@ -10478,6 +10494,11 @@ export type CreateANewDashboardForAnOrganizationData = {
|
|
|
10478
10494
|
layout?: {
|
|
10479
10495
|
[key: string]: unknown;
|
|
10480
10496
|
} | null;
|
|
10497
|
+
/**
|
|
10498
|
+
* * `auto`
|
|
10499
|
+
* * `dataMin`
|
|
10500
|
+
*/
|
|
10501
|
+
axis_range?: 'auto' | 'dataMin' | null;
|
|
10481
10502
|
}>;
|
|
10482
10503
|
/**
|
|
10483
10504
|
* The saved projects filter for this dashboard.
|
|
@@ -10654,6 +10675,7 @@ export type CreateANewDashboardForAnOrganizationResponses = {
|
|
|
10654
10675
|
layout: {
|
|
10655
10676
|
[key: string]: number;
|
|
10656
10677
|
} | null;
|
|
10678
|
+
axisRange: string | null;
|
|
10657
10679
|
datasetSource: string | null;
|
|
10658
10680
|
exploreUrls: Array<string> | null;
|
|
10659
10681
|
changedReason: Array<{
|
|
@@ -10838,6 +10860,7 @@ export type RetrieveAnOrganizationSCustomDashboardResponses = {
|
|
|
10838
10860
|
layout: {
|
|
10839
10861
|
[key: string]: number;
|
|
10840
10862
|
} | null;
|
|
10863
|
+
axisRange: string | null;
|
|
10841
10864
|
datasetSource: string | null;
|
|
10842
10865
|
exploreUrls: Array<string> | null;
|
|
10843
10866
|
changedReason: Array<{
|
|
@@ -10950,6 +10973,11 @@ export type EditAnOrganizationSCustomDashboardData = {
|
|
|
10950
10973
|
layout?: {
|
|
10951
10974
|
[key: string]: unknown;
|
|
10952
10975
|
} | null;
|
|
10976
|
+
/**
|
|
10977
|
+
* * `auto`
|
|
10978
|
+
* * `dataMin`
|
|
10979
|
+
*/
|
|
10980
|
+
axis_range?: 'auto' | 'dataMin' | null;
|
|
10953
10981
|
}>;
|
|
10954
10982
|
/**
|
|
10955
10983
|
* The saved projects filter for this dashboard.
|
|
@@ -11122,6 +11150,7 @@ export type EditAnOrganizationSCustomDashboardResponses = {
|
|
|
11122
11150
|
layout: {
|
|
11123
11151
|
[key: string]: number;
|
|
11124
11152
|
} | null;
|
|
11153
|
+
axisRange: string | null;
|
|
11125
11154
|
datasetSource: string | null;
|
|
11126
11155
|
exploreUrls: Array<string> | null;
|
|
11127
11156
|
changedReason: Array<{
|