Skip to content

Commit 7972d0d

Browse files
anirudh5harmaclaude
andcommitted
chore(api): regenerate OpenAPI + TS schema for multi-provider intake
Picks up TrackerIntakeConfig's new team / baseURL / projectKey fields and the github / linear / jira provider enum from the domain change. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent f696262 commit 7972d0d

2 files changed

Lines changed: 12 additions & 1 deletion

File tree

backend/internal/httpd/apispec/openapi.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2549,6 +2549,8 @@ components:
25492549
properties:
25502550
assignee:
25512551
type: string
2552+
baseURL:
2553+
type: string
25522554
enabled:
25532555
type: boolean
25542556
labels:
@@ -2557,12 +2559,18 @@ components:
25572559
type: array
25582560
limit:
25592561
type: integer
2562+
projectKey:
2563+
type: string
25602564
provider:
25612565
enum:
25622566
- github
2567+
- linear
2568+
- jira
25632569
type: string
25642570
repo:
25652571
type: string
2572+
team:
2573+
type: string
25662574
type: object
25672575
TriggerReviewResponse:
25682576
properties:

frontend/src/api/schema.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -913,12 +913,15 @@ export interface components {
913913
};
914914
TrackerIntakeConfig: {
915915
assignee?: string;
916+
baseURL?: string;
916917
enabled?: boolean;
917918
labels?: string[];
918919
limit?: number;
920+
projectKey?: string;
919921
/** @enum {string} */
920-
provider?: "github";
922+
provider?: "github" | "linear" | "jira";
921923
repo?: string;
924+
team?: string;
922925
};
923926
TriggerReviewResponse: {
924927
reviewerHandleId: string;

0 commit comments

Comments
 (0)