Skip to content
Merged
Show file tree
Hide file tree
Changes from 24 commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
b48552c
feat(seer): Seer SCM Overview
ryan953 Mar 23, 2026
6a77ba3
review comment
ryan953 Mar 23, 2026
c6c4a94
Merge branch 'master' into ryan953/seer-scm-overview
ryan953 Mar 23, 2026
42d1203
iterate on loading state
ryan953 Mar 23, 2026
353911c
split component to make stories better
ryan953 Mar 24, 2026
8d0c066
squash
ryan953 Mar 20, 2026
0b7c980
split it up[
ryan953 Mar 22, 2026
06df154
Iterate!
ryan953 Mar 24, 2026
5d35c75
Iterate some more
ryan953 Mar 25, 2026
70f8adb
add autofix section stories
ryan953 Mar 25, 2026
ceff1b5
rm unused helpers
ryan953 Mar 25, 2026
d0034ef
tweak styles
ryan953 Mar 25, 2026
b9592a6
show Connect Projects and Repos button
ryan953 Mar 25, 2026
605aa60
Merge branch 'master' into ryan953/seer-overview
ryan953 Mar 25, 2026
38eecc4
Merge branch 'master' into ryan953/seer-overview
ryan953 Mar 26, 2026
45b0e63
iterate
ryan953 Mar 27, 2026
133b65d
iterate - w/ fancy radios
ryan953 Mar 30, 2026
1f98574
fix create pr counts
ryan953 Mar 30, 2026
6fd63ff
Merge branch 'master' into ryan953/seer-overview
ryan953 Mar 30, 2026
defedcb
fix test
ryan953 Mar 30, 2026
d840e5f
add bulk-edit of ser agent name
ryan953 Mar 30, 2026
743781b
add bulk-edit of seer create-pr field
ryan953 Mar 30, 2026
d6a7389
add busy state to the bulk edit buttons
ryan953 Mar 30, 2026
bb791b3
catch 429s and throw an error to the user. This happens because we ar…
ryan953 Mar 30, 2026
54fa762
rm connectedrepo and stopping point forms for now
ryan953 Mar 31, 2026
0785ab7
do chunking to avoid 429s a bit more
ryan953 Mar 31, 2026
0aa772b
disable buttons while requests are in-flight
ryan953 Mar 31, 2026
d5b4714
add tests for processInChunks
ryan953 Mar 31, 2026
f393df4
rm defaultAutomatedRunStoppingPoint field for now
ryan953 Mar 31, 2026
657bb6c
rm extra changes
ryan953 Mar 31, 2026
0d1fe15
fix issue while loading: shouldnt fallback to comparing to seer
ryan953 Mar 31, 2026
6b9ff53
handle case when were loading agent options
ryan953 Mar 31, 2026
c1c2cc1
mv organizationIntegrationsQueryOptions
ryan953 Mar 31, 2026
08249dd
Merge branch 'master' into ryan953/seer-overview
ryan953 Mar 31, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions static/app/types/organization.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import type {AutofixStoppingPoint} from 'sentry/components/events/autofix/types';
import type {AggregationOutputType} from 'sentry/utils/discover/fields';
import type {
DatasetSource,
Expand Down Expand Up @@ -64,9 +65,10 @@ export interface Organization extends OrganizationSummary {
dataScrubber: boolean;
dataScrubberDefaults: boolean;
debugFilesRole: string;
defaultAutomatedRunStoppingPoint: 'off' | AutofixStoppingPoint;
defaultCodeReviewTriggers: CodeReviewTrigger[];
defaultCodingAgent: string | null | undefined;
defaultCodingAgentIntegrationId: number | null | undefined;
defaultCodingAgent: string | null;
defaultCodingAgentIntegrationId: string | number | null;
defaultRole: string;
enhancedPrivacy: boolean;
eventsMemberAdmin: boolean;
Expand Down
Loading
Loading