-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-client.ts
More file actions
241 lines (223 loc) · 8.21 KB
/
Copy pathapi-client.ts
File metadata and controls
241 lines (223 loc) · 8.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
import type {
Account,
Repository,
IssueOrPR,
RepoFile,
InstallationResponse,
PipelineExecution,
PostprocessedResult
} from '../types/api';
export const fetchAccounts = async (): Promise<Account[]> => {
try {
const response = await fetch('/api/vcs?resource=accounts&provider=github', {
headers: { 'Accept': 'application/json' }
});
if (!response.ok) {
// Graceful fallback on 401/4xx
return [];
}
const data = await response.json();
const accounts = Array.isArray(data?.accounts) ? data.accounts : [];
return accounts.map((a: any) => ({
login: a.login || a.username || a.owner || 'unknown',
type: a.type || a.kind || 'User',
id: typeof a.id === 'number' ? a.id : (a.id ? Number(a.id) : 0),
}));
} catch {
return [];
}
};
export const fetchRepositories = async (owner: string): Promise<Repository[]> => {
const response = await fetch(`/api/executions?owner=${encodeURIComponent(owner)}`, {
headers: { 'Accept': 'application/vnd.github+json' }
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to fetch repositories');
}
const data = await response.json();
return data.repositories as Repository[];
};
export const fetchBranchesAndInfo = async (owner: string, repo: string) => {
const response = await fetch(`/api/executions?owner=${encodeURIComponent(owner)}&repo=${encodeURIComponent(repo)}`);
if (!response.ok) throw new Error('Failed to fetch branches and repo info');
const data = await response.json();
return {
branches: data.branches,
defaultBranch: data.repoInfo?.default_branch
};
};
export const fetchCommits = async (owner: string, repo: string, branch: string) => {
const response = await fetch(`/api/executions?owner=${encodeURIComponent(owner)}&repo=${encodeURIComponent(repo)}&branch=${encodeURIComponent(branch)}`);
if (!response.ok) throw new Error('Failed to fetch commits');
const data = await response.json();
return data.commits;
};
export const fetchIssuesAndPRs = async (owner: string, repo: string): Promise<IssueOrPR[]> => {
try {
const response = await fetch(`/api/vcs?resource=issues&provider=github&owner=${encodeURIComponent(owner)}&repo=${encodeURIComponent(repo)}`, {
headers: { 'Accept': 'application/json' }
});
if (!response.ok) return [];
const data = await response.json();
const issues = Array.isArray(data?.issues) ? data.issues : [];
return issues.map((item: any) => ({
id: String(item.number ?? item.id ?? ''),
title: item.title || '',
isPR: Boolean(item.pull_request),
url: item.html_url || item.url || ''
}));
} catch (error) {
console.warn('Failed to fetch issues/PRs (vcs):', error);
return [];
}
};
export const fetchFiles = async (owner: string, repo: string, path: string = ''): Promise<RepoFile[]> => {
const response = await fetch(`/api/executions?action=files&owner=${encodeURIComponent(owner)}&repo=${encodeURIComponent(repo)}&path=${encodeURIComponent(path)}`, {
headers: { 'Accept': 'application/vnd.github+json' }
});
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to fetch files');
}
const data = await response.json();
return data.files as RepoFile[];
};
export const callAssetPackExecutionsAPI = async (
connectionId: number,
repoOwner: string,
repoName: string,
repoBranch: string,
commitSha: string,
issueNumber: string | null,
definitionOfRead: string,
userTimezone: string,
modelProvider: string,
modelId: string,
/** Optional attachments provided by user */
attachments?: { id: string; type: string; content: string }[],
/** Number of iterations for the pipeline */
iterationCount: number = 3,
/** Optional file uploads */
files?: File[],
/** Canonical execution type for the AssetPack pipeline substrate. */
pipelineType: string = 'agentic-execution:asset-pack'
): Promise<ReadableStream<Uint8Array> | null> => {
let body: BodyInit;
let headers: HeadersInit = {
'X-User-Timezone': userTimezone,
};
// If we have files, use multipart form data
if (files && files.length > 0) {
const formData = new FormData();
// Add JSON data as a field
formData.append('data', JSON.stringify({
connectionId,
repoOwner,
repoName,
repoBranch,
repoCommit: commitSha,
issueNumber,
definition_of_read: definitionOfRead,
modelProvider,
modelId,
attachments,
iterationCount,
pipeline_type: pipelineType
}));
// Add files
files.forEach((file, index) => {
formData.append(`file_${index}`, file);
});
body = formData;
// Don't set Content-Type for FormData - browser will set it with boundary
} else {
// Traditional JSON request
headers['Content-Type'] = 'application/json';
body = JSON.stringify({
connectionId,
repoOwner,
repoName,
repoBranch,
repoCommit: commitSha,
issueNumber,
definition_of_read: definitionOfRead,
modelProvider,
modelId,
attachments,
iterationCount,
pipeline_type: pipelineType
});
}
const response = await fetch('/api/executions', {
method: 'POST',
headers,
body,
});
if (!response.ok) {
throw new Error(`API call failed: ${response.status} ${response.statusText}`);
}
return response.body;
};
/**
* Fetch a list of pipeline executions (history) for the current user.
* Each execution may include AssetPack evidence and settle delivery surfaces.
*/
export const fetchPipelineExecutionHistory = async (): Promise<PipelineExecution[]> => {
const response = await fetch('/api/executions/history');
if (!response.ok) {
const errorData = await response.json();
throw new Error(errorData.error || 'Failed to fetch execution history');
}
return response.json();
};
/**
* Fetch unified postprocessed result for a run
*/
export const fetchPostprocessed = async (runId: string): Promise<PostprocessedResult | null> => {
const res = await fetch(`/api/executions/postprocessed?id=${encodeURIComponent(runId)}`);
if (!res.ok) return null;
const data = await res.json();
return data?.postprocessed || null;
};
// -----------------------------------------------------------------------------
// Notifications wrappers
// -----------------------------------------------------------------------------
export const notifyBtdTransfer = async (
params: { recipientEmail: string; recipientName?: string; senderName: string; btdAmount: number; newBtdBalance: number; }
): Promise<void> => {
const res = await fetch('/api/notifications/btd-transfer', {
method: 'POST', headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
recipientEmail: params.recipientEmail,
recipientName: params.recipientName,
senderName: params.senderName,
btdAmount: params.btdAmount,
newBtdBalance: params.newBtdBalance,
}),
}); if (!res.ok) throw new Error('Notification btd-transfer failed');
};
export const notifyNewsletter = async (
params: { email: string; name?: string; subject: string; headline: string; body: string; buttonText?: string; buttonUrl?: string; unsubscribeUrl?: string; }
): Promise<void> => {
const res = await fetch('/api/notifications/newsletter', {
method: 'POST', headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params),
}); if (!res.ok) throw new Error('Notification newsletter failed');
};
export const notifyLowBtdReminder = async (
params: { email: string; name?: string; balance: number; threshold: number; purchaseUrl?: string; }
): Promise<void> => {
const res = await fetch('/api/notifications/low-btd-reminder', {
method: 'POST', headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params),
}); if (!res.ok) throw new Error('Notification low-btd-reminder failed');
};
export const notifyOutOfBtd = async (
params: { email: string; name?: string; purchaseUrl?: string; }
): Promise<void> => {
const res = await fetch('/api/notifications/out-of-btd', {
method: 'POST', headers: { 'Content-Type': 'application/json' },
body: JSON.stringify(params),
}); if (!res.ok) throw new Error('Notification out-of-btd failed');
};