bopodev-db 0.1.30 → 0.1.31
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.turbo/turbo-build.log +1 -1
- package/.turbo/turbo-typecheck.log +1 -1
- package/dist/repositories/legacy.d.ts +10 -0
- package/dist/schema.d.ts +2827 -1255
- package/package.json +1 -1
- package/src/migrations/0005_work_loops.sql +67 -0
- package/src/migrations/meta/_journal.json +7 -0
- package/src/repositories/legacy.ts +5 -1
- package/src/schema.ts +72 -0
package/.turbo/turbo-build.log
CHANGED
|
@@ -263,6 +263,8 @@ export declare function listIssues(db: BopoDb, companyId: string, projectId?: st
|
|
|
263
263
|
externalLink: string | null;
|
|
264
264
|
isClaimed: boolean;
|
|
265
265
|
claimedByHeartbeatRunId: string | null;
|
|
266
|
+
loopId: string | null;
|
|
267
|
+
loopRunId: string | null;
|
|
266
268
|
createdAt: Date;
|
|
267
269
|
updatedAt: Date;
|
|
268
270
|
}[]>;
|
|
@@ -288,6 +290,8 @@ export declare function getIssue(db: BopoDb, companyId: string, issueId: string)
|
|
|
288
290
|
externalLink: string | null;
|
|
289
291
|
isClaimed: boolean;
|
|
290
292
|
claimedByHeartbeatRunId: string | null;
|
|
293
|
+
loopId: string | null;
|
|
294
|
+
loopRunId: string | null;
|
|
291
295
|
createdAt: Date;
|
|
292
296
|
updatedAt: Date;
|
|
293
297
|
} | null>;
|
|
@@ -304,6 +308,8 @@ export declare function createIssue(db: BopoDb, input: {
|
|
|
304
308
|
assigneeAgentId?: string | null;
|
|
305
309
|
labels?: string[];
|
|
306
310
|
tags?: string[];
|
|
311
|
+
loopId?: string | null;
|
|
312
|
+
loopRunId?: string | null;
|
|
307
313
|
}): Promise<{
|
|
308
314
|
id: string;
|
|
309
315
|
createdAt: Date;
|
|
@@ -321,6 +327,8 @@ export declare function createIssue(db: BopoDb, input: {
|
|
|
321
327
|
externalLink: string | null;
|
|
322
328
|
isClaimed: boolean;
|
|
323
329
|
claimedByHeartbeatRunId: string | null;
|
|
330
|
+
loopId: string | null;
|
|
331
|
+
loopRunId: string | null;
|
|
324
332
|
}>;
|
|
325
333
|
export declare function updateIssue(db: BopoDb, input: {
|
|
326
334
|
companyId: string;
|
|
@@ -350,6 +358,8 @@ export declare function updateIssue(db: BopoDb, input: {
|
|
|
350
358
|
externalLink: string | null;
|
|
351
359
|
isClaimed: boolean;
|
|
352
360
|
claimedByHeartbeatRunId: string | null;
|
|
361
|
+
loopId: string | null;
|
|
362
|
+
loopRunId: string | null;
|
|
353
363
|
createdAt: Date;
|
|
354
364
|
updatedAt: Date;
|
|
355
365
|
} | null>;
|