@sentry/api 0.115.1 → 0.117.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 +12 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -20699,7 +20699,12 @@ export type ResolveAShortIdData = {
|
|
|
20699
20699
|
*/
|
|
20700
20700
|
issue_id: string;
|
|
20701
20701
|
};
|
|
20702
|
-
query?:
|
|
20702
|
+
query?: {
|
|
20703
|
+
/**
|
|
20704
|
+
* Fields to remove from the response to improve query performance.
|
|
20705
|
+
*/
|
|
20706
|
+
collapse?: Array<'base' | 'filtered' | 'lifetime' | 'stats' | 'unhandled'>;
|
|
20707
|
+
};
|
|
20703
20708
|
url: '/api/0/organizations/{organization_id_or_slug}/shortids/{issue_id}/';
|
|
20704
20709
|
};
|
|
20705
20710
|
export type ResolveAShortIdErrors = {
|
|
@@ -30739,7 +30744,12 @@ export type RetrieveAnIssueData = {
|
|
|
30739
30744
|
*/
|
|
30740
30745
|
issue_id: string;
|
|
30741
30746
|
};
|
|
30742
|
-
query?:
|
|
30747
|
+
query?: {
|
|
30748
|
+
/**
|
|
30749
|
+
* Fields to remove from the response to improve query performance.
|
|
30750
|
+
*/
|
|
30751
|
+
collapse?: Array<'stats' | 'lifetime' | 'base' | 'unhandled' | 'filtered'>;
|
|
30752
|
+
};
|
|
30743
30753
|
url: '/api/0/organizations/{organization_id_or_slug}/issues/{issue_id}/';
|
|
30744
30754
|
};
|
|
30745
30755
|
export type RetrieveAnIssueErrors = {
|