@caido/sdk-frontend 0.53.2-beta.9 → 0.54.1-beta.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@caido/sdk-frontend",
3
- "version": "0.53.2-beta.9",
3
+ "version": "0.54.1-beta.0",
4
4
  "description": "Typing for the Caido Frontend SDK",
5
5
  "author": "Caido Labs Inc. <dev@caido.io>",
6
6
  "repository": "https://github.com/caido/sdk-js/",
@@ -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";
@@ -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.
@@ -13,7 +13,7 @@ export declare const Routes: {
13
13
  readonly Automate: "Automate";
14
14
  readonly Projects: "Projects";
15
15
  readonly Backups: "Backups";
16
- readonly MatchReplace: "Tamper";
16
+ readonly MatchReplace: "MatchReplace";
17
17
  readonly Assistant: "Assistant";
18
18
  readonly Environment: "Environment";
19
19
  readonly Scope: "Scope";