@keystrokehq/search_api 0.1.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.
Files changed (74) hide show
  1. package/README.md +17 -0
  2. package/dist/action.cjs +21 -0
  3. package/dist/action.cjs.map +1 -0
  4. package/dist/action.mjs +21 -0
  5. package/dist/action.mjs.map +1 -0
  6. package/dist/actions/get-account-info.cjs +33 -0
  7. package/dist/actions/get-account-info.cjs.map +1 -0
  8. package/dist/actions/get-account-info.d.cts +9 -0
  9. package/dist/actions/get-account-info.d.cts.map +1 -0
  10. package/dist/actions/get-account-info.d.mts +9 -0
  11. package/dist/actions/get-account-info.d.mts.map +1 -0
  12. package/dist/actions/get-account-info.mjs +32 -0
  13. package/dist/actions/get-account-info.mjs.map +1 -0
  14. package/dist/actions/get-cached-search-by-id.cjs +141 -0
  15. package/dist/actions/get-cached-search-by-id.cjs.map +1 -0
  16. package/dist/actions/get-cached-search-by-id.d.cts +9 -0
  17. package/dist/actions/get-cached-search-by-id.d.cts.map +1 -0
  18. package/dist/actions/get-cached-search-by-id.d.mts +9 -0
  19. package/dist/actions/get-cached-search-by-id.d.mts.map +1 -0
  20. package/dist/actions/get-cached-search-by-id.mjs +140 -0
  21. package/dist/actions/get-cached-search-by-id.mjs.map +1 -0
  22. package/dist/actions/get-cached-search-html-by-id.cjs +19 -0
  23. package/dist/actions/get-cached-search-html-by-id.cjs.map +1 -0
  24. package/dist/actions/get-cached-search-html-by-id.d.cts +9 -0
  25. package/dist/actions/get-cached-search-html-by-id.d.cts.map +1 -0
  26. package/dist/actions/get-cached-search-html-by-id.d.mts +9 -0
  27. package/dist/actions/get-cached-search-html-by-id.d.mts.map +1 -0
  28. package/dist/actions/get-cached-search-html-by-id.mjs +16 -0
  29. package/dist/actions/get-cached-search-html-by-id.mjs.map +1 -0
  30. package/dist/actions/get-locations.cjs +31 -0
  31. package/dist/actions/get-locations.cjs.map +1 -0
  32. package/dist/actions/get-locations.d.cts +9 -0
  33. package/dist/actions/get-locations.d.cts.map +1 -0
  34. package/dist/actions/get-locations.d.mts +9 -0
  35. package/dist/actions/get-locations.d.mts.map +1 -0
  36. package/dist/actions/get-locations.mjs +30 -0
  37. package/dist/actions/get-locations.mjs.map +1 -0
  38. package/dist/actions/index.cjs +11 -0
  39. package/dist/actions/index.d.cts +6 -0
  40. package/dist/actions/index.d.mts +6 -0
  41. package/dist/actions/index.mjs +6 -0
  42. package/dist/actions/search.cjs +190 -0
  43. package/dist/actions/search.cjs.map +1 -0
  44. package/dist/actions/search.d.cts +9 -0
  45. package/dist/actions/search.d.cts.map +1 -0
  46. package/dist/actions/search.d.mts +9 -0
  47. package/dist/actions/search.d.mts.map +1 -0
  48. package/dist/actions/search.mjs +189 -0
  49. package/dist/actions/search.mjs.map +1 -0
  50. package/dist/app.cjs +9 -0
  51. package/dist/app.cjs.map +1 -0
  52. package/dist/app.d.cts +5 -0
  53. package/dist/app.d.cts.map +1 -0
  54. package/dist/app.d.mts +5 -0
  55. package/dist/app.d.mts.map +1 -0
  56. package/dist/app.mjs +10 -0
  57. package/dist/app.mjs.map +1 -0
  58. package/dist/catalog.cjs +15 -0
  59. package/dist/catalog.cjs.map +1 -0
  60. package/dist/catalog.d.cts +14 -0
  61. package/dist/catalog.d.cts.map +1 -0
  62. package/dist/catalog.d.mts +14 -0
  63. package/dist/catalog.d.mts.map +1 -0
  64. package/dist/catalog.mjs +15 -0
  65. package/dist/catalog.mjs.map +1 -0
  66. package/dist/execute.cjs +18 -0
  67. package/dist/execute.cjs.map +1 -0
  68. package/dist/execute.mjs +18 -0
  69. package/dist/execute.mjs.map +1 -0
  70. package/dist/index.cjs +16 -0
  71. package/dist/index.d.cts +8 -0
  72. package/dist/index.d.mts +8 -0
  73. package/dist/index.mjs +9 -0
  74. package/package.json +49 -0
@@ -0,0 +1,189 @@
1
+ import { action } from "../action.mjs";
2
+ import { z } from "zod";
3
+ //#region src/actions/search.ts
4
+ const SearchApiSearchInput = z.object({
5
+ q: z.string().describe("Search query terms with support for operators and advanced filters."),
6
+ cr: z.string().describe("Restricts results by country via TLD or IP geolocation.").optional(),
7
+ gl: z.string().describe("Country code for results (default: us). Two-letter country code.").optional(),
8
+ hl: z.string().describe("Interface language code (default: en). Two-letter language code.").optional(),
9
+ lr: z.string().describe("Restricts results by document language (format: lang_xx).").optional(),
10
+ num: z.number().int().describe("Number of results per page. Note: Google now returns a constant 10 results regardless of this parameter.").optional(),
11
+ nfpr: z.number().int().describe("Set to 1 to exclude auto-corrected results.").optional(),
12
+ page: z.number().int().describe("Results page number for pagination (default: 1).").optional(),
13
+ safe: z.string().describe("SafeSearch setting: 'active' to filter explicit content or 'off' to disable (default: off).").optional(),
14
+ uule: z.string().describe("Google-encoded location parameter. Cannot be used together with location parameter.").optional(),
15
+ kgmid: z.string().describe("Knowledge Graph identifier for entity-specific searches.").optional(),
16
+ device: z.string().describe("Device type for search results: desktop, mobile, or tablet (default: desktop).").optional(),
17
+ engine: z.string().describe("Specifies the search engine to use. Supported engines include: google, bing, yahoo, duckduckgo, youtube, google_maps, google_shopping, google_jobs, google_hotels, amazon_search, ebay_search, walmart_search, apple_app_store, baidu, yandex, naver, and many more."),
18
+ filter: z.number().int().describe("Enable (1) or disable (0) duplicate content filters (default: 1).").optional(),
19
+ location: z.string().describe("Canonical search location for geo-targeted results (e.g., 'United States', 'London,England,United Kingdom').").optional(),
20
+ time_period: z.string().describe("Filter results by date: last_hour, last_day, last_week, last_month, or last_year.").optional(),
21
+ google_domain: z.string().describe("Google domain to search (default: google.com).").optional(),
22
+ zero_retention: z.boolean().describe("Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.").optional(),
23
+ time_period_max: z.string().describe("Custom date range end in MM/DD/YYYY format.").optional(),
24
+ time_period_min: z.string().describe("Custom date range start in MM/DD/YYYY format.").optional(),
25
+ optimization_strategy: z.string().describe("Search optimization strategy: 'performance' or 'ads' (default: performance).").optional()
26
+ }).describe("Request model for performing unified search across 40+ search engines.");
27
+ const SearchApiSearch_AdvertisementSchema = z.object({
28
+ link: z.string().describe("Ad destination URL.").nullable().optional(),
29
+ title: z.string().describe("Ad title.").nullable().optional(),
30
+ position: z.number().int().describe("Ad position.").nullable().optional(),
31
+ sitelinks: z.union([z.array(z.object({})), z.object({})]).nullable().optional(),
32
+ description: z.string().describe("Ad description.").nullable().optional(),
33
+ tracking_url: z.string().describe("Ad tracking URL.").nullable().optional(),
34
+ displayed_link: z.string().describe("Displayed ad URL.").nullable().optional()
35
+ }).describe("Paid advertisement result.");
36
+ const SearchApiSearch_JobResultSchema = z.object({
37
+ title: z.string().describe("Job title.").nullable().optional(),
38
+ location: z.string().describe("Job location.").nullable().optional(),
39
+ posted_at: z.string().describe("Job posting date.").nullable().optional(),
40
+ extensions: z.array(z.string()).describe("Additional job details (salary, benefits, etc.).").nullable().optional(),
41
+ description: z.string().describe("Job description.").nullable().optional(),
42
+ company_name: z.string().describe("Employer name.").nullable().optional()
43
+ }).describe("Job posting result.");
44
+ const SearchApiSearch_EventResultSchema = z.object({
45
+ date: z.string().describe("Event date and time.").nullable().optional(),
46
+ link: z.string().describe("Event details URL.").nullable().optional(),
47
+ title: z.string().describe("Event title.").nullable().optional(),
48
+ venue: z.string().describe("Event venue.").nullable().optional(),
49
+ thumbnail: z.string().describe("Event image URL.").nullable().optional()
50
+ }).describe("Event listing result.");
51
+ const SearchApiSearch_PaginationSchema = z.object({
52
+ next: z.string().describe("Link to next page.").nullable().optional(),
53
+ current: z.number().int().describe("Current page number.").nullable().optional(),
54
+ other_pages: z.object({}).describe("Links to other pages.").nullable().optional()
55
+ }).describe("Pagination information.");
56
+ const SearchApiSearch_ShoppingAdSchema = z.object({
57
+ link: z.string().describe("Product page URL.").nullable().optional(),
58
+ price: z.string().describe("Product price.").nullable().optional(),
59
+ title: z.string().describe("Product title.").nullable().optional(),
60
+ rating: z.number().describe("Product rating.").nullable().optional(),
61
+ source: z.string().describe("Merchant/seller name.").nullable().optional(),
62
+ reviews: z.number().int().describe("Number of reviews.").nullable().optional(),
63
+ thumbnail: z.string().describe("Product image URL.").nullable().optional()
64
+ }).describe("Shopping product ad result.");
65
+ const SearchApiSearch_InlineImageSchema = z.object({
66
+ link: z.string().describe("Image page URL.").nullable().optional(),
67
+ title: z.string().describe("Image title or alt text.").nullable().optional(),
68
+ source: z.string().describe("Image source site.").nullable().optional(),
69
+ original: z.string().describe("Original image URL.").nullable().optional(),
70
+ thumbnail: z.string().describe("Thumbnail URL.").nullable().optional()
71
+ }).describe("Inline image result.");
72
+ const SearchApiSearch_InlineVideoSchema = z.object({
73
+ link: z.string().describe("Video URL.").nullable().optional(),
74
+ title: z.string().describe("Video title.").nullable().optional(),
75
+ views: z.string().describe("View count.").nullable().optional(),
76
+ channel: z.string().describe("Channel/uploader name.").nullable().optional(),
77
+ duration: z.string().describe("Video duration.").nullable().optional(),
78
+ platform: z.string().describe("Video platform (YouTube, etc).").nullable().optional(),
79
+ thumbnail: z.string().describe("Video thumbnail URL.").nullable().optional()
80
+ }).describe("Inline video result.");
81
+ const SearchApiSearch_PlaceSchema = z.object({
82
+ hours: z.string().describe("Operating hours.").nullable().optional(),
83
+ phone: z.string().describe("Phone number.").nullable().optional(),
84
+ title: z.string().describe("Business/place name.").nullable().optional(),
85
+ rating: z.number().describe("Average rating.").nullable().optional(),
86
+ address: z.string().describe("Business address.").nullable().optional(),
87
+ reviews: z.number().int().describe("Number of reviews.").nullable().optional(),
88
+ position: z.number().int().describe("Place position in list.").nullable().optional(),
89
+ thumbnail: z.string().describe("Place image URL.").nullable().optional(),
90
+ gps_coordinates: z.object({}).describe("GPS coordinates (latitude, longitude).").nullable().optional()
91
+ }).describe("Local business or place listing.");
92
+ const SearchApiSearch_LocalResultsSchema = z.object({
93
+ places: z.array(SearchApiSearch_PlaceSchema).describe("List of local places.").nullable().optional(),
94
+ more_locations_link: z.string().describe("Link to view more locations.").nullable().optional()
95
+ }).describe("Local search results container.");
96
+ const SearchApiSearch_WeatherResultSchema = z.object({
97
+ wind: z.string().describe("Wind speed.").nullable().optional(),
98
+ forecast: z.array(z.object({})).describe("Weather forecast data.").nullable().optional(),
99
+ humidity: z.string().describe("Humidity percentage.").nullable().optional(),
100
+ location: z.string().describe("Weather location.").nullable().optional(),
101
+ temperature: z.string().describe("Current temperature.").nullable().optional(),
102
+ precipitation: z.string().describe("Precipitation percentage.").nullable().optional()
103
+ }).describe("Weather information result.");
104
+ const SearchApiSearch_KnowledgeGraphSchema = z.object({
105
+ type: z.string().describe("Entity type or category.").nullable().optional(),
106
+ image: z.string().describe("Entity image URL.").nullable().optional(),
107
+ title: z.string().describe("Entity title.").nullable().optional(),
108
+ source: z.object({}).describe("Source information for the description.").nullable().optional(),
109
+ website: z.string().describe("Entity website URL.").nullable().optional(),
110
+ profiles: z.array(z.object({})).describe("Social media profiles.").nullable().optional(),
111
+ attributes: z.object({}).describe("Additional entity attributes.").nullable().optional(),
112
+ description: z.string().describe("Entity description.").nullable().optional()
113
+ }).describe("Knowledge Graph entity information.");
114
+ const SearchApiSearch_OrganicResultSchema = z.object({
115
+ date: z.string().describe("Publication or indexed date.").nullable().optional(),
116
+ link: z.string().describe("Result URL.").nullable().optional(),
117
+ title: z.string().describe("Result title.").nullable().optional(),
118
+ favicon: z.string().describe("Site favicon URL.").nullable().optional(),
119
+ snippet: z.string().describe("Result snippet/description.").nullable().optional(),
120
+ position: z.number().int().describe("Result position in list.").nullable().optional(),
121
+ sitelinks: z.object({}).describe("Page sitelinks, can contain expanded or inline sitelinks as list of dicts.").nullable().optional(),
122
+ rich_snippet: z.object({}).describe("Rich snippet data.").nullable().optional(),
123
+ displayed_link: z.string().describe("Displayed URL in results.").nullable().optional(),
124
+ cached_page_link: z.string().describe("Link to cached version of page.").nullable().optional(),
125
+ snippet_highlighted_words: z.array(z.string()).describe("Highlighted keywords in snippet.").nullable().optional()
126
+ }).describe("Organic search result item.");
127
+ const SearchApiSearch_SearchMetadataSchema = z.object({
128
+ id: z.string().describe("Unique request identifier.").nullable().optional(),
129
+ status: z.string().describe("Request status.").nullable().optional(),
130
+ created_at: z.string().describe("Request creation timestamp.").nullable().optional(),
131
+ google_url: z.string().describe("Direct Google search URL for this query.").nullable().optional(),
132
+ processed_at: z.string().describe("Request processing timestamp.").nullable().optional(),
133
+ raw_html_file: z.string().describe("URL to raw HTML response file.").nullable().optional(),
134
+ prettify_html_file: z.string().describe("URL to prettified HTML response file.").nullable().optional()
135
+ }).describe("Search request metadata including ID, status, and timing.");
136
+ const SearchApiSearch_RelatedSearchSchema = z.object({
137
+ link: z.string().describe("Search link for suggestion.").nullable().optional(),
138
+ query: z.string().describe("Suggested search query.").nullable().optional()
139
+ }).describe("Related search suggestion.");
140
+ const SearchApiSearch_SearchParametersSchema = z.object({
141
+ q: z.string().describe("Search query.").nullable().optional(),
142
+ gl: z.string().describe("Country code.").nullable().optional(),
143
+ hl: z.string().describe("Language code.").nullable().optional(),
144
+ page: z.number().int().describe("Page number.").nullable().optional(),
145
+ device: z.string().describe("Device type.").nullable().optional(),
146
+ engine: z.string().describe("Search engine used.").nullable().optional(),
147
+ location: z.string().describe("Search location.").nullable().optional(),
148
+ google_domain: z.string().describe("Google domain used.").nullable().optional()
149
+ }).describe("Echo of search request parameters.");
150
+ const SearchApiSearch_SearchInformationSchema = z.object({
151
+ total_results: z.union([z.number().int(), z.string()]).nullable().optional(),
152
+ query_displayed: z.string().describe("The query as displayed in results.").nullable().optional(),
153
+ time_taken_displayed: z.union([z.string(), z.number()]).nullable().optional()
154
+ }).describe("Search results summary.");
155
+ const SearchApiSearch_DiscussionResultSchema = z.object({
156
+ date: z.string().describe("Post date.").nullable().optional(),
157
+ link: z.string().describe("Discussion URL.").nullable().optional(),
158
+ title: z.string().describe("Discussion title.").nullable().optional(),
159
+ source: z.string().describe("Source platform (Reddit, etc).").nullable().optional(),
160
+ snippet: z.string().describe("Discussion snippet.").nullable().optional()
161
+ }).describe("Forum or discussion thread result.");
162
+ const searchApiSearch = action("SEARCH_API_SEARCH", {
163
+ slug: "search_api-search",
164
+ name: "Search",
165
+ description: "Tool to perform unified search across 40+ search engines including Google, Bing, Yahoo, DuckDuckGo, YouTube, Amazon, and more. Use when you need to retrieve search results with rich structured data including organic results, ads, knowledge graphs, local listings, images, videos, and related searches. Supports advanced filtering by location, language, date, device type, and SafeSearch settings.",
166
+ input: SearchApiSearchInput,
167
+ output: z.object({
168
+ ads: z.array(SearchApiSearch_AdvertisementSchema).describe("Paid advertisements.").nullable().optional(),
169
+ jobs: z.array(SearchApiSearch_JobResultSchema).describe("Job postings.").nullable().optional(),
170
+ events: z.array(SearchApiSearch_EventResultSchema).describe("Event listings.").nullable().optional(),
171
+ pagination: SearchApiSearch_PaginationSchema.nullable().optional(),
172
+ shopping_ads: z.array(SearchApiSearch_ShoppingAdSchema).describe("Shopping product listings.").nullable().optional(),
173
+ inline_images: z.array(SearchApiSearch_InlineImageSchema).describe("Image results.").nullable().optional(),
174
+ inline_videos: z.array(SearchApiSearch_InlineVideoSchema).describe("Video results.").nullable().optional(),
175
+ local_results: SearchApiSearch_LocalResultsSchema.nullable().optional(),
176
+ weather_result: SearchApiSearch_WeatherResultSchema.nullable().optional(),
177
+ knowledge_graph: SearchApiSearch_KnowledgeGraphSchema.nullable().optional(),
178
+ organic_results: z.array(SearchApiSearch_OrganicResultSchema).describe("Traditional organic search results.").nullable().optional(),
179
+ search_metadata: SearchApiSearch_SearchMetadataSchema.nullable().optional(),
180
+ related_searches: z.array(SearchApiSearch_RelatedSearchSchema).describe("Related search suggestions.").nullable().optional(),
181
+ search_parameters: SearchApiSearch_SearchParametersSchema.nullable().optional(),
182
+ search_information: SearchApiSearch_SearchInformationSchema.nullable().optional(),
183
+ discussions_and_forums: z.array(SearchApiSearch_DiscussionResultSchema).describe("Forum threads and discussions.").nullable().optional()
184
+ }).describe("Response model containing search results with multiple content sections.\nThe availability of each section depends on the search engine and query.")
185
+ });
186
+ //#endregion
187
+ export { searchApiSearch };
188
+
189
+ //# sourceMappingURL=search.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"search.mjs","names":[],"sources":["../../src/actions/search.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SearchApiSearchInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"Search query terms with support for operators and advanced filters.\"),\n cr: z.string().describe(\"Restricts results by country via TLD or IP geolocation.\").optional(),\n gl: z.string().describe(\"Country code for results (default: us). Two-letter country code.\").optional(),\n hl: z.string().describe(\"Interface language code (default: en). Two-letter language code.\").optional(),\n lr: z.string().describe(\"Restricts results by document language (format: lang_xx).\").optional(),\n num: z.number().int().describe(\"Number of results per page. Note: Google now returns a constant 10 results regardless of this parameter.\").optional(),\n nfpr: z.number().int().describe(\"Set to 1 to exclude auto-corrected results.\").optional(),\n page: z.number().int().describe(\"Results page number for pagination (default: 1).\").optional(),\n safe: z.string().describe(\"SafeSearch setting: 'active' to filter explicit content or 'off' to disable (default: off).\").optional(),\n uule: z.string().describe(\"Google-encoded location parameter. Cannot be used together with location parameter.\").optional(),\n kgmid: z.string().describe(\"Knowledge Graph identifier for entity-specific searches.\").optional(),\n device: z.string().describe(\"Device type for search results: desktop, mobile, or tablet (default: desktop).\").optional(),\n engine: z.string().describe(\"Specifies the search engine to use. Supported engines include: google, bing, yahoo, duckduckgo, youtube, google_maps, google_shopping, google_jobs, google_hotels, amazon_search, ebay_search, walmart_search, apple_app_store, baidu, yandex, naver, and many more.\"),\n filter: z.number().int().describe(\"Enable (1) or disable (0) duplicate content filters (default: 1).\").optional(),\n location: z.string().describe(\"Canonical search location for geo-targeted results (e.g., 'United States', 'London,England,United Kingdom').\").optional(),\n time_period: z.string().describe(\"Filter results by date: last_hour, last_day, last_week, last_month, or last_year.\").optional(),\n google_domain: z.string().describe(\"Google domain to search (default: google.com).\").optional(),\n zero_retention: z.boolean().describe(\"Enterprise-only feature. When set to true, disables all logging and persistent storage for this request.\").optional(),\n time_period_max: z.string().describe(\"Custom date range end in MM/DD/YYYY format.\").optional(),\n time_period_min: z.string().describe(\"Custom date range start in MM/DD/YYYY format.\").optional(),\n optimization_strategy: z.string().describe(\"Search optimization strategy: 'performance' or 'ads' (default: performance).\").optional(),\n}).describe(\"Request model for performing unified search across 40+ search engines.\");\nconst SearchApiSearch_AdvertisementSchema: z.ZodTypeAny = z.object({\n link: z.string().describe(\"Ad destination URL.\").nullable().optional(),\n title: z.string().describe(\"Ad title.\").nullable().optional(),\n position: z.number().int().describe(\"Ad position.\").nullable().optional(),\n sitelinks: z.union([z.array(z.object({})), z.object({})]).nullable().optional(),\n description: z.string().describe(\"Ad description.\").nullable().optional(),\n tracking_url: z.string().describe(\"Ad tracking URL.\").nullable().optional(),\n displayed_link: z.string().describe(\"Displayed ad URL.\").nullable().optional(),\n}).describe(\"Paid advertisement result.\");\nconst SearchApiSearch_JobResultSchema: z.ZodTypeAny = z.object({\n title: z.string().describe(\"Job title.\").nullable().optional(),\n location: z.string().describe(\"Job location.\").nullable().optional(),\n posted_at: z.string().describe(\"Job posting date.\").nullable().optional(),\n extensions: z.array(z.string()).describe(\"Additional job details (salary, benefits, etc.).\").nullable().optional(),\n description: z.string().describe(\"Job description.\").nullable().optional(),\n company_name: z.string().describe(\"Employer name.\").nullable().optional(),\n}).describe(\"Job posting result.\");\nconst SearchApiSearch_EventResultSchema: z.ZodTypeAny = z.object({\n date: z.string().describe(\"Event date and time.\").nullable().optional(),\n link: z.string().describe(\"Event details URL.\").nullable().optional(),\n title: z.string().describe(\"Event title.\").nullable().optional(),\n venue: z.string().describe(\"Event venue.\").nullable().optional(),\n thumbnail: z.string().describe(\"Event image URL.\").nullable().optional(),\n}).describe(\"Event listing result.\");\nconst SearchApiSearch_PaginationSchema: z.ZodTypeAny = z.object({\n next: z.string().describe(\"Link to next page.\").nullable().optional(),\n current: z.number().int().describe(\"Current page number.\").nullable().optional(),\n other_pages: z.object({}).describe(\"Links to other pages.\").nullable().optional(),\n}).describe(\"Pagination information.\");\nconst SearchApiSearch_ShoppingAdSchema: z.ZodTypeAny = z.object({\n link: z.string().describe(\"Product page URL.\").nullable().optional(),\n price: z.string().describe(\"Product price.\").nullable().optional(),\n title: z.string().describe(\"Product title.\").nullable().optional(),\n rating: z.number().describe(\"Product rating.\").nullable().optional(),\n source: z.string().describe(\"Merchant/seller name.\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews.\").nullable().optional(),\n thumbnail: z.string().describe(\"Product image URL.\").nullable().optional(),\n}).describe(\"Shopping product ad result.\");\nconst SearchApiSearch_InlineImageSchema: z.ZodTypeAny = z.object({\n link: z.string().describe(\"Image page URL.\").nullable().optional(),\n title: z.string().describe(\"Image title or alt text.\").nullable().optional(),\n source: z.string().describe(\"Image source site.\").nullable().optional(),\n original: z.string().describe(\"Original image URL.\").nullable().optional(),\n thumbnail: z.string().describe(\"Thumbnail URL.\").nullable().optional(),\n}).describe(\"Inline image result.\");\nconst SearchApiSearch_InlineVideoSchema: z.ZodTypeAny = z.object({\n link: z.string().describe(\"Video URL.\").nullable().optional(),\n title: z.string().describe(\"Video title.\").nullable().optional(),\n views: z.string().describe(\"View count.\").nullable().optional(),\n channel: z.string().describe(\"Channel/uploader name.\").nullable().optional(),\n duration: z.string().describe(\"Video duration.\").nullable().optional(),\n platform: z.string().describe(\"Video platform (YouTube, etc).\").nullable().optional(),\n thumbnail: z.string().describe(\"Video thumbnail URL.\").nullable().optional(),\n}).describe(\"Inline video result.\");\nconst SearchApiSearch_PlaceSchema: z.ZodTypeAny = z.object({\n hours: z.string().describe(\"Operating hours.\").nullable().optional(),\n phone: z.string().describe(\"Phone number.\").nullable().optional(),\n title: z.string().describe(\"Business/place name.\").nullable().optional(),\n rating: z.number().describe(\"Average rating.\").nullable().optional(),\n address: z.string().describe(\"Business address.\").nullable().optional(),\n reviews: z.number().int().describe(\"Number of reviews.\").nullable().optional(),\n position: z.number().int().describe(\"Place position in list.\").nullable().optional(),\n thumbnail: z.string().describe(\"Place image URL.\").nullable().optional(),\n gps_coordinates: z.object({}).describe(\"GPS coordinates (latitude, longitude).\").nullable().optional(),\n}).describe(\"Local business or place listing.\");\nconst SearchApiSearch_LocalResultsSchema: z.ZodTypeAny = z.object({\n places: z.array(SearchApiSearch_PlaceSchema).describe(\"List of local places.\").nullable().optional(),\n more_locations_link: z.string().describe(\"Link to view more locations.\").nullable().optional(),\n}).describe(\"Local search results container.\");\nconst SearchApiSearch_WeatherResultSchema: z.ZodTypeAny = z.object({\n wind: z.string().describe(\"Wind speed.\").nullable().optional(),\n forecast: z.array(z.object({})).describe(\"Weather forecast data.\").nullable().optional(),\n humidity: z.string().describe(\"Humidity percentage.\").nullable().optional(),\n location: z.string().describe(\"Weather location.\").nullable().optional(),\n temperature: z.string().describe(\"Current temperature.\").nullable().optional(),\n precipitation: z.string().describe(\"Precipitation percentage.\").nullable().optional(),\n}).describe(\"Weather information result.\");\nconst SearchApiSearch_KnowledgeGraphSchema: z.ZodTypeAny = z.object({\n type: z.string().describe(\"Entity type or category.\").nullable().optional(),\n image: z.string().describe(\"Entity image URL.\").nullable().optional(),\n title: z.string().describe(\"Entity title.\").nullable().optional(),\n source: z.object({}).describe(\"Source information for the description.\").nullable().optional(),\n website: z.string().describe(\"Entity website URL.\").nullable().optional(),\n profiles: z.array(z.object({})).describe(\"Social media profiles.\").nullable().optional(),\n attributes: z.object({}).describe(\"Additional entity attributes.\").nullable().optional(),\n description: z.string().describe(\"Entity description.\").nullable().optional(),\n}).describe(\"Knowledge Graph entity information.\");\nconst SearchApiSearch_OrganicResultSchema: z.ZodTypeAny = z.object({\n date: z.string().describe(\"Publication or indexed date.\").nullable().optional(),\n link: z.string().describe(\"Result URL.\").nullable().optional(),\n title: z.string().describe(\"Result title.\").nullable().optional(),\n favicon: z.string().describe(\"Site favicon URL.\").nullable().optional(),\n snippet: z.string().describe(\"Result snippet/description.\").nullable().optional(),\n position: z.number().int().describe(\"Result position in list.\").nullable().optional(),\n sitelinks: z.object({}).describe(\"Page sitelinks, can contain expanded or inline sitelinks as list of dicts.\").nullable().optional(),\n rich_snippet: z.object({}).describe(\"Rich snippet data.\").nullable().optional(),\n displayed_link: z.string().describe(\"Displayed URL in results.\").nullable().optional(),\n cached_page_link: z.string().describe(\"Link to cached version of page.\").nullable().optional(),\n snippet_highlighted_words: z.array(z.string()).describe(\"Highlighted keywords in snippet.\").nullable().optional(),\n}).describe(\"Organic search result item.\");\nconst SearchApiSearch_SearchMetadataSchema: z.ZodTypeAny = z.object({\n id: z.string().describe(\"Unique request identifier.\").nullable().optional(),\n status: z.string().describe(\"Request status.\").nullable().optional(),\n created_at: z.string().describe(\"Request creation timestamp.\").nullable().optional(),\n google_url: z.string().describe(\"Direct Google search URL for this query.\").nullable().optional(),\n processed_at: z.string().describe(\"Request processing timestamp.\").nullable().optional(),\n raw_html_file: z.string().describe(\"URL to raw HTML response file.\").nullable().optional(),\n prettify_html_file: z.string().describe(\"URL to prettified HTML response file.\").nullable().optional(),\n}).describe(\"Search request metadata including ID, status, and timing.\");\nconst SearchApiSearch_RelatedSearchSchema: z.ZodTypeAny = z.object({\n link: z.string().describe(\"Search link for suggestion.\").nullable().optional(),\n query: z.string().describe(\"Suggested search query.\").nullable().optional(),\n}).describe(\"Related search suggestion.\");\nconst SearchApiSearch_SearchParametersSchema: z.ZodTypeAny = z.object({\n q: z.string().describe(\"Search query.\").nullable().optional(),\n gl: z.string().describe(\"Country code.\").nullable().optional(),\n hl: z.string().describe(\"Language code.\").nullable().optional(),\n page: z.number().int().describe(\"Page number.\").nullable().optional(),\n device: z.string().describe(\"Device type.\").nullable().optional(),\n engine: z.string().describe(\"Search engine used.\").nullable().optional(),\n location: z.string().describe(\"Search location.\").nullable().optional(),\n google_domain: z.string().describe(\"Google domain used.\").nullable().optional(),\n}).describe(\"Echo of search request parameters.\");\nconst SearchApiSearch_SearchInformationSchema: z.ZodTypeAny = z.object({\n total_results: z.union([z.number().int(), z.string()]).nullable().optional(),\n query_displayed: z.string().describe(\"The query as displayed in results.\").nullable().optional(),\n time_taken_displayed: z.union([z.string(), z.number()]).nullable().optional(),\n}).describe(\"Search results summary.\");\nconst SearchApiSearch_DiscussionResultSchema: z.ZodTypeAny = z.object({\n date: z.string().describe(\"Post date.\").nullable().optional(),\n link: z.string().describe(\"Discussion URL.\").nullable().optional(),\n title: z.string().describe(\"Discussion title.\").nullable().optional(),\n source: z.string().describe(\"Source platform (Reddit, etc).\").nullable().optional(),\n snippet: z.string().describe(\"Discussion snippet.\").nullable().optional(),\n}).describe(\"Forum or discussion thread result.\");\nexport const SearchApiSearchOutput: z.ZodTypeAny = z.object({\n ads: z.array(SearchApiSearch_AdvertisementSchema).describe(\"Paid advertisements.\").nullable().optional(),\n jobs: z.array(SearchApiSearch_JobResultSchema).describe(\"Job postings.\").nullable().optional(),\n events: z.array(SearchApiSearch_EventResultSchema).describe(\"Event listings.\").nullable().optional(),\n pagination: SearchApiSearch_PaginationSchema.nullable().optional(),\n shopping_ads: z.array(SearchApiSearch_ShoppingAdSchema).describe(\"Shopping product listings.\").nullable().optional(),\n inline_images: z.array(SearchApiSearch_InlineImageSchema).describe(\"Image results.\").nullable().optional(),\n inline_videos: z.array(SearchApiSearch_InlineVideoSchema).describe(\"Video results.\").nullable().optional(),\n local_results: SearchApiSearch_LocalResultsSchema.nullable().optional(),\n weather_result: SearchApiSearch_WeatherResultSchema.nullable().optional(),\n knowledge_graph: SearchApiSearch_KnowledgeGraphSchema.nullable().optional(),\n organic_results: z.array(SearchApiSearch_OrganicResultSchema).describe(\"Traditional organic search results.\").nullable().optional(),\n search_metadata: SearchApiSearch_SearchMetadataSchema.nullable().optional(),\n related_searches: z.array(SearchApiSearch_RelatedSearchSchema).describe(\"Related search suggestions.\").nullable().optional(),\n search_parameters: SearchApiSearch_SearchParametersSchema.nullable().optional(),\n search_information: SearchApiSearch_SearchInformationSchema.nullable().optional(),\n discussions_and_forums: z.array(SearchApiSearch_DiscussionResultSchema).describe(\"Forum threads and discussions.\").nullable().optional(),\n}).describe(\"Response model containing search results with multiple content sections.\\nThe availability of each section depends on the search engine and query.\");\n\nexport const searchApiSearch = action(\"SEARCH_API_SEARCH\", {\n slug: \"search_api-search\",\n name: \"Search\",\n description: \"Tool to perform unified search across 40+ search engines including Google, Bing, Yahoo, DuckDuckGo, YouTube, Amazon, and more. Use when you need to retrieve search results with rich structured data including organic results, ads, knowledge graphs, local listings, images, videos, and related searches. Supports advanced filtering by location, language, date, device type, and SafeSearch settings.\",\n input: SearchApiSearchInput,\n output: SearchApiSearchOutput,\n});\n"],"mappings":"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"}
package/dist/app.cjs ADDED
@@ -0,0 +1,9 @@
1
+ //#region src/app.ts
2
+ const searchApi = (0, require("@keystrokehq/keystroke/app").defineApp)({
3
+ slug: "search_api",
4
+ auth: "keystroke"
5
+ });
6
+ //#endregion
7
+ exports.searchApi = searchApi;
8
+
9
+ //# sourceMappingURL=app.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.cjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const searchApi = defineApp({\n slug: \"search_api\",\n auth: \"keystroke\",\n});\n"],"mappings":";AAEA,MAAa,aAAA,uCAAA,CAAA,CAAA,UAAA,CAAsB;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
package/dist/app.d.cts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const searchApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { searchApi };
5
+ //# sourceMappingURL=app.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.cts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.d.mts ADDED
@@ -0,0 +1,5 @@
1
+ //#region src/app.d.ts
2
+ declare const searchApi: import("@keystrokehq/app").App<import("@keystrokehq/shared").Credential>;
3
+ //#endregion
4
+ export { searchApi };
5
+ //# sourceMappingURL=app.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.d.mts","names":[],"sources":["../src/app.ts"],"mappings":";cAEa,SAAA,6BAAS,GAAA,+BAAA,UAAA"}
package/dist/app.mjs ADDED
@@ -0,0 +1,10 @@
1
+ import { defineApp } from "@keystrokehq/keystroke/app";
2
+ //#region src/app.ts
3
+ const searchApi = defineApp({
4
+ slug: "search_api",
5
+ auth: "keystroke"
6
+ });
7
+ //#endregion
8
+ export { searchApi };
9
+
10
+ //# sourceMappingURL=app.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"app.mjs","names":[],"sources":["../src/app.ts"],"sourcesContent":["import { defineApp } from \"@keystrokehq/keystroke/app\";\n\nexport const searchApi = defineApp({\n slug: \"search_api\",\n auth: \"keystroke\",\n});\n"],"mappings":";;AAEA,MAAa,YAAY,UAAU;CACjC,MAAM;CACN,MAAM;AACR,CAAC"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const searchApiCatalog = {
4
+ "slug": "search_api",
5
+ "name": "Search api",
6
+ "description": "Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.",
7
+ "category": "Developer Tools",
8
+ "logo": "https://logos.composio.dev/api/search_api",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ exports.searchApiCatalog = searchApiCatalog;
14
+
15
+ //# sourceMappingURL=catalog.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.cjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const searchApiCatalog = {\n \"slug\": \"search_api\",\n \"name\": \"Search api\",\n \"description\": \"Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/search_api\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const searchApiCatalog: {
4
+ readonly slug: "search_api";
5
+ readonly name: "Search api";
6
+ readonly description: "Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.";
7
+ readonly category: "Developer Tools";
8
+ readonly logo: "https://logos.composio.dev/api/search_api";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { searchApiCatalog };
14
+ //# sourceMappingURL=catalog.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.cts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,14 @@
1
+ //#region src/catalog.d.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ declare const searchApiCatalog: {
4
+ readonly slug: "search_api";
5
+ readonly name: "Search api";
6
+ readonly description: "Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.";
7
+ readonly category: "Developer Tools";
8
+ readonly logo: "https://logos.composio.dev/api/search_api";
9
+ readonly authKind: "keystroke";
10
+ readonly oauthScopes: readonly [];
11
+ };
12
+ //#endregion
13
+ export { searchApiCatalog };
14
+ //# sourceMappingURL=catalog.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.d.mts","names":[],"sources":["../src/catalog.ts"],"mappings":";;cACa,gBAAA;EAAA"}
@@ -0,0 +1,15 @@
1
+ //#region src/catalog.ts
2
+ /** Generated — kept in sync with src/app.ts. */
3
+ const searchApiCatalog = {
4
+ "slug": "search_api",
5
+ "name": "Search api",
6
+ "description": "Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.",
7
+ "category": "Developer Tools",
8
+ "logo": "https://logos.composio.dev/api/search_api",
9
+ "authKind": "keystroke",
10
+ "oauthScopes": []
11
+ };
12
+ //#endregion
13
+ export { searchApiCatalog };
14
+
15
+ //# sourceMappingURL=catalog.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"catalog.mjs","names":[],"sources":["../src/catalog.ts"],"sourcesContent":["/** Generated — kept in sync with src/app.ts. */\nexport const searchApiCatalog = {\n \"slug\": \"search_api\",\n \"name\": \"Search api\",\n \"description\": \"Your real-time SERP API solution. Mastering proxy management, CAPTCHAs, and JSON parsing for seamless web data extraction.\",\n \"category\": \"Developer Tools\",\n \"logo\": \"https://logos.composio.dev/api/search_api\",\n \"authKind\": \"keystroke\",\n \"oauthScopes\": []\n} as const;\n"],"mappings":";;AACA,MAAa,mBAAmB;CAC9B,QAAQ;CACR,QAAQ;CACR,eAAe;CACf,YAAY;CACZ,QAAQ;CACR,YAAY;CACZ,eAAe,CAAC;AAClB"}
@@ -0,0 +1,18 @@
1
+ let _keystrokehq_keystroke_client = require("@keystrokehq/keystroke/client");
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "search_api";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSearchApiTool(tool, args) {
7
+ const { result } = await (0, _keystrokehq_keystroke_client.createKeystrokeClient)().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ exports.executeSearchApiTool = executeSearchApiTool;
17
+
18
+ //# sourceMappingURL=execute.cjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.cjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"search_api\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSearchApiTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,OAAA,GAAA,8BAAA,sBAAA,CAA4B,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
@@ -0,0 +1,18 @@
1
+ import { createKeystrokeClient } from "@keystrokehq/keystroke/client";
2
+ //#region src/execute.ts
3
+ const APP_SLUG = "search_api";
4
+ /** Pinned app version — updated on regeneration. */
5
+ const APP_VERSION = "20260615_00";
6
+ async function executeSearchApiTool(tool, args) {
7
+ const { result } = await createKeystrokeClient().tools.execute({
8
+ app: APP_SLUG,
9
+ tool,
10
+ arguments: args,
11
+ version: APP_VERSION
12
+ });
13
+ return result;
14
+ }
15
+ //#endregion
16
+ export { executeSearchApiTool };
17
+
18
+ //# sourceMappingURL=execute.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"execute.mjs","names":[],"sources":["../src/execute.ts"],"sourcesContent":["import { createKeystrokeClient } from \"@keystrokehq/keystroke/client\";\n\nconst APP_SLUG = \"search_api\";\n/** Pinned app version — updated on regeneration. */\nconst APP_VERSION = \"20260615_00\";\n\nexport async function executeSearchApiTool(\n tool: string,\n args: Record<string, unknown>,\n): Promise<unknown> {\n const { result } = await createKeystrokeClient().tools.execute({\n app: APP_SLUG,\n tool,\n arguments: args,\n version: APP_VERSION,\n });\n return result;\n}\n"],"mappings":";;AAEA,MAAM,WAAW;;AAEjB,MAAM,cAAc;AAEpB,eAAsB,qBACpB,MACA,MACkB;CAClB,MAAM,EAAE,WAAW,MAAM,sBAAsB,CAAC,CAAC,MAAM,QAAQ;EAC7D,KAAK;EACL;EACA,WAAW;EACX,SAAS;CACX,CAAC;CACD,OAAO;AACT"}
package/dist/index.cjs ADDED
@@ -0,0 +1,16 @@
1
+ Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
2
+ const require_app = require("./app.cjs");
3
+ const require_catalog = require("./catalog.cjs");
4
+ const require_get_account_info = require("./actions/get-account-info.cjs");
5
+ const require_get_cached_search_by_id = require("./actions/get-cached-search-by-id.cjs");
6
+ const require_get_cached_search_html_by_id = require("./actions/get-cached-search-html-by-id.cjs");
7
+ const require_get_locations = require("./actions/get-locations.cjs");
8
+ const require_search = require("./actions/search.cjs");
9
+ require("./actions/index.cjs");
10
+ exports.searchApi = require_app.searchApi;
11
+ exports.searchApiCatalog = require_catalog.searchApiCatalog;
12
+ exports.searchApiGetAccountInfo = require_get_account_info.searchApiGetAccountInfo;
13
+ exports.searchApiGetCachedSearchById = require_get_cached_search_by_id.searchApiGetCachedSearchById;
14
+ exports.searchApiGetCachedSearchHtmlById = require_get_cached_search_html_by_id.searchApiGetCachedSearchHtmlById;
15
+ exports.searchApiGetLocations = require_get_locations.searchApiGetLocations;
16
+ exports.searchApiSearch = require_search.searchApiSearch;
@@ -0,0 +1,8 @@
1
+ import { searchApiGetAccountInfo } from "./actions/get-account-info.cjs";
2
+ import { searchApiGetCachedSearchById } from "./actions/get-cached-search-by-id.cjs";
3
+ import { searchApiGetCachedSearchHtmlById } from "./actions/get-cached-search-html-by-id.cjs";
4
+ import { searchApiGetLocations } from "./actions/get-locations.cjs";
5
+ import { searchApiSearch } from "./actions/search.cjs";
6
+ import { searchApi } from "./app.cjs";
7
+ import { searchApiCatalog } from "./catalog.cjs";
8
+ export { searchApi, searchApiCatalog, searchApiGetAccountInfo, searchApiGetCachedSearchById, searchApiGetCachedSearchHtmlById, searchApiGetLocations, searchApiSearch };
@@ -0,0 +1,8 @@
1
+ import { searchApiGetAccountInfo } from "./actions/get-account-info.mjs";
2
+ import { searchApiGetCachedSearchById } from "./actions/get-cached-search-by-id.mjs";
3
+ import { searchApiGetCachedSearchHtmlById } from "./actions/get-cached-search-html-by-id.mjs";
4
+ import { searchApiGetLocations } from "./actions/get-locations.mjs";
5
+ import { searchApiSearch } from "./actions/search.mjs";
6
+ import { searchApi } from "./app.mjs";
7
+ import { searchApiCatalog } from "./catalog.mjs";
8
+ export { searchApi, searchApiCatalog, searchApiGetAccountInfo, searchApiGetCachedSearchById, searchApiGetCachedSearchHtmlById, searchApiGetLocations, searchApiSearch };
package/dist/index.mjs ADDED
@@ -0,0 +1,9 @@
1
+ import { searchApi } from "./app.mjs";
2
+ import { searchApiCatalog } from "./catalog.mjs";
3
+ import { searchApiGetAccountInfo } from "./actions/get-account-info.mjs";
4
+ import { searchApiGetCachedSearchById } from "./actions/get-cached-search-by-id.mjs";
5
+ import { searchApiGetCachedSearchHtmlById } from "./actions/get-cached-search-html-by-id.mjs";
6
+ import { searchApiGetLocations } from "./actions/get-locations.mjs";
7
+ import { searchApiSearch } from "./actions/search.mjs";
8
+ import "./actions/index.mjs";
9
+ export { searchApi, searchApiCatalog, searchApiGetAccountInfo, searchApiGetCachedSearchById, searchApiGetCachedSearchHtmlById, searchApiGetLocations, searchApiSearch };
package/package.json ADDED
@@ -0,0 +1,49 @@
1
+ {
2
+ "name": "@keystrokehq/search_api",
3
+ "version": "0.1.0",
4
+ "publishConfig": {
5
+ "access": "public",
6
+ "registry": "https://registry.npmjs.org"
7
+ },
8
+ "repository": {
9
+ "type": "git",
10
+ "url": "git+https://github.com/keystrokehq/keystroke.git",
11
+ "directory": "packages/integrations/search_api"
12
+ },
13
+ "files": [
14
+ "dist"
15
+ ],
16
+ "sideEffects": false,
17
+ "type": "module",
18
+ "main": "./dist/index.cjs",
19
+ "module": "./dist/index.mjs",
20
+ "types": "./dist/index.d.mts",
21
+ "exports": {
22
+ ".": {
23
+ "types": "./dist/index.d.mts",
24
+ "import": "./dist/index.mjs",
25
+ "require": "./dist/index.cjs"
26
+ },
27
+ "./actions": {
28
+ "types": "./dist/actions/index.d.mts",
29
+ "import": "./dist/actions/index.mjs",
30
+ "require": "./dist/actions/index.cjs"
31
+ }
32
+ },
33
+ "peerDependencies": {
34
+ "@keystrokehq/keystroke": "^0.1.4",
35
+ "zod": "^4.4.3"
36
+ },
37
+ "devDependencies": {
38
+ "@keystrokehq/keystroke": "link:../../keystroke",
39
+ "@types/node": "^25.9.1",
40
+ "tsdown": "^0.22.0",
41
+ "typescript": "^6.0.3",
42
+ "zod": "^4.4.3"
43
+ },
44
+ "scripts": {
45
+ "build": "tsdown",
46
+ "dev": "tsdown --watch --no-clean",
47
+ "typecheck": "tsc --noEmit"
48
+ }
49
+ }