@elisym/sdk 0.13.0 → 0.14.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/dist/agent-store.cjs +28 -17
- package/dist/agent-store.cjs.map +1 -1
- package/dist/agent-store.d.cts +19 -15
- package/dist/agent-store.d.ts +19 -15
- package/dist/agent-store.js +28 -17
- package/dist/agent-store.js.map +1 -1
- package/dist/index.cjs +6 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +6 -4
- package/dist/index.js.map +1 -1
- package/dist/node.cjs.map +1 -1
- package/dist/node.js.map +1 -1
- package/dist/skills.cjs +3 -308
- package/dist/skills.cjs.map +1 -1
- package/dist/skills.d.cts +11 -14
- package/dist/skills.d.ts +11 -14
- package/dist/skills.js +4 -306
- package/dist/skills.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3349,14 +3349,16 @@ var SECRET_REDACT_PATHS = [
|
|
|
3349
3349
|
"ELISYM_SOLANA_PRIVATE_KEY",
|
|
3350
3350
|
// Canonical on-disk `.secrets.json` field names. Logging the whole
|
|
3351
3351
|
// `secrets` object, or any single field directly, must not leak.
|
|
3352
|
-
|
|
3353
|
-
|
|
3352
|
+
// `llm_api_keys` is a Record<provider-id, key> after the registry
|
|
3353
|
+
// refactor; the wildcard variants cover any nested provider id.
|
|
3354
3354
|
"nostr_secret_key",
|
|
3355
3355
|
"solana_secret_key",
|
|
3356
|
-
"
|
|
3357
|
-
"*.openai_api_key",
|
|
3356
|
+
"llm_api_keys",
|
|
3358
3357
|
"*.nostr_secret_key",
|
|
3359
3358
|
"*.solana_secret_key",
|
|
3359
|
+
"*.llm_api_keys",
|
|
3360
|
+
"llm_api_keys.*",
|
|
3361
|
+
"*.llm_api_keys.*",
|
|
3360
3362
|
"secrets",
|
|
3361
3363
|
"*.secrets"
|
|
3362
3364
|
];
|