replicas-cli 0.2.710 → 0.2.712

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.
Files changed (2) hide show
  1. package/dist/index.cjs +18 -1
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -24504,6 +24504,22 @@ const { data } = await replicas.plugins.execute({
24504
24504
  });
24505
24505
  \`\`\`
24506
24506
 
24507
+ Each plugin includes a \`connections\` list with stable IDs and account labels. When a plugin has more than one connection, run the operation once per relevant connection:
24508
+
24509
+ \`\`\`ts
24510
+ const gmail = plugins.find((plugin) => plugin.id === 'gmail');
24511
+ const messages = await Promise.all((gmail?.connections ?? []).map((connection) =>
24512
+ replicas.plugins.execute({
24513
+ plugin: 'gmail',
24514
+ connectionId: connection.id,
24515
+ tool: 'GMAIL_FETCH_EMAILS',
24516
+ arguments: { max_results: 25 },
24517
+ }),
24518
+ ));
24519
+ \`\`\`
24520
+
24521
+ Omit \`connectionId\` to use the first connection in the most specific environment. Never guess an ID; take it from \`replicas.plugins.list()\`.
24522
+
24507
24523
  Use \`replicas.plugins.describe({ plugin, tools: [slug] })\` when search returned a partial schema or before constructing unfamiliar arguments.
24508
24524
 
24509
24525
  ## Batch work
@@ -27419,7 +27435,7 @@ var headlessFilesystemAgentResultSchema = external_exports.object({
27419
27435
  });
27420
27436
 
27421
27437
  // ../shared/src/cli-version.ts
27422
- var CLI_VERSION = "0.2.710";
27438
+ var CLI_VERSION = "0.2.712";
27423
27439
 
27424
27440
  // ../shared/src/version.ts
27425
27441
  function compareVersions(v1, v2) {
@@ -27689,6 +27705,7 @@ var HOSTED_COMPOSIO_PLUGIN_DEFINITIONS = [
27689
27705
  ["googleslides", "googleslides", "OAUTH2", true, "productivity", "Google Slides"],
27690
27706
  ["googlemeet", "googlemeet", "OAUTH2", true, "productivity", "Google Meet"],
27691
27707
  ["granola", "granola_mcp", "DCR_OAUTH", false, "productivity", "Granola"],
27708
+ ["mercury", "mercury_mcp", "DCR_OAUTH", false, "business", "Mercury"],
27692
27709
  ["googletasks", "googletasks", "OAUTH2", true, "productivity", "Google Tasks"],
27693
27710
  ["dropbox", "dropbox", "OAUTH2", true, "productivity", "Dropbox"],
27694
27711
  ["box", "box", "OAUTH2", true, "productivity", "Box"],
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.710",
3
+ "version": "0.2.712",
4
4
  "description": "CLI for managing Replicas workspaces - SSH into cloud dev environments with automatic port forwarding",
5
5
  "main": "dist/index.cjs",
6
6
  "bin": {