replicas-cli 0.2.592 → 0.2.594

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 +21 -1
  2. package/package.json +1 -1
package/dist/index.cjs CHANGED
@@ -23864,6 +23864,7 @@ Use this when:
23864
23864
  - The user asks to create or control an E2B sandbox
23865
23865
  - The user asks to invoke a connected Modal function
23866
23866
  - The user asks to access Vercel projects, deployments, domains, logs, or infrastructure
23867
+ - The user asks to inspect Vanta controls, tests, evidence, vendors, risks, or compliance data
23867
23868
  - The user asks to query or update a connected turbopuffer namespace
23868
23869
  - The user asks for PlanetScale organizations, databases, branches, or Insights data
23869
23870
  - The user asks to analyze text with Pangram`;
@@ -23942,6 +23943,15 @@ const deployments = await replicas.vercel.request('/v6/deployments?teamId=team_1
23942
23943
 
23943
23944
  Confirm mutations before using POST, PUT, PATCH, or DELETE.
23944
23945
 
23946
+ ## Vanta
23947
+
23948
+ Vanta is a native Manage API integration. Pass a relative path beginning with /v1/; Replicas exchanges the stored client credentials and caches the short-lived token server-side:
23949
+
23950
+ const controls = await replicas.vanta.request('/v1/controls?pageSize=100');
23951
+ const failingTests = await replicas.vanta.request('/v1/tests?statusMatchesAny=NEEDS_ATTENTION');
23952
+
23953
+ Use the optional \`method\` and \`body\` arguments for writes. Confirm mutations before using POST, PUT, PATCH, or DELETE. Paginate with the cursors returned by Vanta.
23954
+
23945
23955
  ## Modal
23946
23956
 
23947
23957
  Modal is a native integration and uses its official JavaScript SDK behind the Replicas gateway. Invoke a deployed function by name:
@@ -24499,7 +24509,7 @@ var headlessFilesystemAgentResultSchema = external_exports.object({
24499
24509
  });
24500
24510
 
24501
24511
  // ../shared/src/cli-version.ts
24502
- var CLI_VERSION = "0.2.592";
24512
+ var CLI_VERSION = "0.2.594";
24503
24513
 
24504
24514
  // ../shared/src/version.ts
24505
24515
  function compareVersions(v1, v2) {
@@ -24748,6 +24758,16 @@ var EXPLICIT_PLUGIN_CATALOG = [
24748
24758
  category: "data",
24749
24759
  name: "turbopuffer",
24750
24760
  description: "Query and manage turbopuffer namespaces."
24761
+ },
24762
+ {
24763
+ id: "vanta",
24764
+ backend: "native",
24765
+ toolkit: "vanta",
24766
+ authType: "credentials",
24767
+ category: "data",
24768
+ name: "Vanta",
24769
+ description: "Review and manage controls, tests, evidence, vendors, risks, and compliance data.",
24770
+ scopes: ["environment"]
24751
24771
  }
24752
24772
  ];
24753
24773
  var HOSTED_COMPOSIO_PLUGIN_DEFINITIONS = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "replicas-cli",
3
- "version": "0.2.592",
3
+ "version": "0.2.594",
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": {