@sentry/api 0.87.0 → 0.88.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 +11 -0
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2465,6 +2465,7 @@ export type DetailedProject = {
|
|
|
2465
2465
|
tempestFetchScreenshots: boolean;
|
|
2466
2466
|
autofixAutomationTuning: string;
|
|
2467
2467
|
seerScannerAutomation: boolean;
|
|
2468
|
+
scmSourceContextEnabled: boolean;
|
|
2468
2469
|
debugFilesRole: string | null;
|
|
2469
2470
|
};
|
|
2470
2471
|
export type Detector = {
|
|
@@ -6541,6 +6542,10 @@ export type ProjectAdmin = {
|
|
|
6541
6542
|
* E.g. `['release', 'environment']`
|
|
6542
6543
|
*/
|
|
6543
6544
|
highlightTags?: Array<string>;
|
|
6545
|
+
/**
|
|
6546
|
+
* Enable on-demand source context fetching from SCM integrations for stack traces.
|
|
6547
|
+
*/
|
|
6548
|
+
scmSourceContextEnabled?: boolean;
|
|
6544
6549
|
};
|
|
6545
6550
|
export type ProjectEventsResponseDict = Array<{
|
|
6546
6551
|
id: string;
|
|
@@ -23512,6 +23517,7 @@ export type RetrieveAProjectResponses = {
|
|
|
23512
23517
|
tempestFetchScreenshots: boolean;
|
|
23513
23518
|
autofixAutomationTuning: string;
|
|
23514
23519
|
seerScannerAutomation: boolean;
|
|
23520
|
+
scmSourceContextEnabled: boolean;
|
|
23515
23521
|
debugFilesRole: string | null;
|
|
23516
23522
|
};
|
|
23517
23523
|
};
|
|
@@ -23563,6 +23569,10 @@ export type UpdateAProjectData = {
|
|
|
23563
23569
|
* E.g. `['release', 'environment']`
|
|
23564
23570
|
*/
|
|
23565
23571
|
highlightTags?: Array<string>;
|
|
23572
|
+
/**
|
|
23573
|
+
* Enable on-demand source context fetching from SCM integrations for stack traces.
|
|
23574
|
+
*/
|
|
23575
|
+
scmSourceContextEnabled?: boolean;
|
|
23566
23576
|
};
|
|
23567
23577
|
path: {
|
|
23568
23578
|
/**
|
|
@@ -23768,6 +23778,7 @@ export type UpdateAProjectResponses = {
|
|
|
23768
23778
|
tempestFetchScreenshots: boolean;
|
|
23769
23779
|
autofixAutomationTuning: string;
|
|
23770
23780
|
seerScannerAutomation: boolean;
|
|
23781
|
+
scmSourceContextEnabled: boolean;
|
|
23771
23782
|
debugFilesRole: string | null;
|
|
23772
23783
|
};
|
|
23773
23784
|
};
|