een-api-toolkit 0.0.5 → 0.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/CHANGELOG.md +15 -0
- package/README.md +1 -1
- package/package.json +3 -2
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [0.0.6] - 2025-12-27
|
|
6
|
+
|
|
7
|
+
### 📝 Other Changes
|
|
8
|
+
- Merge pull request #7 from klaushofrichter/develop
|
|
9
|
+
|
|
10
|
+
### Links
|
|
11
|
+
- [npm package](https://www.npmjs.com/package/een-api-toolkit)
|
|
12
|
+
- [Full Changelog](https://github.com/klaushofrichter/een-api-toolkit/commits/v0.0.6)
|
|
13
|
+
|
|
14
|
+
---
|
|
15
|
+
*Released: 2025-12-27 09:30:38 CST*
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# een-api-toolkit
|
|
2
2
|
|
|
3
|
-
A TypeScript library implementing the Eagle Eye Networks (EEN) Video platform API v3.0 for Vue 3 Composition API applications.
|
|
3
|
+
A TypeScript library implementing the [Eagle Eye Networks (EEN)](https://een.com/) Video platform API v3.0 for Vue 3 Composition API applications. See also the [EEN Developer Portal](https://developer.eagleeyenetworks.com).
|
|
4
4
|
|
|
5
5
|
This repository is provided as-is without any warranty, functionality guarantee, or assurance of availability. This repository uses EEN services, but it is not associated with EEN.
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "een-api-toolkit",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
4
4
|
"description": "EEN Video platform API v3.0 library for Vue 3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
}
|
|
15
15
|
},
|
|
16
16
|
"files": [
|
|
17
|
-
"dist"
|
|
17
|
+
"dist",
|
|
18
|
+
"CHANGELOG.md"
|
|
18
19
|
],
|
|
19
20
|
"scripts": {
|
|
20
21
|
"dev": "vite",
|