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.
@@ -1,5 +1,5 @@
1
1
 
2
2
  
3
- > bopodev-db@0.1.30 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
3
+ > bopodev-db@0.1.31 build /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
4
4
  > tsc -p tsconfig.json --emitDeclarationOnly
5
5
 
@@ -1,4 +1,4 @@
1
1
 
2
- > bopodev-db@0.1.29 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
2
+ > bopodev-db@0.1.30 typecheck /Users/danielkrusenstrahle/Documents/Projects/Monorepo/bopohq/packages/db
3
3
  > tsc -p tsconfig.json --noEmit
4
4
 
@@ -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>;