@sentry/api 0.130.0 → 0.132.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 +6 -4
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -9494,7 +9494,6 @@ export type ListYourOrganizationsData = {
|
|
|
9494
9494
|
* - `slug`: The organization slug
|
|
9495
9495
|
* - `status`: The organization's current status (one of `active`, `pending_deletion`, or `deletion_in_progress`)
|
|
9496
9496
|
* - `email` or `member_id`: Filter your organizations by the emails or [organization member IDs](/api/organizations/list-an-organizations-members/) of specific members included
|
|
9497
|
-
* - `platform`: Filter your organizations to those with at least one project using this platform
|
|
9498
9497
|
* - `query`: Filter your organizations by name, slug, and members that contain this substring
|
|
9499
9498
|
*
|
|
9500
9499
|
* Example: `query=(slug:foo AND status:active) OR (email:[thing-one@example.com,thing-two@example.com] AND query:bar)`
|
|
@@ -9506,7 +9505,6 @@ export type ListYourOrganizationsData = {
|
|
|
9506
9505
|
*
|
|
9507
9506
|
* Valid fields include:
|
|
9508
9507
|
* - `members`: By number of members
|
|
9509
|
-
* - `projects`: By number of projects
|
|
9510
9508
|
* - `events`: By number of events in the past 24 hours
|
|
9511
9509
|
*
|
|
9512
9510
|
*/
|
|
@@ -13083,7 +13081,7 @@ export type QueryExploreEventsInTableFormatData = {
|
|
|
13083
13081
|
/**
|
|
13084
13082
|
* Which dataset to query, changing datasets changes the available fields that can be queried
|
|
13085
13083
|
*/
|
|
13086
|
-
dataset: 'logs' | 'profile_functions' | 'spans' | 'uptime_results';
|
|
13084
|
+
dataset: 'discover' | 'errors' | 'logs' | 'profile_functions' | 'spans' | 'transactions' | 'uptime_results';
|
|
13087
13085
|
/**
|
|
13088
13086
|
* The end of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
|
|
13089
13087
|
*/
|
|
@@ -13130,6 +13128,10 @@ export type QueryExploreEventsInTableFormatData = {
|
|
|
13130
13128
|
* What to order the results of the query by. Must be something in the `field` list, excluding equations.
|
|
13131
13129
|
*/
|
|
13132
13130
|
sort?: string;
|
|
13131
|
+
/**
|
|
13132
|
+
* A pointer to the last object fetched and its sort order; used to retrieve the next or previous results.
|
|
13133
|
+
*/
|
|
13134
|
+
cursor?: string;
|
|
13133
13135
|
};
|
|
13134
13136
|
url: '/api/0/organizations/{organization_id_or_slug}/events/';
|
|
13135
13137
|
};
|
|
@@ -13171,7 +13173,7 @@ export type QueryExploreEventsInTimeseriesFormatData = {
|
|
|
13171
13173
|
/**
|
|
13172
13174
|
* Which dataset to query, changing datasets changes the available fields that can be queried
|
|
13173
13175
|
*/
|
|
13174
|
-
dataset: 'logs' | 'profile_functions' | 'spans' | 'uptime_results';
|
|
13176
|
+
dataset: 'discover' | 'errors' | 'logs' | 'profile_functions' | 'spans' | 'transactions' | 'uptime_results';
|
|
13175
13177
|
/**
|
|
13176
13178
|
* The end of the period of time for the query, expected in ISO-8601 format. For example, `2001-12-14T12:34:56.7890`.
|
|
13177
13179
|
*/
|