@alfe.ai/openclaw-secrets 0.2.24 → 0.2.26

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/src/types.ts DELETED
@@ -1,18 +0,0 @@
1
- /**
2
- * Plugin-local types. Shared contract types (SecretScope, EncryptedEnvelopeV1,
3
- * SecretMetadata, etc.) live in `@alfe/types` and are re-exported by
4
- * `@alfe.ai/agent-api-client`; import from there so we have one canonical
5
- * source of truth across every agent HTTP surface.
6
- */
7
-
8
- export interface SecretsConfig {
9
- /**
10
- * Base URL of the Alfe API host — the same value `@alfe.ai/agent-api-client`
11
- * expects (normally read from `ALFE_API_URL`), e.g. `https://api.alfe.ai`.
12
- * The client prepends `/agent/secrets/*` automatically (the `/agent` segment
13
- * is the agent-gateway api-mapping key; `/secrets` is the service
14
- * pathPrefix). Do NOT include either segment in `apiUrl`.
15
- */
16
- apiUrl: string;
17
- agentApiKey: string;
18
- }
package/sst-env.d.ts DELETED
@@ -1,10 +0,0 @@
1
- /* This file is auto-generated by SST. Do not edit. */
2
- /* tslint:disable */
3
- /* eslint-disable */
4
- /* deno-fmt-ignore-file */
5
- /* biome-ignore-all lint: auto-generated */
6
-
7
- /// <reference path="../../sst-env.d.ts" />
8
-
9
- import "sst"
10
- export {}
package/tsconfig.json DELETED
@@ -1,20 +0,0 @@
1
- {
2
- "compilerOptions": {
3
- "target": "ES2022",
4
- "module": "Node16",
5
- "moduleResolution": "Node16",
6
- "lib": ["ES2022"],
7
- "outDir": "dist",
8
- "rootDir": "src",
9
- "strict": true,
10
- "esModuleInterop": true,
11
- "skipLibCheck": true,
12
- "forceConsistentCasingInFileNames": true,
13
- "resolveJsonModule": true,
14
- "declaration": true,
15
- "declarationMap": true,
16
- "sourceMap": true
17
- },
18
- "include": ["src/**/*"],
19
- "exclude": ["node_modules", "dist", "src/**/*.test.ts", "src/**/__tests__/**"]
20
- }
package/vitest.config.ts DELETED
@@ -1,9 +0,0 @@
1
- import { defineConfig } from "vitest/config";
2
-
3
- export default defineConfig({
4
- test: {
5
- include: ["src/**/*.test.ts"],
6
- exclude: ["dist/**", "node_modules/**"],
7
- testTimeout: 5_000,
8
- },
9
- });