New:Socket for Asana Is Now Available.Learn more
Get Started

@dropthis/cli

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dropthis/cli - npm Package Compare versions

Comparing version
0.35.0
to
0.36.0
+1
-1
package.json
{
"name": "@dropthis/cli",
"version": "0.35.0",
"version": "0.36.0",
"description": "Official CLI for Dropthis.",

@@ -5,0 +5,0 @@ "license": "MIT",

@@ -202,5 +202,6 @@ <p align="center"><img src="https://dropthis.app/icon-512.png" width="76" height="76" alt="dropthis" /></p>

| `--api-url <url>` | Override API base URL |
| `--json` | Force JSON output |
| `--json` | Force JSON output (implies non-interactive — never prompts) |
| `-q, --quiet` | Suppress status output and imply JSON |
| `--no-interactive` | Disable interactive prompts (inline auth, confirmations) |
| `--insecure-store` | Store credentials in a plaintext file instead of the OS keyring, for headless/CI boxes without a keyring backend (also `DROPTHIS_INSECURE_STORE=1`) |

@@ -359,2 +360,3 @@ ## Update

export DROPTHIS_NON_INTERACTIVE=1 # Disable interactive prompts (same as --no-interactive)
export DROPTHIS_INSECURE_STORE=1 # Plaintext credential file instead of the OS keyring (same as --insecure-store)
export DROPTHIS_NO_UPDATE_NOTIFIER=1 # Disable the startup update notice (also auto-disabled in CI, non-TTY, --json/--quiet)

@@ -389,3 +391,3 @@ export NO_COLOR=1 # Disable ANSI color in human output (also auto-disabled when not a TTY)

This table — plus the global flags (`--api-key`, `--api-url`, `--json`, `--quiet`, `--no-interactive`) — is machine-readable from `dropthis commands --json` (the `exit_codes` and `global_options` fields), so an agent can discover the whole surface without scraping docs.
This table — plus the global flags (`--api-key`, `--api-url`, `--json`, `--quiet`, `--no-interactive`, `--insecure-store`) — is machine-readable from `dropthis commands --json` (the `exit_codes` and `global_options` fields), so an agent can discover the whole surface without scraping docs.

@@ -419,6 +421,6 @@ Some failures share exit 1 but carry a distinct error `code` in the JSON envelope:

Reports CLI version, auth source (`env`, `flag`, `storage`, or `missing`), and credential storage backend (`secure`, `insecure`, or `none`).
Reports CLI version, the bundled `@dropthis/node` SDK version, auth source (`env`, `flag`, `storage`, or `missing`), credential storage backend (`secure`, `insecure`, or `none`), and — for a stored key — its capability scopes.
```json
{"ok":true,"version":"0.32.0","auth":{"source":"env"},"storage":{"backend":"secure"}}
{"ok":true,"version":"0.36.0","sdk_version":"0.32.0","auth":{"source":"storage"},"storage":{"backend":"secure"},"scopes":["team"]}
```

@@ -425,0 +427,0 @@

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display