@sudobility/wildduck_client 1.0.5 → 1.0.6
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 +11 -11
- package/package.json +13 -13
package/README.md
CHANGED
|
@@ -143,7 +143,7 @@ function ComposeEmail({ userAuth }) {
|
|
|
143
143
|
|
|
144
144
|
## API Coverage
|
|
145
145
|
|
|
146
|
-
Currently implements ~15% of the WildDuck API endpoints (see [GAP_ANALYSIS.md](./GAP_ANALYSIS.md) for details):
|
|
146
|
+
Currently implements ~15% of the WildDuck API endpoints (see [docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md) for details):
|
|
147
147
|
|
|
148
148
|
### Implemented Endpoints
|
|
149
149
|
|
|
@@ -161,7 +161,7 @@ Currently implements ~15% of the WildDuck API endpoints (see [GAP_ANALYSIS.md](.
|
|
|
161
161
|
|
|
162
162
|
### Priority Features to Implement
|
|
163
163
|
|
|
164
|
-
See [GAP_ANALYSIS.md](./GAP_ANALYSIS.md) for a comprehensive breakdown of missing endpoints and implementation priorities.
|
|
164
|
+
See [docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md) for a comprehensive breakdown of missing endpoints and implementation priorities.
|
|
165
165
|
|
|
166
166
|
## Available Hooks
|
|
167
167
|
|
|
@@ -207,7 +207,7 @@ See [GAP_ANALYSIS.md](./GAP_ANALYSIS.md) for a comprehensive breakdown of missin
|
|
|
207
207
|
- `useWildduckHealth` - Server health check
|
|
208
208
|
- `useWildduckSettings` - Settings management
|
|
209
209
|
|
|
210
|
-
For detailed documentation on all hooks, see [HOOKS_DOCUMENTATION.md](./HOOKS_DOCUMENTATION.md).
|
|
210
|
+
For detailed documentation on all hooks, see [docs/HOOKS_DOCUMENTATION.md](./docs/HOOKS_DOCUMENTATION.md).
|
|
211
211
|
|
|
212
212
|
## Development
|
|
213
213
|
|
|
@@ -271,16 +271,16 @@ export WILDDUCK_EMAIL_DOMAIN=example.com # Optional
|
|
|
271
271
|
npm run test:integration
|
|
272
272
|
```
|
|
273
273
|
|
|
274
|
-
For more details, see [INTEGRATION_TESTS.md](./INTEGRATION_TESTS.md).
|
|
274
|
+
For more details, see [docs/INTEGRATION_TESTS.md](./docs/INTEGRATION_TESTS.md).
|
|
275
275
|
|
|
276
276
|
## Documentation
|
|
277
277
|
|
|
278
|
-
- **[HOOKS_DOCUMENTATION.md](./HOOKS_DOCUMENTATION.md)** - Comprehensive hook documentation with examples
|
|
279
|
-
- **[WILDDUCK_API_ENDPOINTS.md](./WILDDUCK_API_ENDPOINTS.md)** - Complete API endpoint reference
|
|
280
|
-
- **[GAP_ANALYSIS.md](./GAP_ANALYSIS.md)** - Analysis of implemented vs. missing endpoints
|
|
281
|
-
- **[INTEGRATION_TESTS.md](./INTEGRATION_TESTS.md)** - Integration testing guide
|
|
282
|
-
- **[CI_CD_SETUP.md](./CI_CD_SETUP.md)** - CI/CD workflow documentation
|
|
283
|
-
- **[DEPLOYMENT.md](./DEPLOYMENT.md)** - Deployment guide
|
|
278
|
+
- **[docs/HOOKS_DOCUMENTATION.md](./docs/HOOKS_DOCUMENTATION.md)** - Comprehensive hook documentation with examples
|
|
279
|
+
- **[docs/WILDDUCK_API_ENDPOINTS.md](./docs/WILDDUCK_API_ENDPOINTS.md)** - Complete API endpoint reference
|
|
280
|
+
- **[docs/GAP_ANALYSIS.md](./docs/GAP_ANALYSIS.md)** - Analysis of implemented vs. missing endpoints
|
|
281
|
+
- **[docs/INTEGRATION_TESTS.md](./docs/INTEGRATION_TESTS.md)** - Integration testing guide
|
|
282
|
+
- **[docs/CI_CD_SETUP.md](./docs/CI_CD_SETUP.md)** - CI/CD workflow documentation
|
|
283
|
+
- **[docs/DEPLOYMENT.md](./docs/DEPLOYMENT.md)** - Deployment guide
|
|
284
284
|
|
|
285
285
|
## Architecture
|
|
286
286
|
|
|
@@ -332,7 +332,7 @@ The library is automatically published to NPM when you push to the `main` branch
|
|
|
332
332
|
2. Push to main: `git push origin main --tags`
|
|
333
333
|
3. CI/CD automatically publishes to NPM
|
|
334
334
|
|
|
335
|
-
For more details, see [DEPLOYMENT.md](./DEPLOYMENT.md).
|
|
335
|
+
For more details, see [docs/DEPLOYMENT.md](./docs/DEPLOYMENT.md).
|
|
336
336
|
|
|
337
337
|
## License
|
|
338
338
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sudobility/wildduck_client",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
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",
|
|
@@ -39,33 +39,33 @@
|
|
|
39
39
|
"author": "0xmail.box team",
|
|
40
40
|
"license": "MIT",
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"@sudobility/di": "^1.4.
|
|
43
|
-
"@sudobility/types": "^1.8.
|
|
42
|
+
"@sudobility/di": "^1.4.7",
|
|
43
|
+
"@sudobility/types": "^1.8.33",
|
|
44
44
|
"@tanstack/react-query": "^5.90.5",
|
|
45
|
-
"axios": "^1.
|
|
45
|
+
"axios": "^1.13.0",
|
|
46
46
|
"react": "^19.2.0"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@sudobility/di": "^1.4.7",
|
|
50
|
-
"@sudobility/types": "^1.8.
|
|
50
|
+
"@sudobility/types": "^1.8.33",
|
|
51
51
|
"@tanstack/react-query": "^5.90.5",
|
|
52
52
|
"@testing-library/react": "^16.3.0",
|
|
53
|
-
"@types/node": "^24.
|
|
53
|
+
"@types/node": "^24.9.1",
|
|
54
54
|
"@types/react": "^19.2.2",
|
|
55
|
-
"@typescript-eslint/eslint-plugin": "^8.46.
|
|
56
|
-
"@typescript-eslint/parser": "^8.46.
|
|
55
|
+
"@typescript-eslint/eslint-plugin": "^8.46.2",
|
|
56
|
+
"@typescript-eslint/parser": "^8.46.2",
|
|
57
57
|
"@vitest/coverage-v8": "^3.2.4",
|
|
58
|
-
"axios": "^1.
|
|
59
|
-
"eslint": "^9.
|
|
58
|
+
"axios": "^1.13.0",
|
|
59
|
+
"eslint": "^9.38.0",
|
|
60
60
|
"eslint-config-prettier": "^10.1.8",
|
|
61
61
|
"eslint-plugin-prettier": "^5.5.4",
|
|
62
62
|
"eslint-plugin-react": "^7.37.5",
|
|
63
63
|
"eslint-plugin-react-hooks": "^6.1.1",
|
|
64
|
-
"happy-dom": "^
|
|
64
|
+
"happy-dom": "^20.0.8",
|
|
65
65
|
"prettier": "^3.6.2",
|
|
66
66
|
"typescript": "^5.9.3",
|
|
67
|
-
"viem": "^2.38.
|
|
68
|
-
"vite": "^7.1.
|
|
67
|
+
"viem": "^2.38.4",
|
|
68
|
+
"vite": "^7.1.12",
|
|
69
69
|
"vitest": "^3.2.4"
|
|
70
70
|
},
|
|
71
71
|
"repository": {
|