fcemail 0.1.11 → 0.1.12
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 +5 -1
- package/internal/display/logo.go +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -135,10 +135,14 @@ fce watch mytest@ditmail.info
|
|
|
135
135
|
| `fce inbox add <addr>` | Register a new inbox | Any |
|
|
136
136
|
| `fce inbox add random` | Register a random inbox | Any |
|
|
137
137
|
| `fce inbox remove <addr>` | Unregister an inbox | Any |
|
|
138
|
-
| `fce messages <inbox
|
|
138
|
+
| `fce messages <inbox> [id]` | List messages or view a specific message | Any |
|
|
139
139
|
| `fce domains` | List available domains | Any |
|
|
140
140
|
| `fce watch [inbox\|random]` | Stream emails via WebSocket | **Startup+** |
|
|
141
141
|
| `fce otp <inbox>` | Get latest OTP from an inbox | **Growth+** |
|
|
142
|
+
| `fce dev` | Instantly register a dev inbox and start watching | Any |
|
|
143
|
+
| `fce update` | Update the CLI to the latest version | Any |
|
|
144
|
+
| `fce uninstall` | Remove all local config and credentials | Any |
|
|
145
|
+
| `fce version` | Show version info | Any |
|
|
142
146
|
|
|
143
147
|
### Examples
|
|
144
148
|
|
package/internal/display/logo.go
CHANGED
|
@@ -37,11 +37,11 @@ var (
|
|
|
37
37
|
// ASCII logo optimized for readability and Go raw string constraints
|
|
38
38
|
// Using @@ as a placeholder for backticks
|
|
39
39
|
const logoASCII = `
|
|
40
|
-
______ ______ __
|
|
41
|
-
/ ____/________ ___ / ____/_ _______/ /_____ ____ ___
|
|
42
|
-
/ /_ / ___/ _ \/ _ \ / / / / / ___/ __/ __ \/ __ @@__ \
|
|
43
|
-
/ __/ / / / __/ __/ /___/ /_/ (__ ) /_/ /_/ / / / / / /
|
|
44
|
-
/_/ /_/ \___/\___/\____/\__,_/____/\__/\____/_/ /_/ /_/
|
|
40
|
+
______ ______ __ ______ _ __
|
|
41
|
+
/ ____/________ ___ / ____/_ _______/ /_____ ____ ___ / ____/___ ___ ____ _(_) /
|
|
42
|
+
/ /_ / ___/ _ \/ _ \ / / / / / ___/ __/ __ \/ __ @@__ \ / __/ / __ @@__ \/ __ @@/ /
|
|
43
|
+
/ __/ / / / __/ __/ /___/ /_/ (__ ) /_/ /_/ / / / / / / / /___/ / / / / / /_/ / / /
|
|
44
|
+
/_/ /_/ \___/\___/\____/\__,_/____/\__/\____/_/ /_/ /_/( )/_____/_/ /_/ /_/\__,_/_/_/
|
|
45
45
|
`
|
|
46
46
|
|
|
47
47
|
const tagline = ` FreeCustom.Email — disposable inbox API`
|