@rallycry/conveyor-mcp 5.0.1 → 5.0.3

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,4 +1,4 @@
1
- import { ListDriveFilesResponse, ReadDriveFileResponse, DriveFileDTO, DeleteDriveFileResponse, ProjectIntegrationsSummary, GaAnalyticsSummaryDTO, ProjectChannelDTO, ReadChannelMessagesResponse, PostChannelMessageResponse, ListMeetingsResponse, MeetingForAgent, ReadMeetingTranscriptResponse } from '@project/shared';
1
+ import { ListDriveFilesResponse, ReadDriveFileResponse, DriveFileDTO, DeleteDriveFileResponse, ProjectIntegrationsSummary, GaAnalyticsSummaryDTO, ProjectChannelDTO, ReadChannelMessagesResponse, PostChannelMessageResponse, ListMeetingsResponse, MeetingForAgent, ReadMeetingTranscriptResponse, MeetingChecklistItemForAgent } from '@project/shared';
2
2
 
3
3
  interface ConveyorMcpConfig {
4
4
  apiUrl: string;
@@ -427,8 +427,8 @@ declare class ConveyorConnection {
427
427
  }>;
428
428
  /** Resolve tag names to IDs within a project, throwing on any unknown name. */
429
429
  private resolveTagIds;
430
- private assignTagsToTask;
431
- private removeTagsFromTask;
430
+ private assignResolvedTags;
431
+ private removeResolvedTags;
432
432
  /** Guarded status transition used by the review tools (approve/request). */
433
433
  transitionTaskStatus(params: {
434
434
  projectId?: string;
@@ -685,6 +685,46 @@ declare class ConveyorConnection {
685
685
  offset?: number;
686
686
  limit?: number;
687
687
  }): Promise<ReadMeetingTranscriptResponse>;
688
+ createMeeting(params: {
689
+ projectId?: string;
690
+ rawText: string;
691
+ title?: string;
692
+ occurredAt?: string;
693
+ }): Promise<MeetingForAgent>;
694
+ updateMeeting(params: {
695
+ projectId?: string;
696
+ meetingId: string;
697
+ title?: string;
698
+ occurredAt?: string;
699
+ summary?: string;
700
+ }): Promise<MeetingForAgent>;
701
+ addMeetingChecklistItems(params: {
702
+ projectId?: string;
703
+ meetingId: string;
704
+ items: {
705
+ title: string;
706
+ }[];
707
+ }): Promise<MeetingChecklistItemForAgent[]>;
708
+ checkMeetingChecklistItem(params: {
709
+ projectId?: string;
710
+ meetingId: string;
711
+ title: string;
712
+ checked: boolean;
713
+ linkedTask?: string;
714
+ }): Promise<MeetingChecklistItemForAgent>;
715
+ editMeetingChecklistItem(params: {
716
+ projectId?: string;
717
+ meetingId: string;
718
+ title: string;
719
+ newTitle: string;
720
+ }): Promise<MeetingChecklistItemForAgent>;
721
+ removeMeetingChecklistItem(params: {
722
+ projectId?: string;
723
+ meetingId: string;
724
+ title: string;
725
+ }): Promise<{
726
+ title: string;
727
+ }>;
688
728
  /** Effective account/project/board identity + capabilities for this token. */
689
729
  getConnectionContext(projectId?: string): Promise<ConnectionContext>;
690
730
  /** Layered verify-by-scope probe (auth → account → project → board →
package/dist/index.d.ts CHANGED
@@ -1,3 +1,3 @@
1
- export { A as ActivePtySession, d as ConveyorConnection, e as ConveyorMcpConfig, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-DtGKRfga.js';
1
+ export { A as ActivePtySession, d as ConveyorConnection, e as ConveyorMcpConfig, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-B7CwszOV.js';
2
2
  export { AttachTunnelOptions, ResolvedPtySession, RunTunnelOptions, TunnelConnection, TunnelHandle, TunnelSession, TunnelTty, WaitForPtySessionOptions, attachTunnel, runTunnel, waitForPtySession } from './tunnel.js';
3
3
  import '@project/shared';
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@ import {
5
5
  } from "./chunk-HIVOGGE3.js";
6
6
  import {
7
7
  ConveyorConnection
8
- } from "./chunk-7VH3ULLT.js";
8
+ } from "./chunk-XLDG5QEX.js";
9
9
  export {
10
10
  ConveyorConnection,
11
11
  attachTunnel,
@@ -4,7 +4,7 @@ import {
4
4
  } from "./chunk-HIVOGGE3.js";
5
5
  import {
6
6
  ConveyorConnection
7
- } from "./chunk-7VH3ULLT.js";
7
+ } from "./chunk-XLDG5QEX.js";
8
8
 
9
9
  // src/tunnel-cli.ts
10
10
  var HELP = `conveyor-tunnel \u2014 attach your local terminal to a cloud Claude Code session.
package/dist/tunnel.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { A as ActivePtySession, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-DtGKRfga.js';
1
+ import { A as ActivePtySession, P as PtyAttachSnapshot, c as PtyDataChunk } from './connection-B7CwszOV.js';
2
2
  import '@project/shared';
3
3
 
4
4
  /**
package/dist/wait-cli.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  ConveyorConnection
4
- } from "./chunk-7VH3ULLT.js";
4
+ } from "./chunk-XLDG5QEX.js";
5
5
  import {
6
6
  runWait
7
7
  } from "./chunk-OPZL4NDT.js";
@@ -1,4 +1,4 @@
1
- import { C as CardCollectionPage, a as CardCollectionDelta } from './connection-DtGKRfga.js';
1
+ import { C as CardCollectionPage, a as CardCollectionDelta } from './connection-B7CwszOV.js';
2
2
  import { WaitFilter, WaitResult } from './wait.js';
3
3
  import '@project/shared';
4
4
 
package/dist/wait.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { b as CardCollectionItem } from './connection-DtGKRfga.js';
1
+ import { b as CardCollectionItem } from './connection-B7CwszOV.js';
2
2
  import '@project/shared';
3
3
 
4
4
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rallycry/conveyor-mcp",
3
- "version": "5.0.1",
3
+ "version": "5.0.3",
4
4
  "description": "Conveyor MCP server for Claude Code PM integration",
5
5
  "keywords": [
6
6
  "claude",