peakurl 0.3.2 → 1.0.0
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 +13 -0
- package/bin/peakurl.js +853 -452
- package/man/peakurl.1 +363 -0
- package/package.json +6 -2
package/README.md
CHANGED
|
@@ -64,6 +64,7 @@ export PEAKURL_API_KEY=0123456789abcdef0123456789abcdef0123456789abcdef
|
|
|
64
64
|
| `peakurl whoami` | Show the current authenticated account. |
|
|
65
65
|
| `peakurl logout` | Remove saved local CLI credentials. |
|
|
66
66
|
| `peakurl status` | Show the current system status snapshot for the site. |
|
|
67
|
+
| `peakurl core download` | Download and extract the latest PeakURL core package. |
|
|
67
68
|
| `peakurl create <url>` | Create a new short link. |
|
|
68
69
|
| `peakurl import <file>` | Import links from a local CSV, JSON, or XML file. |
|
|
69
70
|
| `peakurl export` | Export accessible links as CSV, JSON, or XML. |
|
|
@@ -120,6 +121,18 @@ If you need the raw payload:
|
|
|
120
121
|
peakurl status --json
|
|
121
122
|
```
|
|
122
123
|
|
|
124
|
+
Download and extract the latest PeakURL core package into the current directory:
|
|
125
|
+
|
|
126
|
+
```bash
|
|
127
|
+
peakurl core download
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
If the current directory already contains conflicting files, re-run with:
|
|
131
|
+
|
|
132
|
+
```bash
|
|
133
|
+
peakurl core download --force
|
|
134
|
+
```
|
|
135
|
+
|
|
123
136
|
Delete a link:
|
|
124
137
|
|
|
125
138
|
```bash
|