een-api-toolkit 0.3.69 → 0.3.70
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/CHANGELOG.md +41 -63
- package/README.md +2 -0
- package/docs/AI-CONTEXT.md +1 -1
- package/docs/ai-reference/AI-AUTH.md +1 -1
- package/docs/ai-reference/AI-AUTOMATIONS.md +1 -1
- package/docs/ai-reference/AI-DEVICES.md +1 -1
- package/docs/ai-reference/AI-EVENT-DATA-SCHEMAS.md +1 -1
- package/docs/ai-reference/AI-EVENTS.md +1 -1
- package/docs/ai-reference/AI-GROUPING.md +1 -1
- package/docs/ai-reference/AI-JOBS.md +1 -1
- package/docs/ai-reference/AI-MEDIA.md +1 -1
- package/docs/ai-reference/AI-SETUP.md +1 -1
- package/docs/ai-reference/AI-USERS.md +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -2,72 +2,34 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
-
## [0.3.
|
|
5
|
+
## [0.3.70] - 2026-02-10
|
|
6
6
|
|
|
7
7
|
### Release Summary
|
|
8
8
|
|
|
9
|
-
#### PR #
|
|
10
|
-
##
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
- Resolved all 7 open GitHub issues
|
|
17
|
-
- Automated event data schemas documentation generation
|
|
18
|
-
- Fixed vue-feeds navigation reactivity issue
|
|
19
|
-
- Added camera utility functions
|
|
20
|
-
- Improved accessibility with aria-labels
|
|
21
|
-
|
|
22
|
-
### Changes
|
|
23
|
-
|
|
24
|
-
**Closed Issues:**
|
|
25
|
-
- ✅ #84 - Added aria-label to JSON viewer button for screen reader accessibility
|
|
26
|
-
- ✅ #70 - Implemented getCameraStatusString() utility function
|
|
27
|
-
- ✅ #71 - Implemented isStatusObject() TypeScript type guard
|
|
28
|
-
- ✅ #87 - Documented auto-generated vs manually maintained files
|
|
29
|
-
- ✅ #89 - Fully automated event data schemas documentation generation
|
|
30
|
-
- ❌ #85 - Closed as won't-do (JSON viewer E2E tests)
|
|
31
|
-
- ❌ #76 - Closed as won't-do (datetime persistence test timezone)
|
|
32
|
-
|
|
33
|
-
**New Features:**
|
|
34
|
-
- `src/utils/camera.ts` - Camera status utility functions with full JSDoc
|
|
35
|
-
- `scripts/generate-event-data-schemas-doc.ts` - Auto-generates AI-EVENT-DATA-SCHEMAS.md from TypeScript source
|
|
36
|
-
- CLAUDE.md documentation section explaining auto-generated vs manual files
|
|
37
|
-
|
|
38
|
-
**Bug Fixes:**
|
|
39
|
-
- Fixed vue-feeds navigation not appearing after OAuth login (computed property for reactivity)
|
|
40
|
-
- Updated all example app READMEs with accurate function lists
|
|
41
|
-
|
|
42
|
-
### Test Results
|
|
43
|
-
|
|
44
|
-
**✅ Passed (8 of 11 apps - 148 tests):**
|
|
45
|
-
- vue-alerts-metrics: 20 tests
|
|
46
|
-
- vue-automations: 24 tests
|
|
47
|
-
- vue-bridges: 13 tests
|
|
48
|
-
- vue-event-subscriptions: 15 tests
|
|
49
|
-
- vue-events: 16 tests
|
|
50
|
-
- **vue-feeds: 12 tests** ✅ (Main fix verified)
|
|
51
|
-
- vue-jobs: 34 tests
|
|
52
|
-
- vue-users: 14 tests
|
|
53
|
-
|
|
54
|
-
**Note:** 3 apps failed due to OAuth rate limiting (vue-cameras) and test config issues (vue-layouts, vue-media) - not related to code changes.
|
|
55
|
-
|
|
56
|
-
### Security Review
|
|
57
|
-
|
|
58
|
-
✅ Security review completed - No vulnerabilities found
|
|
59
|
-
- All file operations use safe path handling
|
|
60
|
-
- No command injection risks
|
|
61
|
-
- Regex patterns safe from ReDoS
|
|
62
|
-
- Vue components follow framework security best practices
|
|
9
|
+
#### PR #102: Release v0.3.69: CI improvements and dependency management
|
|
10
|
+
## Summary
|
|
11
|
+
- Dynamic E2E test matrix discovery (auto-detects example apps with `playwright.config.ts`)
|
|
12
|
+
- Added missing `vue-jobs` to CI E2E testing
|
|
13
|
+
- Dependabot configuration for automated dependency updates
|
|
14
|
+
- Pinned GitHub Actions to immutable commit SHAs for supply chain security
|
|
63
15
|
|
|
64
|
-
|
|
16
|
+
## Commits
|
|
17
|
+
- `474e9bb` ci: Dynamically discover example apps for E2E matrix
|
|
18
|
+
- `ad3f318` fix: pin GitHub Actions to immutable commit SHAs
|
|
19
|
+
- `cc706d8` chore: add Dependabot configuration for automated dependency updates
|
|
20
|
+
- `24a385b` Merge PR #95 (workflow SHA pinning security fix)
|
|
65
21
|
|
|
66
|
-
|
|
22
|
+
## Test Results
|
|
23
|
+
- **Lint**: Passed (0 errors, 1 warning)
|
|
24
|
+
- **Unit tests**: 619/619 passed
|
|
25
|
+
- **Build**: Successful
|
|
26
|
+
- **E2E tests**: 11/11 example apps passed (1 transient OAuth timeout on vue-users, passed on rerun)
|
|
67
27
|
|
|
68
|
-
|
|
28
|
+
## Security Review
|
|
29
|
+
Changes are CI/infrastructure only (workflow files, dependabot config). No source code changes. No security vulnerabilities.
|
|
69
30
|
|
|
70
|
-
|
|
31
|
+
## Version
|
|
32
|
+
`v0.3.69`
|
|
71
33
|
|
|
72
34
|
#### PR #94: Release v0.3.69: SSRF protection fix with test coverage
|
|
73
35
|
## Summary
|
|
@@ -95,12 +57,28 @@ The only source code change is the SSRF protection in `src/media/service.ts` whi
|
|
|
95
57
|
### Detailed Changes
|
|
96
58
|
|
|
97
59
|
#### Bug Fixes
|
|
98
|
-
- fix:
|
|
99
|
-
-
|
|
60
|
+
- fix: Address code review concerns for PR #102
|
|
61
|
+
- fix: Revert TypeScript to ~5.8.0 and block minor bumps in Dependabot
|
|
62
|
+
- fix: Revert eslint to v9 for typescript-eslint compatibility
|
|
63
|
+
- fix: pin GitHub Actions to immutable commit SHAs
|
|
64
|
+
|
|
65
|
+
#### Other Changes
|
|
66
|
+
- docs: Address minor review concerns for PR #102
|
|
67
|
+
- docs: Fix documentation inaccuracies and regenerate API docs
|
|
68
|
+
- chore(deps): bump github/codeql-action from 3.32.2 to 4.32.2
|
|
69
|
+
- chore: Ignore eslint major version bumps in Dependabot
|
|
70
|
+
- chore(deps-dev): bump the npm-dependencies group with 18 updates
|
|
71
|
+
- chore(deps): bump actions/upload-artifact from 4.6.2 to 6.0.0
|
|
72
|
+
- chore(deps): bump anthropics/claude-code-action
|
|
73
|
+
- chore(deps): bump github/codeql-action
|
|
74
|
+
- chore(deps): bump actions/setup-node from 4.4.0 to 6.2.0
|
|
75
|
+
- chore(deps): bump actions/checkout from 4.3.1 to 6.0.2
|
|
76
|
+
- chore: add Dependabot configuration for automated dependency updates
|
|
77
|
+
- ci: Dynamically discover example apps for E2E matrix
|
|
100
78
|
|
|
101
79
|
### Links
|
|
102
80
|
- [npm package](https://www.npmjs.com/package/een-api-toolkit)
|
|
103
|
-
- [Full Changelog](https://github.com/klaushofrichter/een-api-toolkit/compare/v0.3.
|
|
81
|
+
- [Full Changelog](https://github.com/klaushofrichter/een-api-toolkit/compare/v0.3.69...v0.3.70)
|
|
104
82
|
|
|
105
83
|
---
|
|
106
|
-
*Released: 2026-02-10
|
|
84
|
+
*Released: 2026-02-10 21:07:19 CST*
|
package/README.md
CHANGED
|
@@ -215,6 +215,8 @@ The `examples/` directory contains complete Vue 3 applications demonstrating too
|
|
|
215
215
|
| **[vue-events](./examples/vue-events/)** | Event listing with bounding box overlays | `listEvents()`, `listEventTypes()`, `listEventFieldValues()`, `getRecordedImage()` |
|
|
216
216
|
| **[vue-alerts-metrics](./examples/vue-alerts-metrics/)** | Event metrics, alerts, and notifications dashboard | `getEventMetrics()`, `listAlerts()`, `listAlertTypes()`, `listNotifications()` |
|
|
217
217
|
| **[vue-event-subscriptions](./examples/vue-event-subscriptions/)** | Real-time event streaming with SSE | `listEventSubscriptions()`, `createEventSubscription()`, `deleteEventSubscription()`, `connectToEventSubscription()` |
|
|
218
|
+
| **[vue-automations](./examples/vue-automations/)** | Automation rules and alert actions | `listEventAlertConditionRules()`, `listAlertConditionRules()`, `listAlertActionRules()`, `listAlertActions()` |
|
|
219
|
+
| **[vue-jobs](./examples/vue-jobs/)** | Job management, exports, and file downloads | `listJobs()`, `getJob()`, `createExportJob()`, `listFiles()`, `downloadFile()` |
|
|
218
220
|
|
|
219
221
|
Each example includes:
|
|
220
222
|
- Complete OAuth authentication flow
|
package/docs/AI-CONTEXT.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "een-api-toolkit",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.70",
|
|
4
4
|
"description": "EEN Video platform API v3.0 library for Vue 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -52,20 +52,20 @@
|
|
|
52
52
|
"vue": "^3.3.0"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@eslint/js": "^9.
|
|
55
|
+
"@eslint/js": "^9.0.0",
|
|
56
56
|
"@marp-team/marp-cli": "^4.2.3",
|
|
57
|
-
"@playwright/test": "1.58.
|
|
57
|
+
"@playwright/test": "1.58.2",
|
|
58
58
|
"@types/node": "^25.0.3",
|
|
59
59
|
"@typescript-eslint/eslint-plugin": "^8.51.0",
|
|
60
60
|
"@typescript-eslint/parser": "^8.51.0",
|
|
61
61
|
"@vitejs/plugin-vue": "^6.0.0",
|
|
62
62
|
"@vue/tsconfig": "^0.8.1",
|
|
63
63
|
"dotenv": "^17.2.3",
|
|
64
|
-
"eslint": "^9.
|
|
64
|
+
"eslint": "^9.0.0",
|
|
65
65
|
"eslint-plugin-vue": "^10.6.2",
|
|
66
66
|
"globals": "^17.0.0",
|
|
67
67
|
"husky": "^9.1.7",
|
|
68
|
-
"jsdom": "^
|
|
68
|
+
"jsdom": "^28.0.0",
|
|
69
69
|
"pinia": "^3.0.4",
|
|
70
70
|
"tsx": "^4.21.0",
|
|
71
71
|
"typedoc": "^0.28.15",
|