@drakulavich/oura-cli 0.4.1 → 0.4.3
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 +16 -0
- package/README.md +1 -0
- package/dist/index.js +1 -1
- package/package.json +5 -3
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,22 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.4.3] - 2026-05-13
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
- Type-checker upgraded to TypeScript 7 via `@typescript/native-preview` (the
|
|
13
|
+
Go-based `tsgo` binary). `typescript` devDep bumped to `^6.0.3` (current
|
|
14
|
+
stable). CI now runs `bunx tsgo --noEmit` instead of `bunx tsc --noEmit`.
|
|
15
|
+
- `tsconfig.json` declares `types: ["bun", "node"]` explicitly so `tsgo`
|
|
16
|
+
resolves ambient globals (`process`, `import.meta.dir`, `bun:test`).
|
|
17
|
+
|
|
18
|
+
## [0.4.2] - 2026-05-13
|
|
19
|
+
|
|
20
|
+
### Added
|
|
21
|
+
- `OpenClaw compatible` badge in the README and a matching `openclaw` keyword
|
|
22
|
+
in `package.json`. Surfaces the existing `manifest`/`healthcheck` shapes that
|
|
23
|
+
already integrate with the OpenClaw tool-registry.
|
|
24
|
+
|
|
9
25
|
## [0.4.1] - 2026-05-13
|
|
10
26
|
|
|
11
27
|
### Fixed
|
package/README.md
CHANGED
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
<a href="https://www.npmjs.com/package/@drakulavich/oura-cli"><img src="https://img.shields.io/npm/v/@drakulavich/oura-cli" alt="npm version"></a>
|
|
6
6
|
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License: MIT"></a>
|
|
7
7
|
<a href="https://bun.sh"><img src="https://img.shields.io/badge/runtime-Bun-f9f1e1?logo=bun" alt="Bun"></a>
|
|
8
|
+
<a href="https://github.com/openclaw/openclaw"><img src="https://img.shields.io/badge/OpenClaw-compatible-5b21b6" alt="OpenClaw compatible"></a>
|
|
8
9
|
</p>
|
|
9
10
|
|
|
10
11
|
<p align="center"><b>Own your Oura Ring data.</b> Pull your sleep, readiness, activity, heart rate, SpO₂, stress, and workouts from the Oura Cloud API straight to your terminal. No mobile app. No telemetry. Just SQLite and your data.</p>
|
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@drakulavich/oura-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.3",
|
|
4
4
|
"description": "Oura Ring CLI — query and analyze Oura Ring health data from the command line, designed for humans and AI agents.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"oura",
|
|
@@ -11,7 +11,8 @@
|
|
|
11
11
|
"readiness",
|
|
12
12
|
"activity",
|
|
13
13
|
"agent",
|
|
14
|
-
"mcp"
|
|
14
|
+
"mcp",
|
|
15
|
+
"openclaw"
|
|
15
16
|
],
|
|
16
17
|
"type": "module",
|
|
17
18
|
"bin": {
|
|
@@ -56,8 +57,9 @@
|
|
|
56
57
|
"devDependencies": {
|
|
57
58
|
"@types/bun": "^1.3.14",
|
|
58
59
|
"@types/node": "^25.3.3",
|
|
60
|
+
"@typescript/native-preview": "^7.0.0-dev.20260513.1",
|
|
59
61
|
"ajv": "^8.20.0",
|
|
60
62
|
"ajv-formats": "^3.0.1",
|
|
61
|
-
"typescript": "^
|
|
63
|
+
"typescript": "^6.0.3"
|
|
62
64
|
}
|
|
63
65
|
}
|