@sentry/api 0.87.0 → 0.89.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 +15 -2
- package/package.json +1 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -2104,8 +2104,9 @@ export type DetailedOrganizationSerializerWithProjectsAndTeams = {
|
|
|
2104
2104
|
defaultSeerScannerAutomation: boolean;
|
|
2105
2105
|
enableSeerEnhancedAlerts: boolean;
|
|
2106
2106
|
enableSeerCoding: boolean;
|
|
2107
|
-
defaultCodingAgent: string
|
|
2107
|
+
defaultCodingAgent: string;
|
|
2108
2108
|
defaultCodingAgentIntegrationId: number | null;
|
|
2109
|
+
defaultAutomatedRunStoppingPoint: string;
|
|
2109
2110
|
autoEnableCodeReview: boolean;
|
|
2110
2111
|
autoOpenPrs: boolean;
|
|
2111
2112
|
defaultCodeReviewTriggers: Array<string>;
|
|
@@ -2465,6 +2466,7 @@ export type DetailedProject = {
|
|
|
2465
2466
|
tempestFetchScreenshots: boolean;
|
|
2466
2467
|
autofixAutomationTuning: string;
|
|
2467
2468
|
seerScannerAutomation: boolean;
|
|
2469
|
+
scmSourceContextEnabled: boolean;
|
|
2468
2470
|
debugFilesRole: string | null;
|
|
2469
2471
|
};
|
|
2470
2472
|
export type Detector = {
|
|
@@ -6541,6 +6543,10 @@ export type ProjectAdmin = {
|
|
|
6541
6543
|
* E.g. `['release', 'environment']`
|
|
6542
6544
|
*/
|
|
6543
6545
|
highlightTags?: Array<string>;
|
|
6546
|
+
/**
|
|
6547
|
+
* Enable on-demand source context fetching from SCM integrations for stack traces.
|
|
6548
|
+
*/
|
|
6549
|
+
scmSourceContextEnabled?: boolean;
|
|
6544
6550
|
};
|
|
6545
6551
|
export type ProjectEventsResponseDict = Array<{
|
|
6546
6552
|
id: string;
|
|
@@ -9901,8 +9907,9 @@ export type UpdateAnOrganizationResponses = {
|
|
|
9901
9907
|
defaultSeerScannerAutomation: boolean;
|
|
9902
9908
|
enableSeerEnhancedAlerts: boolean;
|
|
9903
9909
|
enableSeerCoding: boolean;
|
|
9904
|
-
defaultCodingAgent: string
|
|
9910
|
+
defaultCodingAgent: string;
|
|
9905
9911
|
defaultCodingAgentIntegrationId: number | null;
|
|
9912
|
+
defaultAutomatedRunStoppingPoint: string;
|
|
9906
9913
|
autoEnableCodeReview: boolean;
|
|
9907
9914
|
autoOpenPrs: boolean;
|
|
9908
9915
|
defaultCodeReviewTriggers: Array<string>;
|
|
@@ -23512,6 +23519,7 @@ export type RetrieveAProjectResponses = {
|
|
|
23512
23519
|
tempestFetchScreenshots: boolean;
|
|
23513
23520
|
autofixAutomationTuning: string;
|
|
23514
23521
|
seerScannerAutomation: boolean;
|
|
23522
|
+
scmSourceContextEnabled: boolean;
|
|
23515
23523
|
debugFilesRole: string | null;
|
|
23516
23524
|
};
|
|
23517
23525
|
};
|
|
@@ -23563,6 +23571,10 @@ export type UpdateAProjectData = {
|
|
|
23563
23571
|
* E.g. `['release', 'environment']`
|
|
23564
23572
|
*/
|
|
23565
23573
|
highlightTags?: Array<string>;
|
|
23574
|
+
/**
|
|
23575
|
+
* Enable on-demand source context fetching from SCM integrations for stack traces.
|
|
23576
|
+
*/
|
|
23577
|
+
scmSourceContextEnabled?: boolean;
|
|
23566
23578
|
};
|
|
23567
23579
|
path: {
|
|
23568
23580
|
/**
|
|
@@ -23768,6 +23780,7 @@ export type UpdateAProjectResponses = {
|
|
|
23768
23780
|
tempestFetchScreenshots: boolean;
|
|
23769
23781
|
autofixAutomationTuning: string;
|
|
23770
23782
|
seerScannerAutomation: boolean;
|
|
23783
|
+
scmSourceContextEnabled: boolean;
|
|
23771
23784
|
debugFilesRole: string | null;
|
|
23772
23785
|
};
|
|
23773
23786
|
};
|