litescrape-sdk 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 (104) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +283 -0
  3. package/dist/cjs/batch.d.ts +12 -0
  4. package/dist/cjs/batch.d.ts.map +1 -0
  5. package/dist/cjs/batch.js +131 -0
  6. package/dist/cjs/batch.js.map +1 -0
  7. package/dist/cjs/cache.d.ts +21 -0
  8. package/dist/cjs/cache.d.ts.map +1 -0
  9. package/dist/cjs/cache.js +112 -0
  10. package/dist/cjs/cache.js.map +1 -0
  11. package/dist/cjs/client.d.ts +38 -0
  12. package/dist/cjs/client.d.ts.map +1 -0
  13. package/dist/cjs/client.js +143 -0
  14. package/dist/cjs/client.js.map +1 -0
  15. package/dist/cjs/errors.d.ts +53 -0
  16. package/dist/cjs/errors.d.ts.map +1 -0
  17. package/dist/cjs/errors.js +121 -0
  18. package/dist/cjs/errors.js.map +1 -0
  19. package/dist/cjs/index.d.ts +8 -0
  20. package/dist/cjs/index.d.ts.map +1 -0
  21. package/dist/cjs/index.js +40 -0
  22. package/dist/cjs/index.js.map +1 -0
  23. package/dist/cjs/models.d.ts +1735 -0
  24. package/dist/cjs/models.d.ts.map +1 -0
  25. package/dist/cjs/models.js +389 -0
  26. package/dist/cjs/models.js.map +1 -0
  27. package/dist/cjs/package.json +1 -0
  28. package/dist/cjs/result.d.ts +23 -0
  29. package/dist/cjs/result.d.ts.map +1 -0
  30. package/dist/cjs/result.js +49 -0
  31. package/dist/cjs/result.js.map +1 -0
  32. package/dist/cjs/runtime.d.ts +53 -0
  33. package/dist/cjs/runtime.d.ts.map +1 -0
  34. package/dist/cjs/runtime.js +237 -0
  35. package/dist/cjs/runtime.js.map +1 -0
  36. package/dist/cjs/stores.d.ts +143 -0
  37. package/dist/cjs/stores.d.ts.map +1 -0
  38. package/dist/cjs/stores.js +194 -0
  39. package/dist/cjs/stores.js.map +1 -0
  40. package/dist/cjs/validation.d.ts +65 -0
  41. package/dist/cjs/validation.d.ts.map +1 -0
  42. package/dist/cjs/validation.js +122 -0
  43. package/dist/cjs/validation.js.map +1 -0
  44. package/dist/cjs/version.d.ts +2 -0
  45. package/dist/cjs/version.d.ts.map +1 -0
  46. package/dist/cjs/version.js +5 -0
  47. package/dist/cjs/version.js.map +1 -0
  48. package/dist/esm/batch.d.ts +12 -0
  49. package/dist/esm/batch.d.ts.map +1 -0
  50. package/dist/esm/batch.js +128 -0
  51. package/dist/esm/batch.js.map +1 -0
  52. package/dist/esm/cache.d.ts +21 -0
  53. package/dist/esm/cache.d.ts.map +1 -0
  54. package/dist/esm/cache.js +106 -0
  55. package/dist/esm/cache.js.map +1 -0
  56. package/dist/esm/client.d.ts +38 -0
  57. package/dist/esm/client.d.ts.map +1 -0
  58. package/dist/esm/client.js +138 -0
  59. package/dist/esm/client.js.map +1 -0
  60. package/dist/esm/errors.d.ts +53 -0
  61. package/dist/esm/errors.d.ts.map +1 -0
  62. package/dist/esm/errors.js +106 -0
  63. package/dist/esm/errors.js.map +1 -0
  64. package/dist/esm/index.d.ts +8 -0
  65. package/dist/esm/index.d.ts.map +1 -0
  66. package/dist/esm/index.js +6 -0
  67. package/dist/esm/index.js.map +1 -0
  68. package/dist/esm/models.d.ts +1735 -0
  69. package/dist/esm/models.d.ts.map +1 -0
  70. package/dist/esm/models.js +384 -0
  71. package/dist/esm/models.js.map +1 -0
  72. package/dist/esm/result.d.ts +23 -0
  73. package/dist/esm/result.d.ts.map +1 -0
  74. package/dist/esm/result.js +45 -0
  75. package/dist/esm/result.js.map +1 -0
  76. package/dist/esm/runtime.d.ts +53 -0
  77. package/dist/esm/runtime.d.ts.map +1 -0
  78. package/dist/esm/runtime.js +226 -0
  79. package/dist/esm/runtime.js.map +1 -0
  80. package/dist/esm/stores.d.ts +143 -0
  81. package/dist/esm/stores.d.ts.map +1 -0
  82. package/dist/esm/stores.js +190 -0
  83. package/dist/esm/stores.js.map +1 -0
  84. package/dist/esm/validation.d.ts +65 -0
  85. package/dist/esm/validation.d.ts.map +1 -0
  86. package/dist/esm/validation.js +109 -0
  87. package/dist/esm/validation.js.map +1 -0
  88. package/dist/esm/version.d.ts +2 -0
  89. package/dist/esm/version.d.ts.map +1 -0
  90. package/dist/esm/version.js +2 -0
  91. package/dist/esm/version.js.map +1 -0
  92. package/package.json +74 -0
  93. package/src/batch.ts +158 -0
  94. package/src/cache.ts +123 -0
  95. package/src/client.ts +199 -0
  96. package/src/errors.ts +120 -0
  97. package/src/index.ts +17 -0
  98. package/src/models.ts +570 -0
  99. package/src/package.json +3 -0
  100. package/src/result.ts +49 -0
  101. package/src/runtime.ts +255 -0
  102. package/src/stores.ts +206 -0
  103. package/src/validation.ts +140 -0
  104. package/src/version.ts +1 -0
@@ -0,0 +1,1735 @@
1
+ import { z } from "zod";
2
+ export { ScrapeRequest } from "./validation.js";
3
+ export declare const GoogleSearch: import("./validation.js").RequestClass<"google_search", {
4
+ timeout?: number | null | undefined;
5
+ hl?: string | number | bigint | null | undefined;
6
+ gl?: string | number | bigint | null | undefined;
7
+ google_domain?: string | number | bigint | null | undefined;
8
+ location?: string | number | bigint | null | undefined;
9
+ uule?: string | number | bigint | null | undefined;
10
+ q?: string | number | bigint | null | undefined;
11
+ ludocid?: string | number | bigint | null | undefined;
12
+ kgmid?: string | number | bigint | null | undefined;
13
+ lat?: string | number | boolean | null | undefined;
14
+ lon?: string | number | boolean | null | undefined;
15
+ radius?: string | number | boolean | null | undefined;
16
+ lsig?: string | number | bigint | null | undefined;
17
+ si?: string | number | bigint | null | undefined;
18
+ ibp?: string | number | bigint | null | undefined;
19
+ uds?: string | number | bigint | null | undefined;
20
+ color_scheme?: "dark" | "light" | null | undefined;
21
+ cr?: string | number | bigint | null | undefined;
22
+ lr?: string | number | bigint | null | undefined;
23
+ tbs?: string | number | bigint | null | undefined;
24
+ safe?: "active" | "off" | null | undefined;
25
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
26
+ filter?: "0" | "1" | 0 | 1 | boolean | null | undefined;
27
+ pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
28
+ peek_pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
29
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
30
+ start?: string | number | boolean | null | undefined;
31
+ num?: string | number | boolean | null | undefined;
32
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
33
+ oq?: string | number | bigint | null | undefined;
34
+ gs_lp?: string | number | bigint | null | undefined;
35
+ sclient?: string | number | bigint | null | undefined;
36
+ as_dt?: "e" | "i" | null | undefined;
37
+ as_epq?: string | number | bigint | null | undefined;
38
+ as_eq?: string | number | bigint | null | undefined;
39
+ as_lq?: string | number | bigint | null | undefined;
40
+ as_nlo?: string | number | bigint | null | undefined;
41
+ as_nhi?: string | number | bigint | null | undefined;
42
+ as_oq?: string | number | bigint | null | undefined;
43
+ as_q?: string | number | bigint | null | undefined;
44
+ as_qdr?: string | number | bigint | null | undefined;
45
+ as_rq?: string | number | bigint | null | undefined;
46
+ as_sitesearch?: string | number | bigint | null | undefined;
47
+ fast_mode?: "false" | "true" | boolean | null | undefined;
48
+ }, {
49
+ timeout?: number | null | undefined;
50
+ hl?: string | null | undefined;
51
+ gl?: string | null | undefined;
52
+ google_domain?: string | null | undefined;
53
+ location?: string | null | undefined;
54
+ uule?: string | null | undefined;
55
+ q?: string | null | undefined;
56
+ ludocid?: string | null | undefined;
57
+ kgmid?: string | null | undefined;
58
+ lat?: number | null | undefined;
59
+ lon?: number | null | undefined;
60
+ radius?: number | null | undefined;
61
+ lsig?: string | null | undefined;
62
+ si?: string | null | undefined;
63
+ ibp?: string | null | undefined;
64
+ uds?: string | null | undefined;
65
+ color_scheme?: "dark" | "light" | null | undefined;
66
+ cr?: string | null | undefined;
67
+ lr?: string | null | undefined;
68
+ tbs?: string | null | undefined;
69
+ safe?: "active" | "off" | null | undefined;
70
+ nfpr?: "0" | "1" | null | undefined;
71
+ filter?: "0" | "1" | null | undefined;
72
+ pws?: "0" | "1" | null | undefined;
73
+ peek_pws?: "0" | "1" | null | undefined;
74
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
75
+ start?: number | null | undefined;
76
+ num?: number | null | undefined;
77
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
78
+ oq?: string | null | undefined;
79
+ gs_lp?: string | null | undefined;
80
+ sclient?: string | null | undefined;
81
+ as_dt?: "e" | "i" | null | undefined;
82
+ as_epq?: string | null | undefined;
83
+ as_eq?: string | null | undefined;
84
+ as_lq?: string | null | undefined;
85
+ as_nlo?: string | null | undefined;
86
+ as_nhi?: string | null | undefined;
87
+ as_oq?: string | null | undefined;
88
+ as_q?: string | null | undefined;
89
+ as_qdr?: string | null | undefined;
90
+ as_rq?: string | null | undefined;
91
+ as_sitesearch?: string | null | undefined;
92
+ fast_mode?: "false" | "true" | boolean | null | undefined;
93
+ }>;
94
+ export declare const GoogleAiOverview: import("./validation.js").RequestClass<"google_ai_overview", {
95
+ timeout?: number | null | undefined;
96
+ hl?: string | number | bigint | null | undefined;
97
+ gl?: string | number | bigint | null | undefined;
98
+ google_domain?: string | number | bigint | null | undefined;
99
+ location?: string | number | bigint | null | undefined;
100
+ uule?: string | number | bigint | null | undefined;
101
+ q?: string | number | bigint | null | undefined;
102
+ ludocid?: string | number | bigint | null | undefined;
103
+ kgmid?: string | number | bigint | null | undefined;
104
+ lat?: string | number | boolean | null | undefined;
105
+ lon?: string | number | boolean | null | undefined;
106
+ radius?: string | number | boolean | null | undefined;
107
+ lsig?: string | number | bigint | null | undefined;
108
+ si?: string | number | bigint | null | undefined;
109
+ ibp?: string | number | bigint | null | undefined;
110
+ uds?: string | number | bigint | null | undefined;
111
+ color_scheme?: "dark" | "light" | null | undefined;
112
+ cr?: string | number | bigint | null | undefined;
113
+ lr?: string | number | bigint | null | undefined;
114
+ tbs?: string | number | bigint | null | undefined;
115
+ safe?: "active" | "off" | null | undefined;
116
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
117
+ filter?: "0" | "1" | 0 | 1 | boolean | null | undefined;
118
+ pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
119
+ peek_pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
120
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
121
+ start?: string | number | boolean | null | undefined;
122
+ num?: string | number | boolean | null | undefined;
123
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
124
+ oq?: string | number | bigint | null | undefined;
125
+ gs_lp?: string | number | bigint | null | undefined;
126
+ sclient?: string | number | bigint | null | undefined;
127
+ as_dt?: "e" | "i" | null | undefined;
128
+ as_epq?: string | number | bigint | null | undefined;
129
+ as_eq?: string | number | bigint | null | undefined;
130
+ as_lq?: string | number | bigint | null | undefined;
131
+ as_nlo?: string | number | bigint | null | undefined;
132
+ as_nhi?: string | number | bigint | null | undefined;
133
+ as_oq?: string | number | bigint | null | undefined;
134
+ as_q?: string | number | bigint | null | undefined;
135
+ as_qdr?: string | number | bigint | null | undefined;
136
+ as_rq?: string | number | bigint | null | undefined;
137
+ as_sitesearch?: string | number | bigint | null | undefined;
138
+ }, {
139
+ timeout?: number | null | undefined;
140
+ hl?: string | null | undefined;
141
+ gl?: string | null | undefined;
142
+ google_domain?: string | null | undefined;
143
+ location?: string | null | undefined;
144
+ uule?: string | null | undefined;
145
+ q?: string | null | undefined;
146
+ ludocid?: string | null | undefined;
147
+ kgmid?: string | null | undefined;
148
+ lat?: number | null | undefined;
149
+ lon?: number | null | undefined;
150
+ radius?: number | null | undefined;
151
+ lsig?: string | null | undefined;
152
+ si?: string | null | undefined;
153
+ ibp?: string | null | undefined;
154
+ uds?: string | null | undefined;
155
+ color_scheme?: "dark" | "light" | null | undefined;
156
+ cr?: string | null | undefined;
157
+ lr?: string | null | undefined;
158
+ tbs?: string | null | undefined;
159
+ safe?: "active" | "off" | null | undefined;
160
+ nfpr?: "0" | "1" | null | undefined;
161
+ filter?: "0" | "1" | null | undefined;
162
+ pws?: "0" | "1" | null | undefined;
163
+ peek_pws?: "0" | "1" | null | undefined;
164
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
165
+ start?: number | null | undefined;
166
+ num?: number | null | undefined;
167
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
168
+ oq?: string | null | undefined;
169
+ gs_lp?: string | null | undefined;
170
+ sclient?: string | null | undefined;
171
+ as_dt?: "e" | "i" | null | undefined;
172
+ as_epq?: string | null | undefined;
173
+ as_eq?: string | null | undefined;
174
+ as_lq?: string | null | undefined;
175
+ as_nlo?: string | null | undefined;
176
+ as_nhi?: string | null | undefined;
177
+ as_oq?: string | null | undefined;
178
+ as_q?: string | null | undefined;
179
+ as_qdr?: string | null | undefined;
180
+ as_rq?: string | null | undefined;
181
+ as_sitesearch?: string | null | undefined;
182
+ }>;
183
+ export declare const GoogleAiMode: import("./validation.js").RequestClass<"google_ai_mode", {
184
+ timeout?: number | null | undefined;
185
+ hl?: string | number | bigint | null | undefined;
186
+ gl?: string | number | bigint | null | undefined;
187
+ google_domain?: string | number | bigint | null | undefined;
188
+ location?: string | number | bigint | null | undefined;
189
+ uule?: string | number | bigint | null | undefined;
190
+ q: string | number | bigint;
191
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
192
+ continuable?: string | 0 | 1 | boolean | null | undefined;
193
+ subsequent_request_token?: string | number | bigint | null | undefined;
194
+ image_url?: string | number | bigint | null | undefined;
195
+ }, {
196
+ timeout?: number | null | undefined;
197
+ hl?: string | null | undefined;
198
+ gl?: string | null | undefined;
199
+ google_domain?: string | null | undefined;
200
+ location?: string | null | undefined;
201
+ uule?: string | null | undefined;
202
+ q: string;
203
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
204
+ continuable?: boolean | null | undefined;
205
+ subsequent_request_token?: string | null | undefined;
206
+ image_url?: string | null | undefined;
207
+ }>;
208
+ export declare const GoogleAds: import("./validation.js").RequestClass<"google_ads", {
209
+ timeout?: number | null | undefined;
210
+ q: string | number | bigint;
211
+ location: string | number | bigint;
212
+ hl?: string | number | bigint | null | undefined;
213
+ safe?: "active" | "off" | null | undefined;
214
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
215
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
216
+ }, {
217
+ timeout?: number | null | undefined;
218
+ q: string;
219
+ location: string;
220
+ hl?: string | null | undefined;
221
+ safe?: "active" | "off" | null | undefined;
222
+ nfpr?: "0" | "1" | null | undefined;
223
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
224
+ }>;
225
+ export declare const GoogleShopping: import("./validation.js").RequestClass<"google_shopping", {
226
+ timeout?: number | null | undefined;
227
+ hl?: string | number | bigint | null | undefined;
228
+ gl?: string | number | bigint | null | undefined;
229
+ google_domain?: string | number | bigint | null | undefined;
230
+ location?: string | number | bigint | null | undefined;
231
+ uule?: string | number | bigint | null | undefined;
232
+ q?: string | number | bigint | null | undefined;
233
+ shoprs?: string | number | bigint | null | undefined;
234
+ min_price?: string | number | boolean | null | undefined;
235
+ max_price?: string | number | boolean | null | undefined;
236
+ sort_by?: "1" | "2" | "3" | "4" | 1 | 2 | 3 | 4 | null | undefined;
237
+ free_shipping?: string | 0 | 1 | boolean | null | undefined;
238
+ on_sale?: string | 0 | 1 | boolean | null | undefined;
239
+ small_business?: string | 0 | 1 | boolean | null | undefined;
240
+ start?: string | number | boolean | null | undefined;
241
+ num?: string | number | boolean | null | undefined;
242
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
243
+ }, {
244
+ timeout?: number | null | undefined;
245
+ hl?: string | null | undefined;
246
+ gl?: string | null | undefined;
247
+ google_domain?: string | null | undefined;
248
+ location?: string | null | undefined;
249
+ uule?: string | null | undefined;
250
+ q?: string | null | undefined;
251
+ shoprs?: string | null | undefined;
252
+ min_price?: number | null | undefined;
253
+ max_price?: number | null | undefined;
254
+ sort_by?: string | null | undefined;
255
+ free_shipping?: boolean | null | undefined;
256
+ on_sale?: boolean | null | undefined;
257
+ small_business?: boolean | null | undefined;
258
+ start?: number | null | undefined;
259
+ num?: number | null | undefined;
260
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
261
+ }>;
262
+ export declare const GoogleShoppingProduct: import("./validation.js").RequestClass<"google_shopping_product", {
263
+ timeout?: number | null | undefined;
264
+ hl?: string | number | bigint | null | undefined;
265
+ gl?: string | number | bigint | null | undefined;
266
+ google_domain?: string | number | bigint | null | undefined;
267
+ location?: string | number | bigint | null | undefined;
268
+ uule?: string | number | bigint | null | undefined;
269
+ q: string | number | bigint;
270
+ gpcid?: string | number | bigint | null | undefined;
271
+ headline_offer_docid?: string | number | bigint | null | undefined;
272
+ image_docid?: string | number | bigint | null | undefined;
273
+ prds?: string | number | bigint | null | undefined;
274
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
275
+ }, {
276
+ timeout?: number | null | undefined;
277
+ hl?: string | null | undefined;
278
+ gl?: string | null | undefined;
279
+ google_domain?: string | null | undefined;
280
+ location?: string | null | undefined;
281
+ uule?: string | null | undefined;
282
+ q: string;
283
+ gpcid?: string | null | undefined;
284
+ headline_offer_docid?: string | null | undefined;
285
+ image_docid?: string | null | undefined;
286
+ prds?: string | null | undefined;
287
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
288
+ }>;
289
+ export declare const GoogleLocal: import("./validation.js").RequestClass<"google_local", {
290
+ timeout?: number | null | undefined;
291
+ hl?: string | number | bigint | null | undefined;
292
+ gl?: string | number | bigint | null | undefined;
293
+ google_domain?: string | number | bigint | null | undefined;
294
+ location?: string | number | bigint | null | undefined;
295
+ uule?: string | number | bigint | null | undefined;
296
+ q: string | number | bigint;
297
+ ludocid?: string | number | bigint | null | undefined;
298
+ tbs?: string | number | bigint | null | undefined;
299
+ start?: string | number | boolean | null | undefined;
300
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
301
+ }, {
302
+ timeout?: number | null | undefined;
303
+ hl?: string | null | undefined;
304
+ gl?: string | null | undefined;
305
+ google_domain?: string | null | undefined;
306
+ location?: string | null | undefined;
307
+ uule?: string | null | undefined;
308
+ q: string;
309
+ ludocid?: string | null | undefined;
310
+ tbs?: string | null | undefined;
311
+ start?: number | null | undefined;
312
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
313
+ }>;
314
+ export declare const GoogleMaps: import("./validation.js").RequestClass<"google_maps", {
315
+ timeout?: number | null | undefined;
316
+ hl?: string | number | bigint | null | undefined;
317
+ gl?: string | number | bigint | null | undefined;
318
+ google_domain?: string | number | bigint | null | undefined;
319
+ q?: string | number | bigint | null | undefined;
320
+ ll?: string | number | bigint | null | undefined;
321
+ location?: string | number | bigint | null | undefined;
322
+ lat?: string | number | boolean | null | undefined;
323
+ lon?: string | number | boolean | null | undefined;
324
+ z?: string | number | boolean | null | undefined;
325
+ m?: string | number | boolean | null | undefined;
326
+ nearby?: string | 0 | 1 | boolean | null | undefined;
327
+ data?: string | number | bigint | null | undefined;
328
+ place_id?: string | number | bigint | null | undefined;
329
+ data_cid?: string | number | bigint | null | undefined;
330
+ type?: "place" | "search" | null | undefined;
331
+ start?: string | number | boolean | null | undefined;
332
+ min_price?: string | number | boolean | null | undefined;
333
+ max_price?: string | number | boolean | null | undefined;
334
+ min_rating?: string | number | boolean | null | undefined;
335
+ open_state?: "24h" | "now" | null | undefined;
336
+ open_on_day?: "fri" | "mon" | "sat" | "sun" | "thu" | "tue" | "wed" | null | undefined;
337
+ open_at_hour?: string | number | boolean | null | undefined;
338
+ }, {
339
+ timeout?: number | null | undefined;
340
+ hl?: string | null | undefined;
341
+ gl?: string | null | undefined;
342
+ google_domain?: string | null | undefined;
343
+ q?: string | null | undefined;
344
+ ll?: string | null | undefined;
345
+ location?: string | null | undefined;
346
+ lat?: number | null | undefined;
347
+ lon?: number | null | undefined;
348
+ z?: number | null | undefined;
349
+ m?: number | null | undefined;
350
+ nearby?: boolean | null | undefined;
351
+ data?: string | null | undefined;
352
+ place_id?: string | null | undefined;
353
+ data_cid?: string | null | undefined;
354
+ type?: "place" | "search" | null | undefined;
355
+ start?: number | null | undefined;
356
+ min_price?: number | null | undefined;
357
+ max_price?: number | null | undefined;
358
+ min_rating?: number | null | undefined;
359
+ open_state?: "24h" | "now" | null | undefined;
360
+ open_on_day?: "fri" | "mon" | "sat" | "sun" | "thu" | "tue" | "wed" | null | undefined;
361
+ open_at_hour?: number | null | undefined;
362
+ }>;
363
+ export declare const GoogleMapsLiveFootTraffic: import("./validation.js").RequestClass<"google_maps_live_foot_traffic", {
364
+ timeout?: number | null | undefined;
365
+ hl?: string | number | bigint | null | undefined;
366
+ gl?: string | number | bigint | null | undefined;
367
+ google_domain?: string | number | bigint | null | undefined;
368
+ place_id: string | number | bigint;
369
+ }, {
370
+ timeout?: number | null | undefined;
371
+ hl?: string | null | undefined;
372
+ gl?: string | null | undefined;
373
+ google_domain?: string | null | undefined;
374
+ place_id: string;
375
+ }>;
376
+ export declare const GoogleMapsPosts: import("./validation.js").RequestClass<"google_maps_posts", {
377
+ timeout?: number | null | undefined;
378
+ hl?: string | number | bigint | null | undefined;
379
+ gl?: string | number | bigint | null | undefined;
380
+ google_domain?: string | number | bigint | null | undefined;
381
+ data_id: string | number | bigint;
382
+ next_page_token?: string | number | bigint | null | undefined;
383
+ }, {
384
+ timeout?: number | null | undefined;
385
+ hl?: string | null | undefined;
386
+ gl?: string | null | undefined;
387
+ google_domain?: string | null | undefined;
388
+ data_id: string;
389
+ next_page_token?: string | null | undefined;
390
+ }>;
391
+ export declare const GoogleMapsPhoto: import("./validation.js").RequestClass<"google_maps_photo", {
392
+ timeout?: number | null | undefined;
393
+ hl?: string | number | bigint | null | undefined;
394
+ gl?: string | number | bigint | null | undefined;
395
+ google_domain?: string | number | bigint | null | undefined;
396
+ data_id: string | number | bigint;
397
+ }, {
398
+ timeout?: number | null | undefined;
399
+ hl?: string | null | undefined;
400
+ gl?: string | null | undefined;
401
+ google_domain?: string | null | undefined;
402
+ data_id: string;
403
+ }>;
404
+ export declare const GoogleMapsWebResults: import("./validation.js").RequestClass<"google_maps_web_results", {
405
+ timeout?: number | null | undefined;
406
+ hl?: string | number | bigint | null | undefined;
407
+ gl?: string | number | bigint | null | undefined;
408
+ google_domain?: string | number | bigint | null | undefined;
409
+ q: string | number | bigint;
410
+ ibp: string | number | bigint;
411
+ device?: "desktop" | null | undefined;
412
+ start?: string | number | boolean | null | undefined;
413
+ }, {
414
+ timeout?: number | null | undefined;
415
+ hl?: string | null | undefined;
416
+ gl?: string | null | undefined;
417
+ google_domain?: string | null | undefined;
418
+ q: string;
419
+ ibp: string;
420
+ device?: "desktop" | null | undefined;
421
+ start?: number | null | undefined;
422
+ }>;
423
+ export declare const GoogleReviews: import("./validation.js").RequestClass<"google_reviews", {
424
+ timeout?: number | null | undefined;
425
+ place_id?: string | number | bigint | null | undefined;
426
+ data_id?: string | number | bigint | null | undefined;
427
+ hl?: string | number | bigint | null | undefined;
428
+ gl?: string | number | bigint | null | undefined;
429
+ sort_by?: "newestFirst" | "qualityScore" | "ratingHigh" | "ratingLow" | null | undefined;
430
+ topic_id?: string | number | bigint | null | undefined;
431
+ query?: string | number | bigint | null | undefined;
432
+ num?: string | number | boolean | null | undefined;
433
+ next_page_token?: string | number | bigint | null | undefined;
434
+ source_metadata?: string | 0 | 1 | boolean | null | undefined;
435
+ }, {
436
+ timeout?: number | null | undefined;
437
+ place_id?: string | null | undefined;
438
+ data_id?: string | null | undefined;
439
+ hl?: string | null | undefined;
440
+ gl?: string | null | undefined;
441
+ sort_by?: "newestFirst" | "qualityScore" | "ratingHigh" | "ratingLow" | null | undefined;
442
+ topic_id?: string | null | undefined;
443
+ query?: string | null | undefined;
444
+ num?: number | null | undefined;
445
+ next_page_token?: string | null | undefined;
446
+ source_metadata?: boolean | null | undefined;
447
+ }>;
448
+ export declare const GoogleContributorReviews: import("./validation.js").RequestClass<"google_contributor_reviews", {
449
+ timeout?: number | null | undefined;
450
+ contributor_id: string | number | bigint;
451
+ hl?: string | number | bigint | null | undefined;
452
+ gl?: string | number | bigint | null | undefined;
453
+ limit?: string | number | boolean | null | undefined;
454
+ }, {
455
+ timeout?: number | null | undefined;
456
+ contributor_id: string;
457
+ hl?: string | null | undefined;
458
+ gl?: string | null | undefined;
459
+ limit?: number | null | undefined;
460
+ }>;
461
+ export declare const BingSearch: import("./validation.js").RequestClass<"bing_search", {
462
+ timeout?: number | null | undefined;
463
+ engine?: "bing" | null | undefined;
464
+ q: string | number | bigint;
465
+ location?: string | number | bigint | null | undefined;
466
+ lat?: string | number | boolean | null | undefined;
467
+ lon?: string | number | boolean | null | undefined;
468
+ mkt?: string | number | bigint | null | undefined;
469
+ cc?: string | number | bigint | null | undefined;
470
+ first?: string | number | boolean | null | undefined;
471
+ safeSearch?: "moderate" | "off" | "strict" | null | undefined;
472
+ filters?: string | number | bigint | null | undefined;
473
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
474
+ }, {
475
+ timeout?: number | null | undefined;
476
+ engine?: "bing" | null | undefined;
477
+ q: string;
478
+ location?: string | null | undefined;
479
+ lat?: number | null | undefined;
480
+ lon?: number | null | undefined;
481
+ mkt?: string | null | undefined;
482
+ cc?: string | null | undefined;
483
+ first?: number | null | undefined;
484
+ safeSearch?: "moderate" | "off" | "strict" | null | undefined;
485
+ filters?: string | null | undefined;
486
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
487
+ }>;
488
+ export declare const BingMaps: import("./validation.js").RequestClass<"bing_maps", {
489
+ timeout?: number | null | undefined;
490
+ q?: string | number | bigint | null | undefined;
491
+ place_id?: string | number | bigint | null | undefined;
492
+ cp?: string | number | bigint | null | undefined;
493
+ setlang?: string | number | bigint | null | undefined;
494
+ first?: string | number | boolean | null | undefined;
495
+ count?: string | number | boolean | null | undefined;
496
+ }, {
497
+ timeout?: number | null | undefined;
498
+ q?: string | null | undefined;
499
+ place_id?: string | null | undefined;
500
+ cp?: string | null | undefined;
501
+ setlang?: string | null | undefined;
502
+ first?: number | null | undefined;
503
+ count?: number | null | undefined;
504
+ }>;
505
+ export declare const DuckDuckGoSearch: import("./validation.js").RequestClass<"duckduckgo_search", {
506
+ timeout?: number | null | undefined;
507
+ q: string | number | bigint;
508
+ kl?: string | number | bigint | null | undefined;
509
+ search_assist?: string | 0 | 1 | boolean | null | undefined;
510
+ safe?: "-1" | "-2" | "1" | -2 | -1 | 1 | null | undefined;
511
+ df?: string | number | bigint | null | undefined;
512
+ start?: string | number | boolean | null | undefined;
513
+ m?: string | number | boolean | null | undefined;
514
+ }, {
515
+ timeout?: number | null | undefined;
516
+ q: string;
517
+ kl?: string | null | undefined;
518
+ search_assist?: boolean | null | undefined;
519
+ safe?: string | null | undefined;
520
+ df?: string | null | undefined;
521
+ start?: number | null | undefined;
522
+ m?: number | null | undefined;
523
+ }>;
524
+ export declare const DuckDuckGoMaps: import("./validation.js").RequestClass<"duckduckgo_maps", {
525
+ timeout?: number | null | undefined;
526
+ q: string | number | bigint;
527
+ bbox?: string | number | bigint | null | undefined;
528
+ lat?: string | number | boolean | null | undefined;
529
+ lon?: string | number | boolean | null | undefined;
530
+ strict_bbox?: string | 0 | 1 | boolean | null | undefined;
531
+ }, {
532
+ timeout?: number | null | undefined;
533
+ q: string;
534
+ bbox?: string | null | undefined;
535
+ lat?: number | null | undefined;
536
+ lon?: number | null | undefined;
537
+ strict_bbox?: boolean | null | undefined;
538
+ }>;
539
+ export declare const YelpSearch: import("./validation.js").RequestClass<"yelp_search", {
540
+ timeout?: number | null | undefined;
541
+ find_desc?: string | number | bigint | null | undefined;
542
+ find_loc: string | number | bigint;
543
+ yelp_domain?: string | number | bigint | null | undefined;
544
+ l?: string | number | bigint | null | undefined;
545
+ cflt?: string | number | bigint | null | undefined;
546
+ sortby?: "rating" | "recommended" | "review_count" | null | undefined;
547
+ attrs?: string | number | bigint | null | undefined;
548
+ start?: string | number | boolean | null | undefined;
549
+ }, {
550
+ timeout?: number | null | undefined;
551
+ find_desc?: string | null | undefined;
552
+ find_loc: string;
553
+ yelp_domain?: string | null | undefined;
554
+ l?: string | null | undefined;
555
+ cflt?: string | null | undefined;
556
+ sortby?: "rating" | "recommended" | "review_count" | null | undefined;
557
+ attrs?: string | null | undefined;
558
+ start?: number | null | undefined;
559
+ }>;
560
+ export declare const YelpReviews: import("./validation.js").RequestClass<"yelp_reviews", {
561
+ timeout?: number | null | undefined;
562
+ place_id: string | number | bigint;
563
+ yelp_domain?: string | number | bigint | null | undefined;
564
+ hl?: string | number | bigint | null | undefined;
565
+ q?: string | number | bigint | null | undefined;
566
+ sortby?: "date_asc" | "date_desc" | "elites_desc" | "rating_asc" | "rating_desc" | "relevance_desc" | null | undefined;
567
+ rating?: string | number | bigint | null | undefined;
568
+ not_recommended?: string | 0 | 1 | boolean | null | undefined;
569
+ start?: string | number | boolean | null | undefined;
570
+ num?: string | number | boolean | null | undefined;
571
+ not_recommended_start?: string | number | boolean | null | undefined;
572
+ }, {
573
+ timeout?: number | null | undefined;
574
+ place_id: string;
575
+ yelp_domain?: string | null | undefined;
576
+ hl?: string | null | undefined;
577
+ q?: string | null | undefined;
578
+ sortby?: "date_asc" | "date_desc" | "elites_desc" | "rating_asc" | "rating_desc" | "relevance_desc" | null | undefined;
579
+ rating?: string | null | undefined;
580
+ not_recommended?: boolean | null | undefined;
581
+ start?: number | null | undefined;
582
+ num?: number | null | undefined;
583
+ not_recommended_start?: number | null | undefined;
584
+ }>;
585
+ export declare const TripadvisorSearch: import("./validation.js").RequestClass<"tripadvisor_search", {
586
+ timeout?: number | null | undefined;
587
+ tripadvisor_domain?: string | number | bigint | null | undefined;
588
+ locale?: string | number | bigint | null | undefined;
589
+ q: string | number | bigint;
590
+ geo_id?: string | number | boolean | null | undefined;
591
+ lat?: string | number | boolean | null | undefined;
592
+ lon?: string | number | boolean | null | undefined;
593
+ place_type?: "accommodation" | "all" | "attraction" | "attraction_product" | "eatery" | "geo" | null | undefined;
594
+ start?: string | number | boolean | null | undefined;
595
+ num?: string | number | boolean | null | undefined;
596
+ }, {
597
+ timeout?: number | null | undefined;
598
+ tripadvisor_domain?: string | null | undefined;
599
+ locale?: string | null | undefined;
600
+ q: string;
601
+ geo_id?: number | null | undefined;
602
+ lat?: number | null | undefined;
603
+ lon?: number | null | undefined;
604
+ place_type?: "accommodation" | "all" | "attraction" | "attraction_product" | "eatery" | "geo" | null | undefined;
605
+ start?: number | null | undefined;
606
+ num?: number | null | undefined;
607
+ }>;
608
+ export declare const TripadvisorPlace: import("./validation.js").RequestClass<"tripadvisor_place", {
609
+ timeout?: number | null | undefined;
610
+ tripadvisor_domain?: string | number | bigint | null | undefined;
611
+ locale?: string | number | bigint | null | undefined;
612
+ place_id: string | number | bigint;
613
+ currency?: string | number | bigint | null | undefined;
614
+ geo_id?: string | number | boolean | null | undefined;
615
+ }, {
616
+ timeout?: number | null | undefined;
617
+ tripadvisor_domain?: string | null | undefined;
618
+ locale?: string | null | undefined;
619
+ place_id: string;
620
+ currency?: string | null | undefined;
621
+ geo_id?: number | null | undefined;
622
+ }>;
623
+ export declare const TripadvisorReviews: import("./validation.js").RequestClass<"tripadvisor_reviews", {
624
+ timeout?: number | null | undefined;
625
+ tripadvisor_domain?: string | number | bigint | null | undefined;
626
+ locale?: string | number | bigint | null | undefined;
627
+ place_id: string | number | bigint;
628
+ start?: string | number | boolean | null | undefined;
629
+ num?: string | number | boolean | null | undefined;
630
+ sort_by?: "recent" | "relevance" | null | undefined;
631
+ translate?: string | 0 | 1 | boolean | null | undefined;
632
+ }, {
633
+ timeout?: number | null | undefined;
634
+ tripadvisor_domain?: string | null | undefined;
635
+ locale?: string | null | undefined;
636
+ place_id: string;
637
+ start?: number | null | undefined;
638
+ num?: number | null | undefined;
639
+ sort_by?: "recent" | "relevance" | null | undefined;
640
+ translate?: boolean | null | undefined;
641
+ }>;
642
+ export declare const AppleMapsPlaces: import("./validation.js").RequestClass<"apple_maps_places", {
643
+ timeout?: number | null | undefined;
644
+ muid: string | number | bigint;
645
+ locale?: string | number | bigint | null | undefined;
646
+ }, {
647
+ timeout?: number | null | undefined;
648
+ muid: string;
649
+ locale?: string | null | undefined;
650
+ }>;
651
+ export declare const AppleMapsReviews: import("./validation.js").RequestClass<"apple_maps_reviews", {
652
+ timeout?: number | null | undefined;
653
+ muid: string | number | bigint;
654
+ locale?: string | number | bigint | null | undefined;
655
+ }, {
656
+ timeout?: number | null | undefined;
657
+ muid: string;
658
+ locale?: string | null | undefined;
659
+ }>;
660
+ export declare const GooglePlayApps: import("./validation.js").RequestClass<"google_play_apps", {
661
+ hl?: string | undefined;
662
+ gl?: string | undefined;
663
+ q?: string | null | undefined;
664
+ chart?: string | null | undefined;
665
+ next_page_token?: string | null | undefined;
666
+ section_page_token?: string | null | undefined;
667
+ see_more_token?: string | null | undefined;
668
+ apps_category?: string | null | undefined;
669
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
670
+ store_device?: "car" | "chromebook" | "phone" | "tablet" | "tv" | "watch" | null | undefined;
671
+ timeout?: number | null | undefined;
672
+ }, {
673
+ hl: string;
674
+ gl: string;
675
+ q?: string | null | undefined;
676
+ chart?: string | null | undefined;
677
+ next_page_token?: string | null | undefined;
678
+ section_page_token?: string | null | undefined;
679
+ see_more_token?: string | null | undefined;
680
+ apps_category?: string | null | undefined;
681
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
682
+ store_device?: "car" | "chromebook" | "phone" | "tablet" | "tv" | "watch" | null | undefined;
683
+ timeout?: number | null | undefined;
684
+ }>;
685
+ export declare const GooglePlayGames: import("./validation.js").RequestClass<"google_play_games", {
686
+ hl?: string | undefined;
687
+ gl?: string | undefined;
688
+ q?: string | null | undefined;
689
+ chart?: string | null | undefined;
690
+ next_page_token?: string | null | undefined;
691
+ section_page_token?: string | null | undefined;
692
+ see_more_token?: string | null | undefined;
693
+ games_category?: string | null | undefined;
694
+ store_device?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | "windows" | null | undefined;
695
+ timeout?: number | null | undefined;
696
+ }, {
697
+ hl: string;
698
+ gl: string;
699
+ q?: string | null | undefined;
700
+ chart?: string | null | undefined;
701
+ next_page_token?: string | null | undefined;
702
+ section_page_token?: string | null | undefined;
703
+ see_more_token?: string | null | undefined;
704
+ games_category?: string | null | undefined;
705
+ store_device?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | "windows" | null | undefined;
706
+ timeout?: number | null | undefined;
707
+ }>;
708
+ export declare const GooglePlayBooks: import("./validation.js").RequestClass<"google_play_books", {
709
+ hl?: string | undefined;
710
+ gl?: string | undefined;
711
+ q?: string | null | undefined;
712
+ chart?: string | null | undefined;
713
+ next_page_token?: string | null | undefined;
714
+ section_page_token?: string | null | undefined;
715
+ see_more_token?: string | null | undefined;
716
+ books_category?: string | null | undefined;
717
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
718
+ price?: string | number | null | undefined;
719
+ timeout?: number | null | undefined;
720
+ }, {
721
+ hl: string;
722
+ gl: string;
723
+ q?: string | null | undefined;
724
+ chart?: string | null | undefined;
725
+ next_page_token?: string | null | undefined;
726
+ section_page_token?: string | null | undefined;
727
+ see_more_token?: string | null | undefined;
728
+ books_category?: string | null | undefined;
729
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
730
+ price?: number | null | undefined;
731
+ timeout?: number | null | undefined;
732
+ }>;
733
+ export declare const GooglePlayMovies: import("./validation.js").RequestClass<"google_play_movies", {
734
+ hl?: string | undefined;
735
+ gl?: string | undefined;
736
+ q?: string | null | undefined;
737
+ chart?: string | null | undefined;
738
+ next_page_token?: string | null | undefined;
739
+ section_page_token?: string | null | undefined;
740
+ see_more_token?: string | null | undefined;
741
+ movies_category?: string | null | undefined;
742
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
743
+ timeout?: number | null | undefined;
744
+ }, {
745
+ hl: string;
746
+ gl: string;
747
+ q?: string | null | undefined;
748
+ chart?: string | null | undefined;
749
+ next_page_token?: string | null | undefined;
750
+ section_page_token?: string | null | undefined;
751
+ see_more_token?: string | null | undefined;
752
+ movies_category?: string | null | undefined;
753
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
754
+ timeout?: number | null | undefined;
755
+ }>;
756
+ export declare const GooglePlayProduct: import("./validation.js").RequestClass<"google_play_product", {
757
+ hl?: string | undefined;
758
+ gl?: string | undefined;
759
+ product_id: string;
760
+ store?: "apps" | "audiobooks" | "books" | "movies" | "tv" | undefined;
761
+ season_id?: string | null | undefined;
762
+ timeout?: number | null | undefined;
763
+ }, {
764
+ hl: string;
765
+ gl: string;
766
+ product_id: string;
767
+ store: "apps" | "audiobooks" | "books" | "movies" | "tv";
768
+ season_id?: string | null | undefined;
769
+ timeout?: number | null | undefined;
770
+ }>;
771
+ export declare const GooglePlayReviews: import("./validation.js").RequestClass<"google_play_reviews", {
772
+ hl?: string | undefined;
773
+ gl?: string | undefined;
774
+ product_id: string;
775
+ store?: "apps" | "audiobooks" | "books" | "movies" | "tv" | undefined;
776
+ platform?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | undefined;
777
+ rating?: string | number | null | undefined;
778
+ sort_by?: string | number | undefined;
779
+ num?: string | number | undefined;
780
+ next_page_token?: string | null | undefined;
781
+ timeout?: number | null | undefined;
782
+ }, {
783
+ hl: string;
784
+ gl: string;
785
+ product_id: string;
786
+ store: "apps" | "audiobooks" | "books" | "movies" | "tv";
787
+ platform: "chromebook" | "phone" | "tablet" | "tv" | "watch";
788
+ rating?: number | null | undefined;
789
+ sort_by: number;
790
+ num: number;
791
+ next_page_token?: string | null | undefined;
792
+ timeout?: number | null | undefined;
793
+ }>;
794
+ export declare const AppleAppStoreSearch: import("./validation.js").RequestClass<"apple_app_store_search", {
795
+ country?: string | undefined;
796
+ term: string;
797
+ lang?: string | undefined;
798
+ num?: string | number | undefined;
799
+ disallow_explicit?: "false" | "true" | boolean | undefined;
800
+ property?: "developer" | null | undefined;
801
+ category_id?: string | number | null | undefined;
802
+ device?: "desktop" | "mobile" | "tablet" | undefined;
803
+ timeout?: number | null | undefined;
804
+ }, {
805
+ country: string;
806
+ term: string;
807
+ lang: string;
808
+ num: number;
809
+ disallow_explicit: boolean;
810
+ property?: "developer" | null | undefined;
811
+ category_id?: number | null | undefined;
812
+ device: "desktop" | "mobile" | "tablet";
813
+ timeout?: number | null | undefined;
814
+ }>;
815
+ export declare const AppleAppStoreProduct: import("./validation.js").RequestClass<"apple_app_store_product", {
816
+ country?: string | undefined;
817
+ product_id: string;
818
+ type?: "app" | undefined;
819
+ timeout?: number | null | undefined;
820
+ }, {
821
+ country: string;
822
+ product_id: string;
823
+ type: "app";
824
+ timeout?: number | null | undefined;
825
+ }>;
826
+ export declare const AppleAppStoreReviews: import("./validation.js").RequestClass<"apple_app_store_reviews", {
827
+ country?: string | undefined;
828
+ product_id: string;
829
+ sort?: "mosthelpful" | "mostrecent" | undefined;
830
+ page?: string | number | undefined;
831
+ timeout?: number | null | undefined;
832
+ }, {
833
+ country: string;
834
+ product_id: string;
835
+ sort: "mosthelpful" | "mostrecent";
836
+ page: number;
837
+ timeout?: number | null | undefined;
838
+ }>;
839
+ export declare const REQUEST_TYPES: Readonly<{
840
+ google_search: import("./validation.js").RequestClass<"google_search", {
841
+ timeout?: number | null | undefined;
842
+ hl?: string | number | bigint | null | undefined;
843
+ gl?: string | number | bigint | null | undefined;
844
+ google_domain?: string | number | bigint | null | undefined;
845
+ location?: string | number | bigint | null | undefined;
846
+ uule?: string | number | bigint | null | undefined;
847
+ q?: string | number | bigint | null | undefined;
848
+ ludocid?: string | number | bigint | null | undefined;
849
+ kgmid?: string | number | bigint | null | undefined;
850
+ lat?: string | number | boolean | null | undefined;
851
+ lon?: string | number | boolean | null | undefined;
852
+ radius?: string | number | boolean | null | undefined;
853
+ lsig?: string | number | bigint | null | undefined;
854
+ si?: string | number | bigint | null | undefined;
855
+ ibp?: string | number | bigint | null | undefined;
856
+ uds?: string | number | bigint | null | undefined;
857
+ color_scheme?: "dark" | "light" | null | undefined;
858
+ cr?: string | number | bigint | null | undefined;
859
+ lr?: string | number | bigint | null | undefined;
860
+ tbs?: string | number | bigint | null | undefined;
861
+ safe?: "active" | "off" | null | undefined;
862
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
863
+ filter?: "0" | "1" | 0 | 1 | boolean | null | undefined;
864
+ pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
865
+ peek_pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
866
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
867
+ start?: string | number | boolean | null | undefined;
868
+ num?: string | number | boolean | null | undefined;
869
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
870
+ oq?: string | number | bigint | null | undefined;
871
+ gs_lp?: string | number | bigint | null | undefined;
872
+ sclient?: string | number | bigint | null | undefined;
873
+ as_dt?: "e" | "i" | null | undefined;
874
+ as_epq?: string | number | bigint | null | undefined;
875
+ as_eq?: string | number | bigint | null | undefined;
876
+ as_lq?: string | number | bigint | null | undefined;
877
+ as_nlo?: string | number | bigint | null | undefined;
878
+ as_nhi?: string | number | bigint | null | undefined;
879
+ as_oq?: string | number | bigint | null | undefined;
880
+ as_q?: string | number | bigint | null | undefined;
881
+ as_qdr?: string | number | bigint | null | undefined;
882
+ as_rq?: string | number | bigint | null | undefined;
883
+ as_sitesearch?: string | number | bigint | null | undefined;
884
+ fast_mode?: "false" | "true" | boolean | null | undefined;
885
+ }, {
886
+ timeout?: number | null | undefined;
887
+ hl?: string | null | undefined;
888
+ gl?: string | null | undefined;
889
+ google_domain?: string | null | undefined;
890
+ location?: string | null | undefined;
891
+ uule?: string | null | undefined;
892
+ q?: string | null | undefined;
893
+ ludocid?: string | null | undefined;
894
+ kgmid?: string | null | undefined;
895
+ lat?: number | null | undefined;
896
+ lon?: number | null | undefined;
897
+ radius?: number | null | undefined;
898
+ lsig?: string | null | undefined;
899
+ si?: string | null | undefined;
900
+ ibp?: string | null | undefined;
901
+ uds?: string | null | undefined;
902
+ color_scheme?: "dark" | "light" | null | undefined;
903
+ cr?: string | null | undefined;
904
+ lr?: string | null | undefined;
905
+ tbs?: string | null | undefined;
906
+ safe?: "active" | "off" | null | undefined;
907
+ nfpr?: "0" | "1" | null | undefined;
908
+ filter?: "0" | "1" | null | undefined;
909
+ pws?: "0" | "1" | null | undefined;
910
+ peek_pws?: "0" | "1" | null | undefined;
911
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
912
+ start?: number | null | undefined;
913
+ num?: number | null | undefined;
914
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
915
+ oq?: string | null | undefined;
916
+ gs_lp?: string | null | undefined;
917
+ sclient?: string | null | undefined;
918
+ as_dt?: "e" | "i" | null | undefined;
919
+ as_epq?: string | null | undefined;
920
+ as_eq?: string | null | undefined;
921
+ as_lq?: string | null | undefined;
922
+ as_nlo?: string | null | undefined;
923
+ as_nhi?: string | null | undefined;
924
+ as_oq?: string | null | undefined;
925
+ as_q?: string | null | undefined;
926
+ as_qdr?: string | null | undefined;
927
+ as_rq?: string | null | undefined;
928
+ as_sitesearch?: string | null | undefined;
929
+ fast_mode?: "false" | "true" | boolean | null | undefined;
930
+ }>;
931
+ google_ai_overview: import("./validation.js").RequestClass<"google_ai_overview", {
932
+ timeout?: number | null | undefined;
933
+ hl?: string | number | bigint | null | undefined;
934
+ gl?: string | number | bigint | null | undefined;
935
+ google_domain?: string | number | bigint | null | undefined;
936
+ location?: string | number | bigint | null | undefined;
937
+ uule?: string | number | bigint | null | undefined;
938
+ q?: string | number | bigint | null | undefined;
939
+ ludocid?: string | number | bigint | null | undefined;
940
+ kgmid?: string | number | bigint | null | undefined;
941
+ lat?: string | number | boolean | null | undefined;
942
+ lon?: string | number | boolean | null | undefined;
943
+ radius?: string | number | boolean | null | undefined;
944
+ lsig?: string | number | bigint | null | undefined;
945
+ si?: string | number | bigint | null | undefined;
946
+ ibp?: string | number | bigint | null | undefined;
947
+ uds?: string | number | bigint | null | undefined;
948
+ color_scheme?: "dark" | "light" | null | undefined;
949
+ cr?: string | number | bigint | null | undefined;
950
+ lr?: string | number | bigint | null | undefined;
951
+ tbs?: string | number | bigint | null | undefined;
952
+ safe?: "active" | "off" | null | undefined;
953
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
954
+ filter?: "0" | "1" | 0 | 1 | boolean | null | undefined;
955
+ pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
956
+ peek_pws?: "0" | "1" | 0 | 1 | boolean | null | undefined;
957
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
958
+ start?: string | number | boolean | null | undefined;
959
+ num?: string | number | boolean | null | undefined;
960
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
961
+ oq?: string | number | bigint | null | undefined;
962
+ gs_lp?: string | number | bigint | null | undefined;
963
+ sclient?: string | number | bigint | null | undefined;
964
+ as_dt?: "e" | "i" | null | undefined;
965
+ as_epq?: string | number | bigint | null | undefined;
966
+ as_eq?: string | number | bigint | null | undefined;
967
+ as_lq?: string | number | bigint | null | undefined;
968
+ as_nlo?: string | number | bigint | null | undefined;
969
+ as_nhi?: string | number | bigint | null | undefined;
970
+ as_oq?: string | number | bigint | null | undefined;
971
+ as_q?: string | number | bigint | null | undefined;
972
+ as_qdr?: string | number | bigint | null | undefined;
973
+ as_rq?: string | number | bigint | null | undefined;
974
+ as_sitesearch?: string | number | bigint | null | undefined;
975
+ }, {
976
+ timeout?: number | null | undefined;
977
+ hl?: string | null | undefined;
978
+ gl?: string | null | undefined;
979
+ google_domain?: string | null | undefined;
980
+ location?: string | null | undefined;
981
+ uule?: string | null | undefined;
982
+ q?: string | null | undefined;
983
+ ludocid?: string | null | undefined;
984
+ kgmid?: string | null | undefined;
985
+ lat?: number | null | undefined;
986
+ lon?: number | null | undefined;
987
+ radius?: number | null | undefined;
988
+ lsig?: string | null | undefined;
989
+ si?: string | null | undefined;
990
+ ibp?: string | null | undefined;
991
+ uds?: string | null | undefined;
992
+ color_scheme?: "dark" | "light" | null | undefined;
993
+ cr?: string | null | undefined;
994
+ lr?: string | null | undefined;
995
+ tbs?: string | null | undefined;
996
+ safe?: "active" | "off" | null | undefined;
997
+ nfpr?: "0" | "1" | null | undefined;
998
+ filter?: "0" | "1" | null | undefined;
999
+ pws?: "0" | "1" | null | undefined;
1000
+ peek_pws?: "0" | "1" | null | undefined;
1001
+ tbm?: "lcl" | "nws" | "pts" | "shop" | "vid" | null | undefined;
1002
+ start?: number | null | undefined;
1003
+ num?: number | null | undefined;
1004
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1005
+ oq?: string | null | undefined;
1006
+ gs_lp?: string | null | undefined;
1007
+ sclient?: string | null | undefined;
1008
+ as_dt?: "e" | "i" | null | undefined;
1009
+ as_epq?: string | null | undefined;
1010
+ as_eq?: string | null | undefined;
1011
+ as_lq?: string | null | undefined;
1012
+ as_nlo?: string | null | undefined;
1013
+ as_nhi?: string | null | undefined;
1014
+ as_oq?: string | null | undefined;
1015
+ as_q?: string | null | undefined;
1016
+ as_qdr?: string | null | undefined;
1017
+ as_rq?: string | null | undefined;
1018
+ as_sitesearch?: string | null | undefined;
1019
+ }>;
1020
+ google_ai_mode: import("./validation.js").RequestClass<"google_ai_mode", {
1021
+ timeout?: number | null | undefined;
1022
+ hl?: string | number | bigint | null | undefined;
1023
+ gl?: string | number | bigint | null | undefined;
1024
+ google_domain?: string | number | bigint | null | undefined;
1025
+ location?: string | number | bigint | null | undefined;
1026
+ uule?: string | number | bigint | null | undefined;
1027
+ q: string | number | bigint;
1028
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1029
+ continuable?: string | 0 | 1 | boolean | null | undefined;
1030
+ subsequent_request_token?: string | number | bigint | null | undefined;
1031
+ image_url?: string | number | bigint | null | undefined;
1032
+ }, {
1033
+ timeout?: number | null | undefined;
1034
+ hl?: string | null | undefined;
1035
+ gl?: string | null | undefined;
1036
+ google_domain?: string | null | undefined;
1037
+ location?: string | null | undefined;
1038
+ uule?: string | null | undefined;
1039
+ q: string;
1040
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1041
+ continuable?: boolean | null | undefined;
1042
+ subsequent_request_token?: string | null | undefined;
1043
+ image_url?: string | null | undefined;
1044
+ }>;
1045
+ google_ads: import("./validation.js").RequestClass<"google_ads", {
1046
+ timeout?: number | null | undefined;
1047
+ q: string | number | bigint;
1048
+ location: string | number | bigint;
1049
+ hl?: string | number | bigint | null | undefined;
1050
+ safe?: "active" | "off" | null | undefined;
1051
+ nfpr?: "0" | "1" | 0 | 1 | boolean | null | undefined;
1052
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1053
+ }, {
1054
+ timeout?: number | null | undefined;
1055
+ q: string;
1056
+ location: string;
1057
+ hl?: string | null | undefined;
1058
+ safe?: "active" | "off" | null | undefined;
1059
+ nfpr?: "0" | "1" | null | undefined;
1060
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1061
+ }>;
1062
+ google_shopping: import("./validation.js").RequestClass<"google_shopping", {
1063
+ timeout?: number | null | undefined;
1064
+ hl?: string | number | bigint | null | undefined;
1065
+ gl?: string | number | bigint | null | undefined;
1066
+ google_domain?: string | number | bigint | null | undefined;
1067
+ location?: string | number | bigint | null | undefined;
1068
+ uule?: string | number | bigint | null | undefined;
1069
+ q?: string | number | bigint | null | undefined;
1070
+ shoprs?: string | number | bigint | null | undefined;
1071
+ min_price?: string | number | boolean | null | undefined;
1072
+ max_price?: string | number | boolean | null | undefined;
1073
+ sort_by?: "1" | "2" | "3" | "4" | 1 | 2 | 3 | 4 | null | undefined;
1074
+ free_shipping?: string | 0 | 1 | boolean | null | undefined;
1075
+ on_sale?: string | 0 | 1 | boolean | null | undefined;
1076
+ small_business?: string | 0 | 1 | boolean | null | undefined;
1077
+ start?: string | number | boolean | null | undefined;
1078
+ num?: string | number | boolean | null | undefined;
1079
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1080
+ }, {
1081
+ timeout?: number | null | undefined;
1082
+ hl?: string | null | undefined;
1083
+ gl?: string | null | undefined;
1084
+ google_domain?: string | null | undefined;
1085
+ location?: string | null | undefined;
1086
+ uule?: string | null | undefined;
1087
+ q?: string | null | undefined;
1088
+ shoprs?: string | null | undefined;
1089
+ min_price?: number | null | undefined;
1090
+ max_price?: number | null | undefined;
1091
+ sort_by?: string | null | undefined;
1092
+ free_shipping?: boolean | null | undefined;
1093
+ on_sale?: boolean | null | undefined;
1094
+ small_business?: boolean | null | undefined;
1095
+ start?: number | null | undefined;
1096
+ num?: number | null | undefined;
1097
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1098
+ }>;
1099
+ google_shopping_product: import("./validation.js").RequestClass<"google_shopping_product", {
1100
+ timeout?: number | null | undefined;
1101
+ hl?: string | number | bigint | null | undefined;
1102
+ gl?: string | number | bigint | null | undefined;
1103
+ google_domain?: string | number | bigint | null | undefined;
1104
+ location?: string | number | bigint | null | undefined;
1105
+ uule?: string | number | bigint | null | undefined;
1106
+ q: string | number | bigint;
1107
+ gpcid?: string | number | bigint | null | undefined;
1108
+ headline_offer_docid?: string | number | bigint | null | undefined;
1109
+ image_docid?: string | number | bigint | null | undefined;
1110
+ prds?: string | number | bigint | null | undefined;
1111
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1112
+ }, {
1113
+ timeout?: number | null | undefined;
1114
+ hl?: string | null | undefined;
1115
+ gl?: string | null | undefined;
1116
+ google_domain?: string | null | undefined;
1117
+ location?: string | null | undefined;
1118
+ uule?: string | null | undefined;
1119
+ q: string;
1120
+ gpcid?: string | null | undefined;
1121
+ headline_offer_docid?: string | null | undefined;
1122
+ image_docid?: string | null | undefined;
1123
+ prds?: string | null | undefined;
1124
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1125
+ }>;
1126
+ google_local: import("./validation.js").RequestClass<"google_local", {
1127
+ timeout?: number | null | undefined;
1128
+ hl?: string | number | bigint | null | undefined;
1129
+ gl?: string | number | bigint | null | undefined;
1130
+ google_domain?: string | number | bigint | null | undefined;
1131
+ location?: string | number | bigint | null | undefined;
1132
+ uule?: string | number | bigint | null | undefined;
1133
+ q: string | number | bigint;
1134
+ ludocid?: string | number | bigint | null | undefined;
1135
+ tbs?: string | number | bigint | null | undefined;
1136
+ start?: string | number | boolean | null | undefined;
1137
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1138
+ }, {
1139
+ timeout?: number | null | undefined;
1140
+ hl?: string | null | undefined;
1141
+ gl?: string | null | undefined;
1142
+ google_domain?: string | null | undefined;
1143
+ location?: string | null | undefined;
1144
+ uule?: string | null | undefined;
1145
+ q: string;
1146
+ ludocid?: string | null | undefined;
1147
+ tbs?: string | null | undefined;
1148
+ start?: number | null | undefined;
1149
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1150
+ }>;
1151
+ google_maps: import("./validation.js").RequestClass<"google_maps", {
1152
+ timeout?: number | null | undefined;
1153
+ hl?: string | number | bigint | null | undefined;
1154
+ gl?: string | number | bigint | null | undefined;
1155
+ google_domain?: string | number | bigint | null | undefined;
1156
+ q?: string | number | bigint | null | undefined;
1157
+ ll?: string | number | bigint | null | undefined;
1158
+ location?: string | number | bigint | null | undefined;
1159
+ lat?: string | number | boolean | null | undefined;
1160
+ lon?: string | number | boolean | null | undefined;
1161
+ z?: string | number | boolean | null | undefined;
1162
+ m?: string | number | boolean | null | undefined;
1163
+ nearby?: string | 0 | 1 | boolean | null | undefined;
1164
+ data?: string | number | bigint | null | undefined;
1165
+ place_id?: string | number | bigint | null | undefined;
1166
+ data_cid?: string | number | bigint | null | undefined;
1167
+ type?: "place" | "search" | null | undefined;
1168
+ start?: string | number | boolean | null | undefined;
1169
+ min_price?: string | number | boolean | null | undefined;
1170
+ max_price?: string | number | boolean | null | undefined;
1171
+ min_rating?: string | number | boolean | null | undefined;
1172
+ open_state?: "24h" | "now" | null | undefined;
1173
+ open_on_day?: "fri" | "mon" | "sat" | "sun" | "thu" | "tue" | "wed" | null | undefined;
1174
+ open_at_hour?: string | number | boolean | null | undefined;
1175
+ }, {
1176
+ timeout?: number | null | undefined;
1177
+ hl?: string | null | undefined;
1178
+ gl?: string | null | undefined;
1179
+ google_domain?: string | null | undefined;
1180
+ q?: string | null | undefined;
1181
+ ll?: string | null | undefined;
1182
+ location?: string | null | undefined;
1183
+ lat?: number | null | undefined;
1184
+ lon?: number | null | undefined;
1185
+ z?: number | null | undefined;
1186
+ m?: number | null | undefined;
1187
+ nearby?: boolean | null | undefined;
1188
+ data?: string | null | undefined;
1189
+ place_id?: string | null | undefined;
1190
+ data_cid?: string | null | undefined;
1191
+ type?: "place" | "search" | null | undefined;
1192
+ start?: number | null | undefined;
1193
+ min_price?: number | null | undefined;
1194
+ max_price?: number | null | undefined;
1195
+ min_rating?: number | null | undefined;
1196
+ open_state?: "24h" | "now" | null | undefined;
1197
+ open_on_day?: "fri" | "mon" | "sat" | "sun" | "thu" | "tue" | "wed" | null | undefined;
1198
+ open_at_hour?: number | null | undefined;
1199
+ }>;
1200
+ google_maps_live_foot_traffic: import("./validation.js").RequestClass<"google_maps_live_foot_traffic", {
1201
+ timeout?: number | null | undefined;
1202
+ hl?: string | number | bigint | null | undefined;
1203
+ gl?: string | number | bigint | null | undefined;
1204
+ google_domain?: string | number | bigint | null | undefined;
1205
+ place_id: string | number | bigint;
1206
+ }, {
1207
+ timeout?: number | null | undefined;
1208
+ hl?: string | null | undefined;
1209
+ gl?: string | null | undefined;
1210
+ google_domain?: string | null | undefined;
1211
+ place_id: string;
1212
+ }>;
1213
+ google_maps_posts: import("./validation.js").RequestClass<"google_maps_posts", {
1214
+ timeout?: number | null | undefined;
1215
+ hl?: string | number | bigint | null | undefined;
1216
+ gl?: string | number | bigint | null | undefined;
1217
+ google_domain?: string | number | bigint | null | undefined;
1218
+ data_id: string | number | bigint;
1219
+ next_page_token?: string | number | bigint | null | undefined;
1220
+ }, {
1221
+ timeout?: number | null | undefined;
1222
+ hl?: string | null | undefined;
1223
+ gl?: string | null | undefined;
1224
+ google_domain?: string | null | undefined;
1225
+ data_id: string;
1226
+ next_page_token?: string | null | undefined;
1227
+ }>;
1228
+ google_maps_photo: import("./validation.js").RequestClass<"google_maps_photo", {
1229
+ timeout?: number | null | undefined;
1230
+ hl?: string | number | bigint | null | undefined;
1231
+ gl?: string | number | bigint | null | undefined;
1232
+ google_domain?: string | number | bigint | null | undefined;
1233
+ data_id: string | number | bigint;
1234
+ }, {
1235
+ timeout?: number | null | undefined;
1236
+ hl?: string | null | undefined;
1237
+ gl?: string | null | undefined;
1238
+ google_domain?: string | null | undefined;
1239
+ data_id: string;
1240
+ }>;
1241
+ google_maps_web_results: import("./validation.js").RequestClass<"google_maps_web_results", {
1242
+ timeout?: number | null | undefined;
1243
+ hl?: string | number | bigint | null | undefined;
1244
+ gl?: string | number | bigint | null | undefined;
1245
+ google_domain?: string | number | bigint | null | undefined;
1246
+ q: string | number | bigint;
1247
+ ibp: string | number | bigint;
1248
+ device?: "desktop" | null | undefined;
1249
+ start?: string | number | boolean | null | undefined;
1250
+ }, {
1251
+ timeout?: number | null | undefined;
1252
+ hl?: string | null | undefined;
1253
+ gl?: string | null | undefined;
1254
+ google_domain?: string | null | undefined;
1255
+ q: string;
1256
+ ibp: string;
1257
+ device?: "desktop" | null | undefined;
1258
+ start?: number | null | undefined;
1259
+ }>;
1260
+ google_reviews: import("./validation.js").RequestClass<"google_reviews", {
1261
+ timeout?: number | null | undefined;
1262
+ place_id?: string | number | bigint | null | undefined;
1263
+ data_id?: string | number | bigint | null | undefined;
1264
+ hl?: string | number | bigint | null | undefined;
1265
+ gl?: string | number | bigint | null | undefined;
1266
+ sort_by?: "newestFirst" | "qualityScore" | "ratingHigh" | "ratingLow" | null | undefined;
1267
+ topic_id?: string | number | bigint | null | undefined;
1268
+ query?: string | number | bigint | null | undefined;
1269
+ num?: string | number | boolean | null | undefined;
1270
+ next_page_token?: string | number | bigint | null | undefined;
1271
+ source_metadata?: string | 0 | 1 | boolean | null | undefined;
1272
+ }, {
1273
+ timeout?: number | null | undefined;
1274
+ place_id?: string | null | undefined;
1275
+ data_id?: string | null | undefined;
1276
+ hl?: string | null | undefined;
1277
+ gl?: string | null | undefined;
1278
+ sort_by?: "newestFirst" | "qualityScore" | "ratingHigh" | "ratingLow" | null | undefined;
1279
+ topic_id?: string | null | undefined;
1280
+ query?: string | null | undefined;
1281
+ num?: number | null | undefined;
1282
+ next_page_token?: string | null | undefined;
1283
+ source_metadata?: boolean | null | undefined;
1284
+ }>;
1285
+ google_contributor_reviews: import("./validation.js").RequestClass<"google_contributor_reviews", {
1286
+ timeout?: number | null | undefined;
1287
+ contributor_id: string | number | bigint;
1288
+ hl?: string | number | bigint | null | undefined;
1289
+ gl?: string | number | bigint | null | undefined;
1290
+ limit?: string | number | boolean | null | undefined;
1291
+ }, {
1292
+ timeout?: number | null | undefined;
1293
+ contributor_id: string;
1294
+ hl?: string | null | undefined;
1295
+ gl?: string | null | undefined;
1296
+ limit?: number | null | undefined;
1297
+ }>;
1298
+ bing_search: import("./validation.js").RequestClass<"bing_search", {
1299
+ timeout?: number | null | undefined;
1300
+ engine?: "bing" | null | undefined;
1301
+ q: string | number | bigint;
1302
+ location?: string | number | bigint | null | undefined;
1303
+ lat?: string | number | boolean | null | undefined;
1304
+ lon?: string | number | boolean | null | undefined;
1305
+ mkt?: string | number | bigint | null | undefined;
1306
+ cc?: string | number | bigint | null | undefined;
1307
+ first?: string | number | boolean | null | undefined;
1308
+ safeSearch?: "moderate" | "off" | "strict" | null | undefined;
1309
+ filters?: string | number | bigint | null | undefined;
1310
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1311
+ }, {
1312
+ timeout?: number | null | undefined;
1313
+ engine?: "bing" | null | undefined;
1314
+ q: string;
1315
+ location?: string | null | undefined;
1316
+ lat?: number | null | undefined;
1317
+ lon?: number | null | undefined;
1318
+ mkt?: string | null | undefined;
1319
+ cc?: string | null | undefined;
1320
+ first?: number | null | undefined;
1321
+ safeSearch?: "moderate" | "off" | "strict" | null | undefined;
1322
+ filters?: string | null | undefined;
1323
+ device?: "desktop" | "mobile" | "tablet" | null | undefined;
1324
+ }>;
1325
+ bing_maps: import("./validation.js").RequestClass<"bing_maps", {
1326
+ timeout?: number | null | undefined;
1327
+ q?: string | number | bigint | null | undefined;
1328
+ place_id?: string | number | bigint | null | undefined;
1329
+ cp?: string | number | bigint | null | undefined;
1330
+ setlang?: string | number | bigint | null | undefined;
1331
+ first?: string | number | boolean | null | undefined;
1332
+ count?: string | number | boolean | null | undefined;
1333
+ }, {
1334
+ timeout?: number | null | undefined;
1335
+ q?: string | null | undefined;
1336
+ place_id?: string | null | undefined;
1337
+ cp?: string | null | undefined;
1338
+ setlang?: string | null | undefined;
1339
+ first?: number | null | undefined;
1340
+ count?: number | null | undefined;
1341
+ }>;
1342
+ duckduckgo_search: import("./validation.js").RequestClass<"duckduckgo_search", {
1343
+ timeout?: number | null | undefined;
1344
+ q: string | number | bigint;
1345
+ kl?: string | number | bigint | null | undefined;
1346
+ search_assist?: string | 0 | 1 | boolean | null | undefined;
1347
+ safe?: "-1" | "-2" | "1" | -2 | -1 | 1 | null | undefined;
1348
+ df?: string | number | bigint | null | undefined;
1349
+ start?: string | number | boolean | null | undefined;
1350
+ m?: string | number | boolean | null | undefined;
1351
+ }, {
1352
+ timeout?: number | null | undefined;
1353
+ q: string;
1354
+ kl?: string | null | undefined;
1355
+ search_assist?: boolean | null | undefined;
1356
+ safe?: string | null | undefined;
1357
+ df?: string | null | undefined;
1358
+ start?: number | null | undefined;
1359
+ m?: number | null | undefined;
1360
+ }>;
1361
+ duckduckgo_maps: import("./validation.js").RequestClass<"duckduckgo_maps", {
1362
+ timeout?: number | null | undefined;
1363
+ q: string | number | bigint;
1364
+ bbox?: string | number | bigint | null | undefined;
1365
+ lat?: string | number | boolean | null | undefined;
1366
+ lon?: string | number | boolean | null | undefined;
1367
+ strict_bbox?: string | 0 | 1 | boolean | null | undefined;
1368
+ }, {
1369
+ timeout?: number | null | undefined;
1370
+ q: string;
1371
+ bbox?: string | null | undefined;
1372
+ lat?: number | null | undefined;
1373
+ lon?: number | null | undefined;
1374
+ strict_bbox?: boolean | null | undefined;
1375
+ }>;
1376
+ yelp_search: import("./validation.js").RequestClass<"yelp_search", {
1377
+ timeout?: number | null | undefined;
1378
+ find_desc?: string | number | bigint | null | undefined;
1379
+ find_loc: string | number | bigint;
1380
+ yelp_domain?: string | number | bigint | null | undefined;
1381
+ l?: string | number | bigint | null | undefined;
1382
+ cflt?: string | number | bigint | null | undefined;
1383
+ sortby?: "rating" | "recommended" | "review_count" | null | undefined;
1384
+ attrs?: string | number | bigint | null | undefined;
1385
+ start?: string | number | boolean | null | undefined;
1386
+ }, {
1387
+ timeout?: number | null | undefined;
1388
+ find_desc?: string | null | undefined;
1389
+ find_loc: string;
1390
+ yelp_domain?: string | null | undefined;
1391
+ l?: string | null | undefined;
1392
+ cflt?: string | null | undefined;
1393
+ sortby?: "rating" | "recommended" | "review_count" | null | undefined;
1394
+ attrs?: string | null | undefined;
1395
+ start?: number | null | undefined;
1396
+ }>;
1397
+ yelp_reviews: import("./validation.js").RequestClass<"yelp_reviews", {
1398
+ timeout?: number | null | undefined;
1399
+ place_id: string | number | bigint;
1400
+ yelp_domain?: string | number | bigint | null | undefined;
1401
+ hl?: string | number | bigint | null | undefined;
1402
+ q?: string | number | bigint | null | undefined;
1403
+ sortby?: "date_asc" | "date_desc" | "elites_desc" | "rating_asc" | "rating_desc" | "relevance_desc" | null | undefined;
1404
+ rating?: string | number | bigint | null | undefined;
1405
+ not_recommended?: string | 0 | 1 | boolean | null | undefined;
1406
+ start?: string | number | boolean | null | undefined;
1407
+ num?: string | number | boolean | null | undefined;
1408
+ not_recommended_start?: string | number | boolean | null | undefined;
1409
+ }, {
1410
+ timeout?: number | null | undefined;
1411
+ place_id: string;
1412
+ yelp_domain?: string | null | undefined;
1413
+ hl?: string | null | undefined;
1414
+ q?: string | null | undefined;
1415
+ sortby?: "date_asc" | "date_desc" | "elites_desc" | "rating_asc" | "rating_desc" | "relevance_desc" | null | undefined;
1416
+ rating?: string | null | undefined;
1417
+ not_recommended?: boolean | null | undefined;
1418
+ start?: number | null | undefined;
1419
+ num?: number | null | undefined;
1420
+ not_recommended_start?: number | null | undefined;
1421
+ }>;
1422
+ tripadvisor_search: import("./validation.js").RequestClass<"tripadvisor_search", {
1423
+ timeout?: number | null | undefined;
1424
+ tripadvisor_domain?: string | number | bigint | null | undefined;
1425
+ locale?: string | number | bigint | null | undefined;
1426
+ q: string | number | bigint;
1427
+ geo_id?: string | number | boolean | null | undefined;
1428
+ lat?: string | number | boolean | null | undefined;
1429
+ lon?: string | number | boolean | null | undefined;
1430
+ place_type?: "accommodation" | "all" | "attraction" | "attraction_product" | "eatery" | "geo" | null | undefined;
1431
+ start?: string | number | boolean | null | undefined;
1432
+ num?: string | number | boolean | null | undefined;
1433
+ }, {
1434
+ timeout?: number | null | undefined;
1435
+ tripadvisor_domain?: string | null | undefined;
1436
+ locale?: string | null | undefined;
1437
+ q: string;
1438
+ geo_id?: number | null | undefined;
1439
+ lat?: number | null | undefined;
1440
+ lon?: number | null | undefined;
1441
+ place_type?: "accommodation" | "all" | "attraction" | "attraction_product" | "eatery" | "geo" | null | undefined;
1442
+ start?: number | null | undefined;
1443
+ num?: number | null | undefined;
1444
+ }>;
1445
+ tripadvisor_place: import("./validation.js").RequestClass<"tripadvisor_place", {
1446
+ timeout?: number | null | undefined;
1447
+ tripadvisor_domain?: string | number | bigint | null | undefined;
1448
+ locale?: string | number | bigint | null | undefined;
1449
+ place_id: string | number | bigint;
1450
+ currency?: string | number | bigint | null | undefined;
1451
+ geo_id?: string | number | boolean | null | undefined;
1452
+ }, {
1453
+ timeout?: number | null | undefined;
1454
+ tripadvisor_domain?: string | null | undefined;
1455
+ locale?: string | null | undefined;
1456
+ place_id: string;
1457
+ currency?: string | null | undefined;
1458
+ geo_id?: number | null | undefined;
1459
+ }>;
1460
+ tripadvisor_reviews: import("./validation.js").RequestClass<"tripadvisor_reviews", {
1461
+ timeout?: number | null | undefined;
1462
+ tripadvisor_domain?: string | number | bigint | null | undefined;
1463
+ locale?: string | number | bigint | null | undefined;
1464
+ place_id: string | number | bigint;
1465
+ start?: string | number | boolean | null | undefined;
1466
+ num?: string | number | boolean | null | undefined;
1467
+ sort_by?: "recent" | "relevance" | null | undefined;
1468
+ translate?: string | 0 | 1 | boolean | null | undefined;
1469
+ }, {
1470
+ timeout?: number | null | undefined;
1471
+ tripadvisor_domain?: string | null | undefined;
1472
+ locale?: string | null | undefined;
1473
+ place_id: string;
1474
+ start?: number | null | undefined;
1475
+ num?: number | null | undefined;
1476
+ sort_by?: "recent" | "relevance" | null | undefined;
1477
+ translate?: boolean | null | undefined;
1478
+ }>;
1479
+ apple_maps_places: import("./validation.js").RequestClass<"apple_maps_places", {
1480
+ timeout?: number | null | undefined;
1481
+ muid: string | number | bigint;
1482
+ locale?: string | number | bigint | null | undefined;
1483
+ }, {
1484
+ timeout?: number | null | undefined;
1485
+ muid: string;
1486
+ locale?: string | null | undefined;
1487
+ }>;
1488
+ apple_maps_reviews: import("./validation.js").RequestClass<"apple_maps_reviews", {
1489
+ timeout?: number | null | undefined;
1490
+ muid: string | number | bigint;
1491
+ locale?: string | number | bigint | null | undefined;
1492
+ }, {
1493
+ timeout?: number | null | undefined;
1494
+ muid: string;
1495
+ locale?: string | null | undefined;
1496
+ }>;
1497
+ google_play_apps: import("./validation.js").RequestClass<"google_play_apps", {
1498
+ hl?: string | undefined;
1499
+ gl?: string | undefined;
1500
+ q?: string | null | undefined;
1501
+ chart?: string | null | undefined;
1502
+ next_page_token?: string | null | undefined;
1503
+ section_page_token?: string | null | undefined;
1504
+ see_more_token?: string | null | undefined;
1505
+ apps_category?: string | null | undefined;
1506
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1507
+ store_device?: "car" | "chromebook" | "phone" | "tablet" | "tv" | "watch" | null | undefined;
1508
+ timeout?: number | null | undefined;
1509
+ }, {
1510
+ hl: string;
1511
+ gl: string;
1512
+ q?: string | null | undefined;
1513
+ chart?: string | null | undefined;
1514
+ next_page_token?: string | null | undefined;
1515
+ section_page_token?: string | null | undefined;
1516
+ see_more_token?: string | null | undefined;
1517
+ apps_category?: string | null | undefined;
1518
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1519
+ store_device?: "car" | "chromebook" | "phone" | "tablet" | "tv" | "watch" | null | undefined;
1520
+ timeout?: number | null | undefined;
1521
+ }>;
1522
+ google_play_games: import("./validation.js").RequestClass<"google_play_games", {
1523
+ hl?: string | undefined;
1524
+ gl?: string | undefined;
1525
+ q?: string | null | undefined;
1526
+ chart?: string | null | undefined;
1527
+ next_page_token?: string | null | undefined;
1528
+ section_page_token?: string | null | undefined;
1529
+ see_more_token?: string | null | undefined;
1530
+ games_category?: string | null | undefined;
1531
+ store_device?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | "windows" | null | undefined;
1532
+ timeout?: number | null | undefined;
1533
+ }, {
1534
+ hl: string;
1535
+ gl: string;
1536
+ q?: string | null | undefined;
1537
+ chart?: string | null | undefined;
1538
+ next_page_token?: string | null | undefined;
1539
+ section_page_token?: string | null | undefined;
1540
+ see_more_token?: string | null | undefined;
1541
+ games_category?: string | null | undefined;
1542
+ store_device?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | "windows" | null | undefined;
1543
+ timeout?: number | null | undefined;
1544
+ }>;
1545
+ google_play_books: import("./validation.js").RequestClass<"google_play_books", {
1546
+ hl?: string | undefined;
1547
+ gl?: string | undefined;
1548
+ q?: string | null | undefined;
1549
+ chart?: string | null | undefined;
1550
+ next_page_token?: string | null | undefined;
1551
+ section_page_token?: string | null | undefined;
1552
+ see_more_token?: string | null | undefined;
1553
+ books_category?: string | null | undefined;
1554
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1555
+ price?: string | number | null | undefined;
1556
+ timeout?: number | null | undefined;
1557
+ }, {
1558
+ hl: string;
1559
+ gl: string;
1560
+ q?: string | null | undefined;
1561
+ chart?: string | null | undefined;
1562
+ next_page_token?: string | null | undefined;
1563
+ section_page_token?: string | null | undefined;
1564
+ see_more_token?: string | null | undefined;
1565
+ books_category?: string | null | undefined;
1566
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1567
+ price?: number | null | undefined;
1568
+ timeout?: number | null | undefined;
1569
+ }>;
1570
+ google_play_movies: import("./validation.js").RequestClass<"google_play_movies", {
1571
+ hl?: string | undefined;
1572
+ gl?: string | undefined;
1573
+ q?: string | null | undefined;
1574
+ chart?: string | null | undefined;
1575
+ next_page_token?: string | null | undefined;
1576
+ section_page_token?: string | null | undefined;
1577
+ see_more_token?: string | null | undefined;
1578
+ movies_category?: string | null | undefined;
1579
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1580
+ timeout?: number | null | undefined;
1581
+ }, {
1582
+ hl: string;
1583
+ gl: string;
1584
+ q?: string | null | undefined;
1585
+ chart?: string | null | undefined;
1586
+ next_page_token?: string | null | undefined;
1587
+ section_page_token?: string | null | undefined;
1588
+ see_more_token?: string | null | undefined;
1589
+ movies_category?: string | null | undefined;
1590
+ age?: "AGE_RANGE1" | "AGE_RANGE2" | "AGE_RANGE3" | null | undefined;
1591
+ timeout?: number | null | undefined;
1592
+ }>;
1593
+ google_play_product: import("./validation.js").RequestClass<"google_play_product", {
1594
+ hl?: string | undefined;
1595
+ gl?: string | undefined;
1596
+ product_id: string;
1597
+ store?: "apps" | "audiobooks" | "books" | "movies" | "tv" | undefined;
1598
+ season_id?: string | null | undefined;
1599
+ timeout?: number | null | undefined;
1600
+ }, {
1601
+ hl: string;
1602
+ gl: string;
1603
+ product_id: string;
1604
+ store: "apps" | "audiobooks" | "books" | "movies" | "tv";
1605
+ season_id?: string | null | undefined;
1606
+ timeout?: number | null | undefined;
1607
+ }>;
1608
+ google_play_reviews: import("./validation.js").RequestClass<"google_play_reviews", {
1609
+ hl?: string | undefined;
1610
+ gl?: string | undefined;
1611
+ product_id: string;
1612
+ store?: "apps" | "audiobooks" | "books" | "movies" | "tv" | undefined;
1613
+ platform?: "chromebook" | "phone" | "tablet" | "tv" | "watch" | undefined;
1614
+ rating?: string | number | null | undefined;
1615
+ sort_by?: string | number | undefined;
1616
+ num?: string | number | undefined;
1617
+ next_page_token?: string | null | undefined;
1618
+ timeout?: number | null | undefined;
1619
+ }, {
1620
+ hl: string;
1621
+ gl: string;
1622
+ product_id: string;
1623
+ store: "apps" | "audiobooks" | "books" | "movies" | "tv";
1624
+ platform: "chromebook" | "phone" | "tablet" | "tv" | "watch";
1625
+ rating?: number | null | undefined;
1626
+ sort_by: number;
1627
+ num: number;
1628
+ next_page_token?: string | null | undefined;
1629
+ timeout?: number | null | undefined;
1630
+ }>;
1631
+ apple_app_store_search: import("./validation.js").RequestClass<"apple_app_store_search", {
1632
+ country?: string | undefined;
1633
+ term: string;
1634
+ lang?: string | undefined;
1635
+ num?: string | number | undefined;
1636
+ disallow_explicit?: "false" | "true" | boolean | undefined;
1637
+ property?: "developer" | null | undefined;
1638
+ category_id?: string | number | null | undefined;
1639
+ device?: "desktop" | "mobile" | "tablet" | undefined;
1640
+ timeout?: number | null | undefined;
1641
+ }, {
1642
+ country: string;
1643
+ term: string;
1644
+ lang: string;
1645
+ num: number;
1646
+ disallow_explicit: boolean;
1647
+ property?: "developer" | null | undefined;
1648
+ category_id?: number | null | undefined;
1649
+ device: "desktop" | "mobile" | "tablet";
1650
+ timeout?: number | null | undefined;
1651
+ }>;
1652
+ apple_app_store_product: import("./validation.js").RequestClass<"apple_app_store_product", {
1653
+ country?: string | undefined;
1654
+ product_id: string;
1655
+ type?: "app" | undefined;
1656
+ timeout?: number | null | undefined;
1657
+ }, {
1658
+ country: string;
1659
+ product_id: string;
1660
+ type: "app";
1661
+ timeout?: number | null | undefined;
1662
+ }>;
1663
+ apple_app_store_reviews: import("./validation.js").RequestClass<"apple_app_store_reviews", {
1664
+ country?: string | undefined;
1665
+ product_id: string;
1666
+ sort?: "mosthelpful" | "mostrecent" | undefined;
1667
+ page?: string | number | undefined;
1668
+ timeout?: number | null | undefined;
1669
+ }, {
1670
+ country: string;
1671
+ product_id: string;
1672
+ sort: "mosthelpful" | "mostrecent";
1673
+ page: number;
1674
+ timeout?: number | null | undefined;
1675
+ }>;
1676
+ }>;
1677
+ export type Endpoint = keyof typeof REQUEST_TYPES;
1678
+ export type AnyRequest = InstanceType<(typeof REQUEST_TYPES)[Endpoint]>;
1679
+ export type RequestInput = {
1680
+ [E in Endpoint]: {
1681
+ endpoint: E;
1682
+ } & ConstructorParameters<(typeof REQUEST_TYPES)[E]>[0];
1683
+ }[Endpoint];
1684
+ export type RequestItem = RequestInput | AnyRequest;
1685
+ export type GoogleSearch = InstanceType<typeof GoogleSearch>;
1686
+ export type GoogleAiOverview = InstanceType<typeof GoogleAiOverview>;
1687
+ export type GoogleAiMode = InstanceType<typeof GoogleAiMode>;
1688
+ export type GoogleAds = InstanceType<typeof GoogleAds>;
1689
+ export type GoogleShopping = InstanceType<typeof GoogleShopping>;
1690
+ export type GoogleShoppingProduct = InstanceType<typeof GoogleShoppingProduct>;
1691
+ export type GoogleLocal = InstanceType<typeof GoogleLocal>;
1692
+ export type GoogleMaps = InstanceType<typeof GoogleMaps>;
1693
+ export type GoogleMapsLiveFootTraffic = InstanceType<typeof GoogleMapsLiveFootTraffic>;
1694
+ export type GoogleMapsPosts = InstanceType<typeof GoogleMapsPosts>;
1695
+ export type GoogleMapsPhoto = InstanceType<typeof GoogleMapsPhoto>;
1696
+ export type GoogleMapsWebResults = InstanceType<typeof GoogleMapsWebResults>;
1697
+ export type GoogleReviews = InstanceType<typeof GoogleReviews>;
1698
+ export type GoogleContributorReviews = InstanceType<typeof GoogleContributorReviews>;
1699
+ export type BingSearch = InstanceType<typeof BingSearch>;
1700
+ export type BingMaps = InstanceType<typeof BingMaps>;
1701
+ export type DuckDuckGoSearch = InstanceType<typeof DuckDuckGoSearch>;
1702
+ export type DuckDuckGoMaps = InstanceType<typeof DuckDuckGoMaps>;
1703
+ export type YelpSearch = InstanceType<typeof YelpSearch>;
1704
+ export type YelpReviews = InstanceType<typeof YelpReviews>;
1705
+ export type TripadvisorSearch = InstanceType<typeof TripadvisorSearch>;
1706
+ export type TripadvisorPlace = InstanceType<typeof TripadvisorPlace>;
1707
+ export type TripadvisorReviews = InstanceType<typeof TripadvisorReviews>;
1708
+ export type AppleMapsPlaces = InstanceType<typeof AppleMapsPlaces>;
1709
+ export type AppleMapsReviews = InstanceType<typeof AppleMapsReviews>;
1710
+ export type GooglePlayApps = InstanceType<typeof GooglePlayApps>;
1711
+ export type GooglePlayGames = InstanceType<typeof GooglePlayGames>;
1712
+ export type GooglePlayBooks = InstanceType<typeof GooglePlayBooks>;
1713
+ export type GooglePlayMovies = InstanceType<typeof GooglePlayMovies>;
1714
+ export type GooglePlayProduct = InstanceType<typeof GooglePlayProduct>;
1715
+ export type GooglePlayReviews = InstanceType<typeof GooglePlayReviews>;
1716
+ export type AppleAppStoreSearch = InstanceType<typeof AppleAppStoreSearch>;
1717
+ export type AppleAppStoreProduct = InstanceType<typeof AppleAppStoreProduct>;
1718
+ export type AppleAppStoreReviews = InstanceType<typeof AppleAppStoreReviews>;
1719
+ /** Validate an untrusted object, including its endpoint discriminator. */
1720
+ export declare function parseRequest(input: unknown): AnyRequest;
1721
+ export declare const keyStatusSchema: z.ZodObject<{
1722
+ remaining_calls: z.ZodNumber;
1723
+ concurrency_limit: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1724
+ status: z.ZodDefault<z.ZodString>;
1725
+ free_calls: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1726
+ minimum_top_up_cents: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1727
+ cents_per_1000_calls: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1728
+ has_billing_email: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1729
+ credit_expiry_months: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1730
+ credits_expire_at: z.ZodOptional<z.ZodNullable<z.ZodString>>;
1731
+ expiring_calls: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1732
+ request_id: z.ZodDefault<z.ZodString>;
1733
+ }, z.core.$loose>;
1734
+ export type KeyStatus = z.output<typeof keyStatusSchema>;
1735
+ //# sourceMappingURL=models.d.ts.map