@dbx-tools/appkit-mastra 0.1.58 → 0.1.68
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 +41 -1
- package/dist/index.d.ts +1229 -17
- package/dist/index.js +3348 -19
- package/package.json +17 -30
- package/dist/src/agents.d.ts +0 -316
- package/dist/src/agents.js +0 -470
- package/dist/src/chart.d.ts +0 -153
- package/dist/src/chart.js +0 -570
- package/dist/src/config.d.ts +0 -295
- package/dist/src/config.js +0 -55
- package/dist/src/genie.d.ts +0 -161
- package/dist/src/genie.js +0 -973
- package/dist/src/history.d.ts +0 -95
- package/dist/src/history.js +0 -278
- package/dist/src/memory.d.ts +0 -109
- package/dist/src/memory.js +0 -253
- package/dist/src/model.d.ts +0 -52
- package/dist/src/model.js +0 -198
- package/dist/src/observability.d.ts +0 -64
- package/dist/src/observability.js +0 -83
- package/dist/src/plugin.d.ts +0 -177
- package/dist/src/plugin.js +0 -554
- package/dist/src/processor.d.ts +0 -8
- package/dist/src/processor.js +0 -40
- package/dist/src/processors/strip-stale-charts.d.ts +0 -32
- package/dist/src/processors/strip-stale-charts.js +0 -98
- package/dist/src/server.d.ts +0 -51
- package/dist/src/server.js +0 -152
- package/dist/src/serving.d.ts +0 -65
- package/dist/src/serving.js +0 -79
- package/dist/src/statement.d.ts +0 -66
- package/dist/src/statement.js +0 -111
- package/dist/src/writer.d.ts +0 -23
- package/dist/src/writer.js +0 -37
- package/dist/tsconfig.build.tsbuildinfo +0 -1
- package/index.ts +0 -27
- package/src/agents.ts +0 -772
- package/src/chart.ts +0 -716
- package/src/config.ts +0 -320
- package/src/genie.ts +0 -1123
- package/src/history.ts +0 -322
- package/src/memory.ts +0 -293
- package/src/model.ts +0 -257
- package/src/observability.ts +0 -114
- package/src/plugin.ts +0 -623
- package/src/processor.ts +0 -46
- package/src/processors/strip-stale-charts.ts +0 -102
- package/src/server.ts +0 -195
- package/src/serving.ts +0 -104
- package/src/statement.ts +0 -120
- package/src/writer.ts +0 -44
package/index.ts
DELETED
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Server-side entry point for the AppKit Mastra integration. Mounts
|
|
3
|
-
* the plugin via {@link mastra} and re-exports the full server surface
|
|
4
|
-
* (config, agent wiring, Genie and chart tooling, and dynamic Model
|
|
5
|
-
* Serving resolution) so apps build agent backends from one import.
|
|
6
|
-
*
|
|
7
|
-
* Client-side consumers should import URL helpers and the
|
|
8
|
-
* {@link MastraClientConfig} type from `@dbx-tools/appkit-mastra-shared`
|
|
9
|
-
* instead - that package is pure (no pg / fastembed / Mastra deps) and
|
|
10
|
-
* is the right surface for browser bundles and `usePluginClientConfig`
|
|
11
|
-
* consumers.
|
|
12
|
-
*/
|
|
13
|
-
export * from "@dbx-tools/appkit-mastra-shared";
|
|
14
|
-
export * from "@dbx-tools/model";
|
|
15
|
-
export * from "./src/agents.js";
|
|
16
|
-
export * from "./src/chart.js";
|
|
17
|
-
export * from "./src/config.js";
|
|
18
|
-
export * from "./src/genie.js";
|
|
19
|
-
export * from "./src/plugin.js";
|
|
20
|
-
export {
|
|
21
|
-
MASTRA_MODEL_OVERRIDE_KEY,
|
|
22
|
-
MODEL_OVERRIDE_BODY_FIELDS,
|
|
23
|
-
MODEL_OVERRIDE_HEADER,
|
|
24
|
-
MODEL_OVERRIDE_QUERY,
|
|
25
|
-
extractModelOverride,
|
|
26
|
-
type ModelOverrideRequest,
|
|
27
|
-
} from "./src/serving.js";
|