@kud/gh-cockpit 0.1.12 → 0.1.13

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.
@@ -6,8 +6,8 @@ import { relativeTime, inboxConfig } from '@kud/gh-ink';
6
6
  import { mkdirSync } from 'fs';
7
7
  import { homedir } from 'os';
8
8
  import { join } from 'path';
9
- import { buildInboxQuery, computeHealth as computeHealth$1, latestChecks, isPendingCheck, isFailCheck, isPassCheck } from '@kud/gh';
10
- export { buildInboxQuery } from '@kud/gh';
9
+ import { mergeInboxData, buildInboxQuery, buildInboxQueries, computeHealth as computeHealth$1, latestChecks, isPendingCheck, isFailCheck, isPassCheck } from '@kud/gh';
10
+ export { buildInboxQueries, buildInboxQuery, mergeInboxData } from '@kud/gh';
11
11
  import { $ } from 'zx';
12
12
  import { useRef, useEffect, useState } from 'react';
13
13
 
@@ -51,8 +51,10 @@ var DrillView = ({
51
51
  // src/lib.ts
52
52
  var lib_exports = {};
53
53
  __export(lib_exports, {
54
+ buildInboxQueries: () => buildInboxQueries,
54
55
  buildInboxQuery: () => buildInboxQuery,
55
56
  computeHealth: () => computeHealth,
57
+ mergeInboxData: () => mergeInboxData,
56
58
  signalPath: () => signalPath,
57
59
  toGHItem: () => toGHItem,
58
60
  withRetry: () => withRetry
@@ -1,4 +1,4 @@
1
- import { AiLauncher, seedPromptFor, CopyPromptNotice } from '../chunk-TEWCRLXY.js';
1
+ import { AiLauncher, seedPromptFor, CopyPromptNotice } from '../chunk-KKM7DQZT.js';
2
2
  import { useEffect } from 'react';
3
3
  import { jsx } from 'react/jsx-runtime';
4
4
 
package/dist/index.d.ts CHANGED
@@ -2,7 +2,7 @@ import React, { ReactNode } from 'react';
2
2
  import { GHItem, RepoFilter, InboxExtension, DetailContext } from '@kud/gh-ink';
3
3
  export * from '@kud/gh-ink';
4
4
  import { Health } from '@kud/gh';
5
- export { buildInboxQuery } from '@kud/gh';
5
+ export { InboxSource, buildInboxQueries, buildInboxQuery, mergeInboxData } from '@kud/gh';
6
6
 
7
7
  declare const withRetry: <T>(fn: () => Promise<T>, attempts?: number, delayMs?: number) => Promise<T>;
8
8
  declare const computeHealth: (node: any) => Health;
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
- import { __export, withRetry, toGHItem, signalPath, computeHealth, buildInboxQuery, DrillView, lib_exports, AiLauncher, seedPromptFor, CopyPromptNotice, __reExport } from './chunk-TEWCRLXY.js';
2
- export { DrillView, buildInboxQuery, computeHealth, signalPath, toGHItem, withRetry } from './chunk-TEWCRLXY.js';
1
+ import { __export, withRetry, toGHItem, signalPath, mergeInboxData, computeHealth, buildInboxQuery, buildInboxQueries, DrillView, lib_exports, AiLauncher, seedPromptFor, CopyPromptNotice, __reExport } from './chunk-KKM7DQZT.js';
2
+ export { DrillView, buildInboxQueries, buildInboxQuery, computeHealth, mergeInboxData, signalPath, toGHItem, withRetry } from './chunk-KKM7DQZT.js';
3
3
  import { parsePatterns, HealthPanel, CommentsPanel, inboxConfig } from '@kud/gh-ink';
4
4
  import { $ } from 'zx';
5
5
  import { useState, useEffect } from 'react';
@@ -17,12 +17,14 @@ __export(index_exports, {
17
17
  DrillView: () => DrillView,
18
18
  IssueView: () => IssueView,
19
19
  PrView: () => PrView,
20
+ buildInboxQueries: () => buildInboxQueries,
20
21
  buildInboxQuery: () => buildInboxQuery,
21
22
  checkDrillFor: () => checkDrillFor,
22
23
  computeHealth: () => computeHealth,
23
24
  defineCockpit: () => defineCockpit,
24
25
  detailFor: () => detailFor,
25
26
  hasPatterns: () => hasPatterns,
27
+ mergeInboxData: () => mergeInboxData,
26
28
  parseArgs: () => parseArgs,
27
29
  registerCheckDrills: () => registerCheckDrills,
28
30
  signalPath: () => signalPath,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kud/gh-cockpit",
3
- "version": "0.1.12",
3
+ "version": "0.1.13",
4
4
  "description": "A configurable GitHub cockpit for the terminal — your PRs, reviews and issues in one Ink TUI, grouped by whose move it is.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -53,8 +53,8 @@
53
53
  "react": ">=19"
54
54
  },
55
55
  "dependencies": {
56
- "@kud/gh": "0.6.0",
57
- "@kud/gh-ink": "0.26.3",
56
+ "@kud/gh": "0.7.0",
57
+ "@kud/gh-ink": "0.26.4",
58
58
  "@kud/ink-ui": "0.14.0",
59
59
  "zx": "8.8.5"
60
60
  },