Skip to content

Commit 9c83e9f

Browse files
authored
chore(api): Change title to include "error" (#56423)
Fixes getsentry/sentry-docs#7688
1 parent dc917d6 commit 9c83e9f

File tree

3 files changed

+27
-14
lines changed

3 files changed

+27
-14
lines changed

api-docs/paths/events/project-events.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
22
"get": {
33
"tags": ["Events"],
4-
"description": "Return a list of events bound to a project.",
5-
"operationId": "List a Project's Events",
4+
"description": "Return a list of error events bound to a project.",
5+
"operationId": "List a Project's Error Events",
66
"parameters": [
77
{
88
"name": "organization_slug",

src/sentry/api/endpoints/project_events.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ class ProjectEventsEndpoint(ProjectEndpoint):
2929

3030
def get(self, request: Request, project) -> Response:
3131
"""
32-
List a Project's Events
32+
List a Project's Error Events
3333
```````````````````````
3434
3535
Return a list of events bound to a project.

src/sentry/apidocs/api_ownership_stats_dont_modify.json

+24-11
Original file line numberDiff line numberDiff line change
@@ -580,7 +580,9 @@
580580
"OrganizationEventsEndpoint::GET"
581581
],
582582
"private": [],
583-
"experimental": [],
583+
"experimental": [
584+
"OrganizationSpansAggregationEndpoint::GET"
585+
],
584586
"unknown": [
585587
"KeyTransactionEndpoint::DELETE",
586588
"KeyTransactionEndpoint::GET",
@@ -628,7 +630,7 @@
628630
]
629631
},
630632
"discover-n-dashboards": {
631-
"block_start": 630,
633+
"block_start": 632,
632634
"public": [],
633635
"private": [],
634636
"experimental": [],
@@ -643,7 +645,7 @@
643645
]
644646
},
645647
"enterprise": {
646-
"block_start": 645,
648+
"block_start": 647,
647649
"public": [
648650
"OrganizationSCIMMemberDetails::DELETE",
649651
"OrganizationSCIMMemberDetails::GET",
@@ -658,6 +660,7 @@
658660
"OrganizationStatsEndpointV2::GET"
659661
],
660662
"private": [
663+
"ReleaseThresholdDetailsEndpoint::GET",
661664
"ReleaseThresholdEndpoint::GET",
662665
"ReleaseThresholdEndpoint::POST"
663666
],
@@ -701,7 +704,7 @@
701704
]
702705
},
703706
"telemetry-experience": {
704-
"block_start": 703,
707+
"block_start": 706,
705708
"public": [],
706709
"private": [],
707710
"experimental": [],
@@ -718,7 +721,7 @@
718721
]
719722
},
720723
"team-starfish": {
721-
"block_start": 720,
724+
"block_start": 723,
722725
"public": [],
723726
"private": [],
724727
"experimental": [],
@@ -728,7 +731,7 @@
728731
]
729732
},
730733
"growth": {
731-
"block_start": 730,
734+
"block_start": 733,
732735
"public": [],
733736
"private": [],
734737
"experimental": [],
@@ -737,17 +740,18 @@
737740
]
738741
},
739742
"feedback-backend": {
740-
"block_start": 739,
743+
"block_start": 742,
741744
"public": [],
742745
"private": [],
743746
"experimental": [
744747
"FeedbackIngestEndpoint::POST",
745-
"OrganizationFeedbackIndexEndpoint::GET"
748+
"OrganizationFeedbackIndexEndpoint::GET",
749+
"ProjectFeedbackDetailsEndpoint::GET"
746750
],
747751
"unknown": []
748752
},
749753
"replay-backend": {
750-
"block_start": 749,
754+
"block_start": 753,
751755
"public": [],
752756
"private": [],
753757
"experimental": [],
@@ -756,7 +760,7 @@
756760
]
757761
},
758762
"profiling": {
759-
"block_start": 758,
763+
"block_start": 762,
760764
"public": [],
761765
"private": [],
762766
"experimental": [],
@@ -771,8 +775,17 @@
771775
"ProjectProfilingTransactionIDProfileIDEndpoint::GET"
772776
]
773777
},
778+
"team-web-sdk-frontend": {
779+
"block_start": 778,
780+
"public": [],
781+
"private": [
782+
"SourceMapDebugBlueThunderEditionEndpoint::GET"
783+
],
784+
"experimental": [],
785+
"unknown": []
786+
},
774787
"hybrid-cloud": {
775-
"block_start": 774,
788+
"block_start": 787,
776789
"public": [],
777790
"private": [],
778791
"experimental": [],

0 commit comments

Comments
 (0)