@sudobility/wildduck_client 2.1.1 → 2.1.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/README.md +21 -15
- package/package.json +9 -10
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
TypeScript client library for the WildDuck email API with React and React Native support.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@sudobility/wildduck_client)
|
|
6
|
-
[](https://github.com/johnqh/wildduck_client/actions/workflows/ci-cd.yml)
|
|
7
7
|
|
|
8
8
|
## Features
|
|
9
9
|
|
|
@@ -147,17 +147,17 @@ Currently implements ~15% of the WildDuck API endpoints (see [docs/GAP_ANALYSIS.
|
|
|
147
147
|
|
|
148
148
|
### Implemented Endpoints
|
|
149
149
|
|
|
150
|
-
| Category
|
|
151
|
-
|
|
152
|
-
| Authentication | ✅ Complete
|
|
153
|
-
| Users
|
|
154
|
-
| Mailboxes
|
|
155
|
-
| Messages
|
|
156
|
-
| Addresses
|
|
157
|
-
| Filters
|
|
158
|
-
| Autoreply
|
|
159
|
-
| Health
|
|
160
|
-
| Settings
|
|
150
|
+
| Category | Status | Coverage |
|
|
151
|
+
| -------------- | ------------------ | -------- |
|
|
152
|
+
| Authentication | ✅ Complete | 100% |
|
|
153
|
+
| Users | ⚠️ Partial | ~12% |
|
|
154
|
+
| Mailboxes | ✅ Mostly Complete | 80% |
|
|
155
|
+
| Messages | ⚠️ Partial | ~31% |
|
|
156
|
+
| Addresses | ✅ Mostly Complete | 64% |
|
|
157
|
+
| Filters | ✅ Complete | 100% |
|
|
158
|
+
| Autoreply | ⚠️ Partial | ~67% |
|
|
159
|
+
| Health | ✅ Complete | 100% |
|
|
160
|
+
| Settings | ✅ Mostly Complete | 67% |
|
|
161
161
|
|
|
162
162
|
### Priority Features to Implement
|
|
163
163
|
|
|
@@ -166,6 +166,7 @@ See [docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md) for a comprehensive breakdown
|
|
|
166
166
|
## Available Hooks
|
|
167
167
|
|
|
168
168
|
### Messages
|
|
169
|
+
|
|
169
170
|
- `useWildduckGetMessages` - List messages in a mailbox
|
|
170
171
|
- `useWildduckGetMessage` - Get a single message
|
|
171
172
|
- `useWildduckUpdateMessage` - Update message properties (mark as read, move, flag)
|
|
@@ -179,6 +180,7 @@ See [docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md) for a comprehensive breakdown
|
|
|
179
180
|
- `useWildduckSubmitDraft` - Submit a draft for delivery
|
|
180
181
|
|
|
181
182
|
### Mailboxes
|
|
183
|
+
|
|
182
184
|
- `useWildduckGetMailboxes` - List all mailboxes
|
|
183
185
|
- `useWildduckGetMailbox` - Get specific mailbox info
|
|
184
186
|
- `useWildduckCreateMailbox` - Create new mailbox/folder
|
|
@@ -186,24 +188,29 @@ See [docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md) for a comprehensive breakdown
|
|
|
186
188
|
- `useWildduckDeleteMailbox` - Delete a mailbox
|
|
187
189
|
|
|
188
190
|
### Users
|
|
191
|
+
|
|
189
192
|
- `useWildduckGetUser` - Get user information
|
|
190
193
|
- `useWildduckCreateUser` - Create new user (admin)
|
|
191
194
|
- `useWildduckUpdateUser` - Update user settings
|
|
192
195
|
- `useWildduckDeleteUser` - Delete user account
|
|
193
196
|
|
|
194
197
|
### Addresses
|
|
198
|
+
|
|
195
199
|
- `useWildduckGetAddresses` - List user's email addresses
|
|
196
200
|
- Additional address management hooks
|
|
197
201
|
|
|
198
202
|
### Autoreply
|
|
203
|
+
|
|
199
204
|
- `useWildduckGetAutoreply` - Get autoreply settings
|
|
200
205
|
- `useWildduckUpdateAutoreply` - Update autoreply (vacation mode)
|
|
201
206
|
- `useWildduckDeleteAutoreply` - Delete autoreply
|
|
202
207
|
|
|
203
208
|
### Filters
|
|
209
|
+
|
|
204
210
|
- Complete filter management hooks
|
|
205
211
|
|
|
206
212
|
### Other
|
|
213
|
+
|
|
207
214
|
- `useWildduckHealth` - Server health check
|
|
208
215
|
- `useWildduckSettings` - Settings management
|
|
209
216
|
|
|
@@ -342,13 +349,12 @@ MIT
|
|
|
342
349
|
|
|
343
350
|
- [WildDuck](https://github.com/nodemailer/wildduck) - The WildDuck email server
|
|
344
351
|
- [@sudobility/types](https://www.npmjs.com/package/@sudobility/types) - Shared type definitions
|
|
345
|
-
- [0xmail](https://github.com/0xmail) - Blockchain-based email platform
|
|
346
352
|
|
|
347
353
|
## Support
|
|
348
354
|
|
|
349
|
-
- [GitHub Issues](https://github.com/
|
|
355
|
+
- [GitHub Issues](https://github.com/johnqh/wildduck_client/issues)
|
|
350
356
|
- [API Documentation](https://docs.wildduck.email/api/)
|
|
351
357
|
|
|
352
358
|
## Changelog
|
|
353
359
|
|
|
354
|
-
See [GitHub Releases](https://github.com/
|
|
360
|
+
See [GitHub Releases](https://github.com/johnqh/wildduck_client/releases) for version history and release notes.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/wildduck_client",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.2",
|
|
4
4
|
"description": "React and React Native compatible client library for WildDuck email API with TypeScript support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -33,21 +33,20 @@
|
|
|
33
33
|
"client",
|
|
34
34
|
"react",
|
|
35
35
|
"react-native",
|
|
36
|
-
"typescript"
|
|
37
|
-
"0xmail"
|
|
36
|
+
"typescript"
|
|
38
37
|
],
|
|
39
|
-
"author": "
|
|
38
|
+
"author": "Sudobility Team",
|
|
40
39
|
"license": "MIT",
|
|
41
40
|
"peerDependencies": {
|
|
42
|
-
"@sudobility/di": "^1.4.
|
|
43
|
-
"@sudobility/types": "^1.9.
|
|
41
|
+
"@sudobility/di": "^1.4.17",
|
|
42
|
+
"@sudobility/types": "^1.9.12",
|
|
44
43
|
"@tanstack/react-query": "^5.90.5",
|
|
45
44
|
"react": "^19.2.0"
|
|
46
45
|
},
|
|
47
46
|
"devDependencies": {
|
|
48
47
|
"@sudobility/configs": "^0.0.24",
|
|
49
48
|
"@sudobility/di": "^1.4.17",
|
|
50
|
-
"@sudobility/types": "^1.9.
|
|
49
|
+
"@sudobility/types": "^1.9.12",
|
|
51
50
|
"@tanstack/react-query": "^5.90.5",
|
|
52
51
|
"@testing-library/react": "^16.3.0",
|
|
53
52
|
"@types/node": "^24.9.1",
|
|
@@ -70,12 +69,12 @@
|
|
|
70
69
|
},
|
|
71
70
|
"repository": {
|
|
72
71
|
"type": "git",
|
|
73
|
-
"url": "https://github.com/
|
|
72
|
+
"url": "https://github.com/johnqh/wildduck_client.git"
|
|
74
73
|
},
|
|
75
74
|
"bugs": {
|
|
76
|
-
"url": "https://github.com/
|
|
75
|
+
"url": "https://github.com/johnqh/wildduck_client/issues"
|
|
77
76
|
},
|
|
78
|
-
"homepage": "https://github.com/
|
|
77
|
+
"homepage": "https://github.com/johnqh/wildduck_client#readme",
|
|
79
78
|
"publishConfig": {
|
|
80
79
|
"access": "restricted"
|
|
81
80
|
}
|