@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.
- package/README.md +102 -0
- package/dist/{chunk-7VH3ULLT.js → chunk-XLDG5QEX.js} +53 -17
- package/dist/cli.js +1249 -921
- package/dist/{connection-DtGKRfga.d.ts → connection-B7CwszOV.d.ts} +43 -3
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/tunnel-cli.js +1 -1
- package/dist/tunnel.d.ts +1 -1
- package/dist/wait-cli.js +1 -1
- package/dist/wait-runner.d.ts +1 -1
- package/dist/wait.d.ts +1 -1
- package/package.json +1 -1
|
@@ -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
|
|
431
|
-
private
|
|
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-
|
|
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
package/dist/tunnel-cli.js
CHANGED
package/dist/tunnel.d.ts
CHANGED
package/dist/wait-cli.js
CHANGED
package/dist/wait-runner.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as CardCollectionPage, a as CardCollectionDelta } from './connection-
|
|
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