@sentry/api 0.25.0 → 0.27.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 +19 -14
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -1202,8 +1202,9 @@ export type Dashboard = {
|
|
|
1202
1202
|
* * `wheel`
|
|
1203
1203
|
* * `rage_and_dead_clicks`
|
|
1204
1204
|
* * `server_tree`
|
|
1205
|
+
* * `text`
|
|
1205
1206
|
*/
|
|
1206
|
-
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
|
|
1207
|
+
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree' | 'text';
|
|
1207
1208
|
interval?: string;
|
|
1208
1209
|
queries?: Array<{
|
|
1209
1210
|
id?: string;
|
|
@@ -1242,7 +1243,7 @@ export type Dashboard = {
|
|
|
1242
1243
|
* * `tracemetrics`
|
|
1243
1244
|
* * `preprod-app-size`
|
|
1244
1245
|
*/
|
|
1245
|
-
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size';
|
|
1246
|
+
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size' | null;
|
|
1246
1247
|
limit?: number | null;
|
|
1247
1248
|
/**
|
|
1248
1249
|
* Widget grid layout position and dimensions.
|
|
@@ -1365,8 +1366,9 @@ export type DashboardDetails = {
|
|
|
1365
1366
|
* * `wheel`
|
|
1366
1367
|
* * `rage_and_dead_clicks`
|
|
1367
1368
|
* * `server_tree`
|
|
1369
|
+
* * `text`
|
|
1368
1370
|
*/
|
|
1369
|
-
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
|
|
1371
|
+
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree' | 'text';
|
|
1370
1372
|
interval?: string;
|
|
1371
1373
|
queries?: Array<{
|
|
1372
1374
|
id?: string;
|
|
@@ -1405,7 +1407,7 @@ export type DashboardDetails = {
|
|
|
1405
1407
|
* * `tracemetrics`
|
|
1406
1408
|
* * `preprod-app-size`
|
|
1407
1409
|
*/
|
|
1408
|
-
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size';
|
|
1410
|
+
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size' | null;
|
|
1409
1411
|
limit?: number | null;
|
|
1410
1412
|
/**
|
|
1411
1413
|
* Widget grid layout position and dimensions.
|
|
@@ -1580,7 +1582,7 @@ export type DashboardDetailsModel = {
|
|
|
1580
1582
|
}>;
|
|
1581
1583
|
}>;
|
|
1582
1584
|
limit: number | null;
|
|
1583
|
-
widgetType: string;
|
|
1585
|
+
widgetType: string | null;
|
|
1584
1586
|
layout: {
|
|
1585
1587
|
[key: string]: number;
|
|
1586
1588
|
} | null;
|
|
@@ -1722,8 +1724,9 @@ export type DashboardWidget = {
|
|
|
1722
1724
|
* * `wheel`
|
|
1723
1725
|
* * `rage_and_dead_clicks`
|
|
1724
1726
|
* * `server_tree`
|
|
1727
|
+
* * `text`
|
|
1725
1728
|
*/
|
|
1726
|
-
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
|
|
1729
|
+
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree' | 'text';
|
|
1727
1730
|
interval?: string;
|
|
1728
1731
|
queries?: Array<{
|
|
1729
1732
|
id?: string;
|
|
@@ -1762,7 +1765,7 @@ export type DashboardWidget = {
|
|
|
1762
1765
|
* * `tracemetrics`
|
|
1763
1766
|
* * `preprod-app-size`
|
|
1764
1767
|
*/
|
|
1765
|
-
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size';
|
|
1768
|
+
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size' | null;
|
|
1766
1769
|
limit?: number | null;
|
|
1767
1770
|
/**
|
|
1768
1771
|
* Widget grid layout position and dimensions.
|
|
@@ -10659,8 +10662,9 @@ export type CreateANewDashboardForAnOrganizationData = {
|
|
|
10659
10662
|
* * `wheel`
|
|
10660
10663
|
* * `rage_and_dead_clicks`
|
|
10661
10664
|
* * `server_tree`
|
|
10665
|
+
* * `text`
|
|
10662
10666
|
*/
|
|
10663
|
-
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
|
|
10667
|
+
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree' | 'text';
|
|
10664
10668
|
interval?: string;
|
|
10665
10669
|
queries?: Array<{
|
|
10666
10670
|
id?: string;
|
|
@@ -10699,7 +10703,7 @@ export type CreateANewDashboardForAnOrganizationData = {
|
|
|
10699
10703
|
* * `tracemetrics`
|
|
10700
10704
|
* * `preprod-app-size`
|
|
10701
10705
|
*/
|
|
10702
|
-
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size';
|
|
10706
|
+
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size' | null;
|
|
10703
10707
|
limit?: number | null;
|
|
10704
10708
|
/**
|
|
10705
10709
|
* Widget grid layout position and dimensions.
|
|
@@ -10906,7 +10910,7 @@ export type CreateANewDashboardForAnOrganizationResponses = {
|
|
|
10906
10910
|
}>;
|
|
10907
10911
|
}>;
|
|
10908
10912
|
limit: number | null;
|
|
10909
|
-
widgetType: string;
|
|
10913
|
+
widgetType: string | null;
|
|
10910
10914
|
layout: {
|
|
10911
10915
|
[key: string]: number;
|
|
10912
10916
|
} | null;
|
|
@@ -11091,7 +11095,7 @@ export type RetrieveAnOrganizationSCustomDashboardResponses = {
|
|
|
11091
11095
|
}>;
|
|
11092
11096
|
}>;
|
|
11093
11097
|
limit: number | null;
|
|
11094
|
-
widgetType: string;
|
|
11098
|
+
widgetType: string | null;
|
|
11095
11099
|
layout: {
|
|
11096
11100
|
[key: string]: number;
|
|
11097
11101
|
} | null;
|
|
@@ -11163,8 +11167,9 @@ export type EditAnOrganizationSCustomDashboardData = {
|
|
|
11163
11167
|
* * `wheel`
|
|
11164
11168
|
* * `rage_and_dead_clicks`
|
|
11165
11169
|
* * `server_tree`
|
|
11170
|
+
* * `text`
|
|
11166
11171
|
*/
|
|
11167
|
-
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
|
|
11172
|
+
display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree' | 'text';
|
|
11168
11173
|
interval?: string;
|
|
11169
11174
|
queries?: Array<{
|
|
11170
11175
|
id?: string;
|
|
@@ -11203,7 +11208,7 @@ export type EditAnOrganizationSCustomDashboardData = {
|
|
|
11203
11208
|
* * `tracemetrics`
|
|
11204
11209
|
* * `preprod-app-size`
|
|
11205
11210
|
*/
|
|
11206
|
-
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size';
|
|
11211
|
+
widget_type?: 'discover' | 'issue' | 'metrics' | 'error-events' | 'transaction-like' | 'spans' | 'logs' | 'tracemetrics' | 'preprod-app-size' | null;
|
|
11207
11212
|
limit?: number | null;
|
|
11208
11213
|
/**
|
|
11209
11214
|
* Widget grid layout position and dimensions.
|
|
@@ -11406,7 +11411,7 @@ export type EditAnOrganizationSCustomDashboardResponses = {
|
|
|
11406
11411
|
}>;
|
|
11407
11412
|
}>;
|
|
11408
11413
|
limit: number | null;
|
|
11409
|
-
widgetType: string;
|
|
11414
|
+
widgetType: string | null;
|
|
11410
11415
|
layout: {
|
|
11411
11416
|
[key: string]: number;
|
|
11412
11417
|
} | null;
|