-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapi-client.js
More file actions
257 lines (257 loc) · 9.96 KB
/
Copy pathapi-client.js
File metadata and controls
257 lines (257 loc) · 9.96 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
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.notifyOutOfBtd = exports.notifyLowBtdReminder = exports.notifyNewsletter = exports.notifyBtdTransfer = exports.postShippableInstruction = exports.fetchShippableInstructions = exports.fetchPostprocessed = exports.fetchPipelineExecutionHistory = exports.callAssetPackExecutionsAPI = exports.fetchFiles = exports.fetchIssuesAndPRs = exports.fetchCommits = exports.fetchBranchesAndInfo = exports.fetchRepositories = exports.fetchAccounts = void 0;
const fetchAccounts = async () => {
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) => ({
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 [];
}
};
exports.fetchAccounts = fetchAccounts;
const fetchRepositories = async (owner) => {
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;
};
exports.fetchRepositories = fetchRepositories;
const fetchBranchesAndInfo = async (owner, repo) => {
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
};
};
exports.fetchBranchesAndInfo = fetchBranchesAndInfo;
const fetchCommits = async (owner, repo, branch) => {
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;
};
exports.fetchCommits = fetchCommits;
const fetchIssuesAndPRs = async (owner, repo) => {
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) => ({
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 [];
}
};
exports.fetchIssuesAndPRs = fetchIssuesAndPRs;
const fetchFiles = async (owner, repo, path = '') => {
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;
};
exports.fetchFiles = fetchFiles;
const callAssetPackExecutionsAPI = async (connectionId, repoOwner, repoName, repoBranch, commitSha, issueNumber, definitionOfRead, userTimezone, modelProvider, modelId,
/** Optional attachments provided by user */
attachments,
/** Number of iterations for the pipeline */
iterationCount = 3,
/** Optional file uploads */
files,
/** Canonical execution type for the AssetPack pipeline substrate. */
pipelineType = 'agentic-execution:asset-pack') => {
let body;
let headers = {
'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;
};
exports.callAssetPackExecutionsAPI = callAssetPackExecutionsAPI;
/**
* Fetch a list of pipeline executions (history) for the current user.
* Each execution may include AssetPack evidence and Finish-delivered Shippables.
*/
const fetchPipelineExecutionHistory = async () => {
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();
};
exports.fetchPipelineExecutionHistory = fetchPipelineExecutionHistory;
/**
* Fetch unified postprocessed result for a run
*/
const fetchPostprocessed = async (runId) => {
const res = await fetch(`/api/executions/postprocessed?id=${encodeURIComponent(runId)}`);
if (!res.ok)
return null;
const data = await res.json();
return data?.postprocessed || null;
};
exports.fetchPostprocessed = fetchPostprocessed;
// -----------------------------------------------------------------------------
// On-the-Fly Instructions
// -----------------------------------------------------------------------------
/**
* Fetch on-the-fly instructions for a AssetPack/Shippable-producing run.
*/
const fetchShippableInstructions = async (runId) => {
const response = await fetch(`/api/executions/instructions?runId=${runId}`);
if (!response.ok) {
const err = await response.text();
throw new Error(err || `Failed to fetch instructions for run ${runId}`);
}
return response.json();
};
exports.fetchShippableInstructions = fetchShippableInstructions;
/**
* Submit an on-the-fly instruction for a AssetPack/Shippable-producing run.
*/
const postShippableInstruction = async (runId, content, attachments) => {
const response = await fetch('/api/executions/instructions', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ runId, content, attachments }),
});
if (!response.ok) {
const err = await response.text();
throw new Error(err || `Failed to post instruction for run ${runId}`);
}
return response.json();
};
exports.postShippableInstruction = postShippableInstruction;
// -----------------------------------------------------------------------------
// Notifications wrappers
// -----------------------------------------------------------------------------
const notifyBtdTransfer = async (params) => {
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');
};
exports.notifyBtdTransfer = notifyBtdTransfer;
const notifyNewsletter = async (params) => {
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');
};
exports.notifyNewsletter = notifyNewsletter;
const notifyLowBtdReminder = async (params) => {
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');
};
exports.notifyLowBtdReminder = notifyLowBtdReminder;
const notifyOutOfBtd = async (params) => {
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');
};
exports.notifyOutOfBtd = notifyOutOfBtd;