@caido/sdk-frontend 0.53.2-beta.9 → 0.54.0
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/package.json +1 -1
- package/src/types/index.d.ts +1 -1
- package/src/types/types/ai.d.ts +4 -0
package/package.json
CHANGED
package/src/types/index.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export type { MenuItem } from "./types/menu";
|
|
|
5
5
|
export { type ReplayTab, type ReplaySession, type ReplayEntry, type ReplayCollection, type SendRequestOptions, ReplaySlot, type ReplaySlotContent, type RequestSource, type CurrentReplaySessionChangeEvent, } from "./types/replay";
|
|
6
6
|
export { SearchSlot, type SearchSlotContent } from "./types/search";
|
|
7
7
|
export type { HostedFile } from "./types/files";
|
|
8
|
-
export { FilterSlot, type Filter, type FilterSlotContent, CurrentFilterChangeEvent, } from "./types/filter";
|
|
8
|
+
export { FilterSlot, type Filter, type FilterSlotContent, type CurrentFilterChangeEvent, } from "./types/filter";
|
|
9
9
|
export type { HTTPQL, ID, ComponentDefinition } from "./types/utils";
|
|
10
10
|
export type { JSONValue, JSONCompatible } from "./types/json";
|
|
11
11
|
export type { SlotContent, ButtonSlotContent, CustomSlotContent, CommandSlotContent, } from "./types/slots";
|
package/src/types/types/ai.d.ts
CHANGED
|
@@ -12,6 +12,10 @@ export type AIReasoningSettings = {
|
|
|
12
12
|
*/
|
|
13
13
|
export type AILanguageModelSettings = {
|
|
14
14
|
reasoning?: AIReasoningSettings;
|
|
15
|
+
capabilities?: {
|
|
16
|
+
reasoning: boolean;
|
|
17
|
+
structured_output: boolean;
|
|
18
|
+
};
|
|
15
19
|
};
|
|
16
20
|
/**
|
|
17
21
|
* Official AI Provider to be used by the [ai](https://ai-sdk.dev/) library.
|