Skip to content

Commit f6baefb

Browse files
authored
chore: update appkit (#4048)
## Changes <!-- Brief summary of your changes that is easy to understand --> Updates the app kit with a fixed version on the type generation ## Why <!-- Why are these changes needed? Provide the context that the reviewer might be missing. For example, were there any decisions behind the change that are not reflected in the code itself? --> ## Tests <!-- How have you tested the changes? --> <!-- If your PR needs to be included in the release notes for next release, add a separate entry in NEXT_CHANGELOG.md as part of your PR. --> Co-authored-by: MarioCadenas <[email protected]>
1 parent d277cc4 commit f6baefb

File tree

3 files changed

+19
-6
lines changed

3 files changed

+19
-6
lines changed

experimental/apps-mcp/templates/appkit/template/{{.project_name}}/client/src/appKitTypes.d.ts

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,29 @@ import "@databricks/app-kit-ui/react";
33

44
declare module "@databricks/app-kit-ui/react" {
55
interface PluginRegistry {
6-
6+
"analytics": {
7+
"/users/me/query/:query_key": {
8+
chunk_index: number;
9+
row_offset: number;
10+
row_count: number;
11+
data: any[];
12+
};
13+
"/query/:query_key": {
14+
chunk_index: number;
15+
row_offset: number;
16+
row_count: number;
17+
data: any[];
18+
};
19+
}
720
}
821

922
interface QueryRegistry {
23+
1024
mocked_sales: {
1125
max_month_num: number;
1226
}[];
1327
hello_world: {
1428
value: string;
1529
}[];
1630
}
17-
1831
}

experimental/apps-mcp/templates/appkit/template/{{.project_name}}/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)