@sentry/api 0.1.0 → 0.3.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.
@@ -1199,8 +1199,11 @@ export type Dashboard = {
1199
1199
  * * `top_n`
1200
1200
  * * `details`
1201
1201
  * * `categorical_bar`
1202
+ * * `wheel`
1203
+ * * `rage_and_dead_clicks`
1204
+ * * `server_tree`
1202
1205
  */
1203
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1206
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
1204
1207
  interval?: string;
1205
1208
  queries?: Array<{
1206
1209
  id?: string;
@@ -1329,8 +1332,11 @@ export type DashboardDetails = {
1329
1332
  * * `top_n`
1330
1333
  * * `details`
1331
1334
  * * `categorical_bar`
1335
+ * * `wheel`
1336
+ * * `rage_and_dead_clicks`
1337
+ * * `server_tree`
1332
1338
  */
1333
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1339
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
1334
1340
  interval?: string;
1335
1341
  queries?: Array<{
1336
1342
  id?: string;
@@ -1652,8 +1658,11 @@ export type DashboardWidget = {
1652
1658
  * * `top_n`
1653
1659
  * * `details`
1654
1660
  * * `categorical_bar`
1661
+ * * `wheel`
1662
+ * * `rage_and_dead_clicks`
1663
+ * * `server_tree`
1655
1664
  */
1656
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1665
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
1657
1666
  interval?: string;
1658
1667
  queries?: Array<{
1659
1668
  id?: string;
@@ -10326,8 +10335,11 @@ export type CreateANewDashboardForAnOrganizationData = {
10326
10335
  * * `top_n`
10327
10336
  * * `details`
10328
10337
  * * `categorical_bar`
10338
+ * * `wheel`
10339
+ * * `rage_and_dead_clicks`
10340
+ * * `server_tree`
10329
10341
  */
10330
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
10342
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
10331
10343
  interval?: string;
10332
10344
  queries?: Array<{
10333
10345
  id?: string;
@@ -10795,8 +10807,11 @@ export type EditAnOrganizationSCustomDashboardData = {
10795
10807
  * * `top_n`
10796
10808
  * * `details`
10797
10809
  * * `categorical_bar`
10810
+ * * `wheel`
10811
+ * * `rage_and_dead_clicks`
10812
+ * * `server_tree`
10798
10813
  */
10799
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
10814
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel' | 'rage_and_dead_clicks' | 'server_tree';
10800
10815
  interval?: string;
10801
10816
  queries?: Array<{
10802
10817
  id?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sentry/api",
3
- "version": "0.1.0",
3
+ "version": "0.3.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",
@@ -16,7 +16,7 @@
16
16
  "import": "./dist/index.js",
17
17
  "types": "./dist/index.d.ts"
18
18
  },
19
- "homepage": "https://github.com/getsentry/sentry-api-schema",
19
+ "homepage": "https://docs.sentry.io/api/",
20
20
  "publishConfig": {
21
21
  "access": "public"
22
22
  },