envlink 1.0.2 → 1.0.7
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.
Potentially problematic release.
This version of envlink might be problematic. Click here for more details.
- package/README.md +2 -1
- package/commands.md +10 -9
- package/dist/index.js +87 -85
- package/faq.md +166 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -52,7 +52,8 @@ That's it! Your environment files are now installed.
|
|
|
52
52
|
|
|
53
53
|
## Documentation
|
|
54
54
|
|
|
55
|
-
|
|
55
|
+
- **[Command Reference](https://envlink.ababilspark.com)** - Complete command reference
|
|
56
|
+
- **[FAQ](https://envlink.ababilspark.com/faq)** - Frequently Asked Questions
|
|
56
57
|
|
|
57
58
|
## Security
|
|
58
59
|
|
package/commands.md
CHANGED
|
@@ -34,7 +34,7 @@ envlink create --exp-pass <password>
|
|
|
34
34
|
envlink create --exp 1y --exp-pass <password>
|
|
35
35
|
```
|
|
36
36
|
|
|
37
|
-
**Expiration units:** `m` (minutes), `
|
|
37
|
+
**Expiration units:** `m` (minutes), `h` (hours), `d` (days), `M` (months), `y` (years), `never`
|
|
38
38
|
|
|
39
39
|
## Install Commands
|
|
40
40
|
|
|
@@ -117,18 +117,19 @@ envlink expire el_abc123xyz456 --exp-pass mypass123
|
|
|
117
117
|
|
|
118
118
|
## Common Options
|
|
119
119
|
|
|
120
|
-
| Option | Description
|
|
121
|
-
| --------------------------- |
|
|
122
|
-
| `--exp <duration>` | Expiration duration: `30m`, `
|
|
123
|
-
| `--exp-pass <password>` | Password for protection/expiration
|
|
124
|
-
| `--current-pass <password>` | Current password (required for updating protected links)
|
|
125
|
-
| `-f, --files` | Update files flag
|
|
126
|
-
| `-s, --select-files` | File selection mode for install
|
|
120
|
+
| Option | Description |
|
|
121
|
+
| --------------------------- | --------------------------------------------------------------- |
|
|
122
|
+
| `--exp <duration>` | Expiration duration: `30m`, `24h`, `5d`, `6M`, `1y`, or `never` |
|
|
123
|
+
| `--exp-pass <password>` | Password for protection/expiration |
|
|
124
|
+
| `--current-pass <password>` | Current password (required for updating protected links) |
|
|
125
|
+
| `-f, --files` | Update files flag |
|
|
126
|
+
| `-s, --select-files` | File selection mode for install |
|
|
127
127
|
|
|
128
128
|
## Notes
|
|
129
129
|
|
|
130
|
-
- **Default expiration:**
|
|
130
|
+
- **Default expiration:** 1 day if not specified
|
|
131
131
|
- **EnvLink ID format:** `el_<16-char-alphanumeric>`
|
|
132
132
|
- **Password protection:** Required for updates and manual expiration of protected links
|
|
133
133
|
- **Expired links:** Cannot be installed or updated
|
|
134
134
|
- **Never expire:** Use `--exp never` for permanent links
|
|
135
|
+
- **Time units:** `m` (minutes), `h` (hours), `d` (days), `M` (months), `y` (years)
|