Action - TypeScript SDK

Action type definition

The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Supported Types

models.OutputWebSearchCallItemActionSearch

1const value: models.OutputWebSearchCallItemActionSearch = {
2 query: "<value>",
3 type: "search",
4};

models.ActionOpenPage

1const value: models.ActionOpenPage = {
2 type: "open_page",
3};

models.ActionFindInPage

1const value: models.ActionFindInPage = {
2 pattern: "<value>",
3 type: "find_in_page",
4 url: "https://qualified-king.org",
5};