@dbx-tools/appkit-mastra 0.1.111 → 0.3.1
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 +309 -344
- package/index.ts +46 -0
- package/package.json +50 -28
- package/src/agents.ts +858 -0
- package/src/chart.ts +695 -0
- package/src/config.ts +443 -0
- package/src/filesystems.ts +1090 -0
- package/src/genie.ts +1091 -0
- package/src/history.ts +297 -0
- package/src/mcp.ts +105 -0
- package/src/memory.ts +300 -0
- package/src/mlflow.ts +149 -0
- package/src/model.ts +163 -0
- package/src/observability.ts +144 -0
- package/src/pagination.ts +34 -0
- package/src/plugin.ts +804 -0
- package/src/processors.ts +168 -0
- package/src/rest.ts +67 -0
- package/src/server.ts +343 -0
- package/src/serving-sanitize.ts +167 -0
- package/src/serving.ts +97 -0
- package/src/statement.ts +89 -0
- package/src/storage-schema.ts +41 -0
- package/src/summarize.ts +176 -0
- package/src/threads.ts +338 -0
- package/src/workspaces.ts +346 -0
- package/src/writer.ts +44 -0
- package/tsconfig.json +41 -0
- package/dist/index.d.ts +0 -1676
- package/dist/index.js +0 -5337
package/index.ts
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
// GENERATED by projen watch - DO NOT EDIT.
|
|
2
|
+
// Regenerated from the exporting modules in ./src.
|
|
3
|
+
// Hand edits are overwritten on the next watch; this file is read-only.
|
|
4
|
+
|
|
5
|
+
export * as agents from "./src/agents";
|
|
6
|
+
export * as chart from "./src/chart";
|
|
7
|
+
export * as config from "./src/config";
|
|
8
|
+
export * as filesystems from "./src/filesystems";
|
|
9
|
+
export * as genie from "./src/genie";
|
|
10
|
+
export * as history from "./src/history";
|
|
11
|
+
export * as mcp from "./src/mcp";
|
|
12
|
+
export * as memory from "./src/memory";
|
|
13
|
+
export * as mlflow from "./src/mlflow";
|
|
14
|
+
export * as model from "./src/model";
|
|
15
|
+
export * as observability from "./src/observability";
|
|
16
|
+
export * as pagination from "./src/pagination";
|
|
17
|
+
export * as plugin from "./src/plugin";
|
|
18
|
+
export * as processors from "./src/processors";
|
|
19
|
+
export * as rest from "./src/rest";
|
|
20
|
+
export * as server from "./src/server";
|
|
21
|
+
export * as serving from "./src/serving";
|
|
22
|
+
export * as servingSanitize from "./src/serving-sanitize";
|
|
23
|
+
export * as statement from "./src/statement";
|
|
24
|
+
export * as storageSchema from "./src/storage-schema";
|
|
25
|
+
export * as summarize from "./src/summarize";
|
|
26
|
+
export * as threads from "./src/threads";
|
|
27
|
+
export * as workspaces from "./src/workspaces";
|
|
28
|
+
export * as writer from "./src/writer";
|
|
29
|
+
export type { MastraTools, AppKitToolOptions, ToolkitOptions, MastraPluginToolkitProvider, MastraPlugins, MastraToolsFn, MastraAgentWorkspaceResolver, MastraAgentDefinition, MastraStorageConfigOverride, MastraMemoryConfigOverride, BuiltAgents } from "./src/agents";
|
|
30
|
+
export type { ChartPlannerRequest, PrepareChartOptions, FetchChartOptions } from "./src/chart";
|
|
31
|
+
export type { User, MastraMemoryConfig, MastraMcpConfig, MastraPluginConfig } from "./src/config";
|
|
32
|
+
export type { DatabricksMkdirsMode, DatabricksWorkspaceFilesystemOptions } from "./src/filesystems";
|
|
33
|
+
export type { GenieSpaceConfig, GenieSpacesConfig } from "./src/genie";
|
|
34
|
+
export type { LoadHistoryOptions, ClearHistoryOptions, HistoryRouteOptions } from "./src/history";
|
|
35
|
+
export type { ResolvedMcp } from "./src/mcp";
|
|
36
|
+
export type { LogFeedbackParams } from "./src/mlflow";
|
|
37
|
+
export type { BuildModelOverrides } from "./src/model";
|
|
38
|
+
export type { BuildObservabilityOptions } from "./src/observability";
|
|
39
|
+
export type { PerPageBounds } from "./src/pagination";
|
|
40
|
+
export type { DatabricksFetchInit } from "./src/rest";
|
|
41
|
+
export type { MastraApiGateOptions } from "./src/server";
|
|
42
|
+
export type { ModelOverrideRequest } from "./src/serving";
|
|
43
|
+
export type { ServingChatMessage } from "./src/serving-sanitize";
|
|
44
|
+
export type { SummarizeOptions } from "./src/summarize";
|
|
45
|
+
export type { ListThreadsOptions, DeleteThreadOptions, RenameThreadOptions, ThreadsRouteOptions } from "./src/threads";
|
|
46
|
+
export type { CreateWorkspaceOptions } from "./src/workspaces";
|
package/package.json
CHANGED
|
@@ -1,13 +1,20 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dbx-tools/appkit-mastra",
|
|
3
|
-
"
|
|
3
|
+
"repository": {
|
|
4
|
+
"type": "git",
|
|
5
|
+
"url": "git+https://github.com/reggie-db/dbx-tools.git",
|
|
6
|
+
"directory": "workspaces/node/appkit-mastra"
|
|
7
|
+
},
|
|
8
|
+
"devDependencies": {
|
|
9
|
+
"@types/express": "^5.0.5",
|
|
10
|
+
"@types/node": "^24.6.0",
|
|
11
|
+
"@types/pg": "^8",
|
|
12
|
+
"tsx": "^4.23.0",
|
|
13
|
+
"typescript": "^5.9.3"
|
|
14
|
+
},
|
|
4
15
|
"dependencies": {
|
|
16
|
+
"@databricks/appkit": "^0.43.0",
|
|
5
17
|
"@databricks/sdk-experimental": "^0.17.0",
|
|
6
|
-
"@dbx-tools/appkit-mastra-shared": "0.1.111",
|
|
7
|
-
"@dbx-tools/genie": "0.1.111",
|
|
8
|
-
"@dbx-tools/genie-shared": "0.1.111",
|
|
9
|
-
"@dbx-tools/model": "0.1.111",
|
|
10
|
-
"@dbx-tools/shared": "0.1.111",
|
|
11
18
|
"@mastra/ai-sdk": "^1.6.0",
|
|
12
19
|
"@mastra/core": "^1.47.0",
|
|
13
20
|
"@mastra/express": "^1.4.2",
|
|
@@ -18,30 +25,45 @@
|
|
|
18
25
|
"@mastra/otel-bridge": "^1.4.0",
|
|
19
26
|
"@mastra/pg": "^1.14.2",
|
|
20
27
|
"@opentelemetry/api": "^1.9.1",
|
|
21
|
-
"
|
|
22
|
-
"
|
|
28
|
+
"pg": "^8.22.0",
|
|
29
|
+
"zod": "^4.3.6",
|
|
30
|
+
"@dbx-tools/appkit": "0.3.1",
|
|
31
|
+
"@dbx-tools/core": "0.3.1",
|
|
32
|
+
"@dbx-tools/genie": "0.3.1",
|
|
33
|
+
"@dbx-tools/databricks": "0.3.1",
|
|
34
|
+
"@dbx-tools/shared-core": "0.3.1",
|
|
35
|
+
"@dbx-tools/model": "0.3.1",
|
|
36
|
+
"@dbx-tools/shared-genie": "0.3.1",
|
|
37
|
+
"@dbx-tools/shared-mastra": "0.3.1",
|
|
38
|
+
"@dbx-tools/shared-model": "0.3.1"
|
|
23
39
|
},
|
|
24
|
-
"
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
40
|
+
"main": "index.ts",
|
|
41
|
+
"license": "UNLICENSED",
|
|
42
|
+
"publishConfig": {
|
|
43
|
+
"access": "public"
|
|
29
44
|
},
|
|
30
|
-
"
|
|
31
|
-
|
|
32
|
-
|
|
45
|
+
"version": "0.3.1",
|
|
46
|
+
"types": "index.ts",
|
|
47
|
+
"type": "module",
|
|
48
|
+
"exports": {
|
|
49
|
+
".": "./index.ts",
|
|
50
|
+
"./package.json": "./package.json"
|
|
33
51
|
},
|
|
34
|
-
"
|
|
35
|
-
"
|
|
52
|
+
"dbxToolsConfig": {
|
|
53
|
+
"tags": [
|
|
54
|
+
"node"
|
|
55
|
+
]
|
|
36
56
|
},
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
"
|
|
57
|
+
"//": "~~ Generated by projen. To modify, edit .projenrc.js and run \"pnpm exec projen\".",
|
|
58
|
+
"scripts": {
|
|
59
|
+
"build": "projen build",
|
|
60
|
+
"compile": "projen compile",
|
|
61
|
+
"default": "projen default",
|
|
62
|
+
"package": "projen package",
|
|
63
|
+
"post-compile": "projen post-compile",
|
|
64
|
+
"pre-compile": "projen pre-compile",
|
|
65
|
+
"test": "projen test",
|
|
66
|
+
"watch": "projen watch",
|
|
67
|
+
"projen": "projen"
|
|
46
68
|
}
|
|
47
|
-
}
|
|
69
|
+
}
|