@rallycry/conveyor-mcp 4.3.30 → 5.0.1

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,107 @@ 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", {
477
+ projectId: this.resolveProjectId(projectId),
478
+ ...rest
479
+ });
480
+ }
481
+ readProjectDriveFile(params) {
482
+ const { projectId, ...rest } = params;
483
+ return this.call("readProjectDriveFile", {
484
+ projectId: this.resolveProjectId(projectId),
485
+ ...rest
486
+ });
487
+ }
488
+ createProjectDriveFile(params) {
489
+ const { projectId, ...rest } = params;
490
+ return this.call("createProjectDriveFile", {
491
+ projectId: this.resolveProjectId(projectId),
492
+ ...rest
493
+ });
494
+ }
495
+ updateProjectDriveFile(params) {
496
+ const { projectId, ...rest } = params;
497
+ return this.call("updateProjectDriveFile", {
498
+ projectId: this.resolveProjectId(projectId),
499
+ ...rest
500
+ });
501
+ }
502
+ deleteProjectDriveFile(params) {
503
+ const { projectId, ...rest } = params;
504
+ return this.call("deleteProjectDriveFile", {
505
+ projectId: this.resolveProjectId(projectId),
506
+ ...rest
507
+ });
508
+ }
509
+ createProjectDriveFolder(params) {
510
+ const { projectId, ...rest } = params;
511
+ return this.call("createProjectDriveFolder", {
512
+ projectId: this.resolveProjectId(projectId),
513
+ ...rest
514
+ });
515
+ }
516
+ /**
517
+ * What this project is connected to, plus its registered work channels.
518
+ * Credential-free — configuration booleans only.
519
+ */
520
+ listProjectIntegrations(projectId) {
521
+ return this.call("listProjectIntegrations", {
522
+ projectId: this.resolveProjectId(projectId)
523
+ });
524
+ }
525
+ /** GA4 traffic summary; an unconfigured project answers configured:false. */
526
+ getProjectAnalyticsSummary(params) {
527
+ const { projectId, ...rest } = params;
528
+ return this.call("getProjectAnalyticsSummary", {
529
+ projectId: this.resolveProjectId(projectId),
530
+ ...rest
531
+ });
532
+ }
533
+ /** The channels an admin registered as reachable by agents. */
534
+ listProjectChannels(projectId) {
535
+ return this.call("listProjectChannels", {
536
+ projectId: this.resolveProjectId(projectId)
537
+ });
538
+ }
539
+ /** Recent messages from a registered channel, fetched live and never stored. */
540
+ readChannelMessages(params) {
541
+ const { projectId, ...rest } = params;
542
+ return this.call("readChannelMessages", {
543
+ projectId: this.resolveProjectId(projectId),
544
+ ...rest
545
+ });
546
+ }
547
+ /** Post an attributed message into a channel that granted posting. */
548
+ postChannelMessage(params) {
549
+ const { projectId, ...rest } = params;
550
+ return this.call("postChannelMessage", {
551
+ projectId: this.resolveProjectId(projectId),
552
+ ...rest
553
+ });
554
+ }
555
+ // ── Meetings (read-only) ────────────────────────────────────────────
556
+ listMeetings(params) {
557
+ const { projectId, ...rest } = params;
558
+ return this.call("listMeetings", { projectId: this.resolveProjectId(projectId), ...rest });
559
+ }
560
+ getMeeting(params) {
561
+ const { projectId, ...rest } = params;
562
+ return this.call("getMeeting", { projectId: this.resolveProjectId(projectId), ...rest });
563
+ }
564
+ readMeetingTranscript(params) {
565
+ const { projectId, ...rest } = params;
566
+ return this.call("readMeetingTranscript", {
567
+ projectId: this.resolveProjectId(projectId),
568
+ ...rest
569
+ });
570
+ }
470
571
  /** Effective account/project/board identity + capabilities for this token. */
471
572
  getConnectionContext(projectId) {
472
573
  return this.call("getConnectionContext", {