@elevasis/sdk 0.5.13 → 0.5.15
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/cli.cjs +745 -409
- package/dist/index.d.ts +32 -0
- package/dist/index.js +68 -0
- package/dist/templates.js +254 -37
- package/dist/worker/index.js +3 -7
- package/package.json +1 -1
- package/reference/cli.mdx +568 -505
- package/reference/concepts.mdx +4 -43
- package/reference/deployment/api.mdx +297 -297
- package/reference/deployment/command-center.mdx +9 -12
- package/reference/deployment/index.mdx +7 -7
- package/reference/framework/agent.mdx +6 -18
- package/reference/framework/interaction-guidance.mdx +182 -182
- package/reference/framework/memory.mdx +3 -24
- package/reference/framework/project-structure.mdx +277 -298
- package/reference/framework/tutorial-system.mdx +13 -44
- package/reference/getting-started.mdx +152 -148
- package/reference/index.mdx +28 -14
- package/reference/platform-tools/adapters.mdx +868 -1072
- package/reference/platform-tools/index.mdx +3 -3
- package/reference/resources/index.mdx +339 -341
- package/reference/resources/patterns.mdx +355 -354
- package/reference/resources/types.mdx +207 -207
- package/reference/roadmap.mdx +163 -147
- package/reference/runtime.mdx +2 -25
- package/reference/troubleshooting.mdx +223 -210
|
@@ -40,7 +40,7 @@ Both patterns return a Promise that resolves with the tool result or rejects wit
|
|
|
40
40
|
|
|
41
41
|
## Integration Adapters
|
|
42
42
|
|
|
43
|
-
|
|
43
|
+
Eleven integration adapters give you access to 55+ tool methods covering third-party APIs. Pass the `credential` field with the name of the stored credential for that service. Supabase is listed separately under [Database Access](#database-access) below.
|
|
44
44
|
|
|
45
45
|
| Adapter | Tools | Credential Shape |
|
|
46
46
|
| ------------- | ----------------------------- | ------------------------ |
|
|
@@ -127,7 +127,7 @@ Credentials are created in the command center UI: navigate to Credentials → Ad
|
|
|
127
127
|
| Calling an API not in the catalog | `platform.call()` with `tool: 'http'` |
|
|
128
128
|
| Third-party SDK that requires a raw key | `platform.getCredential()` |
|
|
129
129
|
|
|
130
|
-
`.env` contains only `
|
|
130
|
+
`.env` contains only `ELEVASIS_PLATFORM_KEY` for CLI authentication -- never integration credentials.
|
|
131
131
|
|
|
132
132
|
---
|
|
133
133
|
|
|
@@ -347,7 +347,7 @@ const { signedUrl } = await storage.createSignedUrl({ bucket: 'exports', path: r
|
|
|
347
347
|
|
|
348
348
|
## Documentation
|
|
349
349
|
|
|
350
|
-
- [Typed Adapters](adapters.mdx) - Type-safe wrappers for all
|
|
350
|
+
- [Typed Adapters](adapters.mdx) - Type-safe wrappers for all 11 integrations + 9 platform services with full autocomplete (recommended)
|
|
351
351
|
|
|
352
352
|
---
|
|
353
353
|
|