@zipwire/zw 1.1.3 → 1.1.4
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 +23 -13
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -485,17 +485,23 @@ This CLI currently has **comprehensive real API integration for activities, conf
|
|
|
485
485
|
|
|
486
486
|
### ✅ What's Working Now:
|
|
487
487
|
- **Activity management** (list, search, create, recent, rename/merge)
|
|
488
|
-
- **
|
|
489
|
-
- **
|
|
490
|
-
- **
|
|
491
|
-
- **
|
|
492
|
-
- **
|
|
488
|
+
- **Authentication & OAuth** - Web-based login, OAuth provider connections (connect, list, disconnect), API token management
|
|
489
|
+
- **Configuration management** - Settings, authentication, output format preferences
|
|
490
|
+
- **Journal time tracking** - Track time with intelligent activity suggestions, edit entries, view history with filtering
|
|
491
|
+
- **Smart activity selection** - Get helpful suggestions when no activity is specified
|
|
492
|
+
- **Workflow management** - Create workflows, link activities, manage approval processes, set up billing and payment methods
|
|
493
|
+
- **Timesheet management** - Create, list, and view timesheets from journal entries with status tracking (draft, sent, done)
|
|
494
|
+
- **Workflow invoicing** - PDF invoicing (enable/disable) and provider-based invoicing (set, unset, disable) with available options
|
|
495
|
+
- **Rate configuration** - Set hourly rates with currency, unit types, and billing constraints per workflow
|
|
496
|
+
- **Timesheet send status** - Handle multiple send statuses (sent, partial_failure, failure) with operation messages
|
|
497
|
+
- **Feedback submission** - Submit feedback directly from CLI
|
|
498
|
+
- **API error handling** - Deprecation warnings and structured error responses with suggestions
|
|
493
499
|
- **Real API integration** with production data
|
|
494
|
-
- **Advanced activity cleanup** and
|
|
495
|
-
- **Dual input support** -
|
|
496
|
-
- **Comprehensive error handling** with structured suggestions
|
|
500
|
+
- **Advanced activity cleanup** - Consolidation and merge features
|
|
501
|
+
- **Dual input support** - Both activity keys and display names
|
|
502
|
+
- **Comprehensive error handling** with structured suggestions and actionable next steps
|
|
497
503
|
- **Consistent formatting** across human and structured output modes
|
|
498
|
-
- **LLM/AI-friendly data access** -
|
|
504
|
+
- **LLM/AI-friendly data access** - Structured output for automated analysis and reporting
|
|
499
505
|
|
|
500
506
|
### 🤖 LLM/AI Integration
|
|
501
507
|
|
|
@@ -525,10 +531,14 @@ zw config show --format structured
|
|
|
525
531
|
- **Real-time Insights**: Always uses current data from the API
|
|
526
532
|
- **Custom Analysis**: AI can perform complex analysis not possible with fixed features
|
|
527
533
|
|
|
528
|
-
### ✅ Recently Added:
|
|
529
|
-
- **
|
|
530
|
-
- **
|
|
531
|
-
- **
|
|
534
|
+
### ✅ Recently Added (Last 2 Months):
|
|
535
|
+
- **OAuth Integration** (Feb 10) - Connect to OAuth providers, manage connections with `zw oauth list`, `zw oauth connect`, `zw oauth disconnect` with full error handling
|
|
536
|
+
- **Workflow Invoicing** - PDF invoicing (enable/disable/show) and provider-based invoicing (set/unset/disable/show) with available projects, contacts, and service products
|
|
537
|
+
- **Rate Configuration** - Full support for hourly rates, currency, unit types, and billing constraints with `zw workflow rate set` and `zw workflow rate show`
|
|
538
|
+
- **Timesheet Send Status Improvements** - Proper handling of sent, partial_failure, and failure statuses with operation messages
|
|
539
|
+
- **Feedback Submit Command** - Submit feedback directly from the CLI with `zw feedback submit`
|
|
540
|
+
- **API Deprecation Warnings** - System for communicating deprecated API features to users
|
|
541
|
+
- **Hierarchical Output Formatting** - Visual hierarchy with symbols (↓ ▦ ▲ •) and color support for better readability
|
|
532
542
|
|
|
533
543
|
## Documentation
|
|
534
544
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zipwire/zw",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"description": "Zipwire CLI tool for time tracking and activity management",
|
|
5
5
|
"bin": {
|
|
6
6
|
"zw": "bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"optionalDependencies": {
|
|
9
|
-
"@zipwire/zw-linux-amd64": "1.1.
|
|
10
|
-
"@zipwire/zw-linux-arm64": "1.1.
|
|
11
|
-
"@zipwire/zw-darwin-amd64": "1.1.
|
|
12
|
-
"@zipwire/zw-darwin-arm64": "1.1.
|
|
13
|
-
"@zipwire/zw-windows-amd64": "1.1.
|
|
9
|
+
"@zipwire/zw-linux-amd64": "1.1.4",
|
|
10
|
+
"@zipwire/zw-linux-arm64": "1.1.4",
|
|
11
|
+
"@zipwire/zw-darwin-amd64": "1.1.4",
|
|
12
|
+
"@zipwire/zw-darwin-arm64": "1.1.4",
|
|
13
|
+
"@zipwire/zw-windows-amd64": "1.1.4"
|
|
14
14
|
},
|
|
15
15
|
"files": [
|
|
16
16
|
"bin/",
|