fizzy-cli 1.0.1 → 1.0.2
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/IMPLEMENTATION_PLAN.md +58 -0
- package/main.go +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
# Fizzy CLI - Remaining Implementation Plan
|
|
2
|
+
|
|
3
|
+
This document tracks features that are **not yet implemented**.
|
|
4
|
+
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## 📋 Missing Features
|
|
8
|
+
|
|
9
|
+
### Pins Management
|
|
10
|
+
|
|
11
|
+
Card pinning for quick access:
|
|
12
|
+
|
|
13
|
+
- [ ] `fizzy card pin <number>` - `POST /cards/:number/pin`
|
|
14
|
+
- [ ] `fizzy card unpin <number>` - `DELETE /cards/:number/pin`
|
|
15
|
+
- [ ] `fizzy pin list` - `GET /my/pins` - List all pinned cards
|
|
16
|
+
|
|
17
|
+
### Advanced Features
|
|
18
|
+
|
|
19
|
+
- [ ] **File uploads** - Support for card image uploads
|
|
20
|
+
- [ ] **Rich text support** - HTML validation for description fields
|
|
21
|
+
- [ ] **ETag caching** - `ETag`/`Cache-Control` header support for bandwidth optimization
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
## 📝 API Client Work Required
|
|
26
|
+
|
|
27
|
+
### Pin Operations
|
|
28
|
+
|
|
29
|
+
```go
|
|
30
|
+
func (c *Client) PostCardPin(ctx context.Context, cardNumber int) (bool, error)
|
|
31
|
+
func (c *Client) DeleteCardPin(ctx context.Context, cardNumber int) (bool, error)
|
|
32
|
+
func (c *Client) GetMyPins(ctx context.Context) ([]Card, error)
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
---
|
|
36
|
+
|
|
37
|
+
## 📊 Completion Status
|
|
38
|
+
|
|
39
|
+
| Feature | Status |
|
|
40
|
+
|---------|--------|
|
|
41
|
+
| Authentication & Setup | ✅ Complete |
|
|
42
|
+
| Accounts | ✅ Complete |
|
|
43
|
+
| Boards (CRUD) | ✅ Complete |
|
|
44
|
+
| Cards (CRUD + operations) | ✅ Complete |
|
|
45
|
+
| Columns (CRUD) | ✅ Complete |
|
|
46
|
+
| Tags | ✅ Complete |
|
|
47
|
+
| Notifications | ✅ Complete |
|
|
48
|
+
| Steps | ✅ Complete |
|
|
49
|
+
| Comments | ✅ Complete |
|
|
50
|
+
| Reactions (Comment & Card) | ✅ Complete |
|
|
51
|
+
| Users | ✅ Complete |
|
|
52
|
+
| Identity (whoami) | ✅ Complete |
|
|
53
|
+
| Card Filtering & Search | ✅ Complete |
|
|
54
|
+
| Pagination | ✅ Complete |
|
|
55
|
+
| **Pins** | ⏳ Pending |
|
|
56
|
+
| **File Uploads** | ⏳ Pending |
|
|
57
|
+
| **Rich Text** | ⏳ Pending |
|
|
58
|
+
| **ETag Caching** | ⏳ Pending |
|
package/main.go
CHANGED