replicas-cli 0.2.562 → 0.2.563

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 +14 -2
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -23807,6 +23807,7 @@ Use this when:
23807
23807
  - The user asks to discover which external services are connected
23808
23808
  - The user asks to create or control an E2B sandbox
23809
23809
  - The user asks to invoke a connected Modal function
23810
+ - The user asks to access Vercel projects, deployments, domains, logs, or infrastructure
23810
23811
  - The user asks to query or update a connected turbopuffer namespace
23811
23812
  - The user asks for PlanetScale organizations, databases, branches, or Insights data
23812
23813
  - The user asks to analyze text with Pangram`;
@@ -23874,6 +23875,17 @@ const databases = await replicas.planetscale.request('/organizations/acme/databa
23874
23875
 
23875
23876
  OAuth scopes control permitted operations. Confirm mutations before using POST, PUT, PATCH, or DELETE.
23876
23877
 
23878
+ ## Vercel
23879
+
23880
+ Vercel is a native access-token integration. Pass a relative path from the Vercel REST API, including a \`teamId\` query parameter for team-owned resources:
23881
+
23882
+ \`\`\`ts
23883
+ const projects = await replicas.vercel.request('/v9/projects?teamId=team_123');
23884
+ const deployments = await replicas.vercel.request('/v6/deployments?teamId=team_123');
23885
+ \`\`\`
23886
+
23887
+ Confirm mutations before using POST, PUT, PATCH, or DELETE.
23888
+
23877
23889
  ## Modal
23878
23890
 
23879
23891
  Modal is a native integration and uses its official JavaScript SDK behind the Replicas gateway. Invoke a deployed function by name:
@@ -24431,7 +24443,7 @@ var headlessFilesystemAgentResultSchema = external_exports.object({
24431
24443
  });
24432
24444
 
24433
24445
  // ../shared/src/cli-version.ts
24434
- var CLI_VERSION = "0.2.562";
24446
+ var CLI_VERSION = "0.2.563";
24435
24447
 
24436
24448
  // ../shared/src/version.ts
24437
24449
  function compareVersions(v1, v2) {
@@ -24662,7 +24674,7 @@ var EXPLICIT_PLUGIN_CATALOG = [
24662
24674
  },
24663
24675
  {
24664
24676
  id: "vercel",
24665
- backend: "composio",
24677
+ backend: "native",
24666
24678
  toolkit: "vercel",
24667
24679
  authType: "api_key",
24668
24680
  category: "data",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.562",
3
+ "version": "0.2.563",
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": {