@sentry/api 0.202.0 → 0.203.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/sdk.gen.d.ts +10 -0
- package/package.json +1 -1
package/dist/sdk.gen.d.ts
CHANGED
|
@@ -32,22 +32,32 @@ export declare const updateOrganization: <ThrowOnError extends boolean = false>(
|
|
|
32
32
|
*/
|
|
33
33
|
export declare const listOrganizationConfigIntegrations: <ThrowOnError extends boolean = false>(options: Options<ListOrganizationConfigIntegrationsData, ThrowOnError>) => import("./client").RequestResult<ListOrganizationConfigIntegrationsResponses, ListOrganizationConfigIntegrationsErrors, ThrowOnError, "fields">;
|
|
34
34
|
/**
|
|
35
|
+
* List an Organization's Custom Dashboards
|
|
36
|
+
*
|
|
35
37
|
* Retrieve a list of custom dashboards that are associated with the given organization.
|
|
36
38
|
*/
|
|
37
39
|
export declare const listOrganizationDashboards: <ThrowOnError extends boolean = false>(options: Options<ListOrganizationDashboardsData, ThrowOnError>) => import("./client").RequestResult<ListOrganizationDashboardsResponses, ListOrganizationDashboardsErrors, ThrowOnError, "fields">;
|
|
38
40
|
/**
|
|
41
|
+
* Create a New Dashboard for an Organization
|
|
42
|
+
*
|
|
39
43
|
* Create a new dashboard for the given Organization
|
|
40
44
|
*/
|
|
41
45
|
export declare const createOrganizationDashboard: <ThrowOnError extends boolean = false>(options: Options<CreateOrganizationDashboardData, ThrowOnError>) => import("./client").RequestResult<CreateOrganizationDashboardResponses, CreateOrganizationDashboardErrors, ThrowOnError, "fields">;
|
|
42
46
|
/**
|
|
47
|
+
* Delete an Organization's Custom Dashboard
|
|
48
|
+
*
|
|
43
49
|
* Delete an organization's custom dashboard.
|
|
44
50
|
*/
|
|
45
51
|
export declare const deleteOrganizationDashboard: <ThrowOnError extends boolean = false>(options: Options<DeleteOrganizationDashboardData, ThrowOnError>) => import("./client").RequestResult<DeleteOrganizationDashboardResponses, DeleteOrganizationDashboardErrors, ThrowOnError, "fields">;
|
|
46
52
|
/**
|
|
53
|
+
* Retrieve an Organization's Custom Dashboard
|
|
54
|
+
*
|
|
47
55
|
* Return details about an organization's custom dashboard.
|
|
48
56
|
*/
|
|
49
57
|
export declare const getOrganizationDashboard: <ThrowOnError extends boolean = false>(options: Options<GetOrganizationDashboardData, ThrowOnError>) => import("./client").RequestResult<GetOrganizationDashboardResponses, GetOrganizationDashboardErrors, ThrowOnError, "fields">;
|
|
50
58
|
/**
|
|
59
|
+
* Edit an Organization's Custom Dashboard
|
|
60
|
+
*
|
|
51
61
|
* Edit an organization's custom dashboard as well as any bulk
|
|
52
62
|
* edits on widgets that may have been made. (For example, widgets
|
|
53
63
|
* that have been rearranged, updated queries and fields, specific
|