@sentry/api 0.1.0 → 0.2.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,9 @@ export type Dashboard = {
1199
1199
  * * `top_n`
1200
1200
  * * `details`
1201
1201
  * * `categorical_bar`
1202
+ * * `wheel`
1202
1203
  */
1203
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1204
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel';
1204
1205
  interval?: string;
1205
1206
  queries?: Array<{
1206
1207
  id?: string;
@@ -1329,8 +1330,9 @@ export type DashboardDetails = {
1329
1330
  * * `top_n`
1330
1331
  * * `details`
1331
1332
  * * `categorical_bar`
1333
+ * * `wheel`
1332
1334
  */
1333
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1335
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel';
1334
1336
  interval?: string;
1335
1337
  queries?: Array<{
1336
1338
  id?: string;
@@ -1652,8 +1654,9 @@ export type DashboardWidget = {
1652
1654
  * * `top_n`
1653
1655
  * * `details`
1654
1656
  * * `categorical_bar`
1657
+ * * `wheel`
1655
1658
  */
1656
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
1659
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel';
1657
1660
  interval?: string;
1658
1661
  queries?: Array<{
1659
1662
  id?: string;
@@ -10326,8 +10329,9 @@ export type CreateANewDashboardForAnOrganizationData = {
10326
10329
  * * `top_n`
10327
10330
  * * `details`
10328
10331
  * * `categorical_bar`
10332
+ * * `wheel`
10329
10333
  */
10330
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
10334
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel';
10331
10335
  interval?: string;
10332
10336
  queries?: Array<{
10333
10337
  id?: string;
@@ -10795,8 +10799,9 @@ export type EditAnOrganizationSCustomDashboardData = {
10795
10799
  * * `top_n`
10796
10800
  * * `details`
10797
10801
  * * `categorical_bar`
10802
+ * * `wheel`
10798
10803
  */
10799
- display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar';
10804
+ display_type?: 'line' | 'area' | 'stacked_area' | 'bar' | 'table' | 'big_number' | 'top_n' | 'details' | 'categorical_bar' | 'wheel';
10800
10805
  interval?: string;
10801
10806
  queries?: Array<{
10802
10807
  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.2.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
  },