oceum 0.3.0 → 0.4.0
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 +1 -1
- package/index.d.ts +1 -1
- package/index.js +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# oceum
|
|
2
2
|
|
|
3
|
-
Official SDK for [Oceum](https://oceum.ai) — governed agent infrastructure. Progressive autonomy,
|
|
3
|
+
Official SDK for [Oceum](https://oceum.ai) — governed agent infrastructure. Progressive autonomy, blind-relay vault (the agent never sees the secret), governed execution, and enterprise-grade observability.
|
|
4
4
|
|
|
5
5
|
Zero dependencies. Works with Node.js 18+, Deno, and Bun.
|
|
6
6
|
|
package/index.d.ts
CHANGED
|
@@ -86,7 +86,7 @@ export class Oceum {
|
|
|
86
86
|
vaultRetrieve(token: string): Promise<VaultRetrieveResponse>;
|
|
87
87
|
|
|
88
88
|
/**
|
|
89
|
-
*
|
|
89
|
+
* Blind-Relay Vault Proxy — make an API call with a vault-stored credential
|
|
90
90
|
* without ever seeing the raw secret.
|
|
91
91
|
*/
|
|
92
92
|
vaultProxy(token: string, request: VaultProxyRequest): Promise<VaultProxyResponse>;
|
package/index.js
CHANGED
|
@@ -384,7 +384,7 @@ class Oceum {
|
|
|
384
384
|
}
|
|
385
385
|
|
|
386
386
|
/**
|
|
387
|
-
*
|
|
387
|
+
* Blind-Relay Vault Proxy — make an API call with a vault-stored credential
|
|
388
388
|
* without ever seeing the raw secret. The platform decrypts and injects the
|
|
389
389
|
* credential into the outgoing request, then returns only the API response.
|
|
390
390
|
*
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oceum",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "Official SDK for Oceum — governed agent infrastructure. Progressive autonomy,
|
|
3
|
+
"version": "0.4.0",
|
|
4
|
+
"description": "Official SDK for Oceum — governed agent infrastructure. Progressive autonomy, blind-relay vault (the agent never sees the secret), governed execution, and enterprise-grade observability.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
7
7
|
"exports": {
|