@secretstash/cli 0.1.0 → 0.1.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.
package/README.md CHANGED
@@ -258,7 +258,7 @@ Docker will automatically pull the correct architecture for your platform.
258
258
  | Variable | Description | Default |
259
259
  |----------|-------------|---------|
260
260
  | `SECRETSTASH_TOKEN` | Service token for authentication | - |
261
- | `SECRETSTASH_API_URL` | API endpoint URL | `https://api.secretstash.io` |
261
+ | `SECRETSTASH_API_URL` | API endpoint URL | `https://api.secretstash.dev` |
262
262
  | `SECRETSTASH_CONFIG_DIR` | Configuration directory | `~/.config/secretstash` |
263
263
 
264
264
  ## Configuration
@@ -269,7 +269,7 @@ The CLI stores configuration in `~/.config/secretstash/config.json`:
269
269
 
270
270
  ```json
271
271
  {
272
- "apiUrl": "https://api.secretstash.io",
272
+ "apiUrl": "https://api.secretstash.dev",
273
273
  "currentProject": "my-project",
274
274
  "currentTeam": "my-team"
275
275
  }
package/dist/index.js CHANGED
@@ -59,7 +59,7 @@ var config = new Conf({
59
59
  schema: {
60
60
  apiUrl: {
61
61
  type: "string",
62
- default: "http://localhost:3000"
62
+ default: "https://api.secretstash.dev"
63
63
  },
64
64
  accessToken: {
65
65
  type: "string"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secretstash/cli",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "CLI tool for SecretStash - secure team secrets management",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",