@alfe.ai/openclaw-secrets 0.1.4 → 0.1.5
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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +15 -0
- package/package.json +7 -2
package/.turbo/turbo-build.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,20 @@
|
|
|
1
1
|
# @alfe.ai/openclaw-secrets
|
|
2
2
|
|
|
3
|
+
## 0.1.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6921672: Fix plugin install and activation issues
|
|
8
|
+
|
|
9
|
+
- openclaw-memory-cloud: Add `openclaw.extensions`, refactor to use AgentApiClient instead of raw MemoryClient
|
|
10
|
+
- openclaw-secrets: Add missing `openclaw.extensions` field
|
|
11
|
+
- openclaw-google-chat: Fix poller not starting — registrationMode guard was blocking registerService
|
|
12
|
+
- agent-api-client: Add memory API methods, include Atlassian OAuth clientId/clientSecret in credentials
|
|
13
|
+
- All plugins: Remove registrationMode guard from activate() — OpenClaw handles mode filtering via registerService lifecycle
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [6921672]
|
|
16
|
+
- @alfe.ai/agent-api-client@0.0.11
|
|
17
|
+
|
|
3
18
|
## 0.1.4
|
|
4
19
|
|
|
5
20
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alfe.ai/openclaw-secrets",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.5",
|
|
4
4
|
"description": "OpenClaw plugin — per-scope (org/team/project/agent) encrypted secret store. Agents encrypt/decrypt locally with AES-256-GCM; KMS data keys are fetched via the Alfe secrets service.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
8
|
+
"openclaw": {
|
|
9
|
+
"extensions": [
|
|
10
|
+
"./dist/index.js"
|
|
11
|
+
]
|
|
12
|
+
},
|
|
8
13
|
"license": "UNLICENSED",
|
|
9
14
|
"dependencies": {
|
|
10
|
-
"@alfe.ai/agent-api-client": "0.0.
|
|
15
|
+
"@alfe.ai/agent-api-client": "0.0.11"
|
|
11
16
|
},
|
|
12
17
|
"devDependencies": {
|
|
13
18
|
"vitest": "^4.0.18"
|