@rallycry/conveyor-mcp 4.3.30 → 5.0.0

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.
@@ -467,6 +467,89 @@ var ConveyorConnection = class {
467
467
  });
468
468
  }
469
469
  // ── Connection Scope & Verification ─────────────────────────────────
470
+ // ── Google Drive file CRUD ──────────────────────────────────────────
471
+ // The OAuth refresh token stays on the API and every operation is confined
472
+ // server-side to the project's configured root folder, so these carry no
473
+ // credential and cannot reach outside that subtree.
474
+ listProjectDriveFiles(params) {
475
+ const { projectId, ...rest } = params;
476
+ return this.call("listProjectDriveFiles", { projectId: this.resolveProjectId(projectId), ...rest });
477
+ }
478
+ readProjectDriveFile(params) {
479
+ const { projectId, ...rest } = params;
480
+ return this.call("readProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
481
+ }
482
+ createProjectDriveFile(params) {
483
+ const { projectId, ...rest } = params;
484
+ return this.call("createProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
485
+ }
486
+ updateProjectDriveFile(params) {
487
+ const { projectId, ...rest } = params;
488
+ return this.call("updateProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
489
+ }
490
+ deleteProjectDriveFile(params) {
491
+ const { projectId, ...rest } = params;
492
+ return this.call("deleteProjectDriveFile", { projectId: this.resolveProjectId(projectId), ...rest });
493
+ }
494
+ createProjectDriveFolder(params) {
495
+ const { projectId, ...rest } = params;
496
+ return this.call("createProjectDriveFolder", { projectId: this.resolveProjectId(projectId), ...rest });
497
+ }
498
+ /**
499
+ * What this project is connected to, plus its registered work channels.
500
+ * Credential-free — configuration booleans only.
501
+ */
502
+ listProjectIntegrations(projectId) {
503
+ return this.call("listProjectIntegrations", {
504
+ projectId: this.resolveProjectId(projectId)
505
+ });
506
+ }
507
+ /** GA4 traffic summary; an unconfigured project answers configured:false. */
508
+ getProjectAnalyticsSummary(params) {
509
+ const { projectId, ...rest } = params;
510
+ return this.call("getProjectAnalyticsSummary", {
511
+ projectId: this.resolveProjectId(projectId),
512
+ ...rest
513
+ });
514
+ }
515
+ /** The channels an admin registered as reachable by agents. */
516
+ listProjectChannels(projectId) {
517
+ return this.call("listProjectChannels", {
518
+ projectId: this.resolveProjectId(projectId)
519
+ });
520
+ }
521
+ /** Recent messages from a registered channel, fetched live and never stored. */
522
+ readChannelMessages(params) {
523
+ const { projectId, ...rest } = params;
524
+ return this.call("readChannelMessages", {
525
+ projectId: this.resolveProjectId(projectId),
526
+ ...rest
527
+ });
528
+ }
529
+ /** Post an attributed message into a channel that granted posting. */
530
+ postChannelMessage(params) {
531
+ const { projectId, ...rest } = params;
532
+ return this.call("postChannelMessage", {
533
+ projectId: this.resolveProjectId(projectId),
534
+ ...rest
535
+ });
536
+ }
537
+ // ── Meetings (read-only) ────────────────────────────────────────────
538
+ listMeetings(params) {
539
+ const { projectId, ...rest } = params;
540
+ return this.call("listMeetings", { projectId: this.resolveProjectId(projectId), ...rest });
541
+ }
542
+ getMeeting(params) {
543
+ const { projectId, ...rest } = params;
544
+ return this.call("getMeeting", { projectId: this.resolveProjectId(projectId), ...rest });
545
+ }
546
+ readMeetingTranscript(params) {
547
+ const { projectId, ...rest } = params;
548
+ return this.call("readMeetingTranscript", {
549
+ projectId: this.resolveProjectId(projectId),
550
+ ...rest
551
+ });
552
+ }
470
553
  /** Effective account/project/board identity + capabilities for this token. */
471
554
  getConnectionContext(projectId) {
472
555
  return this.call("getConnectionContext", {