@keystrokehq/serpapi 0.0.7 → 0.0.9
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/dist/_official/index.d.mts +1 -1
- package/dist/_official/index.mjs +1 -1
- package/dist/index.d.mts +224 -225
- package/dist/index.mjs +112 -113
- package/dist/{integration-CX4Gm9Vn.d.mts → integration-9TPiVaR2.d.mts} +15 -5
- package/dist/integration-CLoyNwR6.mjs +107 -0
- package/package.json +4 -4
- package/dist/integration-BA0FMUGB.mjs +0 -17
package/dist/index.mjs
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
import { n as serpApiBundle, r as serpApiOfficialIntegration, t as serpApi } from "./integration-
|
|
1
|
+
import { i as createOfficialOperationFactory, n as serpApiBundle, r as serpApiOfficialIntegration, t as serpApi } from "./integration-CLoyNwR6.mjs";
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
import { getAccount, getJson, getJsonBySearchId, getLocations } from "serpapi";
|
|
4
|
-
import { createOfficialOperationFactory } from "@keystrokehq/integration-authoring/official";
|
|
5
4
|
|
|
6
5
|
//#region src/client.ts
|
|
7
6
|
async function serpApiSearch(credentials, engine, params) {
|
|
@@ -25,7 +24,7 @@ const serpApiOperation = createOfficialOperationFactory(serpApi);
|
|
|
25
24
|
//#endregion
|
|
26
25
|
//#region src/amazon/product.ts
|
|
27
26
|
const amazonProduct = serpApiOperation({
|
|
28
|
-
id: "
|
|
27
|
+
id: "serpapi.amazon-product",
|
|
29
28
|
name: "Amazon Product",
|
|
30
29
|
description: "Get Amazon product details via SerpApi",
|
|
31
30
|
input: z.object({
|
|
@@ -52,7 +51,7 @@ const amazonProductTool = amazonProduct;
|
|
|
52
51
|
//#endregion
|
|
53
52
|
//#region src/amazon/search.ts
|
|
54
53
|
const amazonSearch = serpApiOperation({
|
|
55
|
-
id: "
|
|
54
|
+
id: "serpapi.amazon-search",
|
|
56
55
|
name: "Amazon Search",
|
|
57
56
|
description: "Search Amazon via SerpApi",
|
|
58
57
|
input: z.object({
|
|
@@ -87,7 +86,7 @@ const amazonSearchTool = amazonSearch;
|
|
|
87
86
|
//#endregion
|
|
88
87
|
//#region src/apple/app-store.ts
|
|
89
88
|
const appleAppStore = serpApiOperation({
|
|
90
|
-
id: "
|
|
89
|
+
id: "serpapi.apple-app-store",
|
|
91
90
|
name: "Apple App Store Search",
|
|
92
91
|
description: "Search the Apple App Store via SerpApi",
|
|
93
92
|
input: z.object({
|
|
@@ -111,7 +110,7 @@ const appleAppStoreTool = appleAppStore;
|
|
|
111
110
|
//#endregion
|
|
112
111
|
//#region src/apple/product.ts
|
|
113
112
|
const appleProduct = serpApiOperation({
|
|
114
|
-
id: "
|
|
113
|
+
id: "serpapi.apple-product",
|
|
115
114
|
name: "Apple Product",
|
|
116
115
|
description: "Get Apple product details via SerpApi",
|
|
117
116
|
input: z.object({
|
|
@@ -133,7 +132,7 @@ const appleProductTool = appleProduct;
|
|
|
133
132
|
//#endregion
|
|
134
133
|
//#region src/apple/reviews.ts
|
|
135
134
|
const appleReviews = serpApiOperation({
|
|
136
|
-
id: "
|
|
135
|
+
id: "serpapi.apple-reviews",
|
|
137
136
|
name: "Apple Reviews",
|
|
138
137
|
description: "Get Apple product reviews via SerpApi",
|
|
139
138
|
input: z.object({
|
|
@@ -157,7 +156,7 @@ const appleReviewsTool = appleReviews;
|
|
|
157
156
|
//#endregion
|
|
158
157
|
//#region src/baidu/search.ts
|
|
159
158
|
const baiduSearch = serpApiOperation({
|
|
160
|
-
id: "
|
|
159
|
+
id: "serpapi.baidu-search",
|
|
161
160
|
name: "Baidu Search",
|
|
162
161
|
description: "Search Baidu via SerpApi",
|
|
163
162
|
input: z.object({
|
|
@@ -184,7 +183,7 @@ const baiduSearchTool = baiduSearch;
|
|
|
184
183
|
//#endregion
|
|
185
184
|
//#region src/bing/copilot.ts
|
|
186
185
|
const bingCopilot = serpApiOperation({
|
|
187
|
-
id: "
|
|
186
|
+
id: "serpapi.bing-copilot",
|
|
188
187
|
name: "Bing Copilot",
|
|
189
188
|
description: "Search Bing Copilot via SerpApi",
|
|
190
189
|
input: z.object({
|
|
@@ -207,7 +206,7 @@ const bingCopilotTool = bingCopilot;
|
|
|
207
206
|
//#endregion
|
|
208
207
|
//#region src/bing/images.ts
|
|
209
208
|
const bingImages = serpApiOperation({
|
|
210
|
-
id: "
|
|
209
|
+
id: "serpapi.bing-images",
|
|
211
210
|
name: "Bing Images Search",
|
|
212
211
|
description: "Search Bing Images via SerpApi",
|
|
213
212
|
input: z.object({
|
|
@@ -233,7 +232,7 @@ const bingImagesTool = bingImages;
|
|
|
233
232
|
//#endregion
|
|
234
233
|
//#region src/bing/maps.ts
|
|
235
234
|
const bingMaps = serpApiOperation({
|
|
236
|
-
id: "
|
|
235
|
+
id: "serpapi.bing-maps",
|
|
237
236
|
name: "Bing Maps Search",
|
|
238
237
|
description: "Search Bing Maps via SerpApi",
|
|
239
238
|
input: z.object({
|
|
@@ -256,7 +255,7 @@ const bingMapsTool = bingMaps;
|
|
|
256
255
|
//#endregion
|
|
257
256
|
//#region src/bing/news.ts
|
|
258
257
|
const bingNews = serpApiOperation({
|
|
259
|
-
id: "
|
|
258
|
+
id: "serpapi.bing-news",
|
|
260
259
|
name: "Bing News Search",
|
|
261
260
|
description: "Search Bing News via SerpApi",
|
|
262
261
|
input: z.object({
|
|
@@ -282,7 +281,7 @@ const bingNewsTool = bingNews;
|
|
|
282
281
|
//#endregion
|
|
283
282
|
//#region src/bing/reverse-image.ts
|
|
284
283
|
const bingReverseImage = serpApiOperation({
|
|
285
|
-
id: "
|
|
284
|
+
id: "serpapi.bing-reverse-image",
|
|
286
285
|
name: "Bing Reverse Image Search",
|
|
287
286
|
description: "Search Bing Reverse Image via SerpApi",
|
|
288
287
|
input: z.object({
|
|
@@ -305,7 +304,7 @@ const bingReverseImageTool = bingReverseImage;
|
|
|
305
304
|
//#endregion
|
|
306
305
|
//#region src/bing/search.ts
|
|
307
306
|
const bingSearch = serpApiOperation({
|
|
308
|
-
id: "
|
|
307
|
+
id: "serpapi.bing-search",
|
|
309
308
|
name: "Bing Search",
|
|
310
309
|
description: "Search Bing via SerpApi",
|
|
311
310
|
input: z.object({
|
|
@@ -340,7 +339,7 @@ const bingSearchTool = bingSearch;
|
|
|
340
339
|
//#endregion
|
|
341
340
|
//#region src/bing/shopping.ts
|
|
342
341
|
const bingShopping = serpApiOperation({
|
|
343
|
-
id: "
|
|
342
|
+
id: "serpapi.bing-shopping",
|
|
344
343
|
name: "Bing Shopping Search",
|
|
345
344
|
description: "Search Bing Shopping via SerpApi",
|
|
346
345
|
input: z.object({
|
|
@@ -365,7 +364,7 @@ const bingShoppingTool = bingShopping;
|
|
|
365
364
|
//#endregion
|
|
366
365
|
//#region src/bing/videos.ts
|
|
367
366
|
const bingVideos = serpApiOperation({
|
|
368
|
-
id: "
|
|
367
|
+
id: "serpapi.bing-videos",
|
|
369
368
|
name: "Bing Videos Search",
|
|
370
369
|
description: "Search Bing Videos via SerpApi",
|
|
371
370
|
input: z.object({
|
|
@@ -390,7 +389,7 @@ const bingVideosTool = bingVideos;
|
|
|
390
389
|
//#endregion
|
|
391
390
|
//#region src/brave/ai-mode.ts
|
|
392
391
|
const braveAiMode = serpApiOperation({
|
|
393
|
-
id: "
|
|
392
|
+
id: "serpapi.brave-ai-mode",
|
|
394
393
|
name: "Brave AI Mode",
|
|
395
394
|
description: "Search Brave AI Mode via SerpApi",
|
|
396
395
|
input: z.object({
|
|
@@ -411,7 +410,7 @@ const braveAiModeTool = braveAiMode;
|
|
|
411
410
|
//#endregion
|
|
412
411
|
//#region src/duckduckgo/light.ts
|
|
413
412
|
const duckduckgoLight = serpApiOperation({
|
|
414
|
-
id: "
|
|
413
|
+
id: "serpapi.duckduckgo-light",
|
|
415
414
|
name: "DuckDuckGo Light Search",
|
|
416
415
|
description: "Search DuckDuckGo Light via SerpApi",
|
|
417
416
|
input: z.object({
|
|
@@ -434,7 +433,7 @@ const duckduckgoLightTool = duckduckgoLight;
|
|
|
434
433
|
//#endregion
|
|
435
434
|
//#region src/duckduckgo/maps.ts
|
|
436
435
|
const duckduckgoMaps = serpApiOperation({
|
|
437
|
-
id: "
|
|
436
|
+
id: "serpapi.duckduckgo-maps",
|
|
438
437
|
name: "DuckDuckGo Maps Search",
|
|
439
438
|
description: "Search DuckDuckGo Maps via SerpApi",
|
|
440
439
|
input: z.object({
|
|
@@ -455,7 +454,7 @@ const duckduckgoMapsTool = duckduckgoMaps;
|
|
|
455
454
|
//#endregion
|
|
456
455
|
//#region src/duckduckgo/news.ts
|
|
457
456
|
const duckduckgoNews = serpApiOperation({
|
|
458
|
-
id: "
|
|
457
|
+
id: "serpapi.duckduckgo-news",
|
|
459
458
|
name: "DuckDuckGo News Search",
|
|
460
459
|
description: "Search DuckDuckGo News via SerpApi",
|
|
461
460
|
input: z.object({
|
|
@@ -478,7 +477,7 @@ const duckduckgoNewsTool = duckduckgoNews;
|
|
|
478
477
|
//#endregion
|
|
479
478
|
//#region src/duckduckgo/search.ts
|
|
480
479
|
const duckduckgoSearch = serpApiOperation({
|
|
481
|
-
id: "
|
|
480
|
+
id: "serpapi.duckduckgo-search",
|
|
482
481
|
name: "DuckDuckGo Search",
|
|
483
482
|
description: "Search DuckDuckGo via SerpApi",
|
|
484
483
|
input: z.object({
|
|
@@ -505,7 +504,7 @@ const duckduckgoSearchTool = duckduckgoSearch;
|
|
|
505
504
|
//#endregion
|
|
506
505
|
//#region src/duckduckgo/search-assist.ts
|
|
507
506
|
const duckduckgoSearchAssist = serpApiOperation({
|
|
508
|
-
id: "
|
|
507
|
+
id: "serpapi.duckduckgo-search-assist",
|
|
509
508
|
name: "DuckDuckGo Search Assist",
|
|
510
509
|
description: "Get DuckDuckGo search suggestions via SerpApi",
|
|
511
510
|
input: z.object({
|
|
@@ -526,7 +525,7 @@ const duckduckgoSearchAssistTool = duckduckgoSearchAssist;
|
|
|
526
525
|
//#endregion
|
|
527
526
|
//#region src/ebay/product.ts
|
|
528
527
|
const ebayProduct = serpApiOperation({
|
|
529
|
-
id: "
|
|
528
|
+
id: "serpapi.ebay-product",
|
|
530
529
|
name: "eBay Product",
|
|
531
530
|
description: "Get eBay product details via SerpApi",
|
|
532
531
|
input: z.object({
|
|
@@ -549,7 +548,7 @@ const ebayProductTool = ebayProduct;
|
|
|
549
548
|
//#endregion
|
|
550
549
|
//#region src/ebay/search.ts
|
|
551
550
|
const ebaySearch = serpApiOperation({
|
|
552
|
-
id: "
|
|
551
|
+
id: "serpapi.ebay-search",
|
|
553
552
|
name: "eBay Search",
|
|
554
553
|
description: "Search eBay via SerpApi",
|
|
555
554
|
input: z.object({
|
|
@@ -579,7 +578,7 @@ const ebaySearchTool = ebaySearch;
|
|
|
579
578
|
//#endregion
|
|
580
579
|
//#region src/facebook/profile.ts
|
|
581
580
|
const facebookProfile = serpApiOperation({
|
|
582
|
-
id: "
|
|
581
|
+
id: "serpapi.facebook-profile",
|
|
583
582
|
name: "Facebook Profile",
|
|
584
583
|
description: "Get Facebook profile data via SerpApi",
|
|
585
584
|
input: z.object({ page_id: z.string() }),
|
|
@@ -597,7 +596,7 @@ const facebookProfileTool = facebookProfile;
|
|
|
597
596
|
//#endregion
|
|
598
597
|
//#region src/google/ads-transparency.ts
|
|
599
598
|
const googleAdsTransparency = serpApiOperation({
|
|
600
|
-
id: "
|
|
599
|
+
id: "serpapi.google-ads-transparency",
|
|
601
600
|
name: "Google Ads Transparency Center",
|
|
602
601
|
description: "Search Google Ads Transparency Center via SerpApi",
|
|
603
602
|
input: z.object({
|
|
@@ -621,7 +620,7 @@ const googleAdsTransparencyTool = googleAdsTransparency;
|
|
|
621
620
|
//#endregion
|
|
622
621
|
//#region src/google/ai-mode.ts
|
|
623
622
|
const googleAiMode = serpApiOperation({
|
|
624
|
-
id: "
|
|
623
|
+
id: "serpapi.google-ai-mode",
|
|
625
624
|
name: "Google AI Mode",
|
|
626
625
|
description: "Search Google AI Mode via SerpApi",
|
|
627
626
|
input: z.object({
|
|
@@ -644,7 +643,7 @@ const googleAiModeTool = googleAiMode;
|
|
|
644
643
|
//#endregion
|
|
645
644
|
//#region src/google/ai-overview.ts
|
|
646
645
|
const googleAiOverview = serpApiOperation({
|
|
647
|
-
id: "
|
|
646
|
+
id: "serpapi.google-ai-overview",
|
|
648
647
|
name: "Google AI Overview",
|
|
649
648
|
description: "Search Google AI Overview via SerpApi",
|
|
650
649
|
input: z.object({
|
|
@@ -667,7 +666,7 @@ const googleAiOverviewTool = googleAiOverview;
|
|
|
667
666
|
//#endregion
|
|
668
667
|
//#region src/google/autocomplete.ts
|
|
669
668
|
const googleAutocomplete = serpApiOperation({
|
|
670
|
-
id: "
|
|
669
|
+
id: "serpapi.google-autocomplete",
|
|
671
670
|
name: "Google Autocomplete",
|
|
672
671
|
description: "Search Google Autocomplete via SerpApi",
|
|
673
672
|
input: z.object({
|
|
@@ -690,7 +689,7 @@ const googleAutocompleteTool = googleAutocomplete;
|
|
|
690
689
|
//#endregion
|
|
691
690
|
//#region src/google/events.ts
|
|
692
691
|
const googleEvents = serpApiOperation({
|
|
693
|
-
id: "
|
|
692
|
+
id: "serpapi.google-events",
|
|
694
693
|
name: "Google Events Search",
|
|
695
694
|
description: "Search Google Events via SerpApi",
|
|
696
695
|
input: z.object({
|
|
@@ -714,7 +713,7 @@ const googleEventsTool = googleEvents;
|
|
|
714
713
|
//#endregion
|
|
715
714
|
//#region src/google/finance.ts
|
|
716
715
|
const googleFinance = serpApiOperation({
|
|
717
|
-
id: "
|
|
716
|
+
id: "serpapi.google-finance",
|
|
718
717
|
name: "Google Finance Search",
|
|
719
718
|
description: "Search Google Finance via SerpApi",
|
|
720
719
|
input: z.object({
|
|
@@ -740,7 +739,7 @@ const googleFinanceTool = googleFinance;
|
|
|
740
739
|
//#endregion
|
|
741
740
|
//#region src/google/finance-markets.ts
|
|
742
741
|
const googleFinanceMarkets = serpApiOperation({
|
|
743
|
-
id: "
|
|
742
|
+
id: "serpapi.google-finance-markets",
|
|
744
743
|
name: "Google Finance Markets",
|
|
745
744
|
description: "Search Google Finance Markets via SerpApi",
|
|
746
745
|
input: z.object({
|
|
@@ -771,7 +770,7 @@ const googleFinanceMarketsTool = googleFinanceMarkets;
|
|
|
771
770
|
//#endregion
|
|
772
771
|
//#region src/google/flights.ts
|
|
773
772
|
const googleFlights = serpApiOperation({
|
|
774
|
-
id: "
|
|
773
|
+
id: "serpapi.google-flights",
|
|
775
774
|
name: "Google Flights Search",
|
|
776
775
|
description: "Search Google Flights via SerpApi",
|
|
777
776
|
input: z.object({
|
|
@@ -811,7 +810,7 @@ const googleFlightsTool = googleFlights;
|
|
|
811
810
|
//#endregion
|
|
812
811
|
//#region src/google/flights-autocomplete.ts
|
|
813
812
|
const googleFlightsAutocomplete = serpApiOperation({
|
|
814
|
-
id: "
|
|
813
|
+
id: "serpapi.google-flights-autocomplete",
|
|
815
814
|
name: "Google Flights Autocomplete",
|
|
816
815
|
description: "Search Google Flights Autocomplete via SerpApi",
|
|
817
816
|
input: z.object({
|
|
@@ -833,7 +832,7 @@ const googleFlightsAutocompleteTool = googleFlightsAutocomplete;
|
|
|
833
832
|
//#endregion
|
|
834
833
|
//#region src/google/forums.ts
|
|
835
834
|
const googleForums = serpApiOperation({
|
|
836
|
-
id: "
|
|
835
|
+
id: "serpapi.google-forums",
|
|
837
836
|
name: "Google Forums Search",
|
|
838
837
|
description: "Search Google Forums via SerpApi",
|
|
839
838
|
input: z.object({
|
|
@@ -857,7 +856,7 @@ const googleForumsTool = googleForums;
|
|
|
857
856
|
//#endregion
|
|
858
857
|
//#region src/google/hotels.ts
|
|
859
858
|
const googleHotels = serpApiOperation({
|
|
860
|
-
id: "
|
|
859
|
+
id: "serpapi.google-hotels",
|
|
861
860
|
name: "Google Hotels Search",
|
|
862
861
|
description: "Search Google Hotels via SerpApi",
|
|
863
862
|
input: z.object({
|
|
@@ -896,7 +895,7 @@ const googleHotelsTool = googleHotels;
|
|
|
896
895
|
//#endregion
|
|
897
896
|
//#region src/google/hotels-autocomplete.ts
|
|
898
897
|
const googleHotelsAutocomplete = serpApiOperation({
|
|
899
|
-
id: "
|
|
898
|
+
id: "serpapi.google-hotels-autocomplete",
|
|
900
899
|
name: "Google Hotels Autocomplete",
|
|
901
900
|
description: "Search Google Hotels Autocomplete via SerpApi",
|
|
902
901
|
input: z.object({
|
|
@@ -918,7 +917,7 @@ const googleHotelsAutocompleteTool = googleHotelsAutocomplete;
|
|
|
918
917
|
//#endregion
|
|
919
918
|
//#region src/google/hotels-photos.ts
|
|
920
919
|
const googleHotelsPhotos = serpApiOperation({
|
|
921
|
-
id: "
|
|
920
|
+
id: "serpapi.google-hotels-photos",
|
|
922
921
|
name: "Google Hotels Photos",
|
|
923
922
|
description: "Get Google Hotels photos via SerpApi",
|
|
924
923
|
input: z.object({
|
|
@@ -940,7 +939,7 @@ const googleHotelsPhotosTool = googleHotelsPhotos;
|
|
|
940
939
|
//#endregion
|
|
941
940
|
//#region src/google/hotels-reviews.ts
|
|
942
941
|
const googleHotelsReviews = serpApiOperation({
|
|
943
|
-
id: "
|
|
942
|
+
id: "serpapi.google-hotels-reviews",
|
|
944
943
|
name: "Google Hotels Reviews",
|
|
945
944
|
description: "Get Google Hotels reviews via SerpApi",
|
|
946
945
|
input: z.object({
|
|
@@ -965,7 +964,7 @@ const googleHotelsReviewsTool = googleHotelsReviews;
|
|
|
965
964
|
//#endregion
|
|
966
965
|
//#region src/google/images.ts
|
|
967
966
|
const googleImages = serpApiOperation({
|
|
968
|
-
id: "
|
|
967
|
+
id: "serpapi.google-images",
|
|
969
968
|
name: "Google Images Search",
|
|
970
969
|
description: "Search Google Images via SerpApi",
|
|
971
970
|
input: z.object({
|
|
@@ -995,7 +994,7 @@ const googleImagesTool = googleImages;
|
|
|
995
994
|
//#endregion
|
|
996
995
|
//#region src/google/images-light.ts
|
|
997
996
|
const googleImagesLight = serpApiOperation({
|
|
998
|
-
id: "
|
|
997
|
+
id: "serpapi.google-images-light",
|
|
999
998
|
name: "Google Images Light Search",
|
|
1000
999
|
description: "Search Google Images Light via SerpApi",
|
|
1001
1000
|
input: z.object({
|
|
@@ -1020,7 +1019,7 @@ const googleImagesLightTool = googleImagesLight;
|
|
|
1020
1019
|
//#endregion
|
|
1021
1020
|
//#region src/google/images-related.ts
|
|
1022
1021
|
const googleImagesRelated = serpApiOperation({
|
|
1023
|
-
id: "
|
|
1022
|
+
id: "serpapi.google-images-related",
|
|
1024
1023
|
name: "Google Images Related Content",
|
|
1025
1024
|
description: "Search Google Images Related Content via SerpApi",
|
|
1026
1025
|
input: z.object({
|
|
@@ -1043,7 +1042,7 @@ const googleImagesRelatedTool = googleImagesRelated;
|
|
|
1043
1042
|
//#endregion
|
|
1044
1043
|
//#region src/google/immersive-product.ts
|
|
1045
1044
|
const googleImmersiveProduct = serpApiOperation({
|
|
1046
|
-
id: "
|
|
1045
|
+
id: "serpapi.google-immersive-product",
|
|
1047
1046
|
name: "Google Immersive Product",
|
|
1048
1047
|
description: "Get Google Immersive Product details via SerpApi",
|
|
1049
1048
|
input: z.object({
|
|
@@ -1066,7 +1065,7 @@ const googleImmersiveProductTool = googleImmersiveProduct;
|
|
|
1066
1065
|
//#endregion
|
|
1067
1066
|
//#region src/google/jobs.ts
|
|
1068
1067
|
const googleJobs = serpApiOperation({
|
|
1069
|
-
id: "
|
|
1068
|
+
id: "serpapi.google-jobs",
|
|
1070
1069
|
name: "Google Jobs Search",
|
|
1071
1070
|
description: "Search Google Jobs via SerpApi",
|
|
1072
1071
|
input: z.object({
|
|
@@ -1094,7 +1093,7 @@ const googleJobsTool = googleJobs;
|
|
|
1094
1093
|
//#endregion
|
|
1095
1094
|
//#region src/google/jobs-listing.ts
|
|
1096
1095
|
const googleJobsListing = serpApiOperation({
|
|
1097
|
-
id: "
|
|
1096
|
+
id: "serpapi.google-jobs-listing",
|
|
1098
1097
|
name: "Google Jobs Listing",
|
|
1099
1098
|
description: "Get Google Jobs listing details via SerpApi",
|
|
1100
1099
|
input: z.object({
|
|
@@ -1116,7 +1115,7 @@ const googleJobsListingTool = googleJobsListing;
|
|
|
1116
1115
|
//#endregion
|
|
1117
1116
|
//#region src/google/lens.ts
|
|
1118
1117
|
const googleLens = serpApiOperation({
|
|
1119
|
-
id: "
|
|
1118
|
+
id: "serpapi.google-lens",
|
|
1120
1119
|
name: "Google Lens Search",
|
|
1121
1120
|
description: "Search Google Lens via SerpApi",
|
|
1122
1121
|
input: z.object({
|
|
@@ -1142,7 +1141,7 @@ const googleLensTool = googleLens;
|
|
|
1142
1141
|
//#endregion
|
|
1143
1142
|
//#region src/google/light.ts
|
|
1144
1143
|
const googleLightSearch = serpApiOperation({
|
|
1145
|
-
id: "
|
|
1144
|
+
id: "serpapi.google-light-search",
|
|
1146
1145
|
name: "Google Light Search",
|
|
1147
1146
|
description: "Search Google Light via SerpApi",
|
|
1148
1147
|
input: z.object({
|
|
@@ -1176,7 +1175,7 @@ const googleLightSearchTool = googleLightSearch;
|
|
|
1176
1175
|
//#endregion
|
|
1177
1176
|
//#region src/google/local.ts
|
|
1178
1177
|
const googleLocal = serpApiOperation({
|
|
1179
|
-
id: "
|
|
1178
|
+
id: "serpapi.google-local",
|
|
1180
1179
|
name: "Google Local Search",
|
|
1181
1180
|
description: "Search Google Local via SerpApi",
|
|
1182
1181
|
input: z.object({
|
|
@@ -1203,7 +1202,7 @@ const googleLocalTool = googleLocal;
|
|
|
1203
1202
|
//#endregion
|
|
1204
1203
|
//#region src/google/local-services.ts
|
|
1205
1204
|
const googleLocalServices = serpApiOperation({
|
|
1206
|
-
id: "
|
|
1205
|
+
id: "serpapi.google-local-services",
|
|
1207
1206
|
name: "Google Local Services Search",
|
|
1208
1207
|
description: "Search Google Local Services via SerpApi",
|
|
1209
1208
|
input: z.object({
|
|
@@ -1228,7 +1227,7 @@ const googleLocalServicesTool = googleLocalServices;
|
|
|
1228
1227
|
//#endregion
|
|
1229
1228
|
//#region src/google/maps.ts
|
|
1230
1229
|
const googleMaps = serpApiOperation({
|
|
1231
|
-
id: "
|
|
1230
|
+
id: "serpapi.google-maps",
|
|
1232
1231
|
name: "Google Maps Search",
|
|
1233
1232
|
description: "Search Google Maps via SerpApi",
|
|
1234
1233
|
input: z.object({
|
|
@@ -1256,7 +1255,7 @@ const googleMapsTool = googleMaps;
|
|
|
1256
1255
|
//#endregion
|
|
1257
1256
|
//#region src/google/maps-autocomplete.ts
|
|
1258
1257
|
const googleMapsAutocomplete = serpApiOperation({
|
|
1259
|
-
id: "
|
|
1258
|
+
id: "serpapi.google-maps-autocomplete",
|
|
1260
1259
|
name: "Google Maps Autocomplete",
|
|
1261
1260
|
description: "Search Google Maps Autocomplete via SerpApi",
|
|
1262
1261
|
input: z.object({
|
|
@@ -1279,7 +1278,7 @@ const googleMapsAutocompleteTool = googleMapsAutocomplete;
|
|
|
1279
1278
|
//#endregion
|
|
1280
1279
|
//#region src/google/maps-contributor-reviews.ts
|
|
1281
1280
|
const googleMapsContributorReviews = serpApiOperation({
|
|
1282
|
-
id: "
|
|
1281
|
+
id: "serpapi.google-maps-contributor-reviews",
|
|
1283
1282
|
name: "Google Maps Contributor Reviews",
|
|
1284
1283
|
description: "Get Google Maps contributor reviews via SerpApi",
|
|
1285
1284
|
input: z.object({
|
|
@@ -1302,7 +1301,7 @@ const googleMapsContributorReviewsTool = googleMapsContributorReviews;
|
|
|
1302
1301
|
//#endregion
|
|
1303
1302
|
//#region src/google/maps-directions.ts
|
|
1304
1303
|
const googleMapsDirections = serpApiOperation({
|
|
1305
|
-
id: "
|
|
1304
|
+
id: "serpapi.google-maps-directions",
|
|
1306
1305
|
name: "Google Maps Directions",
|
|
1307
1306
|
description: "Get Google Maps directions via SerpApi",
|
|
1308
1307
|
input: z.object({
|
|
@@ -1331,7 +1330,7 @@ const googleMapsDirectionsTool = googleMapsDirections;
|
|
|
1331
1330
|
//#endregion
|
|
1332
1331
|
//#region src/google/maps-photo-meta.ts
|
|
1333
1332
|
const googleMapsPhotoMeta = serpApiOperation({
|
|
1334
|
-
id: "
|
|
1333
|
+
id: "serpapi.google-maps-photo-meta",
|
|
1335
1334
|
name: "Google Maps Photo Meta",
|
|
1336
1335
|
description: "Get Google Maps photo metadata via SerpApi",
|
|
1337
1336
|
input: z.object({
|
|
@@ -1353,7 +1352,7 @@ const googleMapsPhotoMetaTool = googleMapsPhotoMeta;
|
|
|
1353
1352
|
//#endregion
|
|
1354
1353
|
//#region src/google/maps-photos.ts
|
|
1355
1354
|
const googleMapsPhotos = serpApiOperation({
|
|
1356
|
-
id: "
|
|
1355
|
+
id: "serpapi.google-maps-photos",
|
|
1357
1356
|
name: "Google Maps Photos",
|
|
1358
1357
|
description: "Get Google Maps photos via SerpApi",
|
|
1359
1358
|
input: z.object({
|
|
@@ -1377,7 +1376,7 @@ const googleMapsPhotosTool = googleMapsPhotos;
|
|
|
1377
1376
|
//#endregion
|
|
1378
1377
|
//#region src/google/maps-posts.ts
|
|
1379
1378
|
const googleMapsPosts = serpApiOperation({
|
|
1380
|
-
id: "
|
|
1379
|
+
id: "serpapi.google-maps-posts",
|
|
1381
1380
|
name: "Google Maps Posts",
|
|
1382
1381
|
description: "Get Google Maps posts via SerpApi",
|
|
1383
1382
|
input: z.object({
|
|
@@ -1400,7 +1399,7 @@ const googleMapsPostsTool = googleMapsPosts;
|
|
|
1400
1399
|
//#endregion
|
|
1401
1400
|
//#region src/google/maps-reviews.ts
|
|
1402
1401
|
const googleMapsReviews = serpApiOperation({
|
|
1403
|
-
id: "
|
|
1402
|
+
id: "serpapi.google-maps-reviews",
|
|
1404
1403
|
name: "Google Maps Reviews",
|
|
1405
1404
|
description: "Get Google Maps reviews via SerpApi",
|
|
1406
1405
|
input: z.object({
|
|
@@ -1427,7 +1426,7 @@ const googleMapsReviewsTool = googleMapsReviews;
|
|
|
1427
1426
|
//#endregion
|
|
1428
1427
|
//#region src/google/news.ts
|
|
1429
1428
|
const googleNews = serpApiOperation({
|
|
1430
|
-
id: "
|
|
1429
|
+
id: "serpapi.google-news",
|
|
1431
1430
|
name: "Google News Search",
|
|
1432
1431
|
description: "Search Google News via SerpApi",
|
|
1433
1432
|
input: z.object({
|
|
@@ -1451,7 +1450,7 @@ const googleNewsTool = googleNews;
|
|
|
1451
1450
|
//#endregion
|
|
1452
1451
|
//#region src/google/news-light.ts
|
|
1453
1452
|
const googleNewsLight = serpApiOperation({
|
|
1454
|
-
id: "
|
|
1453
|
+
id: "serpapi.google-news-light",
|
|
1455
1454
|
name: "Google News Light Search",
|
|
1456
1455
|
description: "Search Google News Light via SerpApi",
|
|
1457
1456
|
input: z.object({
|
|
@@ -1474,7 +1473,7 @@ const googleNewsLightTool = googleNewsLight;
|
|
|
1474
1473
|
//#endregion
|
|
1475
1474
|
//#region src/google/patents.ts
|
|
1476
1475
|
const googlePatents = serpApiOperation({
|
|
1477
|
-
id: "
|
|
1476
|
+
id: "serpapi.google-patents",
|
|
1478
1477
|
name: "Google Patents Search",
|
|
1479
1478
|
description: "Search Google Patents via SerpApi",
|
|
1480
1479
|
input: z.object({
|
|
@@ -1505,7 +1504,7 @@ const googlePatentsTool = googlePatents;
|
|
|
1505
1504
|
//#endregion
|
|
1506
1505
|
//#region src/google/patents-details.ts
|
|
1507
1506
|
const googlePatentsDetails = serpApiOperation({
|
|
1508
|
-
id: "
|
|
1507
|
+
id: "serpapi.google-patents-details",
|
|
1509
1508
|
name: "Google Patents Details",
|
|
1510
1509
|
description: "Get Google Patents details via SerpApi",
|
|
1511
1510
|
input: z.object({ patent_id: z.string() }),
|
|
@@ -1523,7 +1522,7 @@ const googlePatentsDetailsTool = googlePatentsDetails;
|
|
|
1523
1522
|
//#endregion
|
|
1524
1523
|
//#region src/google/play.ts
|
|
1525
1524
|
const googlePlay = serpApiOperation({
|
|
1526
|
-
id: "
|
|
1525
|
+
id: "serpapi.google-play",
|
|
1527
1526
|
name: "Google Play Search",
|
|
1528
1527
|
description: "Search Google Play via SerpApi",
|
|
1529
1528
|
input: z.object({
|
|
@@ -1555,7 +1554,7 @@ const googlePlayTool = googlePlay;
|
|
|
1555
1554
|
//#endregion
|
|
1556
1555
|
//#region src/google/play-books.ts
|
|
1557
1556
|
const googlePlayBooks = serpApiOperation({
|
|
1558
|
-
id: "
|
|
1557
|
+
id: "serpapi.google-play-books",
|
|
1559
1558
|
name: "Google Play Books Search",
|
|
1560
1559
|
description: "Search Google Play Books via SerpApi",
|
|
1561
1560
|
input: z.object({
|
|
@@ -1577,7 +1576,7 @@ const googlePlayBooksTool = googlePlayBooks;
|
|
|
1577
1576
|
//#endregion
|
|
1578
1577
|
//#region src/google/play-games.ts
|
|
1579
1578
|
const googlePlayGames = serpApiOperation({
|
|
1580
|
-
id: "
|
|
1579
|
+
id: "serpapi.google-play-games",
|
|
1581
1580
|
name: "Google Play Games Search",
|
|
1582
1581
|
description: "Search Google Play Games via SerpApi",
|
|
1583
1582
|
input: z.object({
|
|
@@ -1599,7 +1598,7 @@ const googlePlayGamesTool = googlePlayGames;
|
|
|
1599
1598
|
//#endregion
|
|
1600
1599
|
//#region src/google/play-movies.ts
|
|
1601
1600
|
const googlePlayMovies = serpApiOperation({
|
|
1602
|
-
id: "
|
|
1601
|
+
id: "serpapi.google-play-movies",
|
|
1603
1602
|
name: "Google Play Movies Search",
|
|
1604
1603
|
description: "Search Google Play Movies via SerpApi",
|
|
1605
1604
|
input: z.object({
|
|
@@ -1621,7 +1620,7 @@ const googlePlayMoviesTool = googlePlayMovies;
|
|
|
1621
1620
|
//#endregion
|
|
1622
1621
|
//#region src/google/play-product.ts
|
|
1623
1622
|
const googlePlayProduct = serpApiOperation({
|
|
1624
|
-
id: "
|
|
1623
|
+
id: "serpapi.google-play-product",
|
|
1625
1624
|
name: "Google Play Product",
|
|
1626
1625
|
description: "Get Google Play product details via SerpApi",
|
|
1627
1626
|
input: z.object({
|
|
@@ -1649,7 +1648,7 @@ const googlePlayProductTool = googlePlayProduct;
|
|
|
1649
1648
|
//#endregion
|
|
1650
1649
|
//#region src/google/related-questions.ts
|
|
1651
1650
|
const googleRelatedQuestions = serpApiOperation({
|
|
1652
|
-
id: "
|
|
1651
|
+
id: "serpapi.google-related-questions",
|
|
1653
1652
|
name: "Google Related Questions",
|
|
1654
1653
|
description: "Search Google Related Questions via SerpApi",
|
|
1655
1654
|
input: z.object({
|
|
@@ -1672,7 +1671,7 @@ const googleRelatedQuestionsTool = googleRelatedQuestions;
|
|
|
1672
1671
|
//#endregion
|
|
1673
1672
|
//#region src/google/reverse-image.ts
|
|
1674
1673
|
const googleReverseImage = serpApiOperation({
|
|
1675
|
-
id: "
|
|
1674
|
+
id: "serpapi.google-reverse-image",
|
|
1676
1675
|
name: "Google Reverse Image Search",
|
|
1677
1676
|
description: "Search Google Reverse Image via SerpApi",
|
|
1678
1677
|
input: z.object({
|
|
@@ -1696,7 +1695,7 @@ const googleReverseImageTool = googleReverseImage;
|
|
|
1696
1695
|
//#endregion
|
|
1697
1696
|
//#region src/google/scholar.ts
|
|
1698
1697
|
const googleScholar = serpApiOperation({
|
|
1699
|
-
id: "
|
|
1698
|
+
id: "serpapi.google-scholar",
|
|
1700
1699
|
name: "Google Scholar Search",
|
|
1701
1700
|
description: "Search Google Scholar via SerpApi",
|
|
1702
1701
|
input: z.object({
|
|
@@ -1728,7 +1727,7 @@ const googleScholarTool = googleScholar;
|
|
|
1728
1727
|
//#endregion
|
|
1729
1728
|
//#region src/google/scholar-author.ts
|
|
1730
1729
|
const googleScholarAuthor = serpApiOperation({
|
|
1731
|
-
id: "
|
|
1730
|
+
id: "serpapi.google-scholar-author",
|
|
1732
1731
|
name: "Google Scholar Author",
|
|
1733
1732
|
description: "Get Google Scholar author details via SerpApi",
|
|
1734
1733
|
input: z.object({
|
|
@@ -1754,7 +1753,7 @@ const googleScholarAuthorTool = googleScholarAuthor;
|
|
|
1754
1753
|
//#endregion
|
|
1755
1754
|
//#region src/google/scholar-cite.ts
|
|
1756
1755
|
const googleScholarCite = serpApiOperation({
|
|
1757
|
-
id: "
|
|
1756
|
+
id: "serpapi.google-scholar-cite",
|
|
1758
1757
|
name: "Google Scholar Cite",
|
|
1759
1758
|
description: "Get Google Scholar citation details via SerpApi",
|
|
1760
1759
|
input: z.object({
|
|
@@ -1776,7 +1775,7 @@ const googleScholarCiteTool = googleScholarCite;
|
|
|
1776
1775
|
//#endregion
|
|
1777
1776
|
//#region src/google/scholar-profiles.ts
|
|
1778
1777
|
const googleScholarProfiles = serpApiOperation({
|
|
1779
|
-
id: "
|
|
1778
|
+
id: "serpapi.google-scholar-profiles",
|
|
1780
1779
|
name: "Google Scholar Profiles Search",
|
|
1781
1780
|
description: "Search Google Scholar Profiles via SerpApi",
|
|
1782
1781
|
input: z.object({
|
|
@@ -1799,7 +1798,7 @@ const googleScholarProfilesTool = googleScholarProfiles;
|
|
|
1799
1798
|
//#endregion
|
|
1800
1799
|
//#region src/google/search.ts
|
|
1801
1800
|
const googleSearch = serpApiOperation({
|
|
1802
|
-
id: "
|
|
1801
|
+
id: "serpapi.google-search",
|
|
1803
1802
|
name: "Google Search",
|
|
1804
1803
|
description: "Search Google via SerpApi",
|
|
1805
1804
|
input: z.object({
|
|
@@ -1847,7 +1846,7 @@ const googleSearchTool = googleSearch;
|
|
|
1847
1846
|
//#endregion
|
|
1848
1847
|
//#region src/google/shopping.ts
|
|
1849
1848
|
const googleShopping = serpApiOperation({
|
|
1850
|
-
id: "
|
|
1849
|
+
id: "serpapi.google-shopping",
|
|
1851
1850
|
name: "Google Shopping Search",
|
|
1852
1851
|
description: "Search Google Shopping via SerpApi",
|
|
1853
1852
|
input: z.object({
|
|
@@ -1874,7 +1873,7 @@ const googleShoppingTool = googleShopping;
|
|
|
1874
1873
|
//#endregion
|
|
1875
1874
|
//#region src/google/shopping-light.ts
|
|
1876
1875
|
const googleShoppingLight = serpApiOperation({
|
|
1877
|
-
id: "
|
|
1876
|
+
id: "serpapi.google-shopping-light",
|
|
1878
1877
|
name: "Google Shopping Light Search",
|
|
1879
1878
|
description: "Search Google Shopping Light via SerpApi",
|
|
1880
1879
|
input: z.object({
|
|
@@ -1898,7 +1897,7 @@ const googleShoppingLightTool = googleShoppingLight;
|
|
|
1898
1897
|
//#endregion
|
|
1899
1898
|
//#region src/google/short-videos.ts
|
|
1900
1899
|
const googleShortVideos = serpApiOperation({
|
|
1901
|
-
id: "
|
|
1900
|
+
id: "serpapi.google-short-videos",
|
|
1902
1901
|
name: "Google Short Videos Search",
|
|
1903
1902
|
description: "Search Google Short Videos via SerpApi",
|
|
1904
1903
|
input: z.object({
|
|
@@ -1921,7 +1920,7 @@ const googleShortVideosTool = googleShortVideos;
|
|
|
1921
1920
|
//#endregion
|
|
1922
1921
|
//#region src/google/travel-explore.ts
|
|
1923
1922
|
const googleTravelExplore = serpApiOperation({
|
|
1924
|
-
id: "
|
|
1923
|
+
id: "serpapi.google-travel-explore",
|
|
1925
1924
|
name: "Google Travel Explore",
|
|
1926
1925
|
description: "Explore Google Travel destinations via SerpApi",
|
|
1927
1926
|
input: z.object({
|
|
@@ -1945,7 +1944,7 @@ const googleTravelExploreTool = googleTravelExplore;
|
|
|
1945
1944
|
//#endregion
|
|
1946
1945
|
//#region src/google/trends.ts
|
|
1947
1946
|
const googleTrends = serpApiOperation({
|
|
1948
|
-
id: "
|
|
1947
|
+
id: "serpapi.google-trends",
|
|
1949
1948
|
name: "Google Trends Search",
|
|
1950
1949
|
description: "Search Google Trends via SerpApi",
|
|
1951
1950
|
input: z.object({
|
|
@@ -1980,7 +1979,7 @@ const googleTrendsTool = googleTrends;
|
|
|
1980
1979
|
//#endregion
|
|
1981
1980
|
//#region src/google/trends-autocomplete.ts
|
|
1982
1981
|
const googleTrendsAutocomplete = serpApiOperation({
|
|
1983
|
-
id: "
|
|
1982
|
+
id: "serpapi.google-trends-autocomplete",
|
|
1984
1983
|
name: "Google Trends Autocomplete",
|
|
1985
1984
|
description: "Search Google Trends Autocomplete via SerpApi",
|
|
1986
1985
|
input: z.object({
|
|
@@ -2001,7 +2000,7 @@ const googleTrendsAutocompleteTool = googleTrendsAutocomplete;
|
|
|
2001
2000
|
//#endregion
|
|
2002
2001
|
//#region src/google/trends-news.ts
|
|
2003
2002
|
const googleTrendsNews = serpApiOperation({
|
|
2004
|
-
id: "
|
|
2003
|
+
id: "serpapi.google-trends-news",
|
|
2005
2004
|
name: "Google Trends News",
|
|
2006
2005
|
description: "Get Google Trends news via SerpApi",
|
|
2007
2006
|
input: z.object({
|
|
@@ -2024,7 +2023,7 @@ const googleTrendsNewsTool = googleTrendsNews;
|
|
|
2024
2023
|
//#endregion
|
|
2025
2024
|
//#region src/google/trends-trending-now.ts
|
|
2026
2025
|
const googleTrendsTrendingNow = serpApiOperation({
|
|
2027
|
-
id: "
|
|
2026
|
+
id: "serpapi.google-trends-trending-now",
|
|
2028
2027
|
name: "Google Trends Trending Now",
|
|
2029
2028
|
description: "Get Google Trends trending searches via SerpApi",
|
|
2030
2029
|
input: z.object({
|
|
@@ -2046,7 +2045,7 @@ const googleTrendsTrendingNowTool = googleTrendsTrendingNow;
|
|
|
2046
2045
|
//#endregion
|
|
2047
2046
|
//#region src/google/videos.ts
|
|
2048
2047
|
const googleVideos = serpApiOperation({
|
|
2049
|
-
id: "
|
|
2048
|
+
id: "serpapi.google-videos",
|
|
2050
2049
|
name: "Google Videos Search",
|
|
2051
2050
|
description: "Search Google Videos via SerpApi",
|
|
2052
2051
|
input: z.object({
|
|
@@ -2071,7 +2070,7 @@ const googleVideosTool = googleVideos;
|
|
|
2071
2070
|
//#endregion
|
|
2072
2071
|
//#region src/google/videos-light.ts
|
|
2073
2072
|
const googleVideosLight = serpApiOperation({
|
|
2074
|
-
id: "
|
|
2073
|
+
id: "serpapi.google-videos-light",
|
|
2075
2074
|
name: "Google Videos Light Search",
|
|
2076
2075
|
description: "Search Google Videos Light via SerpApi",
|
|
2077
2076
|
input: z.object({
|
|
@@ -2094,7 +2093,7 @@ const googleVideosLightTool = googleVideosLight;
|
|
|
2094
2093
|
//#endregion
|
|
2095
2094
|
//#region src/home-depot/product.ts
|
|
2096
2095
|
const homeDepotProduct = serpApiOperation({
|
|
2097
|
-
id: "
|
|
2096
|
+
id: "serpapi.home-depot-product",
|
|
2098
2097
|
name: "Home Depot Product",
|
|
2099
2098
|
description: "Get Home Depot product details via SerpApi",
|
|
2100
2099
|
input: z.object({ product_id: z.string() }),
|
|
@@ -2112,7 +2111,7 @@ const homeDepotProductTool = homeDepotProduct;
|
|
|
2112
2111
|
//#endregion
|
|
2113
2112
|
//#region src/home-depot/product-reviews.ts
|
|
2114
2113
|
const homeDepotProductReviews = serpApiOperation({
|
|
2115
|
-
id: "
|
|
2114
|
+
id: "serpapi.home-depot-product-reviews",
|
|
2116
2115
|
name: "Home Depot Product Reviews",
|
|
2117
2116
|
description: "Get Home Depot product reviews via SerpApi",
|
|
2118
2117
|
input: z.object({
|
|
@@ -2134,7 +2133,7 @@ const homeDepotProductReviewsTool = homeDepotProductReviews;
|
|
|
2134
2133
|
//#endregion
|
|
2135
2134
|
//#region src/home-depot/search.ts
|
|
2136
2135
|
const homeDepotSearch = serpApiOperation({
|
|
2137
|
-
id: "
|
|
2136
|
+
id: "serpapi.home-depot-search",
|
|
2138
2137
|
name: "Home Depot Search",
|
|
2139
2138
|
description: "Search Home Depot via SerpApi",
|
|
2140
2139
|
input: z.object({
|
|
@@ -2161,7 +2160,7 @@ const homeDepotSearchTool = homeDepotSearch;
|
|
|
2161
2160
|
//#endregion
|
|
2162
2161
|
//#region src/naver/ai-overview.ts
|
|
2163
2162
|
const naverAiOverview = serpApiOperation({
|
|
2164
|
-
id: "
|
|
2163
|
+
id: "serpapi.naver-ai-overview",
|
|
2165
2164
|
name: "Naver AI Overview",
|
|
2166
2165
|
description: "Get Naver AI Overview via SerpApi",
|
|
2167
2166
|
input: z.object({ q: z.string() }),
|
|
@@ -2179,7 +2178,7 @@ const naverAiOverviewTool = naverAiOverview;
|
|
|
2179
2178
|
//#endregion
|
|
2180
2179
|
//#region src/naver/search.ts
|
|
2181
2180
|
const naverSearch = serpApiOperation({
|
|
2182
|
-
id: "
|
|
2181
|
+
id: "serpapi.naver-search",
|
|
2183
2182
|
name: "Naver Search",
|
|
2184
2183
|
description: "Search Naver via SerpApi",
|
|
2185
2184
|
input: z.object({
|
|
@@ -2205,7 +2204,7 @@ const naverSearchTool = naverSearch;
|
|
|
2205
2204
|
//#endregion
|
|
2206
2205
|
//#region src/opentable/reviews.ts
|
|
2207
2206
|
const opentableReviews = serpApiOperation({
|
|
2208
|
-
id: "
|
|
2207
|
+
id: "serpapi.opentable-reviews",
|
|
2209
2208
|
name: "OpenTable Reviews",
|
|
2210
2209
|
description: "Get OpenTable restaurant reviews via SerpApi",
|
|
2211
2210
|
input: z.object({
|
|
@@ -2227,7 +2226,7 @@ const opentableReviewsTool = opentableReviews;
|
|
|
2227
2226
|
//#endregion
|
|
2228
2227
|
//#region src/serpapi/search-index.ts
|
|
2229
2228
|
const serpApiSearchIndex = serpApiOperation({
|
|
2230
|
-
id: "
|
|
2229
|
+
id: "serpapi.search-index",
|
|
2231
2230
|
name: "SerpApi Search Index",
|
|
2232
2231
|
description: "Search across SerpApi search index",
|
|
2233
2232
|
input: z.object({ q: z.string() }),
|
|
@@ -2245,7 +2244,7 @@ const serpApiSearchIndexTool = serpApiSearchIndex;
|
|
|
2245
2244
|
//#endregion
|
|
2246
2245
|
//#region src/tripadvisor/place.ts
|
|
2247
2246
|
const tripadvisorPlace = serpApiOperation({
|
|
2248
|
-
id: "
|
|
2247
|
+
id: "serpapi.tripadvisor-place",
|
|
2249
2248
|
name: "TripAdvisor Place",
|
|
2250
2249
|
description: "Get TripAdvisor place details via SerpApi",
|
|
2251
2250
|
input: z.object({
|
|
@@ -2266,7 +2265,7 @@ const tripadvisorPlaceTool = tripadvisorPlace;
|
|
|
2266
2265
|
//#endregion
|
|
2267
2266
|
//#region src/tripadvisor/reviews.ts
|
|
2268
2267
|
const tripadvisorReviews = serpApiOperation({
|
|
2269
|
-
id: "
|
|
2268
|
+
id: "serpapi.tripadvisor-reviews",
|
|
2270
2269
|
name: "TripAdvisor Reviews",
|
|
2271
2270
|
description: "Get TripAdvisor place reviews via SerpApi",
|
|
2272
2271
|
input: z.object({
|
|
@@ -2289,7 +2288,7 @@ const tripadvisorReviewsTool = tripadvisorReviews;
|
|
|
2289
2288
|
//#endregion
|
|
2290
2289
|
//#region src/tripadvisor/search.ts
|
|
2291
2290
|
const tripadvisorSearch = serpApiOperation({
|
|
2292
|
-
id: "
|
|
2291
|
+
id: "serpapi.tripadvisor-search",
|
|
2293
2292
|
name: "TripAdvisor Search",
|
|
2294
2293
|
description: "Search TripAdvisor via SerpApi",
|
|
2295
2294
|
input: z.object({
|
|
@@ -2311,7 +2310,7 @@ const tripadvisorSearchTool = tripadvisorSearch;
|
|
|
2311
2310
|
//#endregion
|
|
2312
2311
|
//#region src/utility/account.ts
|
|
2313
2312
|
const serpApiAccount = serpApiOperation({
|
|
2314
|
-
id: "
|
|
2313
|
+
id: "serpapi.account",
|
|
2315
2314
|
name: "SerpApi Account",
|
|
2316
2315
|
description: "Get SerpApi account information",
|
|
2317
2316
|
input: z.object({}),
|
|
@@ -2331,7 +2330,7 @@ const serpApiAccountTool = serpApiAccount;
|
|
|
2331
2330
|
//#endregion
|
|
2332
2331
|
//#region src/utility/locations.ts
|
|
2333
2332
|
const serpApiLocations = serpApiOperation({
|
|
2334
|
-
id: "
|
|
2333
|
+
id: "serpapi.locations",
|
|
2335
2334
|
name: "SerpApi Locations",
|
|
2336
2335
|
description: "Get supported SerpApi locations",
|
|
2337
2336
|
input: z.object({
|
|
@@ -2348,7 +2347,7 @@ const serpApiLocationsTool = serpApiLocations;
|
|
|
2348
2347
|
//#endregion
|
|
2349
2348
|
//#region src/utility/search-archive.ts
|
|
2350
2349
|
const serpApiSearchArchive = serpApiOperation({
|
|
2351
|
-
id: "
|
|
2350
|
+
id: "serpapi.search-archive",
|
|
2352
2351
|
name: "SerpApi Search Archive",
|
|
2353
2352
|
description: "Retrieve archived SerpApi search results by ID",
|
|
2354
2353
|
input: z.object({ search_id: z.string() }),
|
|
@@ -2362,7 +2361,7 @@ const serpApiSearchArchiveTool = serpApiSearchArchive;
|
|
|
2362
2361
|
//#endregion
|
|
2363
2362
|
//#region src/walmart/product.ts
|
|
2364
2363
|
const walmartProduct = serpApiOperation({
|
|
2365
|
-
id: "
|
|
2364
|
+
id: "serpapi.walmart-product",
|
|
2366
2365
|
name: "Walmart Product",
|
|
2367
2366
|
description: "Get Walmart product details via SerpApi",
|
|
2368
2367
|
input: z.object({ product_id: z.string() }),
|
|
@@ -2380,7 +2379,7 @@ const walmartProductTool = walmartProduct;
|
|
|
2380
2379
|
//#endregion
|
|
2381
2380
|
//#region src/walmart/product-reviews.ts
|
|
2382
2381
|
const walmartProductReviews = serpApiOperation({
|
|
2383
|
-
id: "
|
|
2382
|
+
id: "serpapi.walmart-product-reviews",
|
|
2384
2383
|
name: "Walmart Product Reviews",
|
|
2385
2384
|
description: "Get Walmart product reviews via SerpApi",
|
|
2386
2385
|
input: z.object({
|
|
@@ -2402,7 +2401,7 @@ const walmartProductReviewsTool = walmartProductReviews;
|
|
|
2402
2401
|
//#endregion
|
|
2403
2402
|
//#region src/walmart/product-sellers.ts
|
|
2404
2403
|
const walmartProductSellers = serpApiOperation({
|
|
2405
|
-
id: "
|
|
2404
|
+
id: "serpapi.walmart-product-sellers",
|
|
2406
2405
|
name: "Walmart Product Sellers",
|
|
2407
2406
|
description: "Get Walmart product sellers via SerpApi",
|
|
2408
2407
|
input: z.object({
|
|
@@ -2423,7 +2422,7 @@ const walmartProductSellersTool = walmartProductSellers;
|
|
|
2423
2422
|
//#endregion
|
|
2424
2423
|
//#region src/walmart/search.ts
|
|
2425
2424
|
const walmartSearch = serpApiOperation({
|
|
2426
|
-
id: "
|
|
2425
|
+
id: "serpapi.walmart-search",
|
|
2427
2426
|
name: "Walmart Search",
|
|
2428
2427
|
description: "Search Walmart via SerpApi",
|
|
2429
2428
|
input: z.object({
|
|
@@ -2455,7 +2454,7 @@ const walmartSearchTool = walmartSearch;
|
|
|
2455
2454
|
//#endregion
|
|
2456
2455
|
//#region src/yahoo/images.ts
|
|
2457
2456
|
const yahooImages = serpApiOperation({
|
|
2458
|
-
id: "
|
|
2457
|
+
id: "serpapi.yahoo-images",
|
|
2459
2458
|
name: "Yahoo Images Search",
|
|
2460
2459
|
description: "Search Yahoo Images via SerpApi",
|
|
2461
2460
|
input: z.object({
|
|
@@ -2478,7 +2477,7 @@ const yahooImagesTool = yahooImages;
|
|
|
2478
2477
|
//#endregion
|
|
2479
2478
|
//#region src/yahoo/search.ts
|
|
2480
2479
|
const yahooSearch = serpApiOperation({
|
|
2481
|
-
id: "
|
|
2480
|
+
id: "serpapi.yahoo-search",
|
|
2482
2481
|
name: "Yahoo Search",
|
|
2483
2482
|
description: "Search Yahoo via SerpApi",
|
|
2484
2483
|
input: z.object({
|
|
@@ -2508,7 +2507,7 @@ const yahooSearchTool = yahooSearch;
|
|
|
2508
2507
|
//#endregion
|
|
2509
2508
|
//#region src/yahoo/shopping.ts
|
|
2510
2509
|
const yahooShopping = serpApiOperation({
|
|
2511
|
-
id: "
|
|
2510
|
+
id: "serpapi.yahoo-shopping",
|
|
2512
2511
|
name: "Yahoo Shopping Search",
|
|
2513
2512
|
description: "Search Yahoo Shopping via SerpApi",
|
|
2514
2513
|
input: z.object({
|
|
@@ -2531,7 +2530,7 @@ const yahooShoppingTool = yahooShopping;
|
|
|
2531
2530
|
//#endregion
|
|
2532
2531
|
//#region src/yahoo/videos.ts
|
|
2533
2532
|
const yahooVideos = serpApiOperation({
|
|
2534
|
-
id: "
|
|
2533
|
+
id: "serpapi.yahoo-videos",
|
|
2535
2534
|
name: "Yahoo Videos Search",
|
|
2536
2535
|
description: "Search Yahoo Videos via SerpApi",
|
|
2537
2536
|
input: z.object({
|
|
@@ -2554,7 +2553,7 @@ const yahooVideosTool = yahooVideos;
|
|
|
2554
2553
|
//#endregion
|
|
2555
2554
|
//#region src/yandex/images.ts
|
|
2556
2555
|
const yandexImages = serpApiOperation({
|
|
2557
|
-
id: "
|
|
2556
|
+
id: "serpapi.yandex-images",
|
|
2558
2557
|
name: "Yandex Images Search",
|
|
2559
2558
|
description: "Search Yandex Images via SerpApi",
|
|
2560
2559
|
input: z.object({
|
|
@@ -2578,7 +2577,7 @@ const yandexImagesTool = yandexImages;
|
|
|
2578
2577
|
//#endregion
|
|
2579
2578
|
//#region src/yandex/search.ts
|
|
2580
2579
|
const yandexSearch = serpApiOperation({
|
|
2581
|
-
id: "
|
|
2580
|
+
id: "serpapi.yandex-search",
|
|
2582
2581
|
name: "Yandex Search",
|
|
2583
2582
|
description: "Search Yandex via SerpApi",
|
|
2584
2583
|
input: z.object({
|
|
@@ -2604,7 +2603,7 @@ const yandexSearchTool = yandexSearch;
|
|
|
2604
2603
|
//#endregion
|
|
2605
2604
|
//#region src/yandex/videos.ts
|
|
2606
2605
|
const yandexVideos = serpApiOperation({
|
|
2607
|
-
id: "
|
|
2606
|
+
id: "serpapi.yandex-videos",
|
|
2608
2607
|
name: "Yandex Videos Search",
|
|
2609
2608
|
description: "Search Yandex Videos via SerpApi",
|
|
2610
2609
|
input: z.object({
|
|
@@ -2628,7 +2627,7 @@ const yandexVideosTool = yandexVideos;
|
|
|
2628
2627
|
//#endregion
|
|
2629
2628
|
//#region src/yelp/place.ts
|
|
2630
2629
|
const yelpPlace = serpApiOperation({
|
|
2631
|
-
id: "
|
|
2630
|
+
id: "serpapi.yelp-place",
|
|
2632
2631
|
name: "Yelp Place",
|
|
2633
2632
|
description: "Get Yelp place details via SerpApi",
|
|
2634
2633
|
input: z.object({ place_id: z.string() }),
|
|
@@ -2646,7 +2645,7 @@ const yelpPlaceTool = yelpPlace;
|
|
|
2646
2645
|
//#endregion
|
|
2647
2646
|
//#region src/yelp/reviews.ts
|
|
2648
2647
|
const yelpReviews = serpApiOperation({
|
|
2649
|
-
id: "
|
|
2648
|
+
id: "serpapi.yelp-reviews",
|
|
2650
2649
|
name: "Yelp Reviews",
|
|
2651
2650
|
description: "Get Yelp place reviews via SerpApi",
|
|
2652
2651
|
input: z.object({
|
|
@@ -2668,7 +2667,7 @@ const yelpReviewsTool = yelpReviews;
|
|
|
2668
2667
|
//#endregion
|
|
2669
2668
|
//#region src/yelp/search.ts
|
|
2670
2669
|
const yelpSearch = serpApiOperation({
|
|
2671
|
-
id: "
|
|
2670
|
+
id: "serpapi.yelp-search",
|
|
2672
2671
|
name: "Yelp Search",
|
|
2673
2672
|
description: "Search Yelp via SerpApi",
|
|
2674
2673
|
input: z.object({
|
|
@@ -2695,7 +2694,7 @@ const yelpSearchTool = yelpSearch;
|
|
|
2695
2694
|
//#endregion
|
|
2696
2695
|
//#region src/youtube/search.ts
|
|
2697
2696
|
const youtubeSearch = serpApiOperation({
|
|
2698
|
-
id: "
|
|
2697
|
+
id: "serpapi.youtube-search",
|
|
2699
2698
|
name: "YouTube Search",
|
|
2700
2699
|
description: "Search YouTube via SerpApi",
|
|
2701
2700
|
input: z.object({
|
|
@@ -2722,7 +2721,7 @@ const youtubeSearchTool = youtubeSearch;
|
|
|
2722
2721
|
//#endregion
|
|
2723
2722
|
//#region src/youtube/video.ts
|
|
2724
2723
|
const youtubeVideo = serpApiOperation({
|
|
2725
|
-
id: "
|
|
2724
|
+
id: "serpapi.youtube-video",
|
|
2726
2725
|
name: "YouTube Video",
|
|
2727
2726
|
description: "Get YouTube video details via SerpApi",
|
|
2728
2727
|
input: z.object({
|
|
@@ -2745,7 +2744,7 @@ const youtubeVideoTool = youtubeVideo;
|
|
|
2745
2744
|
//#endregion
|
|
2746
2745
|
//#region src/youtube/video-transcript.ts
|
|
2747
2746
|
const youtubeVideoTranscript = serpApiOperation({
|
|
2748
|
-
id: "
|
|
2747
|
+
id: "serpapi.youtube-video-transcript",
|
|
2749
2748
|
name: "YouTube Video Transcript",
|
|
2750
2749
|
description: "Get YouTube video transcript via SerpApi",
|
|
2751
2750
|
input: z.object({
|