@contextplusplus/core 1.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 (2391) hide show
  1. package/LICENSE +21 -0
  2. package/dist/application/cache/key.d.ts +21 -0
  3. package/dist/application/cache/key.d.ts.map +1 -0
  4. package/dist/application/cache/key.js +110 -0
  5. package/dist/application/cache/key.js.map +1 -0
  6. package/dist/application/cache/ttl.d.ts +2 -0
  7. package/dist/application/cache/ttl.d.ts.map +1 -0
  8. package/dist/application/cache/ttl.js +13 -0
  9. package/dist/application/cache/ttl.js.map +1 -0
  10. package/dist/application/config/provider-policy-schema.d.ts +69 -0
  11. package/dist/application/config/provider-policy-schema.d.ts.map +1 -0
  12. package/dist/application/config/provider-policy-schema.js +49 -0
  13. package/dist/application/config/provider-policy-schema.js.map +1 -0
  14. package/dist/application/ports/api-key-service.d.ts +49 -0
  15. package/dist/application/ports/api-key-service.d.ts.map +1 -0
  16. package/dist/application/ports/api-key-service.js +10 -0
  17. package/dist/application/ports/api-key-service.js.map +1 -0
  18. package/dist/application/ports/artifact-store.d.ts +26 -0
  19. package/dist/application/ports/artifact-store.d.ts.map +1 -0
  20. package/dist/application/ports/artifact-store.js +11 -0
  21. package/dist/application/ports/artifact-store.js.map +1 -0
  22. package/dist/application/ports/auth-service.d.ts +38 -0
  23. package/dist/application/ports/auth-service.d.ts.map +1 -0
  24. package/dist/application/ports/auth-service.js +10 -0
  25. package/dist/application/ports/auth-service.js.map +1 -0
  26. package/dist/application/ports/billing-service.d.ts +84 -0
  27. package/dist/application/ports/billing-service.d.ts.map +1 -0
  28. package/dist/application/ports/billing-service.js +32 -0
  29. package/dist/application/ports/billing-service.js.map +1 -0
  30. package/dist/application/ports/cache-service.d.ts +45 -0
  31. package/dist/application/ports/cache-service.d.ts.map +1 -0
  32. package/dist/application/ports/cache-service.js +50 -0
  33. package/dist/application/ports/cache-service.js.map +1 -0
  34. package/dist/application/ports/config-service.d.ts +109 -0
  35. package/dist/application/ports/config-service.d.ts.map +1 -0
  36. package/dist/application/ports/config-service.js +286 -0
  37. package/dist/application/ports/config-service.js.map +1 -0
  38. package/dist/application/ports/kernel-browser-service.d.ts +25 -0
  39. package/dist/application/ports/kernel-browser-service.d.ts.map +1 -0
  40. package/dist/application/ports/kernel-browser-service.js +10 -0
  41. package/dist/application/ports/kernel-browser-service.js.map +1 -0
  42. package/dist/application/ports/local-extractor.d.ts +34 -0
  43. package/dist/application/ports/local-extractor.d.ts.map +1 -0
  44. package/dist/application/ports/local-extractor.js +11 -0
  45. package/dist/application/ports/local-extractor.js.map +1 -0
  46. package/dist/application/ports/markdown-renderer.d.ts +24 -0
  47. package/dist/application/ports/markdown-renderer.d.ts.map +1 -0
  48. package/dist/application/ports/markdown-renderer.js +11 -0
  49. package/dist/application/ports/markdown-renderer.js.map +1 -0
  50. package/dist/application/ports/metrics-service.d.ts +114 -0
  51. package/dist/application/ports/metrics-service.d.ts.map +1 -0
  52. package/dist/application/ports/metrics-service.js +269 -0
  53. package/dist/application/ports/metrics-service.js.map +1 -0
  54. package/dist/application/ports/observability-breadcrumbs.d.ts +20 -0
  55. package/dist/application/ports/observability-breadcrumbs.d.ts.map +1 -0
  56. package/dist/application/ports/observability-breadcrumbs.js +14 -0
  57. package/dist/application/ports/observability-breadcrumbs.js.map +1 -0
  58. package/dist/application/ports/outbound-http.d.ts +44 -0
  59. package/dist/application/ports/outbound-http.d.ts.map +1 -0
  60. package/dist/application/ports/outbound-http.js +35 -0
  61. package/dist/application/ports/outbound-http.js.map +1 -0
  62. package/dist/application/ports/provider-catalog.d.ts +12 -0
  63. package/dist/application/ports/provider-catalog.d.ts.map +1 -0
  64. package/dist/application/ports/provider-catalog.js +10 -0
  65. package/dist/application/ports/provider-catalog.js.map +1 -0
  66. package/dist/application/ports/provider-registry.d.ts +35 -0
  67. package/dist/application/ports/provider-registry.d.ts.map +1 -0
  68. package/dist/application/ports/provider-registry.js +119 -0
  69. package/dist/application/ports/provider-registry.js.map +1 -0
  70. package/dist/application/ports/url-safety-service.d.ts +13 -0
  71. package/dist/application/ports/url-safety-service.d.ts.map +1 -0
  72. package/dist/application/ports/url-safety-service.js +11 -0
  73. package/dist/application/ports/url-safety-service.js.map +1 -0
  74. package/dist/application/ports/usage-service.d.ts +234 -0
  75. package/dist/application/ports/usage-service.d.ts.map +1 -0
  76. package/dist/application/ports/usage-service.js +10 -0
  77. package/dist/application/ports/usage-service.js.map +1 -0
  78. package/dist/application/scheduling/provider-scheduler.d.ts +16 -0
  79. package/dist/application/scheduling/provider-scheduler.d.ts.map +1 -0
  80. package/dist/application/scheduling/provider-scheduler.js +82 -0
  81. package/dist/application/scheduling/provider-scheduler.js.map +1 -0
  82. package/dist/application/scheduling/throughput-controller.d.ts +20 -0
  83. package/dist/application/scheduling/throughput-controller.d.ts.map +1 -0
  84. package/dist/application/scheduling/throughput-controller.js +30 -0
  85. package/dist/application/scheduling/throughput-controller.js.map +1 -0
  86. package/dist/application/workflows/_cache-summary.d.ts +3 -0
  87. package/dist/application/workflows/_cache-summary.d.ts.map +1 -0
  88. package/dist/application/workflows/_cache-summary.js +17 -0
  89. package/dist/application/workflows/_cache-summary.js.map +1 -0
  90. package/dist/application/workflows/authenticated-process-run.d.ts +43 -0
  91. package/dist/application/workflows/authenticated-process-run.d.ts.map +1 -0
  92. package/dist/application/workflows/authenticated-process-run.js +122 -0
  93. package/dist/application/workflows/authenticated-process-run.js.map +1 -0
  94. package/dist/application/workflows/execute-strategy.d.ts +35 -0
  95. package/dist/application/workflows/execute-strategy.d.ts.map +1 -0
  96. package/dist/application/workflows/execute-strategy.js +128 -0
  97. package/dist/application/workflows/execute-strategy.js.map +1 -0
  98. package/dist/application/workflows/process-run.d.ts +14 -0
  99. package/dist/application/workflows/process-run.d.ts.map +1 -0
  100. package/dist/application/workflows/process-run.js +423 -0
  101. package/dist/application/workflows/process-run.js.map +1 -0
  102. package/dist/application/workflows/provider-batch-dispatcher.d.ts +65 -0
  103. package/dist/application/workflows/provider-batch-dispatcher.d.ts.map +1 -0
  104. package/dist/application/workflows/provider-batch-dispatcher.js +359 -0
  105. package/dist/application/workflows/provider-batch-dispatcher.js.map +1 -0
  106. package/dist/application/workflows/render-result.d.ts +5 -0
  107. package/dist/application/workflows/render-result.d.ts.map +1 -0
  108. package/dist/application/workflows/render-result.js +13 -0
  109. package/dist/application/workflows/render-result.js.map +1 -0
  110. package/dist/application/workflows/resolve-request.d.ts +10 -0
  111. package/dist/application/workflows/resolve-request.d.ts.map +1 -0
  112. package/dist/application/workflows/resolve-request.js +26 -0
  113. package/dist/application/workflows/resolve-request.js.map +1 -0
  114. package/dist/domain/error-envelope.d.ts +11 -0
  115. package/dist/domain/error-envelope.d.ts.map +1 -0
  116. package/dist/domain/error-envelope.js +79 -0
  117. package/dist/domain/error-envelope.js.map +1 -0
  118. package/dist/domain/error-mapping.d.ts +138 -0
  119. package/dist/domain/error-mapping.d.ts.map +1 -0
  120. package/dist/domain/error-mapping.js +143 -0
  121. package/dist/domain/error-mapping.js.map +1 -0
  122. package/dist/domain/errors.d.ts +365 -0
  123. package/dist/domain/errors.d.ts.map +1 -0
  124. package/dist/domain/errors.js +258 -0
  125. package/dist/domain/errors.js.map +1 -0
  126. package/dist/domain/ids.d.ts +14 -0
  127. package/dist/domain/ids.d.ts.map +1 -0
  128. package/dist/domain/ids.js +12 -0
  129. package/dist/domain/ids.js.map +1 -0
  130. package/dist/domain/json.d.ts +8 -0
  131. package/dist/domain/json.d.ts.map +1 -0
  132. package/dist/domain/json.js +10 -0
  133. package/dist/domain/json.js.map +1 -0
  134. package/dist/domain/provider.d.ts +93 -0
  135. package/dist/domain/provider.d.ts.map +1 -0
  136. package/dist/domain/provider.js +5 -0
  137. package/dist/domain/provider.js.map +1 -0
  138. package/dist/domain/request.d.ts +43 -0
  139. package/dist/domain/request.d.ts.map +1 -0
  140. package/dist/domain/request.js +45 -0
  141. package/dist/domain/request.js.map +1 -0
  142. package/dist/domain/response-envelope.d.ts +11 -0
  143. package/dist/domain/response-envelope.d.ts.map +1 -0
  144. package/dist/domain/response-envelope.js +5 -0
  145. package/dist/domain/response-envelope.js.map +1 -0
  146. package/dist/domain/result.d.ts +258 -0
  147. package/dist/domain/result.d.ts.map +1 -0
  148. package/dist/domain/result.js +136 -0
  149. package/dist/domain/result.js.map +1 -0
  150. package/dist/domain/scopes.d.ts +35 -0
  151. package/dist/domain/scopes.d.ts.map +1 -0
  152. package/dist/domain/scopes.js +51 -0
  153. package/dist/domain/scopes.js.map +1 -0
  154. package/dist/domain/service-ids.d.ts +2 -0
  155. package/dist/domain/service-ids.d.ts.map +1 -0
  156. package/dist/domain/service-ids.js +7 -0
  157. package/dist/domain/service-ids.js.map +1 -0
  158. package/dist/infrastructure/artifacts/filesystem-artifact-store.d.ts +6 -0
  159. package/dist/infrastructure/artifacts/filesystem-artifact-store.d.ts.map +1 -0
  160. package/dist/infrastructure/artifacts/filesystem-artifact-store.js +146 -0
  161. package/dist/infrastructure/artifacts/filesystem-artifact-store.js.map +1 -0
  162. package/dist/infrastructure/auth/api-key-service-live.d.ts +34 -0
  163. package/dist/infrastructure/auth/api-key-service-live.d.ts.map +1 -0
  164. package/dist/infrastructure/auth/api-key-service-live.js +217 -0
  165. package/dist/infrastructure/auth/api-key-service-live.js.map +1 -0
  166. package/dist/infrastructure/auth/supabase-auth-live.d.ts +56 -0
  167. package/dist/infrastructure/auth/supabase-auth-live.d.ts.map +1 -0
  168. package/dist/infrastructure/auth/supabase-auth-live.js +241 -0
  169. package/dist/infrastructure/auth/supabase-auth-live.js.map +1 -0
  170. package/dist/infrastructure/billing/stripe-billing-live.d.ts +73 -0
  171. package/dist/infrastructure/billing/stripe-billing-live.d.ts.map +1 -0
  172. package/dist/infrastructure/billing/stripe-billing-live.js +296 -0
  173. package/dist/infrastructure/billing/stripe-billing-live.js.map +1 -0
  174. package/dist/infrastructure/cache/filesystem-live.d.ts +4 -0
  175. package/dist/infrastructure/cache/filesystem-live.d.ts.map +1 -0
  176. package/dist/infrastructure/cache/filesystem-live.js +15 -0
  177. package/dist/infrastructure/cache/filesystem-live.js.map +1 -0
  178. package/dist/infrastructure/cache/key.d.ts +2 -0
  179. package/dist/infrastructure/cache/key.d.ts.map +1 -0
  180. package/dist/infrastructure/cache/key.js +5 -0
  181. package/dist/infrastructure/cache/key.js.map +1 -0
  182. package/dist/infrastructure/cache/keyvalue-live.d.ts +5 -0
  183. package/dist/infrastructure/cache/keyvalue-live.d.ts.map +1 -0
  184. package/dist/infrastructure/cache/keyvalue-live.js +181 -0
  185. package/dist/infrastructure/cache/keyvalue-live.js.map +1 -0
  186. package/dist/infrastructure/cache/live.d.ts +5 -0
  187. package/dist/infrastructure/cache/live.d.ts.map +1 -0
  188. package/dist/infrastructure/cache/live.js +26 -0
  189. package/dist/infrastructure/cache/live.js.map +1 -0
  190. package/dist/infrastructure/cache/memory-live.d.ts +3 -0
  191. package/dist/infrastructure/cache/memory-live.d.ts.map +1 -0
  192. package/dist/infrastructure/cache/memory-live.js +8 -0
  193. package/dist/infrastructure/cache/memory-live.js.map +1 -0
  194. package/dist/infrastructure/cache/redis-live.d.ts +49 -0
  195. package/dist/infrastructure/cache/redis-live.d.ts.map +1 -0
  196. package/dist/infrastructure/cache/redis-live.js +351 -0
  197. package/dist/infrastructure/cache/redis-live.js.map +1 -0
  198. package/dist/infrastructure/config/env.d.ts +6 -0
  199. package/dist/infrastructure/config/env.d.ts.map +1 -0
  200. package/dist/infrastructure/config/env.js +15 -0
  201. package/dist/infrastructure/config/env.js.map +1 -0
  202. package/dist/infrastructure/extraction/local-extractor-live.d.ts +5 -0
  203. package/dist/infrastructure/extraction/local-extractor-live.d.ts.map +1 -0
  204. package/dist/infrastructure/extraction/local-extractor-live.js +160 -0
  205. package/dist/infrastructure/extraction/local-extractor-live.js.map +1 -0
  206. package/dist/infrastructure/http/outbound-http-live.d.ts +27 -0
  207. package/dist/infrastructure/http/outbound-http-live.d.ts.map +1 -0
  208. package/dist/infrastructure/http/outbound-http-live.js +597 -0
  209. package/dist/infrastructure/http/outbound-http-live.js.map +1 -0
  210. package/dist/infrastructure/http/url-safety-live.d.ts +12 -0
  211. package/dist/infrastructure/http/url-safety-live.d.ts.map +1 -0
  212. package/dist/infrastructure/http/url-safety-live.js +187 -0
  213. package/dist/infrastructure/http/url-safety-live.js.map +1 -0
  214. package/dist/infrastructure/kernel-browser-live.d.ts +32 -0
  215. package/dist/infrastructure/kernel-browser-live.d.ts.map +1 -0
  216. package/dist/infrastructure/kernel-browser-live.js +141 -0
  217. package/dist/infrastructure/kernel-browser-live.js.map +1 -0
  218. package/dist/infrastructure/markdown/handlebars-renderer.d.ts +16 -0
  219. package/dist/infrastructure/markdown/handlebars-renderer.d.ts.map +1 -0
  220. package/dist/infrastructure/markdown/handlebars-renderer.js +360 -0
  221. package/dist/infrastructure/markdown/handlebars-renderer.js.map +1 -0
  222. package/dist/infrastructure/markdown/renderer.d.ts +39 -0
  223. package/dist/infrastructure/markdown/renderer.d.ts.map +1 -0
  224. package/dist/infrastructure/markdown/renderer.js +276 -0
  225. package/dist/infrastructure/markdown/renderer.js.map +1 -0
  226. package/dist/infrastructure/markdown/scrape-creators-error-formatter.d.ts +7 -0
  227. package/dist/infrastructure/markdown/scrape-creators-error-formatter.d.ts.map +1 -0
  228. package/dist/infrastructure/markdown/scrape-creators-error-formatter.js +44 -0
  229. package/dist/infrastructure/markdown/scrape-creators-error-formatter.js.map +1 -0
  230. package/dist/infrastructure/markdown/scrape-creators-formatter.d.ts +3 -0
  231. package/dist/infrastructure/markdown/scrape-creators-formatter.d.ts.map +1 -0
  232. package/dist/infrastructure/markdown/scrape-creators-formatter.js +434 -0
  233. package/dist/infrastructure/markdown/scrape-creators-formatter.js.map +1 -0
  234. package/dist/infrastructure/markdown/value-format.d.ts +7 -0
  235. package/dist/infrastructure/markdown/value-format.d.ts.map +1 -0
  236. package/dist/infrastructure/markdown/value-format.js +54 -0
  237. package/dist/infrastructure/markdown/value-format.js.map +1 -0
  238. package/dist/infrastructure/observability/breadcrumbs-live.d.ts +4 -0
  239. package/dist/infrastructure/observability/breadcrumbs-live.d.ts.map +1 -0
  240. package/dist/infrastructure/observability/breadcrumbs-live.js +27 -0
  241. package/dist/infrastructure/observability/breadcrumbs-live.js.map +1 -0
  242. package/dist/infrastructure/observability/otel-live.d.ts +3 -0
  243. package/dist/infrastructure/observability/otel-live.d.ts.map +1 -0
  244. package/dist/infrastructure/observability/otel-live.js +35 -0
  245. package/dist/infrastructure/observability/otel-live.js.map +1 -0
  246. package/dist/infrastructure/observability/sentry-logger-live.d.ts +2 -0
  247. package/dist/infrastructure/observability/sentry-logger-live.d.ts.map +1 -0
  248. package/dist/infrastructure/observability/sentry-logger-live.js +76 -0
  249. package/dist/infrastructure/observability/sentry-logger-live.js.map +1 -0
  250. package/dist/infrastructure/observability/sentry.d.ts +60 -0
  251. package/dist/infrastructure/observability/sentry.d.ts.map +1 -0
  252. package/dist/infrastructure/observability/sentry.js +303 -0
  253. package/dist/infrastructure/observability/sentry.js.map +1 -0
  254. package/dist/infrastructure/providers/catalog-live.d.ts +4 -0
  255. package/dist/infrastructure/providers/catalog-live.d.ts.map +1 -0
  256. package/dist/infrastructure/providers/catalog-live.js +79 -0
  257. package/dist/infrastructure/providers/catalog-live.js.map +1 -0
  258. package/dist/infrastructure/providers/generic-url/manifest.d.ts +12 -0
  259. package/dist/infrastructure/providers/generic-url/manifest.d.ts.map +1 -0
  260. package/dist/infrastructure/providers/generic-url/manifest.js +344 -0
  261. package/dist/infrastructure/providers/generic-url/manifest.js.map +1 -0
  262. package/dist/infrastructure/providers/scrape-creators/_service-helpers.d.ts +28 -0
  263. package/dist/infrastructure/providers/scrape-creators/_service-helpers.d.ts.map +1 -0
  264. package/dist/infrastructure/providers/scrape-creators/_service-helpers.js +36 -0
  265. package/dist/infrastructure/providers/scrape-creators/_service-helpers.js.map +1 -0
  266. package/dist/infrastructure/providers/scrape-creators/_shared.d.ts +35 -0
  267. package/dist/infrastructure/providers/scrape-creators/_shared.d.ts.map +1 -0
  268. package/dist/infrastructure/providers/scrape-creators/_shared.js +112 -0
  269. package/dist/infrastructure/providers/scrape-creators/_shared.js.map +1 -0
  270. package/dist/infrastructure/providers/scrape-creators/age-gender/_shared.d.ts +8 -0
  271. package/dist/infrastructure/providers/scrape-creators/age-gender/_shared.d.ts.map +1 -0
  272. package/dist/infrastructure/providers/scrape-creators/age-gender/_shared.js +16 -0
  273. package/dist/infrastructure/providers/scrape-creators/age-gender/_shared.js.map +1 -0
  274. package/dist/infrastructure/providers/scrape-creators/age-gender/detect-age-gender.d.ts +87 -0
  275. package/dist/infrastructure/providers/scrape-creators/age-gender/detect-age-gender.d.ts.map +1 -0
  276. package/dist/infrastructure/providers/scrape-creators/age-gender/detect-age-gender.js +40 -0
  277. package/dist/infrastructure/providers/scrape-creators/age-gender/detect-age-gender.js.map +1 -0
  278. package/dist/infrastructure/providers/scrape-creators/age-gender/manifest.d.ts +136 -0
  279. package/dist/infrastructure/providers/scrape-creators/age-gender/manifest.d.ts.map +1 -0
  280. package/dist/infrastructure/providers/scrape-creators/age-gender/manifest.js +18 -0
  281. package/dist/infrastructure/providers/scrape-creators/age-gender/manifest.js.map +1 -0
  282. package/dist/infrastructure/providers/scrape-creators/amazon-shop/_shared.d.ts +8 -0
  283. package/dist/infrastructure/providers/scrape-creators/amazon-shop/_shared.d.ts.map +1 -0
  284. package/dist/infrastructure/providers/scrape-creators/amazon-shop/_shared.js +16 -0
  285. package/dist/infrastructure/providers/scrape-creators/amazon-shop/_shared.js.map +1 -0
  286. package/dist/infrastructure/providers/scrape-creators/amazon-shop/manifest.d.ts +180 -0
  287. package/dist/infrastructure/providers/scrape-creators/amazon-shop/manifest.d.ts.map +1 -0
  288. package/dist/infrastructure/providers/scrape-creators/amazon-shop/manifest.js +18 -0
  289. package/dist/infrastructure/providers/scrape-creators/amazon-shop/manifest.js.map +1 -0
  290. package/dist/infrastructure/providers/scrape-creators/amazon-shop/profile.d.ts +117 -0
  291. package/dist/infrastructure/providers/scrape-creators/amazon-shop/profile.d.ts.map +1 -0
  292. package/dist/infrastructure/providers/scrape-creators/amazon-shop/profile.js +48 -0
  293. package/dist/infrastructure/providers/scrape-creators/amazon-shop/profile.js.map +1 -0
  294. package/dist/infrastructure/providers/scrape-creators/bluesky/_shared.d.ts +8 -0
  295. package/dist/infrastructure/providers/scrape-creators/bluesky/_shared.d.ts.map +1 -0
  296. package/dist/infrastructure/providers/scrape-creators/bluesky/_shared.js +16 -0
  297. package/dist/infrastructure/providers/scrape-creators/bluesky/_shared.js.map +1 -0
  298. package/dist/infrastructure/providers/scrape-creators/bluesky/manifest.d.ts +462 -0
  299. package/dist/infrastructure/providers/scrape-creators/bluesky/manifest.d.ts.map +1 -0
  300. package/dist/infrastructure/providers/scrape-creators/bluesky/manifest.js +24 -0
  301. package/dist/infrastructure/providers/scrape-creators/bluesky/manifest.js.map +1 -0
  302. package/dist/infrastructure/providers/scrape-creators/bluesky/post.d.ts +84 -0
  303. package/dist/infrastructure/providers/scrape-creators/bluesky/post.d.ts.map +1 -0
  304. package/dist/infrastructure/providers/scrape-creators/bluesky/post.js +39 -0
  305. package/dist/infrastructure/providers/scrape-creators/bluesky/post.js.map +1 -0
  306. package/dist/infrastructure/providers/scrape-creators/bluesky/profile.d.ts +137 -0
  307. package/dist/infrastructure/providers/scrape-creators/bluesky/profile.d.ts.map +1 -0
  308. package/dist/infrastructure/providers/scrape-creators/bluesky/profile.js +54 -0
  309. package/dist/infrastructure/providers/scrape-creators/bluesky/profile.js.map +1 -0
  310. package/dist/infrastructure/providers/scrape-creators/bluesky/user-posts.d.ts +90 -0
  311. package/dist/infrastructure/providers/scrape-creators/bluesky/user-posts.d.ts.map +1 -0
  312. package/dist/infrastructure/providers/scrape-creators/bluesky/user-posts.js +41 -0
  313. package/dist/infrastructure/providers/scrape-creators/bluesky/user-posts.js.map +1 -0
  314. package/dist/infrastructure/providers/scrape-creators/facebook/_shared.d.ts +8 -0
  315. package/dist/infrastructure/providers/scrape-creators/facebook/_shared.d.ts.map +1 -0
  316. package/dist/infrastructure/providers/scrape-creators/facebook/_shared.js +16 -0
  317. package/dist/infrastructure/providers/scrape-creators/facebook/_shared.js.map +1 -0
  318. package/dist/infrastructure/providers/scrape-creators/facebook/comment-replies.d.ts +90 -0
  319. package/dist/infrastructure/providers/scrape-creators/facebook/comment-replies.d.ts.map +1 -0
  320. package/dist/infrastructure/providers/scrape-creators/facebook/comment-replies.js +40 -0
  321. package/dist/infrastructure/providers/scrape-creators/facebook/comment-replies.js.map +1 -0
  322. package/dist/infrastructure/providers/scrape-creators/facebook/comments.d.ts +88 -0
  323. package/dist/infrastructure/providers/scrape-creators/facebook/comments.d.ts.map +1 -0
  324. package/dist/infrastructure/providers/scrape-creators/facebook/comments.js +40 -0
  325. package/dist/infrastructure/providers/scrape-creators/facebook/comments.js.map +1 -0
  326. package/dist/infrastructure/providers/scrape-creators/facebook/group-posts.d.ts +85 -0
  327. package/dist/infrastructure/providers/scrape-creators/facebook/group-posts.d.ts.map +1 -0
  328. package/dist/infrastructure/providers/scrape-creators/facebook/group-posts.js +39 -0
  329. package/dist/infrastructure/providers/scrape-creators/facebook/group-posts.js.map +1 -0
  330. package/dist/infrastructure/providers/scrape-creators/facebook/manifest.d.ts +1443 -0
  331. package/dist/infrastructure/providers/scrape-creators/facebook/manifest.d.ts.map +1 -0
  332. package/dist/infrastructure/providers/scrape-creators/facebook/manifest.js +45 -0
  333. package/dist/infrastructure/providers/scrape-creators/facebook/manifest.js.map +1 -0
  334. package/dist/infrastructure/providers/scrape-creators/facebook/post-transcript.d.ts +82 -0
  335. package/dist/infrastructure/providers/scrape-creators/facebook/post-transcript.d.ts.map +1 -0
  336. package/dist/infrastructure/providers/scrape-creators/facebook/post-transcript.js +38 -0
  337. package/dist/infrastructure/providers/scrape-creators/facebook/post-transcript.js.map +1 -0
  338. package/dist/infrastructure/providers/scrape-creators/facebook/post.d.ts +203 -0
  339. package/dist/infrastructure/providers/scrape-creators/facebook/post.d.ts.map +1 -0
  340. package/dist/infrastructure/providers/scrape-creators/facebook/post.js +77 -0
  341. package/dist/infrastructure/providers/scrape-creators/facebook/post.js.map +1 -0
  342. package/dist/infrastructure/providers/scrape-creators/facebook/profile-events.d.ts +88 -0
  343. package/dist/infrastructure/providers/scrape-creators/facebook/profile-events.d.ts.map +1 -0
  344. package/dist/infrastructure/providers/scrape-creators/facebook/profile-events.js +40 -0
  345. package/dist/infrastructure/providers/scrape-creators/facebook/profile-events.js.map +1 -0
  346. package/dist/infrastructure/providers/scrape-creators/facebook/profile-photos.d.ts +85 -0
  347. package/dist/infrastructure/providers/scrape-creators/facebook/profile-photos.d.ts.map +1 -0
  348. package/dist/infrastructure/providers/scrape-creators/facebook/profile-photos.js +39 -0
  349. package/dist/infrastructure/providers/scrape-creators/facebook/profile-photos.js.map +1 -0
  350. package/dist/infrastructure/providers/scrape-creators/facebook/profile-posts.d.ts +85 -0
  351. package/dist/infrastructure/providers/scrape-creators/facebook/profile-posts.d.ts.map +1 -0
  352. package/dist/infrastructure/providers/scrape-creators/facebook/profile-posts.js +39 -0
  353. package/dist/infrastructure/providers/scrape-creators/facebook/profile-posts.js.map +1 -0
  354. package/dist/infrastructure/providers/scrape-creators/facebook/profile-reels.d.ts +85 -0
  355. package/dist/infrastructure/providers/scrape-creators/facebook/profile-reels.d.ts.map +1 -0
  356. package/dist/infrastructure/providers/scrape-creators/facebook/profile-reels.js +39 -0
  357. package/dist/infrastructure/providers/scrape-creators/facebook/profile-reels.js.map +1 -0
  358. package/dist/infrastructure/providers/scrape-creators/facebook/profile.d.ts +105 -0
  359. package/dist/infrastructure/providers/scrape-creators/facebook/profile.d.ts.map +1 -0
  360. package/dist/infrastructure/providers/scrape-creators/facebook/profile.js +45 -0
  361. package/dist/infrastructure/providers/scrape-creators/facebook/profile.js.map +1 -0
  362. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/_shared.d.ts +8 -0
  363. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/_shared.d.ts.map +1 -0
  364. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/_shared.js +16 -0
  365. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/_shared.js.map +1 -0
  366. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-detail.d.ts +119 -0
  367. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-detail.d.ts.map +1 -0
  368. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-detail.js +49 -0
  369. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-detail.js.map +1 -0
  370. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-search.d.ts +98 -0
  371. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-search.d.ts.map +1 -0
  372. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-search.js +42 -0
  373. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/ad-search.js.map +1 -0
  374. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-ads.d.ts +93 -0
  375. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-ads.d.ts.map +1 -0
  376. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-ads.js +42 -0
  377. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-ads.js.map +1 -0
  378. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-search.d.ts +90 -0
  379. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-search.d.ts.map +1 -0
  380. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-search.js +41 -0
  381. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/company-search.js.map +1 -0
  382. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/manifest.d.ts +589 -0
  383. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/manifest.d.ts.map +1 -0
  384. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/manifest.js +27 -0
  385. package/dist/infrastructure/providers/scrape-creators/facebook-ad-library/manifest.js.map +1 -0
  386. package/dist/infrastructure/providers/scrape-creators/facebook-events/_shared.d.ts +8 -0
  387. package/dist/infrastructure/providers/scrape-creators/facebook-events/_shared.d.ts.map +1 -0
  388. package/dist/infrastructure/providers/scrape-creators/facebook-events/_shared.js +16 -0
  389. package/dist/infrastructure/providers/scrape-creators/facebook-events/_shared.js.map +1 -0
  390. package/dist/infrastructure/providers/scrape-creators/facebook-events/city-events.d.ts +85 -0
  391. package/dist/infrastructure/providers/scrape-creators/facebook-events/city-events.d.ts.map +1 -0
  392. package/dist/infrastructure/providers/scrape-creators/facebook-events/city-events.js +39 -0
  393. package/dist/infrastructure/providers/scrape-creators/facebook-events/city-events.js.map +1 -0
  394. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-detail.d.ts +148 -0
  395. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-detail.d.ts.map +1 -0
  396. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-detail.js +58 -0
  397. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-detail.js.map +1 -0
  398. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-search.d.ts +90 -0
  399. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-search.d.ts.map +1 -0
  400. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-search.js +40 -0
  401. package/dist/infrastructure/providers/scrape-creators/facebook-events/event-search.js.map +1 -0
  402. package/dist/infrastructure/providers/scrape-creators/facebook-events/manifest.d.ts +474 -0
  403. package/dist/infrastructure/providers/scrape-creators/facebook-events/manifest.d.ts.map +1 -0
  404. package/dist/infrastructure/providers/scrape-creators/facebook-events/manifest.js +24 -0
  405. package/dist/infrastructure/providers/scrape-creators/facebook-events/manifest.js.map +1 -0
  406. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/_shared.d.ts +8 -0
  407. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/_shared.d.ts.map +1 -0
  408. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/_shared.js +16 -0
  409. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/_shared.js.map +1 -0
  410. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/listing-detail.d.ts +136 -0
  411. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/listing-detail.d.ts.map +1 -0
  412. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/listing-detail.js +52 -0
  413. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/listing-detail.js.map +1 -0
  414. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/manifest.d.ts +466 -0
  415. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/manifest.d.ts.map +1 -0
  416. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/manifest.js +24 -0
  417. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/manifest.js.map +1 -0
  418. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-location-search.d.ts +84 -0
  419. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-location-search.d.ts.map +1 -0
  420. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-location-search.js +39 -0
  421. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-location-search.js.map +1 -0
  422. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-search.d.ts +93 -0
  423. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-search.d.ts.map +1 -0
  424. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-search.js +42 -0
  425. package/dist/infrastructure/providers/scrape-creators/facebook-marketplace/marketplace-search.js.map +1 -0
  426. package/dist/infrastructure/providers/scrape-creators/github/_shared.d.ts +8 -0
  427. package/dist/infrastructure/providers/scrape-creators/github/_shared.d.ts.map +1 -0
  428. package/dist/infrastructure/providers/scrape-creators/github/_shared.js +16 -0
  429. package/dist/infrastructure/providers/scrape-creators/github/_shared.js.map +1 -0
  430. package/dist/infrastructure/providers/scrape-creators/github/manifest.d.ts +1176 -0
  431. package/dist/infrastructure/providers/scrape-creators/github/manifest.d.ts.map +1 -0
  432. package/dist/infrastructure/providers/scrape-creators/github/manifest.js +42 -0
  433. package/dist/infrastructure/providers/scrape-creators/github/manifest.js.map +1 -0
  434. package/dist/infrastructure/providers/scrape-creators/github/repository.d.ts +79 -0
  435. package/dist/infrastructure/providers/scrape-creators/github/repository.d.ts.map +1 -0
  436. package/dist/infrastructure/providers/scrape-creators/github/repository.js +38 -0
  437. package/dist/infrastructure/providers/scrape-creators/github/repository.js.map +1 -0
  438. package/dist/infrastructure/providers/scrape-creators/github/trending-developers.d.ts +85 -0
  439. package/dist/infrastructure/providers/scrape-creators/github/trending-developers.d.ts.map +1 -0
  440. package/dist/infrastructure/providers/scrape-creators/github/trending-developers.js +40 -0
  441. package/dist/infrastructure/providers/scrape-creators/github/trending-developers.js.map +1 -0
  442. package/dist/infrastructure/providers/scrape-creators/github/trending-repositories.d.ts +88 -0
  443. package/dist/infrastructure/providers/scrape-creators/github/trending-repositories.d.ts.map +1 -0
  444. package/dist/infrastructure/providers/scrape-creators/github/trending-repositories.js +41 -0
  445. package/dist/infrastructure/providers/scrape-creators/github/trending-repositories.js.map +1 -0
  446. package/dist/infrastructure/providers/scrape-creators/github/user-activity.d.ts +94 -0
  447. package/dist/infrastructure/providers/scrape-creators/github/user-activity.d.ts.map +1 -0
  448. package/dist/infrastructure/providers/scrape-creators/github/user-activity.js +43 -0
  449. package/dist/infrastructure/providers/scrape-creators/github/user-activity.js.map +1 -0
  450. package/dist/infrastructure/providers/scrape-creators/github/user-contributions.d.ts +79 -0
  451. package/dist/infrastructure/providers/scrape-creators/github/user-contributions.d.ts.map +1 -0
  452. package/dist/infrastructure/providers/scrape-creators/github/user-contributions.js +38 -0
  453. package/dist/infrastructure/providers/scrape-creators/github/user-contributions.js.map +1 -0
  454. package/dist/infrastructure/providers/scrape-creators/github/user-followers.d.ts +85 -0
  455. package/dist/infrastructure/providers/scrape-creators/github/user-followers.d.ts.map +1 -0
  456. package/dist/infrastructure/providers/scrape-creators/github/user-followers.js +62 -0
  457. package/dist/infrastructure/providers/scrape-creators/github/user-followers.js.map +1 -0
  458. package/dist/infrastructure/providers/scrape-creators/github/user-following.d.ts +85 -0
  459. package/dist/infrastructure/providers/scrape-creators/github/user-following.d.ts.map +1 -0
  460. package/dist/infrastructure/providers/scrape-creators/github/user-following.js +62 -0
  461. package/dist/infrastructure/providers/scrape-creators/github/user-following.js.map +1 -0
  462. package/dist/infrastructure/providers/scrape-creators/github/user-repositories.d.ts +82 -0
  463. package/dist/infrastructure/providers/scrape-creators/github/user-repositories.d.ts.map +1 -0
  464. package/dist/infrastructure/providers/scrape-creators/github/user-repositories.js +39 -0
  465. package/dist/infrastructure/providers/scrape-creators/github/user-repositories.js.map +1 -0
  466. package/dist/infrastructure/providers/scrape-creators/github/user.d.ts +134 -0
  467. package/dist/infrastructure/providers/scrape-creators/github/user.d.ts.map +1 -0
  468. package/dist/infrastructure/providers/scrape-creators/github/user.js +57 -0
  469. package/dist/infrastructure/providers/scrape-creators/github/user.js.map +1 -0
  470. package/dist/infrastructure/providers/scrape-creators/google/_shared.d.ts +8 -0
  471. package/dist/infrastructure/providers/scrape-creators/google/_shared.d.ts.map +1 -0
  472. package/dist/infrastructure/providers/scrape-creators/google/_shared.js +16 -0
  473. package/dist/infrastructure/providers/scrape-creators/google/_shared.js.map +1 -0
  474. package/dist/infrastructure/providers/scrape-creators/google/manifest.d.ts +132 -0
  475. package/dist/infrastructure/providers/scrape-creators/google/manifest.d.ts.map +1 -0
  476. package/dist/infrastructure/providers/scrape-creators/google/manifest.js +18 -0
  477. package/dist/infrastructure/providers/scrape-creators/google/manifest.js.map +1 -0
  478. package/dist/infrastructure/providers/scrape-creators/google/search.d.ts +85 -0
  479. package/dist/infrastructure/providers/scrape-creators/google/search.d.ts.map +1 -0
  480. package/dist/infrastructure/providers/scrape-creators/google/search.js +40 -0
  481. package/dist/infrastructure/providers/scrape-creators/google/search.js.map +1 -0
  482. package/dist/infrastructure/providers/scrape-creators/google-ad-library/_shared.d.ts +8 -0
  483. package/dist/infrastructure/providers/scrape-creators/google-ad-library/_shared.d.ts.map +1 -0
  484. package/dist/infrastructure/providers/scrape-creators/google-ad-library/_shared.js +16 -0
  485. package/dist/infrastructure/providers/scrape-creators/google-ad-library/_shared.js.map +1 -0
  486. package/dist/infrastructure/providers/scrape-creators/google-ad-library/ad-detail.d.ts +131 -0
  487. package/dist/infrastructure/providers/scrape-creators/google-ad-library/ad-detail.d.ts.map +1 -0
  488. package/dist/infrastructure/providers/scrape-creators/google-ad-library/ad-detail.js +52 -0
  489. package/dist/infrastructure/providers/scrape-creators/google-ad-library/ad-detail.js.map +1 -0
  490. package/dist/infrastructure/providers/scrape-creators/google-ad-library/advertiser-search.d.ts +112 -0
  491. package/dist/infrastructure/providers/scrape-creators/google-ad-library/advertiser-search.d.ts.map +1 -0
  492. package/dist/infrastructure/providers/scrape-creators/google-ad-library/advertiser-search.js +52 -0
  493. package/dist/infrastructure/providers/scrape-creators/google-ad-library/advertiser-search.js.map +1 -0
  494. package/dist/infrastructure/providers/scrape-creators/google-ad-library/company-ads.d.ts +85 -0
  495. package/dist/infrastructure/providers/scrape-creators/google-ad-library/company-ads.d.ts.map +1 -0
  496. package/dist/infrastructure/providers/scrape-creators/google-ad-library/company-ads.js +40 -0
  497. package/dist/infrastructure/providers/scrape-creators/google-ad-library/company-ads.js.map +1 -0
  498. package/dist/infrastructure/providers/scrape-creators/google-ad-library/manifest.d.ts +482 -0
  499. package/dist/infrastructure/providers/scrape-creators/google-ad-library/manifest.d.ts.map +1 -0
  500. package/dist/infrastructure/providers/scrape-creators/google-ad-library/manifest.js +24 -0
  501. package/dist/infrastructure/providers/scrape-creators/google-ad-library/manifest.js.map +1 -0
  502. package/dist/infrastructure/providers/scrape-creators/instagram/_shared.d.ts +8 -0
  503. package/dist/infrastructure/providers/scrape-creators/instagram/_shared.d.ts.map +1 -0
  504. package/dist/infrastructure/providers/scrape-creators/instagram/_shared.js +16 -0
  505. package/dist/infrastructure/providers/scrape-creators/instagram/_shared.js.map +1 -0
  506. package/dist/infrastructure/providers/scrape-creators/instagram/basic-profile.d.ts +92 -0
  507. package/dist/infrastructure/providers/scrape-creators/instagram/basic-profile.d.ts.map +1 -0
  508. package/dist/infrastructure/providers/scrape-creators/instagram/basic-profile.js +39 -0
  509. package/dist/infrastructure/providers/scrape-creators/instagram/basic-profile.js.map +1 -0
  510. package/dist/infrastructure/providers/scrape-creators/instagram/comments.d.ts +82 -0
  511. package/dist/infrastructure/providers/scrape-creators/instagram/comments.d.ts.map +1 -0
  512. package/dist/infrastructure/providers/scrape-creators/instagram/comments.js +39 -0
  513. package/dist/infrastructure/providers/scrape-creators/instagram/comments.js.map +1 -0
  514. package/dist/infrastructure/providers/scrape-creators/instagram/embed-html.d.ts +74 -0
  515. package/dist/infrastructure/providers/scrape-creators/instagram/embed-html.d.ts.map +1 -0
  516. package/dist/infrastructure/providers/scrape-creators/instagram/embed-html.js +36 -0
  517. package/dist/infrastructure/providers/scrape-creators/instagram/embed-html.js.map +1 -0
  518. package/dist/infrastructure/providers/scrape-creators/instagram/highlight-detail.d.ts +103 -0
  519. package/dist/infrastructure/providers/scrape-creators/instagram/highlight-detail.d.ts.map +1 -0
  520. package/dist/infrastructure/providers/scrape-creators/instagram/highlight-detail.js +46 -0
  521. package/dist/infrastructure/providers/scrape-creators/instagram/highlight-detail.js.map +1 -0
  522. package/dist/infrastructure/providers/scrape-creators/instagram/manifest.d.ts +1796 -0
  523. package/dist/infrastructure/providers/scrape-creators/instagram/manifest.d.ts.map +1 -0
  524. package/dist/infrastructure/providers/scrape-creators/instagram/manifest.js +54 -0
  525. package/dist/infrastructure/providers/scrape-creators/instagram/manifest.js.map +1 -0
  526. package/dist/infrastructure/providers/scrape-creators/instagram/post.d.ts +138 -0
  527. package/dist/infrastructure/providers/scrape-creators/instagram/post.d.ts.map +1 -0
  528. package/dist/infrastructure/providers/scrape-creators/instagram/post.js +55 -0
  529. package/dist/infrastructure/providers/scrape-creators/instagram/post.js.map +1 -0
  530. package/dist/infrastructure/providers/scrape-creators/instagram/posts.d.ts +90 -0
  531. package/dist/infrastructure/providers/scrape-creators/instagram/posts.d.ts.map +1 -0
  532. package/dist/infrastructure/providers/scrape-creators/instagram/posts.js +41 -0
  533. package/dist/infrastructure/providers/scrape-creators/instagram/posts.js.map +1 -0
  534. package/dist/infrastructure/providers/scrape-creators/instagram/profile.d.ts +134 -0
  535. package/dist/infrastructure/providers/scrape-creators/instagram/profile.d.ts.map +1 -0
  536. package/dist/infrastructure/providers/scrape-creators/instagram/profile.js +57 -0
  537. package/dist/infrastructure/providers/scrape-creators/instagram/profile.js.map +1 -0
  538. package/dist/infrastructure/providers/scrape-creators/instagram/reels.d.ts +84 -0
  539. package/dist/infrastructure/providers/scrape-creators/instagram/reels.d.ts.map +1 -0
  540. package/dist/infrastructure/providers/scrape-creators/instagram/reels.js +39 -0
  541. package/dist/infrastructure/providers/scrape-creators/instagram/reels.js.map +1 -0
  542. package/dist/infrastructure/providers/scrape-creators/instagram/search-reels.d.ts +79 -0
  543. package/dist/infrastructure/providers/scrape-creators/instagram/search-reels.d.ts.map +1 -0
  544. package/dist/infrastructure/providers/scrape-creators/instagram/search-reels.js +38 -0
  545. package/dist/infrastructure/providers/scrape-creators/instagram/search-reels.js.map +1 -0
  546. package/dist/infrastructure/providers/scrape-creators/instagram/song-reels.d.ts +124 -0
  547. package/dist/infrastructure/providers/scrape-creators/instagram/song-reels.d.ts.map +1 -0
  548. package/dist/infrastructure/providers/scrape-creators/instagram/song-reels.js +50 -0
  549. package/dist/infrastructure/providers/scrape-creators/instagram/song-reels.js.map +1 -0
  550. package/dist/infrastructure/providers/scrape-creators/instagram/story-highlights.d.ts +76 -0
  551. package/dist/infrastructure/providers/scrape-creators/instagram/story-highlights.d.ts.map +1 -0
  552. package/dist/infrastructure/providers/scrape-creators/instagram/story-highlights.js +37 -0
  553. package/dist/infrastructure/providers/scrape-creators/instagram/story-highlights.js.map +1 -0
  554. package/dist/infrastructure/providers/scrape-creators/instagram/transcript.d.ts +76 -0
  555. package/dist/infrastructure/providers/scrape-creators/instagram/transcript.d.ts.map +1 -0
  556. package/dist/infrastructure/providers/scrape-creators/instagram/transcript.js +52 -0
  557. package/dist/infrastructure/providers/scrape-creators/instagram/transcript.js.map +1 -0
  558. package/dist/infrastructure/providers/scrape-creators/instagram/trending-reels.d.ts +84 -0
  559. package/dist/infrastructure/providers/scrape-creators/instagram/trending-reels.d.ts.map +1 -0
  560. package/dist/infrastructure/providers/scrape-creators/instagram/trending-reels.js +38 -0
  561. package/dist/infrastructure/providers/scrape-creators/instagram/trending-reels.js.map +1 -0
  562. package/dist/infrastructure/providers/scrape-creators/kick/_shared.d.ts +8 -0
  563. package/dist/infrastructure/providers/scrape-creators/kick/_shared.d.ts.map +1 -0
  564. package/dist/infrastructure/providers/scrape-creators/kick/_shared.js +16 -0
  565. package/dist/infrastructure/providers/scrape-creators/kick/_shared.js.map +1 -0
  566. package/dist/infrastructure/providers/scrape-creators/kick/clip.d.ts +84 -0
  567. package/dist/infrastructure/providers/scrape-creators/kick/clip.d.ts.map +1 -0
  568. package/dist/infrastructure/providers/scrape-creators/kick/clip.js +39 -0
  569. package/dist/infrastructure/providers/scrape-creators/kick/clip.js.map +1 -0
  570. package/dist/infrastructure/providers/scrape-creators/kick/manifest.d.ts +132 -0
  571. package/dist/infrastructure/providers/scrape-creators/kick/manifest.d.ts.map +1 -0
  572. package/dist/infrastructure/providers/scrape-creators/kick/manifest.js +18 -0
  573. package/dist/infrastructure/providers/scrape-creators/kick/manifest.js.map +1 -0
  574. package/dist/infrastructure/providers/scrape-creators/komi/_shared.d.ts +8 -0
  575. package/dist/infrastructure/providers/scrape-creators/komi/_shared.d.ts.map +1 -0
  576. package/dist/infrastructure/providers/scrape-creators/komi/_shared.js +16 -0
  577. package/dist/infrastructure/providers/scrape-creators/komi/_shared.js.map +1 -0
  578. package/dist/infrastructure/providers/scrape-creators/komi/manifest.d.ts +196 -0
  579. package/dist/infrastructure/providers/scrape-creators/komi/manifest.d.ts.map +1 -0
  580. package/dist/infrastructure/providers/scrape-creators/komi/manifest.js +18 -0
  581. package/dist/infrastructure/providers/scrape-creators/komi/manifest.js.map +1 -0
  582. package/dist/infrastructure/providers/scrape-creators/komi/profile.d.ts +134 -0
  583. package/dist/infrastructure/providers/scrape-creators/komi/profile.d.ts.map +1 -0
  584. package/dist/infrastructure/providers/scrape-creators/komi/profile.js +90 -0
  585. package/dist/infrastructure/providers/scrape-creators/komi/profile.js.map +1 -0
  586. package/dist/infrastructure/providers/scrape-creators/linkbio/_shared.d.ts +8 -0
  587. package/dist/infrastructure/providers/scrape-creators/linkbio/_shared.d.ts.map +1 -0
  588. package/dist/infrastructure/providers/scrape-creators/linkbio/_shared.js +16 -0
  589. package/dist/infrastructure/providers/scrape-creators/linkbio/_shared.js.map +1 -0
  590. package/dist/infrastructure/providers/scrape-creators/linkbio/manifest.d.ts +164 -0
  591. package/dist/infrastructure/providers/scrape-creators/linkbio/manifest.d.ts.map +1 -0
  592. package/dist/infrastructure/providers/scrape-creators/linkbio/manifest.js +18 -0
  593. package/dist/infrastructure/providers/scrape-creators/linkbio/manifest.js.map +1 -0
  594. package/dist/infrastructure/providers/scrape-creators/linkbio/profile.d.ts +107 -0
  595. package/dist/infrastructure/providers/scrape-creators/linkbio/profile.d.ts.map +1 -0
  596. package/dist/infrastructure/providers/scrape-creators/linkbio/profile.js +46 -0
  597. package/dist/infrastructure/providers/scrape-creators/linkbio/profile.js.map +1 -0
  598. package/dist/infrastructure/providers/scrape-creators/linkedin/_shared.d.ts +8 -0
  599. package/dist/infrastructure/providers/scrape-creators/linkedin/_shared.d.ts.map +1 -0
  600. package/dist/infrastructure/providers/scrape-creators/linkedin/_shared.js +16 -0
  601. package/dist/infrastructure/providers/scrape-creators/linkedin/_shared.js.map +1 -0
  602. package/dist/infrastructure/providers/scrape-creators/linkedin/company-posts.d.ts +79 -0
  603. package/dist/infrastructure/providers/scrape-creators/linkedin/company-posts.d.ts.map +1 -0
  604. package/dist/infrastructure/providers/scrape-creators/linkedin/company-posts.js +38 -0
  605. package/dist/infrastructure/providers/scrape-creators/linkedin/company-posts.js.map +1 -0
  606. package/dist/infrastructure/providers/scrape-creators/linkedin/company.d.ts +148 -0
  607. package/dist/infrastructure/providers/scrape-creators/linkedin/company.d.ts.map +1 -0
  608. package/dist/infrastructure/providers/scrape-creators/linkedin/company.js +59 -0
  609. package/dist/infrastructure/providers/scrape-creators/linkedin/company.js.map +1 -0
  610. package/dist/infrastructure/providers/scrape-creators/linkedin/manifest.d.ts +784 -0
  611. package/dist/infrastructure/providers/scrape-creators/linkedin/manifest.d.ts.map +1 -0
  612. package/dist/infrastructure/providers/scrape-creators/linkedin/manifest.js +30 -0
  613. package/dist/infrastructure/providers/scrape-creators/linkedin/manifest.js.map +1 -0
  614. package/dist/infrastructure/providers/scrape-creators/linkedin/post-transcript.d.ts +83 -0
  615. package/dist/infrastructure/providers/scrape-creators/linkedin/post-transcript.d.ts.map +1 -0
  616. package/dist/infrastructure/providers/scrape-creators/linkedin/post-transcript.js +38 -0
  617. package/dist/infrastructure/providers/scrape-creators/linkedin/post-transcript.js.map +1 -0
  618. package/dist/infrastructure/providers/scrape-creators/linkedin/post.d.ts +110 -0
  619. package/dist/infrastructure/providers/scrape-creators/linkedin/post.d.ts.map +1 -0
  620. package/dist/infrastructure/providers/scrape-creators/linkedin/post.js +47 -0
  621. package/dist/infrastructure/providers/scrape-creators/linkedin/post.js.map +1 -0
  622. package/dist/infrastructure/providers/scrape-creators/linkedin/profile.d.ts +118 -0
  623. package/dist/infrastructure/providers/scrape-creators/linkedin/profile.d.ts.map +1 -0
  624. package/dist/infrastructure/providers/scrape-creators/linkedin/profile.js +49 -0
  625. package/dist/infrastructure/providers/scrape-creators/linkedin/profile.js.map +1 -0
  626. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/_shared.d.ts +8 -0
  627. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/_shared.d.ts.map +1 -0
  628. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/_shared.js +16 -0
  629. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/_shared.js.map +1 -0
  630. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-detail.d.ts +92 -0
  631. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-detail.d.ts.map +1 -0
  632. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-detail.js +39 -0
  633. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-detail.js.map +1 -0
  634. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-search.d.ts +98 -0
  635. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-search.d.ts.map +1 -0
  636. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-search.js +41 -0
  637. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/ad-search.js.map +1 -0
  638. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/manifest.d.ts +279 -0
  639. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/manifest.d.ts.map +1 -0
  640. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/manifest.js +21 -0
  641. package/dist/infrastructure/providers/scrape-creators/linkedin-ad-library/manifest.js.map +1 -0
  642. package/dist/infrastructure/providers/scrape-creators/linkme/_shared.d.ts +8 -0
  643. package/dist/infrastructure/providers/scrape-creators/linkme/_shared.d.ts.map +1 -0
  644. package/dist/infrastructure/providers/scrape-creators/linkme/_shared.js +16 -0
  645. package/dist/infrastructure/providers/scrape-creators/linkme/_shared.js.map +1 -0
  646. package/dist/infrastructure/providers/scrape-creators/linkme/manifest.d.ts +140 -0
  647. package/dist/infrastructure/providers/scrape-creators/linkme/manifest.d.ts.map +1 -0
  648. package/dist/infrastructure/providers/scrape-creators/linkme/manifest.js +18 -0
  649. package/dist/infrastructure/providers/scrape-creators/linkme/manifest.js.map +1 -0
  650. package/dist/infrastructure/providers/scrape-creators/linkme/profile.d.ts +89 -0
  651. package/dist/infrastructure/providers/scrape-creators/linkme/profile.d.ts.map +1 -0
  652. package/dist/infrastructure/providers/scrape-creators/linkme/profile.js +40 -0
  653. package/dist/infrastructure/providers/scrape-creators/linkme/profile.js.map +1 -0
  654. package/dist/infrastructure/providers/scrape-creators/linktree/_shared.d.ts +8 -0
  655. package/dist/infrastructure/providers/scrape-creators/linktree/_shared.d.ts.map +1 -0
  656. package/dist/infrastructure/providers/scrape-creators/linktree/_shared.js +16 -0
  657. package/dist/infrastructure/providers/scrape-creators/linktree/_shared.js.map +1 -0
  658. package/dist/infrastructure/providers/scrape-creators/linktree/manifest.d.ts +132 -0
  659. package/dist/infrastructure/providers/scrape-creators/linktree/manifest.d.ts.map +1 -0
  660. package/dist/infrastructure/providers/scrape-creators/linktree/manifest.js +18 -0
  661. package/dist/infrastructure/providers/scrape-creators/linktree/manifest.js.map +1 -0
  662. package/dist/infrastructure/providers/scrape-creators/linktree/profile.d.ts +84 -0
  663. package/dist/infrastructure/providers/scrape-creators/linktree/profile.d.ts.map +1 -0
  664. package/dist/infrastructure/providers/scrape-creators/linktree/profile.js +39 -0
  665. package/dist/infrastructure/providers/scrape-creators/linktree/profile.js.map +1 -0
  666. package/dist/infrastructure/providers/scrape-creators/pillar/_shared.d.ts +8 -0
  667. package/dist/infrastructure/providers/scrape-creators/pillar/_shared.d.ts.map +1 -0
  668. package/dist/infrastructure/providers/scrape-creators/pillar/_shared.js +16 -0
  669. package/dist/infrastructure/providers/scrape-creators/pillar/_shared.js.map +1 -0
  670. package/dist/infrastructure/providers/scrape-creators/pillar/manifest.d.ts +216 -0
  671. package/dist/infrastructure/providers/scrape-creators/pillar/manifest.d.ts.map +1 -0
  672. package/dist/infrastructure/providers/scrape-creators/pillar/manifest.js +18 -0
  673. package/dist/infrastructure/providers/scrape-creators/pillar/manifest.js.map +1 -0
  674. package/dist/infrastructure/providers/scrape-creators/pillar/profile.d.ts +149 -0
  675. package/dist/infrastructure/providers/scrape-creators/pillar/profile.d.ts.map +1 -0
  676. package/dist/infrastructure/providers/scrape-creators/pillar/profile.js +96 -0
  677. package/dist/infrastructure/providers/scrape-creators/pillar/profile.js.map +1 -0
  678. package/dist/infrastructure/providers/scrape-creators/pinterest/_shared.d.ts +8 -0
  679. package/dist/infrastructure/providers/scrape-creators/pinterest/_shared.d.ts.map +1 -0
  680. package/dist/infrastructure/providers/scrape-creators/pinterest/_shared.js +16 -0
  681. package/dist/infrastructure/providers/scrape-creators/pinterest/_shared.js.map +1 -0
  682. package/dist/infrastructure/providers/scrape-creators/pinterest/board.d.ts +90 -0
  683. package/dist/infrastructure/providers/scrape-creators/pinterest/board.d.ts.map +1 -0
  684. package/dist/infrastructure/providers/scrape-creators/pinterest/board.js +41 -0
  685. package/dist/infrastructure/providers/scrape-creators/pinterest/board.js.map +1 -0
  686. package/dist/infrastructure/providers/scrape-creators/pinterest/manifest.d.ts +525 -0
  687. package/dist/infrastructure/providers/scrape-creators/pinterest/manifest.d.ts.map +1 -0
  688. package/dist/infrastructure/providers/scrape-creators/pinterest/manifest.js +27 -0
  689. package/dist/infrastructure/providers/scrape-creators/pinterest/manifest.js.map +1 -0
  690. package/dist/infrastructure/providers/scrape-creators/pinterest/pin.d.ts +92 -0
  691. package/dist/infrastructure/providers/scrape-creators/pinterest/pin.d.ts.map +1 -0
  692. package/dist/infrastructure/providers/scrape-creators/pinterest/pin.js +39 -0
  693. package/dist/infrastructure/providers/scrape-creators/pinterest/pin.js.map +1 -0
  694. package/dist/infrastructure/providers/scrape-creators/pinterest/search.d.ts +90 -0
  695. package/dist/infrastructure/providers/scrape-creators/pinterest/search.d.ts.map +1 -0
  696. package/dist/infrastructure/providers/scrape-creators/pinterest/search.js +53 -0
  697. package/dist/infrastructure/providers/scrape-creators/pinterest/search.js.map +1 -0
  698. package/dist/infrastructure/providers/scrape-creators/pinterest/user-boards.d.ts +85 -0
  699. package/dist/infrastructure/providers/scrape-creators/pinterest/user-boards.d.ts.map +1 -0
  700. package/dist/infrastructure/providers/scrape-creators/pinterest/user-boards.js +40 -0
  701. package/dist/infrastructure/providers/scrape-creators/pinterest/user-boards.js.map +1 -0
  702. package/dist/infrastructure/providers/scrape-creators/reddit/_shared.d.ts +8 -0
  703. package/dist/infrastructure/providers/scrape-creators/reddit/_shared.d.ts.map +1 -0
  704. package/dist/infrastructure/providers/scrape-creators/reddit/_shared.js +16 -0
  705. package/dist/infrastructure/providers/scrape-creators/reddit/_shared.js.map +1 -0
  706. package/dist/infrastructure/providers/scrape-creators/reddit/ad-detail.d.ts +94 -0
  707. package/dist/infrastructure/providers/scrape-creators/reddit/ad-detail.d.ts.map +1 -0
  708. package/dist/infrastructure/providers/scrape-creators/reddit/ad-detail.js +41 -0
  709. package/dist/infrastructure/providers/scrape-creators/reddit/ad-detail.js.map +1 -0
  710. package/dist/infrastructure/providers/scrape-creators/reddit/ad-search.d.ts +90 -0
  711. package/dist/infrastructure/providers/scrape-creators/reddit/ad-search.d.ts.map +1 -0
  712. package/dist/infrastructure/providers/scrape-creators/reddit/ad-search.js +41 -0
  713. package/dist/infrastructure/providers/scrape-creators/reddit/ad-search.js.map +1 -0
  714. package/dist/infrastructure/providers/scrape-creators/reddit/manifest.d.ts +1133 -0
  715. package/dist/infrastructure/providers/scrape-creators/reddit/manifest.d.ts.map +1 -0
  716. package/dist/infrastructure/providers/scrape-creators/reddit/manifest.js +39 -0
  717. package/dist/infrastructure/providers/scrape-creators/reddit/manifest.js.map +1 -0
  718. package/dist/infrastructure/providers/scrape-creators/reddit/post-comments.d.ts +93 -0
  719. package/dist/infrastructure/providers/scrape-creators/reddit/post-comments.d.ts.map +1 -0
  720. package/dist/infrastructure/providers/scrape-creators/reddit/post-comments.js +42 -0
  721. package/dist/infrastructure/providers/scrape-creators/reddit/post-comments.js.map +1 -0
  722. package/dist/infrastructure/providers/scrape-creators/reddit/post-transcript.d.ts +98 -0
  723. package/dist/infrastructure/providers/scrape-creators/reddit/post-transcript.d.ts.map +1 -0
  724. package/dist/infrastructure/providers/scrape-creators/reddit/post-transcript.js +43 -0
  725. package/dist/infrastructure/providers/scrape-creators/reddit/post-transcript.js.map +1 -0
  726. package/dist/infrastructure/providers/scrape-creators/reddit/search.d.ts +93 -0
  727. package/dist/infrastructure/providers/scrape-creators/reddit/search.d.ts.map +1 -0
  728. package/dist/infrastructure/providers/scrape-creators/reddit/search.js +42 -0
  729. package/dist/infrastructure/providers/scrape-creators/reddit/search.js.map +1 -0
  730. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-details.d.ts +122 -0
  731. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-details.d.ts.map +1 -0
  732. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-details.js +51 -0
  733. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-details.js.map +1 -0
  734. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-posts.d.ts +88 -0
  735. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-posts.d.ts.map +1 -0
  736. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-posts.js +41 -0
  737. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-posts.js.map +1 -0
  738. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-search.d.ts +98 -0
  739. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-search.d.ts.map +1 -0
  740. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-search.js +43 -0
  741. package/dist/infrastructure/providers/scrape-creators/reddit/subreddit-search.js.map +1 -0
  742. package/dist/infrastructure/providers/scrape-creators/rumble/_shared.d.ts +8 -0
  743. package/dist/infrastructure/providers/scrape-creators/rumble/_shared.d.ts.map +1 -0
  744. package/dist/infrastructure/providers/scrape-creators/rumble/_shared.js +16 -0
  745. package/dist/infrastructure/providers/scrape-creators/rumble/_shared.js.map +1 -0
  746. package/dist/infrastructure/providers/scrape-creators/rumble/channel-videos.d.ts +92 -0
  747. package/dist/infrastructure/providers/scrape-creators/rumble/channel-videos.d.ts.map +1 -0
  748. package/dist/infrastructure/providers/scrape-creators/rumble/channel-videos.js +40 -0
  749. package/dist/infrastructure/providers/scrape-creators/rumble/channel-videos.js.map +1 -0
  750. package/dist/infrastructure/providers/scrape-creators/rumble/manifest.d.ts +760 -0
  751. package/dist/infrastructure/providers/scrape-creators/rumble/manifest.d.ts.map +1 -0
  752. package/dist/infrastructure/providers/scrape-creators/rumble/manifest.js +30 -0
  753. package/dist/infrastructure/providers/scrape-creators/rumble/manifest.js.map +1 -0
  754. package/dist/infrastructure/providers/scrape-creators/rumble/search.d.ts +105 -0
  755. package/dist/infrastructure/providers/scrape-creators/rumble/search.d.ts.map +1 -0
  756. package/dist/infrastructure/providers/scrape-creators/rumble/search.js +43 -0
  757. package/dist/infrastructure/providers/scrape-creators/rumble/search.js.map +1 -0
  758. package/dist/infrastructure/providers/scrape-creators/rumble/video-comments.d.ts +91 -0
  759. package/dist/infrastructure/providers/scrape-creators/rumble/video-comments.d.ts.map +1 -0
  760. package/dist/infrastructure/providers/scrape-creators/rumble/video-comments.js +41 -0
  761. package/dist/infrastructure/providers/scrape-creators/rumble/video-comments.js.map +1 -0
  762. package/dist/infrastructure/providers/scrape-creators/rumble/video-transcript.d.ts +86 -0
  763. package/dist/infrastructure/providers/scrape-creators/rumble/video-transcript.d.ts.map +1 -0
  764. package/dist/infrastructure/providers/scrape-creators/rumble/video-transcript.js +56 -0
  765. package/dist/infrastructure/providers/scrape-creators/rumble/video-transcript.js.map +1 -0
  766. package/dist/infrastructure/providers/scrape-creators/rumble/video.d.ts +145 -0
  767. package/dist/infrastructure/providers/scrape-creators/rumble/video.d.ts.map +1 -0
  768. package/dist/infrastructure/providers/scrape-creators/rumble/video.js +57 -0
  769. package/dist/infrastructure/providers/scrape-creators/rumble/video.js.map +1 -0
  770. package/dist/infrastructure/providers/scrape-creators/snapchat/_shared.d.ts +8 -0
  771. package/dist/infrastructure/providers/scrape-creators/snapchat/_shared.d.ts.map +1 -0
  772. package/dist/infrastructure/providers/scrape-creators/snapchat/_shared.js +16 -0
  773. package/dist/infrastructure/providers/scrape-creators/snapchat/_shared.js.map +1 -0
  774. package/dist/infrastructure/providers/scrape-creators/snapchat/manifest.d.ts +164 -0
  775. package/dist/infrastructure/providers/scrape-creators/snapchat/manifest.d.ts.map +1 -0
  776. package/dist/infrastructure/providers/scrape-creators/snapchat/manifest.js +18 -0
  777. package/dist/infrastructure/providers/scrape-creators/snapchat/manifest.js.map +1 -0
  778. package/dist/infrastructure/providers/scrape-creators/snapchat/profile.d.ts +104 -0
  779. package/dist/infrastructure/providers/scrape-creators/snapchat/profile.d.ts.map +1 -0
  780. package/dist/infrastructure/providers/scrape-creators/snapchat/profile.js +43 -0
  781. package/dist/infrastructure/providers/scrape-creators/snapchat/profile.js.map +1 -0
  782. package/dist/infrastructure/providers/scrape-creators/soundcloud/_shared.d.ts +8 -0
  783. package/dist/infrastructure/providers/scrape-creators/soundcloud/_shared.d.ts.map +1 -0
  784. package/dist/infrastructure/providers/scrape-creators/soundcloud/_shared.js +16 -0
  785. package/dist/infrastructure/providers/scrape-creators/soundcloud/_shared.js.map +1 -0
  786. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist-tracks.d.ts +85 -0
  787. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist-tracks.d.ts.map +1 -0
  788. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist-tracks.js +40 -0
  789. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist-tracks.js.map +1 -0
  790. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist.d.ts +117 -0
  791. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist.d.ts.map +1 -0
  792. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist.js +50 -0
  793. package/dist/infrastructure/providers/scrape-creators/soundcloud/artist.js.map +1 -0
  794. package/dist/infrastructure/providers/scrape-creators/soundcloud/manifest.d.ts +526 -0
  795. package/dist/infrastructure/providers/scrape-creators/soundcloud/manifest.d.ts.map +1 -0
  796. package/dist/infrastructure/providers/scrape-creators/soundcloud/manifest.js +24 -0
  797. package/dist/infrastructure/providers/scrape-creators/soundcloud/manifest.js.map +1 -0
  798. package/dist/infrastructure/providers/scrape-creators/soundcloud/track.d.ts +162 -0
  799. package/dist/infrastructure/providers/scrape-creators/soundcloud/track.d.ts.map +1 -0
  800. package/dist/infrastructure/providers/scrape-creators/soundcloud/track.js +96 -0
  801. package/dist/infrastructure/providers/scrape-creators/soundcloud/track.js.map +1 -0
  802. package/dist/infrastructure/providers/scrape-creators/spotify/_shared.d.ts +8 -0
  803. package/dist/infrastructure/providers/scrape-creators/spotify/_shared.d.ts.map +1 -0
  804. package/dist/infrastructure/providers/scrape-creators/spotify/_shared.js +16 -0
  805. package/dist/infrastructure/providers/scrape-creators/spotify/_shared.js.map +1 -0
  806. package/dist/infrastructure/providers/scrape-creators/spotify/album.d.ts +92 -0
  807. package/dist/infrastructure/providers/scrape-creators/spotify/album.d.ts.map +1 -0
  808. package/dist/infrastructure/providers/scrape-creators/spotify/album.js +39 -0
  809. package/dist/infrastructure/providers/scrape-creators/spotify/album.js.map +1 -0
  810. package/dist/infrastructure/providers/scrape-creators/spotify/artist.d.ts +130 -0
  811. package/dist/infrastructure/providers/scrape-creators/spotify/artist.d.ts.map +1 -0
  812. package/dist/infrastructure/providers/scrape-creators/spotify/artist.js +49 -0
  813. package/dist/infrastructure/providers/scrape-creators/spotify/artist.js.map +1 -0
  814. package/dist/infrastructure/providers/scrape-creators/spotify/manifest.d.ts +466 -0
  815. package/dist/infrastructure/providers/scrape-creators/spotify/manifest.d.ts.map +1 -0
  816. package/dist/infrastructure/providers/scrape-creators/spotify/manifest.js +24 -0
  817. package/dist/infrastructure/providers/scrape-creators/spotify/manifest.js.map +1 -0
  818. package/dist/infrastructure/providers/scrape-creators/spotify/track.d.ts +92 -0
  819. package/dist/infrastructure/providers/scrape-creators/spotify/track.d.ts.map +1 -0
  820. package/dist/infrastructure/providers/scrape-creators/spotify/track.js +39 -0
  821. package/dist/infrastructure/providers/scrape-creators/spotify/track.js.map +1 -0
  822. package/dist/infrastructure/providers/scrape-creators/threads/_shared.d.ts +8 -0
  823. package/dist/infrastructure/providers/scrape-creators/threads/_shared.d.ts.map +1 -0
  824. package/dist/infrastructure/providers/scrape-creators/threads/_shared.js +16 -0
  825. package/dist/infrastructure/providers/scrape-creators/threads/_shared.js.map +1 -0
  826. package/dist/infrastructure/providers/scrape-creators/threads/manifest.d.ts +660 -0
  827. package/dist/infrastructure/providers/scrape-creators/threads/manifest.d.ts.map +1 -0
  828. package/dist/infrastructure/providers/scrape-creators/threads/manifest.js +30 -0
  829. package/dist/infrastructure/providers/scrape-creators/threads/manifest.js.map +1 -0
  830. package/dist/infrastructure/providers/scrape-creators/threads/post.d.ts +84 -0
  831. package/dist/infrastructure/providers/scrape-creators/threads/post.d.ts.map +1 -0
  832. package/dist/infrastructure/providers/scrape-creators/threads/post.js +39 -0
  833. package/dist/infrastructure/providers/scrape-creators/threads/post.js.map +1 -0
  834. package/dist/infrastructure/providers/scrape-creators/threads/profile.d.ts +104 -0
  835. package/dist/infrastructure/providers/scrape-creators/threads/profile.d.ts.map +1 -0
  836. package/dist/infrastructure/providers/scrape-creators/threads/profile.js +45 -0
  837. package/dist/infrastructure/providers/scrape-creators/threads/profile.js.map +1 -0
  838. package/dist/infrastructure/providers/scrape-creators/threads/search-users.d.ts +85 -0
  839. package/dist/infrastructure/providers/scrape-creators/threads/search-users.d.ts.map +1 -0
  840. package/dist/infrastructure/providers/scrape-creators/threads/search-users.js +40 -0
  841. package/dist/infrastructure/providers/scrape-creators/threads/search-users.js.map +1 -0
  842. package/dist/infrastructure/providers/scrape-creators/threads/search.d.ts +90 -0
  843. package/dist/infrastructure/providers/scrape-creators/threads/search.d.ts.map +1 -0
  844. package/dist/infrastructure/providers/scrape-creators/threads/search.js +41 -0
  845. package/dist/infrastructure/providers/scrape-creators/threads/search.js.map +1 -0
  846. package/dist/infrastructure/providers/scrape-creators/threads/user-posts.d.ts +85 -0
  847. package/dist/infrastructure/providers/scrape-creators/threads/user-posts.d.ts.map +1 -0
  848. package/dist/infrastructure/providers/scrape-creators/threads/user-posts.js +40 -0
  849. package/dist/infrastructure/providers/scrape-creators/threads/user-posts.js.map +1 -0
  850. package/dist/infrastructure/providers/scrape-creators/tiktok/_shared.d.ts +8 -0
  851. package/dist/infrastructure/providers/scrape-creators/tiktok/_shared.d.ts.map +1 -0
  852. package/dist/infrastructure/providers/scrape-creators/tiktok/_shared.js +16 -0
  853. package/dist/infrastructure/providers/scrape-creators/tiktok/_shared.js.map +1 -0
  854. package/dist/infrastructure/providers/scrape-creators/tiktok/creators-popular.d.ts +84 -0
  855. package/dist/infrastructure/providers/scrape-creators/tiktok/creators-popular.d.ts.map +1 -0
  856. package/dist/infrastructure/providers/scrape-creators/tiktok/creators-popular.js +39 -0
  857. package/dist/infrastructure/providers/scrape-creators/tiktok/creators-popular.js.map +1 -0
  858. package/dist/infrastructure/providers/scrape-creators/tiktok/hashtags-popular.d.ts +84 -0
  859. package/dist/infrastructure/providers/scrape-creators/tiktok/hashtags-popular.d.ts.map +1 -0
  860. package/dist/infrastructure/providers/scrape-creators/tiktok/hashtags-popular.js +39 -0
  861. package/dist/infrastructure/providers/scrape-creators/tiktok/hashtags-popular.js.map +1 -0
  862. package/dist/infrastructure/providers/scrape-creators/tiktok/manifest.d.ts +2914 -0
  863. package/dist/infrastructure/providers/scrape-creators/tiktok/manifest.d.ts.map +1 -0
  864. package/dist/infrastructure/providers/scrape-creators/tiktok/manifest.js +80 -0
  865. package/dist/infrastructure/providers/scrape-creators/tiktok/manifest.js.map +1 -0
  866. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-region.d.ts +83 -0
  867. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-region.d.ts.map +1 -0
  868. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-region.js +39 -0
  869. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-region.js.map +1 -0
  870. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-videos.d.ts +91 -0
  871. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-videos.d.ts.map +1 -0
  872. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-videos.js +42 -0
  873. package/dist/infrastructure/providers/scrape-creators/tiktok/profile-videos.js.map +1 -0
  874. package/dist/infrastructure/providers/scrape-creators/tiktok/profile.d.ts +208 -0
  875. package/dist/infrastructure/providers/scrape-creators/tiktok/profile.d.ts.map +1 -0
  876. package/dist/infrastructure/providers/scrape-creators/tiktok/profile.js +82 -0
  877. package/dist/infrastructure/providers/scrape-creators/tiktok/profile.js.map +1 -0
  878. package/dist/infrastructure/providers/scrape-creators/tiktok/search-hashtag.d.ts +88 -0
  879. package/dist/infrastructure/providers/scrape-creators/tiktok/search-hashtag.d.ts.map +1 -0
  880. package/dist/infrastructure/providers/scrape-creators/tiktok/search-hashtag.js +41 -0
  881. package/dist/infrastructure/providers/scrape-creators/tiktok/search-hashtag.js.map +1 -0
  882. package/dist/infrastructure/providers/scrape-creators/tiktok/search-keyword.d.ts +85 -0
  883. package/dist/infrastructure/providers/scrape-creators/tiktok/search-keyword.d.ts.map +1 -0
  884. package/dist/infrastructure/providers/scrape-creators/tiktok/search-keyword.js +40 -0
  885. package/dist/infrastructure/providers/scrape-creators/tiktok/search-keyword.js.map +1 -0
  886. package/dist/infrastructure/providers/scrape-creators/tiktok/search-top.d.ts +85 -0
  887. package/dist/infrastructure/providers/scrape-creators/tiktok/search-top.d.ts.map +1 -0
  888. package/dist/infrastructure/providers/scrape-creators/tiktok/search-top.js +40 -0
  889. package/dist/infrastructure/providers/scrape-creators/tiktok/search-top.js.map +1 -0
  890. package/dist/infrastructure/providers/scrape-creators/tiktok/search-users.d.ts +96 -0
  891. package/dist/infrastructure/providers/scrape-creators/tiktok/search-users.d.ts.map +1 -0
  892. package/dist/infrastructure/providers/scrape-creators/tiktok/search-users.js +43 -0
  893. package/dist/infrastructure/providers/scrape-creators/tiktok/search-users.js.map +1 -0
  894. package/dist/infrastructure/providers/scrape-creators/tiktok/song-videos.d.ts +93 -0
  895. package/dist/infrastructure/providers/scrape-creators/tiktok/song-videos.d.ts.map +1 -0
  896. package/dist/infrastructure/providers/scrape-creators/tiktok/song-videos.js +42 -0
  897. package/dist/infrastructure/providers/scrape-creators/tiktok/song-videos.js.map +1 -0
  898. package/dist/infrastructure/providers/scrape-creators/tiktok/song.d.ts +82 -0
  899. package/dist/infrastructure/providers/scrape-creators/tiktok/song.d.ts.map +1 -0
  900. package/dist/infrastructure/providers/scrape-creators/tiktok/song.js +39 -0
  901. package/dist/infrastructure/providers/scrape-creators/tiktok/song.js.map +1 -0
  902. package/dist/infrastructure/providers/scrape-creators/tiktok/trending-feed.d.ts +82 -0
  903. package/dist/infrastructure/providers/scrape-creators/tiktok/trending-feed.d.ts.map +1 -0
  904. package/dist/infrastructure/providers/scrape-creators/tiktok/trending-feed.js +39 -0
  905. package/dist/infrastructure/providers/scrape-creators/tiktok/trending-feed.js.map +1 -0
  906. package/dist/infrastructure/providers/scrape-creators/tiktok/user-audience.d.ts +92 -0
  907. package/dist/infrastructure/providers/scrape-creators/tiktok/user-audience.d.ts.map +1 -0
  908. package/dist/infrastructure/providers/scrape-creators/tiktok/user-audience.js +41 -0
  909. package/dist/infrastructure/providers/scrape-creators/tiktok/user-audience.js.map +1 -0
  910. package/dist/infrastructure/providers/scrape-creators/tiktok/user-followers.d.ts +91 -0
  911. package/dist/infrastructure/providers/scrape-creators/tiktok/user-followers.d.ts.map +1 -0
  912. package/dist/infrastructure/providers/scrape-creators/tiktok/user-followers.js +42 -0
  913. package/dist/infrastructure/providers/scrape-creators/tiktok/user-followers.js.map +1 -0
  914. package/dist/infrastructure/providers/scrape-creators/tiktok/user-following.d.ts +111 -0
  915. package/dist/infrastructure/providers/scrape-creators/tiktok/user-following.d.ts.map +1 -0
  916. package/dist/infrastructure/providers/scrape-creators/tiktok/user-following.js +48 -0
  917. package/dist/infrastructure/providers/scrape-creators/tiktok/user-following.js.map +1 -0
  918. package/dist/infrastructure/providers/scrape-creators/tiktok/user-live.d.ts +84 -0
  919. package/dist/infrastructure/providers/scrape-creators/tiktok/user-live.d.ts.map +1 -0
  920. package/dist/infrastructure/providers/scrape-creators/tiktok/user-live.js +39 -0
  921. package/dist/infrastructure/providers/scrape-creators/tiktok/user-live.js.map +1 -0
  922. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comment-replies.d.ts +96 -0
  923. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comment-replies.d.ts.map +1 -0
  924. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comment-replies.js +43 -0
  925. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comment-replies.js.map +1 -0
  926. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comments.d.ts +88 -0
  927. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comments.d.ts.map +1 -0
  928. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comments.js +41 -0
  929. package/dist/infrastructure/providers/scrape-creators/tiktok/video-comments.js.map +1 -0
  930. package/dist/infrastructure/providers/scrape-creators/tiktok/video-transcript.d.ts +86 -0
  931. package/dist/infrastructure/providers/scrape-creators/tiktok/video-transcript.d.ts.map +1 -0
  932. package/dist/infrastructure/providers/scrape-creators/tiktok/video-transcript.js +40 -0
  933. package/dist/infrastructure/providers/scrape-creators/tiktok/video-transcript.js.map +1 -0
  934. package/dist/infrastructure/providers/scrape-creators/tiktok/video.d.ts +210 -0
  935. package/dist/infrastructure/providers/scrape-creators/tiktok/video.d.ts.map +1 -0
  936. package/dist/infrastructure/providers/scrape-creators/tiktok/video.js +84 -0
  937. package/dist/infrastructure/providers/scrape-creators/tiktok/video.js.map +1 -0
  938. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/_shared.d.ts +8 -0
  939. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/_shared.d.ts.map +1 -0
  940. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/_shared.js +16 -0
  941. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/_shared.js.map +1 -0
  942. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/manifest.d.ts +745 -0
  943. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/manifest.d.ts.map +1 -0
  944. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/manifest.js +31 -0
  945. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/manifest.js.map +1 -0
  946. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-details.d.ts +154 -0
  947. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-details.d.ts.map +1 -0
  948. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-details.js +55 -0
  949. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-details.js.map +1 -0
  950. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-reviews.d.ts +90 -0
  951. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-reviews.d.ts.map +1 -0
  952. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-reviews.js +41 -0
  953. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/product-reviews.js.map +1 -0
  954. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-products.d.ts +90 -0
  955. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-products.d.ts.map +1 -0
  956. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-products.js +41 -0
  957. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-products.js.map +1 -0
  958. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-search.d.ts +85 -0
  959. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-search.d.ts.map +1 -0
  960. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-search.js +40 -0
  961. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/shop-search.js.map +1 -0
  962. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/user-showcase.d.ts +82 -0
  963. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/user-showcase.d.ts.map +1 -0
  964. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/user-showcase.js +39 -0
  965. package/dist/infrastructure/providers/scrape-creators/tiktok-shop/user-showcase.js.map +1 -0
  966. package/dist/infrastructure/providers/scrape-creators/truth-social/_shared.d.ts +8 -0
  967. package/dist/infrastructure/providers/scrape-creators/truth-social/_shared.d.ts.map +1 -0
  968. package/dist/infrastructure/providers/scrape-creators/truth-social/_shared.js +16 -0
  969. package/dist/infrastructure/providers/scrape-creators/truth-social/_shared.js.map +1 -0
  970. package/dist/infrastructure/providers/scrape-creators/truth-social/manifest.d.ts +466 -0
  971. package/dist/infrastructure/providers/scrape-creators/truth-social/manifest.d.ts.map +1 -0
  972. package/dist/infrastructure/providers/scrape-creators/truth-social/manifest.js +24 -0
  973. package/dist/infrastructure/providers/scrape-creators/truth-social/manifest.js.map +1 -0
  974. package/dist/infrastructure/providers/scrape-creators/truth-social/post.d.ts +115 -0
  975. package/dist/infrastructure/providers/scrape-creators/truth-social/post.d.ts.map +1 -0
  976. package/dist/infrastructure/providers/scrape-creators/truth-social/post.js +48 -0
  977. package/dist/infrastructure/providers/scrape-creators/truth-social/post.js.map +1 -0
  978. package/dist/infrastructure/providers/scrape-creators/truth-social/profile.d.ts +114 -0
  979. package/dist/infrastructure/providers/scrape-creators/truth-social/profile.d.ts.map +1 -0
  980. package/dist/infrastructure/providers/scrape-creators/truth-social/profile.js +49 -0
  981. package/dist/infrastructure/providers/scrape-creators/truth-social/profile.js.map +1 -0
  982. package/dist/infrastructure/providers/scrape-creators/truth-social/user-posts.d.ts +88 -0
  983. package/dist/infrastructure/providers/scrape-creators/truth-social/user-posts.d.ts.map +1 -0
  984. package/dist/infrastructure/providers/scrape-creators/truth-social/user-posts.js +41 -0
  985. package/dist/infrastructure/providers/scrape-creators/truth-social/user-posts.js.map +1 -0
  986. package/dist/infrastructure/providers/scrape-creators/twitch/_shared.d.ts +8 -0
  987. package/dist/infrastructure/providers/scrape-creators/twitch/_shared.d.ts.map +1 -0
  988. package/dist/infrastructure/providers/scrape-creators/twitch/_shared.js +16 -0
  989. package/dist/infrastructure/providers/scrape-creators/twitch/_shared.js.map +1 -0
  990. package/dist/infrastructure/providers/scrape-creators/twitch/clip.d.ts +106 -0
  991. package/dist/infrastructure/providers/scrape-creators/twitch/clip.d.ts.map +1 -0
  992. package/dist/infrastructure/providers/scrape-creators/twitch/clip.js +85 -0
  993. package/dist/infrastructure/providers/scrape-creators/twitch/clip.js.map +1 -0
  994. package/dist/infrastructure/providers/scrape-creators/twitch/manifest.d.ts +717 -0
  995. package/dist/infrastructure/providers/scrape-creators/twitch/manifest.d.ts.map +1 -0
  996. package/dist/infrastructure/providers/scrape-creators/twitch/manifest.js +27 -0
  997. package/dist/infrastructure/providers/scrape-creators/twitch/manifest.js.map +1 -0
  998. package/dist/infrastructure/providers/scrape-creators/twitch/profile.d.ts +129 -0
  999. package/dist/infrastructure/providers/scrape-creators/twitch/profile.d.ts.map +1 -0
  1000. package/dist/infrastructure/providers/scrape-creators/twitch/profile.js +51 -0
  1001. package/dist/infrastructure/providers/scrape-creators/twitch/profile.js.map +1 -0
  1002. package/dist/infrastructure/providers/scrape-creators/twitch/user-schedule.d.ts +108 -0
  1003. package/dist/infrastructure/providers/scrape-creators/twitch/user-schedule.d.ts.map +1 -0
  1004. package/dist/infrastructure/providers/scrape-creators/twitch/user-schedule.js +44 -0
  1005. package/dist/infrastructure/providers/scrape-creators/twitch/user-schedule.js.map +1 -0
  1006. package/dist/infrastructure/providers/scrape-creators/twitch/user-videos.d.ts +141 -0
  1007. package/dist/infrastructure/providers/scrape-creators/twitch/user-videos.d.ts.map +1 -0
  1008. package/dist/infrastructure/providers/scrape-creators/twitch/user-videos.js +55 -0
  1009. package/dist/infrastructure/providers/scrape-creators/twitch/user-videos.js.map +1 -0
  1010. package/dist/infrastructure/providers/scrape-creators/twitter/_shared.d.ts +8 -0
  1011. package/dist/infrastructure/providers/scrape-creators/twitter/_shared.d.ts.map +1 -0
  1012. package/dist/infrastructure/providers/scrape-creators/twitter/_shared.js +16 -0
  1013. package/dist/infrastructure/providers/scrape-creators/twitter/_shared.js.map +1 -0
  1014. package/dist/infrastructure/providers/scrape-creators/twitter/community-tweets.d.ts +85 -0
  1015. package/dist/infrastructure/providers/scrape-creators/twitter/community-tweets.d.ts.map +1 -0
  1016. package/dist/infrastructure/providers/scrape-creators/twitter/community-tweets.js +40 -0
  1017. package/dist/infrastructure/providers/scrape-creators/twitter/community-tweets.js.map +1 -0
  1018. package/dist/infrastructure/providers/scrape-creators/twitter/community.d.ts +87 -0
  1019. package/dist/infrastructure/providers/scrape-creators/twitter/community.d.ts.map +1 -0
  1020. package/dist/infrastructure/providers/scrape-creators/twitter/community.js +38 -0
  1021. package/dist/infrastructure/providers/scrape-creators/twitter/community.js.map +1 -0
  1022. package/dist/infrastructure/providers/scrape-creators/twitter/manifest.d.ts +883 -0
  1023. package/dist/infrastructure/providers/scrape-creators/twitter/manifest.d.ts.map +1 -0
  1024. package/dist/infrastructure/providers/scrape-creators/twitter/manifest.js +33 -0
  1025. package/dist/infrastructure/providers/scrape-creators/twitter/manifest.js.map +1 -0
  1026. package/dist/infrastructure/providers/scrape-creators/twitter/profile.d.ts +102 -0
  1027. package/dist/infrastructure/providers/scrape-creators/twitter/profile.d.ts.map +1 -0
  1028. package/dist/infrastructure/providers/scrape-creators/twitter/profile.js +57 -0
  1029. package/dist/infrastructure/providers/scrape-creators/twitter/profile.js.map +1 -0
  1030. package/dist/infrastructure/providers/scrape-creators/twitter/transcript.d.ts +82 -0
  1031. package/dist/infrastructure/providers/scrape-creators/twitter/transcript.d.ts.map +1 -0
  1032. package/dist/infrastructure/providers/scrape-creators/twitter/transcript.js +39 -0
  1033. package/dist/infrastructure/providers/scrape-creators/twitter/transcript.js.map +1 -0
  1034. package/dist/infrastructure/providers/scrape-creators/twitter/tweet.d.ts +167 -0
  1035. package/dist/infrastructure/providers/scrape-creators/twitter/tweet.d.ts.map +1 -0
  1036. package/dist/infrastructure/providers/scrape-creators/twitter/tweet.js +66 -0
  1037. package/dist/infrastructure/providers/scrape-creators/twitter/tweet.js.map +1 -0
  1038. package/dist/infrastructure/providers/scrape-creators/twitter/user-tweets.d.ts +85 -0
  1039. package/dist/infrastructure/providers/scrape-creators/twitter/user-tweets.d.ts.map +1 -0
  1040. package/dist/infrastructure/providers/scrape-creators/twitter/user-tweets.js +40 -0
  1041. package/dist/infrastructure/providers/scrape-creators/twitter/user-tweets.js.map +1 -0
  1042. package/dist/infrastructure/providers/scrape-creators/youtube/_shared.d.ts +8 -0
  1043. package/dist/infrastructure/providers/scrape-creators/youtube/_shared.d.ts.map +1 -0
  1044. package/dist/infrastructure/providers/scrape-creators/youtube/_shared.js +16 -0
  1045. package/dist/infrastructure/providers/scrape-creators/youtube/_shared.js.map +1 -0
  1046. package/dist/infrastructure/providers/scrape-creators/youtube/channel-community-posts.d.ts +82 -0
  1047. package/dist/infrastructure/providers/scrape-creators/youtube/channel-community-posts.d.ts.map +1 -0
  1048. package/dist/infrastructure/providers/scrape-creators/youtube/channel-community-posts.js +38 -0
  1049. package/dist/infrastructure/providers/scrape-creators/youtube/channel-community-posts.js.map +1 -0
  1050. package/dist/infrastructure/providers/scrape-creators/youtube/channel-lives.d.ts +82 -0
  1051. package/dist/infrastructure/providers/scrape-creators/youtube/channel-lives.d.ts.map +1 -0
  1052. package/dist/infrastructure/providers/scrape-creators/youtube/channel-lives.js +38 -0
  1053. package/dist/infrastructure/providers/scrape-creators/youtube/channel-lives.js.map +1 -0
  1054. package/dist/infrastructure/providers/scrape-creators/youtube/channel-playlists.d.ts +82 -0
  1055. package/dist/infrastructure/providers/scrape-creators/youtube/channel-playlists.d.ts.map +1 -0
  1056. package/dist/infrastructure/providers/scrape-creators/youtube/channel-playlists.js +38 -0
  1057. package/dist/infrastructure/providers/scrape-creators/youtube/channel-playlists.js.map +1 -0
  1058. package/dist/infrastructure/providers/scrape-creators/youtube/channel-shorts.d.ts +93 -0
  1059. package/dist/infrastructure/providers/scrape-creators/youtube/channel-shorts.d.ts.map +1 -0
  1060. package/dist/infrastructure/providers/scrape-creators/youtube/channel-shorts.js +42 -0
  1061. package/dist/infrastructure/providers/scrape-creators/youtube/channel-shorts.js.map +1 -0
  1062. package/dist/infrastructure/providers/scrape-creators/youtube/channel-videos.d.ts +88 -0
  1063. package/dist/infrastructure/providers/scrape-creators/youtube/channel-videos.d.ts.map +1 -0
  1064. package/dist/infrastructure/providers/scrape-creators/youtube/channel-videos.js +41 -0
  1065. package/dist/infrastructure/providers/scrape-creators/youtube/channel-videos.js.map +1 -0
  1066. package/dist/infrastructure/providers/scrape-creators/youtube/channel.d.ts +145 -0
  1067. package/dist/infrastructure/providers/scrape-creators/youtube/channel.d.ts.map +1 -0
  1068. package/dist/infrastructure/providers/scrape-creators/youtube/channel.js +58 -0
  1069. package/dist/infrastructure/providers/scrape-creators/youtube/channel.js.map +1 -0
  1070. package/dist/infrastructure/providers/scrape-creators/youtube/community-post.d.ts +114 -0
  1071. package/dist/infrastructure/providers/scrape-creators/youtube/community-post.d.ts.map +1 -0
  1072. package/dist/infrastructure/providers/scrape-creators/youtube/community-post.js +47 -0
  1073. package/dist/infrastructure/providers/scrape-creators/youtube/community-post.js.map +1 -0
  1074. package/dist/infrastructure/providers/scrape-creators/youtube/manifest.d.ts +2274 -0
  1075. package/dist/infrastructure/providers/scrape-creators/youtube/manifest.d.ts.map +1 -0
  1076. package/dist/infrastructure/providers/scrape-creators/youtube/manifest.js +60 -0
  1077. package/dist/infrastructure/providers/scrape-creators/youtube/manifest.js.map +1 -0
  1078. package/dist/infrastructure/providers/scrape-creators/youtube/playlist.d.ts +104 -0
  1079. package/dist/infrastructure/providers/scrape-creators/youtube/playlist.d.ts.map +1 -0
  1080. package/dist/infrastructure/providers/scrape-creators/youtube/playlist.js +49 -0
  1081. package/dist/infrastructure/providers/scrape-creators/youtube/playlist.js.map +1 -0
  1082. package/dist/infrastructure/providers/scrape-creators/youtube/search-hashtag.d.ts +121 -0
  1083. package/dist/infrastructure/providers/scrape-creators/youtube/search-hashtag.d.ts.map +1 -0
  1084. package/dist/infrastructure/providers/scrape-creators/youtube/search-hashtag.js +52 -0
  1085. package/dist/infrastructure/providers/scrape-creators/youtube/search-hashtag.js.map +1 -0
  1086. package/dist/infrastructure/providers/scrape-creators/youtube/search.d.ts +121 -0
  1087. package/dist/infrastructure/providers/scrape-creators/youtube/search.d.ts.map +1 -0
  1088. package/dist/infrastructure/providers/scrape-creators/youtube/search.js +48 -0
  1089. package/dist/infrastructure/providers/scrape-creators/youtube/search.js.map +1 -0
  1090. package/dist/infrastructure/providers/scrape-creators/youtube/shorts-trending.d.ts +93 -0
  1091. package/dist/infrastructure/providers/scrape-creators/youtube/shorts-trending.d.ts.map +1 -0
  1092. package/dist/infrastructure/providers/scrape-creators/youtube/shorts-trending.js +42 -0
  1093. package/dist/infrastructure/providers/scrape-creators/youtube/shorts-trending.js.map +1 -0
  1094. package/dist/infrastructure/providers/scrape-creators/youtube/video-comment-replies.d.ts +96 -0
  1095. package/dist/infrastructure/providers/scrape-creators/youtube/video-comment-replies.d.ts.map +1 -0
  1096. package/dist/infrastructure/providers/scrape-creators/youtube/video-comment-replies.js +75 -0
  1097. package/dist/infrastructure/providers/scrape-creators/youtube/video-comment-replies.js.map +1 -0
  1098. package/dist/infrastructure/providers/scrape-creators/youtube/video-comments.d.ts +88 -0
  1099. package/dist/infrastructure/providers/scrape-creators/youtube/video-comments.d.ts.map +1 -0
  1100. package/dist/infrastructure/providers/scrape-creators/youtube/video-comments.js +41 -0
  1101. package/dist/infrastructure/providers/scrape-creators/youtube/video-comments.js.map +1 -0
  1102. package/dist/infrastructure/providers/scrape-creators/youtube/video-transcript.d.ts +106 -0
  1103. package/dist/infrastructure/providers/scrape-creators/youtube/video-transcript.d.ts.map +1 -0
  1104. package/dist/infrastructure/providers/scrape-creators/youtube/video-transcript.js +47 -0
  1105. package/dist/infrastructure/providers/scrape-creators/youtube/video-transcript.js.map +1 -0
  1106. package/dist/infrastructure/providers/scrape-creators/youtube/video.d.ts +152 -0
  1107. package/dist/infrastructure/providers/scrape-creators/youtube/video.d.ts.map +1 -0
  1108. package/dist/infrastructure/providers/scrape-creators/youtube/video.js +63 -0
  1109. package/dist/infrastructure/providers/scrape-creators/youtube/video.js.map +1 -0
  1110. package/dist/infrastructure/runtime.d.ts +12 -0
  1111. package/dist/infrastructure/runtime.d.ts.map +1 -0
  1112. package/dist/infrastructure/runtime.js +47 -0
  1113. package/dist/infrastructure/runtime.js.map +1 -0
  1114. package/dist/infrastructure/supabase/database.types.d.ts +395 -0
  1115. package/dist/infrastructure/supabase/database.types.d.ts.map +1 -0
  1116. package/dist/infrastructure/supabase/database.types.js +13 -0
  1117. package/dist/infrastructure/supabase/database.types.js.map +1 -0
  1118. package/dist/infrastructure/usage/supabase-usage-live.d.ts +125 -0
  1119. package/dist/infrastructure/usage/supabase-usage-live.d.ts.map +1 -0
  1120. package/dist/infrastructure/usage/supabase-usage-live.js +639 -0
  1121. package/dist/infrastructure/usage/supabase-usage-live.js.map +1 -0
  1122. package/dist/providers/definitions/age-gender/args.d.ts +5 -0
  1123. package/dist/providers/definitions/age-gender/args.d.ts.map +1 -0
  1124. package/dist/providers/definitions/age-gender/args.js +15 -0
  1125. package/dist/providers/definitions/age-gender/args.js.map +1 -0
  1126. package/dist/providers/definitions/age-gender/detect-age-gender/index.d.ts +3 -0
  1127. package/dist/providers/definitions/age-gender/detect-age-gender/index.d.ts.map +1 -0
  1128. package/dist/providers/definitions/age-gender/detect-age-gender/index.js +21 -0
  1129. package/dist/providers/definitions/age-gender/detect-age-gender/index.js.map +1 -0
  1130. package/dist/providers/definitions/age-gender/index.d.ts +15 -0
  1131. package/dist/providers/definitions/age-gender/index.d.ts.map +1 -0
  1132. package/dist/providers/definitions/age-gender/index.js +41 -0
  1133. package/dist/providers/definitions/age-gender/index.js.map +1 -0
  1134. package/dist/providers/definitions/age-gender/types.d.ts +16 -0
  1135. package/dist/providers/definitions/age-gender/types.d.ts.map +1 -0
  1136. package/dist/providers/definitions/age-gender/types.js +5 -0
  1137. package/dist/providers/definitions/age-gender/types.js.map +1 -0
  1138. package/dist/providers/definitions/age-gender/url.d.ts +3 -0
  1139. package/dist/providers/definitions/age-gender/url.d.ts.map +1 -0
  1140. package/dist/providers/definitions/age-gender/url.js +19 -0
  1141. package/dist/providers/definitions/age-gender/url.js.map +1 -0
  1142. package/dist/providers/definitions/amazon-shop/args.d.ts +5 -0
  1143. package/dist/providers/definitions/amazon-shop/args.d.ts.map +1 -0
  1144. package/dist/providers/definitions/amazon-shop/args.js +18 -0
  1145. package/dist/providers/definitions/amazon-shop/args.js.map +1 -0
  1146. package/dist/providers/definitions/amazon-shop/index.d.ts +15 -0
  1147. package/dist/providers/definitions/amazon-shop/index.d.ts.map +1 -0
  1148. package/dist/providers/definitions/amazon-shop/index.js +39 -0
  1149. package/dist/providers/definitions/amazon-shop/index.js.map +1 -0
  1150. package/dist/providers/definitions/amazon-shop/profile/index.d.ts +3 -0
  1151. package/dist/providers/definitions/amazon-shop/profile/index.d.ts.map +1 -0
  1152. package/dist/providers/definitions/amazon-shop/profile/index.js +21 -0
  1153. package/dist/providers/definitions/amazon-shop/profile/index.js.map +1 -0
  1154. package/dist/providers/definitions/amazon-shop/types.d.ts +16 -0
  1155. package/dist/providers/definitions/amazon-shop/types.d.ts.map +1 -0
  1156. package/dist/providers/definitions/amazon-shop/types.js +5 -0
  1157. package/dist/providers/definitions/amazon-shop/types.js.map +1 -0
  1158. package/dist/providers/definitions/amazon-shop/url.d.ts +6 -0
  1159. package/dist/providers/definitions/amazon-shop/url.d.ts.map +1 -0
  1160. package/dist/providers/definitions/amazon-shop/url.js +44 -0
  1161. package/dist/providers/definitions/amazon-shop/url.js.map +1 -0
  1162. package/dist/providers/definitions/bluesky/args.d.ts +7 -0
  1163. package/dist/providers/definitions/bluesky/args.d.ts.map +1 -0
  1164. package/dist/providers/definitions/bluesky/args.js +29 -0
  1165. package/dist/providers/definitions/bluesky/args.js.map +1 -0
  1166. package/dist/providers/definitions/bluesky/index.d.ts +15 -0
  1167. package/dist/providers/definitions/bluesky/index.d.ts.map +1 -0
  1168. package/dist/providers/definitions/bluesky/index.js +49 -0
  1169. package/dist/providers/definitions/bluesky/index.js.map +1 -0
  1170. package/dist/providers/definitions/bluesky/post/index.d.ts +3 -0
  1171. package/dist/providers/definitions/bluesky/post/index.d.ts.map +1 -0
  1172. package/dist/providers/definitions/bluesky/post/index.js +21 -0
  1173. package/dist/providers/definitions/bluesky/post/index.js.map +1 -0
  1174. package/dist/providers/definitions/bluesky/profile/index.d.ts +3 -0
  1175. package/dist/providers/definitions/bluesky/profile/index.d.ts.map +1 -0
  1176. package/dist/providers/definitions/bluesky/profile/index.js +21 -0
  1177. package/dist/providers/definitions/bluesky/profile/index.js.map +1 -0
  1178. package/dist/providers/definitions/bluesky/types.d.ts +16 -0
  1179. package/dist/providers/definitions/bluesky/types.d.ts.map +1 -0
  1180. package/dist/providers/definitions/bluesky/types.js +5 -0
  1181. package/dist/providers/definitions/bluesky/types.js.map +1 -0
  1182. package/dist/providers/definitions/bluesky/url.d.ts +10 -0
  1183. package/dist/providers/definitions/bluesky/url.d.ts.map +1 -0
  1184. package/dist/providers/definitions/bluesky/url.js +84 -0
  1185. package/dist/providers/definitions/bluesky/url.js.map +1 -0
  1186. package/dist/providers/definitions/bluesky/user-posts/index.d.ts +3 -0
  1187. package/dist/providers/definitions/bluesky/user-posts/index.d.ts.map +1 -0
  1188. package/dist/providers/definitions/bluesky/user-posts/index.js +20 -0
  1189. package/dist/providers/definitions/bluesky/user-posts/index.js.map +1 -0
  1190. package/dist/providers/definitions/facebook/args.d.ts +10 -0
  1191. package/dist/providers/definitions/facebook/args.d.ts.map +1 -0
  1192. package/dist/providers/definitions/facebook/args.js +73 -0
  1193. package/dist/providers/definitions/facebook/args.js.map +1 -0
  1194. package/dist/providers/definitions/facebook/comment-replies/index.d.ts +3 -0
  1195. package/dist/providers/definitions/facebook/comment-replies/index.d.ts.map +1 -0
  1196. package/dist/providers/definitions/facebook/comment-replies/index.js +24 -0
  1197. package/dist/providers/definitions/facebook/comment-replies/index.js.map +1 -0
  1198. package/dist/providers/definitions/facebook/comments/index.d.ts +3 -0
  1199. package/dist/providers/definitions/facebook/comments/index.d.ts.map +1 -0
  1200. package/dist/providers/definitions/facebook/comments/index.js +23 -0
  1201. package/dist/providers/definitions/facebook/comments/index.js.map +1 -0
  1202. package/dist/providers/definitions/facebook/group-posts/index.d.ts +3 -0
  1203. package/dist/providers/definitions/facebook/group-posts/index.d.ts.map +1 -0
  1204. package/dist/providers/definitions/facebook/group-posts/index.js +24 -0
  1205. package/dist/providers/definitions/facebook/group-posts/index.js.map +1 -0
  1206. package/dist/providers/definitions/facebook/index.d.ts +15 -0
  1207. package/dist/providers/definitions/facebook/index.d.ts.map +1 -0
  1208. package/dist/providers/definitions/facebook/index.js +70 -0
  1209. package/dist/providers/definitions/facebook/index.js.map +1 -0
  1210. package/dist/providers/definitions/facebook/post/index.d.ts +3 -0
  1211. package/dist/providers/definitions/facebook/post/index.d.ts.map +1 -0
  1212. package/dist/providers/definitions/facebook/post/index.js +21 -0
  1213. package/dist/providers/definitions/facebook/post/index.js.map +1 -0
  1214. package/dist/providers/definitions/facebook/post-transcript/index.d.ts +3 -0
  1215. package/dist/providers/definitions/facebook/post-transcript/index.d.ts.map +1 -0
  1216. package/dist/providers/definitions/facebook/post-transcript/index.js +20 -0
  1217. package/dist/providers/definitions/facebook/post-transcript/index.js.map +1 -0
  1218. package/dist/providers/definitions/facebook/profile/index.d.ts +3 -0
  1219. package/dist/providers/definitions/facebook/profile/index.d.ts.map +1 -0
  1220. package/dist/providers/definitions/facebook/profile/index.js +24 -0
  1221. package/dist/providers/definitions/facebook/profile/index.js.map +1 -0
  1222. package/dist/providers/definitions/facebook/profile-events/index.d.ts +3 -0
  1223. package/dist/providers/definitions/facebook/profile-events/index.d.ts.map +1 -0
  1224. package/dist/providers/definitions/facebook/profile-events/index.js +23 -0
  1225. package/dist/providers/definitions/facebook/profile-events/index.js.map +1 -0
  1226. package/dist/providers/definitions/facebook/profile-photos/index.d.ts +3 -0
  1227. package/dist/providers/definitions/facebook/profile-photos/index.d.ts.map +1 -0
  1228. package/dist/providers/definitions/facebook/profile-photos/index.js +23 -0
  1229. package/dist/providers/definitions/facebook/profile-photos/index.js.map +1 -0
  1230. package/dist/providers/definitions/facebook/profile-posts/index.d.ts +3 -0
  1231. package/dist/providers/definitions/facebook/profile-posts/index.d.ts.map +1 -0
  1232. package/dist/providers/definitions/facebook/profile-posts/index.js +23 -0
  1233. package/dist/providers/definitions/facebook/profile-posts/index.js.map +1 -0
  1234. package/dist/providers/definitions/facebook/profile-reels/index.d.ts +3 -0
  1235. package/dist/providers/definitions/facebook/profile-reels/index.d.ts.map +1 -0
  1236. package/dist/providers/definitions/facebook/profile-reels/index.js +23 -0
  1237. package/dist/providers/definitions/facebook/profile-reels/index.js.map +1 -0
  1238. package/dist/providers/definitions/facebook/types.d.ts +16 -0
  1239. package/dist/providers/definitions/facebook/types.d.ts.map +1 -0
  1240. package/dist/providers/definitions/facebook/types.js +5 -0
  1241. package/dist/providers/definitions/facebook/types.js.map +1 -0
  1242. package/dist/providers/definitions/facebook/url.d.ts +22 -0
  1243. package/dist/providers/definitions/facebook/url.d.ts.map +1 -0
  1244. package/dist/providers/definitions/facebook/url.js +204 -0
  1245. package/dist/providers/definitions/facebook/url.js.map +1 -0
  1246. package/dist/providers/definitions/facebook-ad-library/ad-detail/index.d.ts +3 -0
  1247. package/dist/providers/definitions/facebook-ad-library/ad-detail/index.d.ts.map +1 -0
  1248. package/dist/providers/definitions/facebook-ad-library/ad-detail/index.js +24 -0
  1249. package/dist/providers/definitions/facebook-ad-library/ad-detail/index.js.map +1 -0
  1250. package/dist/providers/definitions/facebook-ad-library/ad-search/index.d.ts +3 -0
  1251. package/dist/providers/definitions/facebook-ad-library/ad-search/index.d.ts.map +1 -0
  1252. package/dist/providers/definitions/facebook-ad-library/ad-search/index.js +34 -0
  1253. package/dist/providers/definitions/facebook-ad-library/ad-search/index.js.map +1 -0
  1254. package/dist/providers/definitions/facebook-ad-library/args.d.ts +7 -0
  1255. package/dist/providers/definitions/facebook-ad-library/args.d.ts.map +1 -0
  1256. package/dist/providers/definitions/facebook-ad-library/args.js +44 -0
  1257. package/dist/providers/definitions/facebook-ad-library/args.js.map +1 -0
  1258. package/dist/providers/definitions/facebook-ad-library/company-ads/index.d.ts +3 -0
  1259. package/dist/providers/definitions/facebook-ad-library/company-ads/index.d.ts.map +1 -0
  1260. package/dist/providers/definitions/facebook-ad-library/company-ads/index.js +33 -0
  1261. package/dist/providers/definitions/facebook-ad-library/company-ads/index.js.map +1 -0
  1262. package/dist/providers/definitions/facebook-ad-library/company-search/index.d.ts +3 -0
  1263. package/dist/providers/definitions/facebook-ad-library/company-search/index.d.ts.map +1 -0
  1264. package/dist/providers/definitions/facebook-ad-library/company-search/index.js +22 -0
  1265. package/dist/providers/definitions/facebook-ad-library/company-search/index.js.map +1 -0
  1266. package/dist/providers/definitions/facebook-ad-library/index.d.ts +15 -0
  1267. package/dist/providers/definitions/facebook-ad-library/index.d.ts.map +1 -0
  1268. package/dist/providers/definitions/facebook-ad-library/index.js +47 -0
  1269. package/dist/providers/definitions/facebook-ad-library/index.js.map +1 -0
  1270. package/dist/providers/definitions/facebook-ad-library/types.d.ts +16 -0
  1271. package/dist/providers/definitions/facebook-ad-library/types.d.ts.map +1 -0
  1272. package/dist/providers/definitions/facebook-ad-library/types.js +5 -0
  1273. package/dist/providers/definitions/facebook-ad-library/types.js.map +1 -0
  1274. package/dist/providers/definitions/facebook-ad-library/url.d.ts +11 -0
  1275. package/dist/providers/definitions/facebook-ad-library/url.d.ts.map +1 -0
  1276. package/dist/providers/definitions/facebook-ad-library/url.js +59 -0
  1277. package/dist/providers/definitions/facebook-ad-library/url.js.map +1 -0
  1278. package/dist/providers/definitions/facebook-events/args.d.ts +6 -0
  1279. package/dist/providers/definitions/facebook-events/args.d.ts.map +1 -0
  1280. package/dist/providers/definitions/facebook-events/args.js +34 -0
  1281. package/dist/providers/definitions/facebook-events/args.js.map +1 -0
  1282. package/dist/providers/definitions/facebook-events/city-events/index.d.ts +3 -0
  1283. package/dist/providers/definitions/facebook-events/city-events/index.d.ts.map +1 -0
  1284. package/dist/providers/definitions/facebook-events/city-events/index.js +23 -0
  1285. package/dist/providers/definitions/facebook-events/city-events/index.js.map +1 -0
  1286. package/dist/providers/definitions/facebook-events/event-detail/index.d.ts +3 -0
  1287. package/dist/providers/definitions/facebook-events/event-detail/index.d.ts.map +1 -0
  1288. package/dist/providers/definitions/facebook-events/event-detail/index.js +21 -0
  1289. package/dist/providers/definitions/facebook-events/event-detail/index.js.map +1 -0
  1290. package/dist/providers/definitions/facebook-events/event-search/index.d.ts +3 -0
  1291. package/dist/providers/definitions/facebook-events/event-search/index.d.ts.map +1 -0
  1292. package/dist/providers/definitions/facebook-events/event-search/index.js +23 -0
  1293. package/dist/providers/definitions/facebook-events/event-search/index.js.map +1 -0
  1294. package/dist/providers/definitions/facebook-events/index.d.ts +15 -0
  1295. package/dist/providers/definitions/facebook-events/index.d.ts.map +1 -0
  1296. package/dist/providers/definitions/facebook-events/index.js +45 -0
  1297. package/dist/providers/definitions/facebook-events/index.js.map +1 -0
  1298. package/dist/providers/definitions/facebook-events/types.d.ts +16 -0
  1299. package/dist/providers/definitions/facebook-events/types.d.ts.map +1 -0
  1300. package/dist/providers/definitions/facebook-events/types.js +5 -0
  1301. package/dist/providers/definitions/facebook-events/types.js.map +1 -0
  1302. package/dist/providers/definitions/facebook-events/url.d.ts +9 -0
  1303. package/dist/providers/definitions/facebook-events/url.d.ts.map +1 -0
  1304. package/dist/providers/definitions/facebook-events/url.js +54 -0
  1305. package/dist/providers/definitions/facebook-events/url.js.map +1 -0
  1306. package/dist/providers/definitions/facebook-marketplace/args.d.ts +5 -0
  1307. package/dist/providers/definitions/facebook-marketplace/args.d.ts.map +1 -0
  1308. package/dist/providers/definitions/facebook-marketplace/args.js +26 -0
  1309. package/dist/providers/definitions/facebook-marketplace/args.js.map +1 -0
  1310. package/dist/providers/definitions/facebook-marketplace/index.d.ts +15 -0
  1311. package/dist/providers/definitions/facebook-marketplace/index.d.ts.map +1 -0
  1312. package/dist/providers/definitions/facebook-marketplace/index.js +45 -0
  1313. package/dist/providers/definitions/facebook-marketplace/index.js.map +1 -0
  1314. package/dist/providers/definitions/facebook-marketplace/listing-detail/index.d.ts +3 -0
  1315. package/dist/providers/definitions/facebook-marketplace/listing-detail/index.d.ts.map +1 -0
  1316. package/dist/providers/definitions/facebook-marketplace/listing-detail/index.js +21 -0
  1317. package/dist/providers/definitions/facebook-marketplace/listing-detail/index.js.map +1 -0
  1318. package/dist/providers/definitions/facebook-marketplace/marketplace-location-search/index.d.ts +3 -0
  1319. package/dist/providers/definitions/facebook-marketplace/marketplace-location-search/index.d.ts.map +1 -0
  1320. package/dist/providers/definitions/facebook-marketplace/marketplace-location-search/index.js +22 -0
  1321. package/dist/providers/definitions/facebook-marketplace/marketplace-location-search/index.js.map +1 -0
  1322. package/dist/providers/definitions/facebook-marketplace/marketplace-search/index.d.ts +3 -0
  1323. package/dist/providers/definitions/facebook-marketplace/marketplace-search/index.d.ts.map +1 -0
  1324. package/dist/providers/definitions/facebook-marketplace/marketplace-search/index.js +36 -0
  1325. package/dist/providers/definitions/facebook-marketplace/marketplace-search/index.js.map +1 -0
  1326. package/dist/providers/definitions/facebook-marketplace/types.d.ts +16 -0
  1327. package/dist/providers/definitions/facebook-marketplace/types.d.ts.map +1 -0
  1328. package/dist/providers/definitions/facebook-marketplace/types.js +5 -0
  1329. package/dist/providers/definitions/facebook-marketplace/types.js.map +1 -0
  1330. package/dist/providers/definitions/facebook-marketplace/url.d.ts +8 -0
  1331. package/dist/providers/definitions/facebook-marketplace/url.d.ts.map +1 -0
  1332. package/dist/providers/definitions/facebook-marketplace/url.js +58 -0
  1333. package/dist/providers/definitions/facebook-marketplace/url.js.map +1 -0
  1334. package/dist/providers/definitions/github/args.d.ts +8 -0
  1335. package/dist/providers/definitions/github/args.d.ts.map +1 -0
  1336. package/dist/providers/definitions/github/args.js +51 -0
  1337. package/dist/providers/definitions/github/args.js.map +1 -0
  1338. package/dist/providers/definitions/github/index.d.ts +15 -0
  1339. package/dist/providers/definitions/github/index.d.ts.map +1 -0
  1340. package/dist/providers/definitions/github/index.js +67 -0
  1341. package/dist/providers/definitions/github/index.js.map +1 -0
  1342. package/dist/providers/definitions/github/repository/index.d.ts +3 -0
  1343. package/dist/providers/definitions/github/repository/index.d.ts.map +1 -0
  1344. package/dist/providers/definitions/github/repository/index.js +21 -0
  1345. package/dist/providers/definitions/github/repository/index.js.map +1 -0
  1346. package/dist/providers/definitions/github/trending-developers/index.d.ts +3 -0
  1347. package/dist/providers/definitions/github/trending-developers/index.d.ts.map +1 -0
  1348. package/dist/providers/definitions/github/trending-developers/index.js +25 -0
  1349. package/dist/providers/definitions/github/trending-developers/index.js.map +1 -0
  1350. package/dist/providers/definitions/github/trending-repositories/index.d.ts +3 -0
  1351. package/dist/providers/definitions/github/trending-repositories/index.d.ts.map +1 -0
  1352. package/dist/providers/definitions/github/trending-repositories/index.js +29 -0
  1353. package/dist/providers/definitions/github/trending-repositories/index.js.map +1 -0
  1354. package/dist/providers/definitions/github/types.d.ts +16 -0
  1355. package/dist/providers/definitions/github/types.d.ts.map +1 -0
  1356. package/dist/providers/definitions/github/types.js +5 -0
  1357. package/dist/providers/definitions/github/types.js.map +1 -0
  1358. package/dist/providers/definitions/github/url.d.ts +11 -0
  1359. package/dist/providers/definitions/github/url.d.ts.map +1 -0
  1360. package/dist/providers/definitions/github/url.js +108 -0
  1361. package/dist/providers/definitions/github/url.js.map +1 -0
  1362. package/dist/providers/definitions/github/user/index.d.ts +3 -0
  1363. package/dist/providers/definitions/github/user/index.d.ts.map +1 -0
  1364. package/dist/providers/definitions/github/user/index.js +21 -0
  1365. package/dist/providers/definitions/github/user/index.js.map +1 -0
  1366. package/dist/providers/definitions/github/user-activity/index.d.ts +3 -0
  1367. package/dist/providers/definitions/github/user-activity/index.d.ts.map +1 -0
  1368. package/dist/providers/definitions/github/user-activity/index.js +23 -0
  1369. package/dist/providers/definitions/github/user-activity/index.js.map +1 -0
  1370. package/dist/providers/definitions/github/user-contributions/index.d.ts +3 -0
  1371. package/dist/providers/definitions/github/user-contributions/index.d.ts.map +1 -0
  1372. package/dist/providers/definitions/github/user-contributions/index.js +23 -0
  1373. package/dist/providers/definitions/github/user-contributions/index.js.map +1 -0
  1374. package/dist/providers/definitions/github/user-followers/index.d.ts +3 -0
  1375. package/dist/providers/definitions/github/user-followers/index.d.ts.map +1 -0
  1376. package/dist/providers/definitions/github/user-followers/index.js +23 -0
  1377. package/dist/providers/definitions/github/user-followers/index.js.map +1 -0
  1378. package/dist/providers/definitions/github/user-following/index.d.ts +3 -0
  1379. package/dist/providers/definitions/github/user-following/index.d.ts.map +1 -0
  1380. package/dist/providers/definitions/github/user-following/index.js +23 -0
  1381. package/dist/providers/definitions/github/user-following/index.js.map +1 -0
  1382. package/dist/providers/definitions/github/user-repositories/index.d.ts +3 -0
  1383. package/dist/providers/definitions/github/user-repositories/index.d.ts.map +1 -0
  1384. package/dist/providers/definitions/github/user-repositories/index.js +23 -0
  1385. package/dist/providers/definitions/github/user-repositories/index.js.map +1 -0
  1386. package/dist/providers/definitions/google/args.d.ts +5 -0
  1387. package/dist/providers/definitions/google/args.d.ts.map +1 -0
  1388. package/dist/providers/definitions/google/args.js +13 -0
  1389. package/dist/providers/definitions/google/args.js.map +1 -0
  1390. package/dist/providers/definitions/google/index.d.ts +15 -0
  1391. package/dist/providers/definitions/google/index.d.ts.map +1 -0
  1392. package/dist/providers/definitions/google/index.js +41 -0
  1393. package/dist/providers/definitions/google/index.js.map +1 -0
  1394. package/dist/providers/definitions/google/search/index.d.ts +3 -0
  1395. package/dist/providers/definitions/google/search/index.d.ts.map +1 -0
  1396. package/dist/providers/definitions/google/search/index.js +24 -0
  1397. package/dist/providers/definitions/google/search/index.js.map +1 -0
  1398. package/dist/providers/definitions/google/types.d.ts +16 -0
  1399. package/dist/providers/definitions/google/types.d.ts.map +1 -0
  1400. package/dist/providers/definitions/google/types.js +5 -0
  1401. package/dist/providers/definitions/google/types.js.map +1 -0
  1402. package/dist/providers/definitions/google/url.d.ts +6 -0
  1403. package/dist/providers/definitions/google/url.d.ts.map +1 -0
  1404. package/dist/providers/definitions/google/url.js +40 -0
  1405. package/dist/providers/definitions/google/url.js.map +1 -0
  1406. package/dist/providers/definitions/google-ad-library/ad-detail/index.d.ts +3 -0
  1407. package/dist/providers/definitions/google-ad-library/ad-detail/index.d.ts.map +1 -0
  1408. package/dist/providers/definitions/google-ad-library/ad-detail/index.js +23 -0
  1409. package/dist/providers/definitions/google-ad-library/ad-detail/index.js.map +1 -0
  1410. package/dist/providers/definitions/google-ad-library/advertiser-search/index.d.ts +3 -0
  1411. package/dist/providers/definitions/google-ad-library/advertiser-search/index.d.ts.map +1 -0
  1412. package/dist/providers/definitions/google-ad-library/advertiser-search/index.js +25 -0
  1413. package/dist/providers/definitions/google-ad-library/advertiser-search/index.js.map +1 -0
  1414. package/dist/providers/definitions/google-ad-library/args.d.ts +7 -0
  1415. package/dist/providers/definitions/google-ad-library/args.d.ts.map +1 -0
  1416. package/dist/providers/definitions/google-ad-library/args.js +41 -0
  1417. package/dist/providers/definitions/google-ad-library/args.js.map +1 -0
  1418. package/dist/providers/definitions/google-ad-library/company-ads/index.d.ts +3 -0
  1419. package/dist/providers/definitions/google-ad-library/company-ads/index.d.ts.map +1 -0
  1420. package/dist/providers/definitions/google-ad-library/company-ads/index.js +32 -0
  1421. package/dist/providers/definitions/google-ad-library/company-ads/index.js.map +1 -0
  1422. package/dist/providers/definitions/google-ad-library/index.d.ts +15 -0
  1423. package/dist/providers/definitions/google-ad-library/index.d.ts.map +1 -0
  1424. package/dist/providers/definitions/google-ad-library/index.js +45 -0
  1425. package/dist/providers/definitions/google-ad-library/index.js.map +1 -0
  1426. package/dist/providers/definitions/google-ad-library/types.d.ts +16 -0
  1427. package/dist/providers/definitions/google-ad-library/types.d.ts.map +1 -0
  1428. package/dist/providers/definitions/google-ad-library/types.js +5 -0
  1429. package/dist/providers/definitions/google-ad-library/types.js.map +1 -0
  1430. package/dist/providers/definitions/google-ad-library/url.d.ts +11 -0
  1431. package/dist/providers/definitions/google-ad-library/url.d.ts.map +1 -0
  1432. package/dist/providers/definitions/google-ad-library/url.js +68 -0
  1433. package/dist/providers/definitions/google-ad-library/url.js.map +1 -0
  1434. package/dist/providers/definitions/instagram/args.d.ts +5 -0
  1435. package/dist/providers/definitions/instagram/args.d.ts.map +1 -0
  1436. package/dist/providers/definitions/instagram/args.js +22 -0
  1437. package/dist/providers/definitions/instagram/args.js.map +1 -0
  1438. package/dist/providers/definitions/instagram/basic-profile/index.d.ts +3 -0
  1439. package/dist/providers/definitions/instagram/basic-profile/index.d.ts.map +1 -0
  1440. package/dist/providers/definitions/instagram/basic-profile/index.js +20 -0
  1441. package/dist/providers/definitions/instagram/basic-profile/index.js.map +1 -0
  1442. package/dist/providers/definitions/instagram/comments/index.d.ts +3 -0
  1443. package/dist/providers/definitions/instagram/comments/index.d.ts.map +1 -0
  1444. package/dist/providers/definitions/instagram/comments/index.js +24 -0
  1445. package/dist/providers/definitions/instagram/comments/index.js.map +1 -0
  1446. package/dist/providers/definitions/instagram/embed-html/index.d.ts +3 -0
  1447. package/dist/providers/definitions/instagram/embed-html/index.d.ts.map +1 -0
  1448. package/dist/providers/definitions/instagram/embed-html/index.js +26 -0
  1449. package/dist/providers/definitions/instagram/embed-html/index.js.map +1 -0
  1450. package/dist/providers/definitions/instagram/highlight-detail/index.d.ts +3 -0
  1451. package/dist/providers/definitions/instagram/highlight-detail/index.d.ts.map +1 -0
  1452. package/dist/providers/definitions/instagram/highlight-detail/index.js +29 -0
  1453. package/dist/providers/definitions/instagram/highlight-detail/index.js.map +1 -0
  1454. package/dist/providers/definitions/instagram/index.d.ts +15 -0
  1455. package/dist/providers/definitions/instagram/index.d.ts.map +1 -0
  1456. package/dist/providers/definitions/instagram/index.js +79 -0
  1457. package/dist/providers/definitions/instagram/index.js.map +1 -0
  1458. package/dist/providers/definitions/instagram/post/index.d.ts +3 -0
  1459. package/dist/providers/definitions/instagram/post/index.d.ts.map +1 -0
  1460. package/dist/providers/definitions/instagram/post/index.js +24 -0
  1461. package/dist/providers/definitions/instagram/post/index.js.map +1 -0
  1462. package/dist/providers/definitions/instagram/posts/index.d.ts +3 -0
  1463. package/dist/providers/definitions/instagram/posts/index.d.ts.map +1 -0
  1464. package/dist/providers/definitions/instagram/posts/index.js +29 -0
  1465. package/dist/providers/definitions/instagram/posts/index.js.map +1 -0
  1466. package/dist/providers/definitions/instagram/profile/index.d.ts +3 -0
  1467. package/dist/providers/definitions/instagram/profile/index.d.ts.map +1 -0
  1468. package/dist/providers/definitions/instagram/profile/index.js +25 -0
  1469. package/dist/providers/definitions/instagram/profile/index.js.map +1 -0
  1470. package/dist/providers/definitions/instagram/reels/index.d.ts +3 -0
  1471. package/dist/providers/definitions/instagram/reels/index.d.ts.map +1 -0
  1472. package/dist/providers/definitions/instagram/reels/index.js +23 -0
  1473. package/dist/providers/definitions/instagram/reels/index.js.map +1 -0
  1474. package/dist/providers/definitions/instagram/search-reels/index.d.ts +3 -0
  1475. package/dist/providers/definitions/instagram/search-reels/index.d.ts.map +1 -0
  1476. package/dist/providers/definitions/instagram/search-reels/index.js +24 -0
  1477. package/dist/providers/definitions/instagram/search-reels/index.js.map +1 -0
  1478. package/dist/providers/definitions/instagram/song-reels/index.d.ts +3 -0
  1479. package/dist/providers/definitions/instagram/song-reels/index.d.ts.map +1 -0
  1480. package/dist/providers/definitions/instagram/song-reels/index.js +21 -0
  1481. package/dist/providers/definitions/instagram/song-reels/index.js.map +1 -0
  1482. package/dist/providers/definitions/instagram/story-highlights/index.d.ts +3 -0
  1483. package/dist/providers/definitions/instagram/story-highlights/index.d.ts.map +1 -0
  1484. package/dist/providers/definitions/instagram/story-highlights/index.js +20 -0
  1485. package/dist/providers/definitions/instagram/story-highlights/index.js.map +1 -0
  1486. package/dist/providers/definitions/instagram/transcript/index.d.ts +3 -0
  1487. package/dist/providers/definitions/instagram/transcript/index.d.ts.map +1 -0
  1488. package/dist/providers/definitions/instagram/transcript/index.js +22 -0
  1489. package/dist/providers/definitions/instagram/transcript/index.js.map +1 -0
  1490. package/dist/providers/definitions/instagram/trending-reels/index.d.ts +3 -0
  1491. package/dist/providers/definitions/instagram/trending-reels/index.d.ts.map +1 -0
  1492. package/dist/providers/definitions/instagram/trending-reels/index.js +19 -0
  1493. package/dist/providers/definitions/instagram/trending-reels/index.js.map +1 -0
  1494. package/dist/providers/definitions/instagram/types.d.ts +16 -0
  1495. package/dist/providers/definitions/instagram/types.d.ts.map +1 -0
  1496. package/dist/providers/definitions/instagram/types.js +5 -0
  1497. package/dist/providers/definitions/instagram/types.js.map +1 -0
  1498. package/dist/providers/definitions/instagram/url.d.ts +10 -0
  1499. package/dist/providers/definitions/instagram/url.d.ts.map +1 -0
  1500. package/dist/providers/definitions/instagram/url.js +95 -0
  1501. package/dist/providers/definitions/instagram/url.js.map +1 -0
  1502. package/dist/providers/definitions/kick/args.d.ts +5 -0
  1503. package/dist/providers/definitions/kick/args.d.ts.map +1 -0
  1504. package/dist/providers/definitions/kick/args.js +18 -0
  1505. package/dist/providers/definitions/kick/args.js.map +1 -0
  1506. package/dist/providers/definitions/kick/clip/index.d.ts +3 -0
  1507. package/dist/providers/definitions/kick/clip/index.d.ts.map +1 -0
  1508. package/dist/providers/definitions/kick/clip/index.js +21 -0
  1509. package/dist/providers/definitions/kick/clip/index.js.map +1 -0
  1510. package/dist/providers/definitions/kick/index.d.ts +15 -0
  1511. package/dist/providers/definitions/kick/index.d.ts.map +1 -0
  1512. package/dist/providers/definitions/kick/index.js +41 -0
  1513. package/dist/providers/definitions/kick/index.js.map +1 -0
  1514. package/dist/providers/definitions/kick/types.d.ts +16 -0
  1515. package/dist/providers/definitions/kick/types.d.ts.map +1 -0
  1516. package/dist/providers/definitions/kick/types.js +5 -0
  1517. package/dist/providers/definitions/kick/types.js.map +1 -0
  1518. package/dist/providers/definitions/kick/url.d.ts +9 -0
  1519. package/dist/providers/definitions/kick/url.d.ts.map +1 -0
  1520. package/dist/providers/definitions/kick/url.js +85 -0
  1521. package/dist/providers/definitions/kick/url.js.map +1 -0
  1522. package/dist/providers/definitions/komi/args.d.ts +5 -0
  1523. package/dist/providers/definitions/komi/args.d.ts.map +1 -0
  1524. package/dist/providers/definitions/komi/args.js +18 -0
  1525. package/dist/providers/definitions/komi/args.js.map +1 -0
  1526. package/dist/providers/definitions/komi/index.d.ts +15 -0
  1527. package/dist/providers/definitions/komi/index.d.ts.map +1 -0
  1528. package/dist/providers/definitions/komi/index.js +41 -0
  1529. package/dist/providers/definitions/komi/index.js.map +1 -0
  1530. package/dist/providers/definitions/komi/profile/index.d.ts +3 -0
  1531. package/dist/providers/definitions/komi/profile/index.d.ts.map +1 -0
  1532. package/dist/providers/definitions/komi/profile/index.js +21 -0
  1533. package/dist/providers/definitions/komi/profile/index.js.map +1 -0
  1534. package/dist/providers/definitions/komi/types.d.ts +16 -0
  1535. package/dist/providers/definitions/komi/types.d.ts.map +1 -0
  1536. package/dist/providers/definitions/komi/types.js +5 -0
  1537. package/dist/providers/definitions/komi/types.js.map +1 -0
  1538. package/dist/providers/definitions/komi/url.d.ts +6 -0
  1539. package/dist/providers/definitions/komi/url.d.ts.map +1 -0
  1540. package/dist/providers/definitions/komi/url.js +70 -0
  1541. package/dist/providers/definitions/komi/url.js.map +1 -0
  1542. package/dist/providers/definitions/linkbio/args.d.ts +5 -0
  1543. package/dist/providers/definitions/linkbio/args.d.ts.map +1 -0
  1544. package/dist/providers/definitions/linkbio/args.js +18 -0
  1545. package/dist/providers/definitions/linkbio/args.js.map +1 -0
  1546. package/dist/providers/definitions/linkbio/index.d.ts +15 -0
  1547. package/dist/providers/definitions/linkbio/index.d.ts.map +1 -0
  1548. package/dist/providers/definitions/linkbio/index.js +41 -0
  1549. package/dist/providers/definitions/linkbio/index.js.map +1 -0
  1550. package/dist/providers/definitions/linkbio/profile/index.d.ts +3 -0
  1551. package/dist/providers/definitions/linkbio/profile/index.d.ts.map +1 -0
  1552. package/dist/providers/definitions/linkbio/profile/index.js +21 -0
  1553. package/dist/providers/definitions/linkbio/profile/index.js.map +1 -0
  1554. package/dist/providers/definitions/linkbio/types.d.ts +16 -0
  1555. package/dist/providers/definitions/linkbio/types.d.ts.map +1 -0
  1556. package/dist/providers/definitions/linkbio/types.js +5 -0
  1557. package/dist/providers/definitions/linkbio/types.js.map +1 -0
  1558. package/dist/providers/definitions/linkbio/url.d.ts +6 -0
  1559. package/dist/providers/definitions/linkbio/url.d.ts.map +1 -0
  1560. package/dist/providers/definitions/linkbio/url.js +25 -0
  1561. package/dist/providers/definitions/linkbio/url.js.map +1 -0
  1562. package/dist/providers/definitions/linkedin/args.d.ts +3 -0
  1563. package/dist/providers/definitions/linkedin/args.d.ts.map +1 -0
  1564. package/dist/providers/definitions/linkedin/args.js +6 -0
  1565. package/dist/providers/definitions/linkedin/args.js.map +1 -0
  1566. package/dist/providers/definitions/linkedin/company/index.d.ts +3 -0
  1567. package/dist/providers/definitions/linkedin/company/index.d.ts.map +1 -0
  1568. package/dist/providers/definitions/linkedin/company/index.js +20 -0
  1569. package/dist/providers/definitions/linkedin/company/index.js.map +1 -0
  1570. package/dist/providers/definitions/linkedin/company-posts/index.d.ts +3 -0
  1571. package/dist/providers/definitions/linkedin/company-posts/index.d.ts.map +1 -0
  1572. package/dist/providers/definitions/linkedin/company-posts/index.js +26 -0
  1573. package/dist/providers/definitions/linkedin/company-posts/index.js.map +1 -0
  1574. package/dist/providers/definitions/linkedin/index.d.ts +6 -0
  1575. package/dist/providers/definitions/linkedin/index.d.ts.map +1 -0
  1576. package/dist/providers/definitions/linkedin/index.js +57 -0
  1577. package/dist/providers/definitions/linkedin/index.js.map +1 -0
  1578. package/dist/providers/definitions/linkedin/post/index.d.ts +3 -0
  1579. package/dist/providers/definitions/linkedin/post/index.d.ts.map +1 -0
  1580. package/dist/providers/definitions/linkedin/post/index.js +23 -0
  1581. package/dist/providers/definitions/linkedin/post/index.js.map +1 -0
  1582. package/dist/providers/definitions/linkedin/post-transcript/index.d.ts +3 -0
  1583. package/dist/providers/definitions/linkedin/post-transcript/index.d.ts.map +1 -0
  1584. package/dist/providers/definitions/linkedin/post-transcript/index.js +20 -0
  1585. package/dist/providers/definitions/linkedin/post-transcript/index.js.map +1 -0
  1586. package/dist/providers/definitions/linkedin/profile/index.d.ts +3 -0
  1587. package/dist/providers/definitions/linkedin/profile/index.d.ts.map +1 -0
  1588. package/dist/providers/definitions/linkedin/profile/index.js +20 -0
  1589. package/dist/providers/definitions/linkedin/profile/index.js.map +1 -0
  1590. package/dist/providers/definitions/linkedin/types.d.ts +27 -0
  1591. package/dist/providers/definitions/linkedin/types.d.ts.map +1 -0
  1592. package/dist/providers/definitions/linkedin/types.js +5 -0
  1593. package/dist/providers/definitions/linkedin/types.js.map +1 -0
  1594. package/dist/providers/definitions/linkedin/url.d.ts +4 -0
  1595. package/dist/providers/definitions/linkedin/url.d.ts.map +1 -0
  1596. package/dist/providers/definitions/linkedin/url.js +24 -0
  1597. package/dist/providers/definitions/linkedin/url.js.map +1 -0
  1598. package/dist/providers/definitions/linkedin-ad-library/ad-detail/index.d.ts +3 -0
  1599. package/dist/providers/definitions/linkedin-ad-library/ad-detail/index.d.ts.map +1 -0
  1600. package/dist/providers/definitions/linkedin-ad-library/ad-detail/index.js +23 -0
  1601. package/dist/providers/definitions/linkedin-ad-library/ad-detail/index.js.map +1 -0
  1602. package/dist/providers/definitions/linkedin-ad-library/ad-search/index.d.ts +3 -0
  1603. package/dist/providers/definitions/linkedin-ad-library/ad-search/index.d.ts.map +1 -0
  1604. package/dist/providers/definitions/linkedin-ad-library/ad-search/index.js +28 -0
  1605. package/dist/providers/definitions/linkedin-ad-library/ad-search/index.js.map +1 -0
  1606. package/dist/providers/definitions/linkedin-ad-library/args.d.ts +6 -0
  1607. package/dist/providers/definitions/linkedin-ad-library/args.d.ts.map +1 -0
  1608. package/dist/providers/definitions/linkedin-ad-library/args.js +44 -0
  1609. package/dist/providers/definitions/linkedin-ad-library/args.js.map +1 -0
  1610. package/dist/providers/definitions/linkedin-ad-library/index.d.ts +15 -0
  1611. package/dist/providers/definitions/linkedin-ad-library/index.d.ts.map +1 -0
  1612. package/dist/providers/definitions/linkedin-ad-library/index.js +43 -0
  1613. package/dist/providers/definitions/linkedin-ad-library/index.js.map +1 -0
  1614. package/dist/providers/definitions/linkedin-ad-library/types.d.ts +16 -0
  1615. package/dist/providers/definitions/linkedin-ad-library/types.d.ts.map +1 -0
  1616. package/dist/providers/definitions/linkedin-ad-library/types.js +5 -0
  1617. package/dist/providers/definitions/linkedin-ad-library/types.js.map +1 -0
  1618. package/dist/providers/definitions/linkedin-ad-library/url.d.ts +10 -0
  1619. package/dist/providers/definitions/linkedin-ad-library/url.d.ts.map +1 -0
  1620. package/dist/providers/definitions/linkedin-ad-library/url.js +67 -0
  1621. package/dist/providers/definitions/linkedin-ad-library/url.js.map +1 -0
  1622. package/dist/providers/definitions/linkme/args.d.ts +5 -0
  1623. package/dist/providers/definitions/linkme/args.d.ts.map +1 -0
  1624. package/dist/providers/definitions/linkme/args.js +18 -0
  1625. package/dist/providers/definitions/linkme/args.js.map +1 -0
  1626. package/dist/providers/definitions/linkme/index.d.ts +15 -0
  1627. package/dist/providers/definitions/linkme/index.d.ts.map +1 -0
  1628. package/dist/providers/definitions/linkme/index.js +41 -0
  1629. package/dist/providers/definitions/linkme/index.js.map +1 -0
  1630. package/dist/providers/definitions/linkme/profile/index.d.ts +3 -0
  1631. package/dist/providers/definitions/linkme/profile/index.d.ts.map +1 -0
  1632. package/dist/providers/definitions/linkme/profile/index.js +21 -0
  1633. package/dist/providers/definitions/linkme/profile/index.js.map +1 -0
  1634. package/dist/providers/definitions/linkme/types.d.ts +16 -0
  1635. package/dist/providers/definitions/linkme/types.d.ts.map +1 -0
  1636. package/dist/providers/definitions/linkme/types.js +5 -0
  1637. package/dist/providers/definitions/linkme/types.js.map +1 -0
  1638. package/dist/providers/definitions/linkme/url.d.ts +6 -0
  1639. package/dist/providers/definitions/linkme/url.d.ts.map +1 -0
  1640. package/dist/providers/definitions/linkme/url.js +15 -0
  1641. package/dist/providers/definitions/linkme/url.js.map +1 -0
  1642. package/dist/providers/definitions/linktree/args.d.ts +5 -0
  1643. package/dist/providers/definitions/linktree/args.d.ts.map +1 -0
  1644. package/dist/providers/definitions/linktree/args.js +18 -0
  1645. package/dist/providers/definitions/linktree/args.js.map +1 -0
  1646. package/dist/providers/definitions/linktree/index.d.ts +15 -0
  1647. package/dist/providers/definitions/linktree/index.d.ts.map +1 -0
  1648. package/dist/providers/definitions/linktree/index.js +41 -0
  1649. package/dist/providers/definitions/linktree/index.js.map +1 -0
  1650. package/dist/providers/definitions/linktree/profile/index.d.ts +3 -0
  1651. package/dist/providers/definitions/linktree/profile/index.d.ts.map +1 -0
  1652. package/dist/providers/definitions/linktree/profile/index.js +21 -0
  1653. package/dist/providers/definitions/linktree/profile/index.js.map +1 -0
  1654. package/dist/providers/definitions/linktree/types.d.ts +16 -0
  1655. package/dist/providers/definitions/linktree/types.d.ts.map +1 -0
  1656. package/dist/providers/definitions/linktree/types.js +5 -0
  1657. package/dist/providers/definitions/linktree/types.js.map +1 -0
  1658. package/dist/providers/definitions/linktree/url.d.ts +6 -0
  1659. package/dist/providers/definitions/linktree/url.d.ts.map +1 -0
  1660. package/dist/providers/definitions/linktree/url.js +25 -0
  1661. package/dist/providers/definitions/linktree/url.js.map +1 -0
  1662. package/dist/providers/definitions/pillar/args.d.ts +5 -0
  1663. package/dist/providers/definitions/pillar/args.d.ts.map +1 -0
  1664. package/dist/providers/definitions/pillar/args.js +18 -0
  1665. package/dist/providers/definitions/pillar/args.js.map +1 -0
  1666. package/dist/providers/definitions/pillar/index.d.ts +15 -0
  1667. package/dist/providers/definitions/pillar/index.d.ts.map +1 -0
  1668. package/dist/providers/definitions/pillar/index.js +41 -0
  1669. package/dist/providers/definitions/pillar/index.js.map +1 -0
  1670. package/dist/providers/definitions/pillar/profile/index.d.ts +3 -0
  1671. package/dist/providers/definitions/pillar/profile/index.d.ts.map +1 -0
  1672. package/dist/providers/definitions/pillar/profile/index.js +21 -0
  1673. package/dist/providers/definitions/pillar/profile/index.js.map +1 -0
  1674. package/dist/providers/definitions/pillar/types.d.ts +16 -0
  1675. package/dist/providers/definitions/pillar/types.d.ts.map +1 -0
  1676. package/dist/providers/definitions/pillar/types.js +5 -0
  1677. package/dist/providers/definitions/pillar/types.js.map +1 -0
  1678. package/dist/providers/definitions/pillar/url.d.ts +6 -0
  1679. package/dist/providers/definitions/pillar/url.d.ts.map +1 -0
  1680. package/dist/providers/definitions/pillar/url.js +25 -0
  1681. package/dist/providers/definitions/pillar/url.js.map +1 -0
  1682. package/dist/providers/definitions/pinterest/args.d.ts +8 -0
  1683. package/dist/providers/definitions/pinterest/args.d.ts.map +1 -0
  1684. package/dist/providers/definitions/pinterest/args.js +38 -0
  1685. package/dist/providers/definitions/pinterest/args.js.map +1 -0
  1686. package/dist/providers/definitions/pinterest/board/index.d.ts +3 -0
  1687. package/dist/providers/definitions/pinterest/board/index.d.ts.map +1 -0
  1688. package/dist/providers/definitions/pinterest/board/index.js +24 -0
  1689. package/dist/providers/definitions/pinterest/board/index.js.map +1 -0
  1690. package/dist/providers/definitions/pinterest/index.d.ts +15 -0
  1691. package/dist/providers/definitions/pinterest/index.d.ts.map +1 -0
  1692. package/dist/providers/definitions/pinterest/index.js +52 -0
  1693. package/dist/providers/definitions/pinterest/index.js.map +1 -0
  1694. package/dist/providers/definitions/pinterest/pin/index.d.ts +3 -0
  1695. package/dist/providers/definitions/pinterest/pin/index.d.ts.map +1 -0
  1696. package/dist/providers/definitions/pinterest/pin/index.js +24 -0
  1697. package/dist/providers/definitions/pinterest/pin/index.js.map +1 -0
  1698. package/dist/providers/definitions/pinterest/search/index.d.ts +3 -0
  1699. package/dist/providers/definitions/pinterest/search/index.d.ts.map +1 -0
  1700. package/dist/providers/definitions/pinterest/search/index.js +23 -0
  1701. package/dist/providers/definitions/pinterest/search/index.js.map +1 -0
  1702. package/dist/providers/definitions/pinterest/types.d.ts +16 -0
  1703. package/dist/providers/definitions/pinterest/types.d.ts.map +1 -0
  1704. package/dist/providers/definitions/pinterest/types.js +5 -0
  1705. package/dist/providers/definitions/pinterest/types.js.map +1 -0
  1706. package/dist/providers/definitions/pinterest/url.d.ts +12 -0
  1707. package/dist/providers/definitions/pinterest/url.d.ts.map +1 -0
  1708. package/dist/providers/definitions/pinterest/url.js +91 -0
  1709. package/dist/providers/definitions/pinterest/url.js.map +1 -0
  1710. package/dist/providers/definitions/pinterest/user-boards/index.d.ts +3 -0
  1711. package/dist/providers/definitions/pinterest/user-boards/index.d.ts.map +1 -0
  1712. package/dist/providers/definitions/pinterest/user-boards/index.js +24 -0
  1713. package/dist/providers/definitions/pinterest/user-boards/index.js.map +1 -0
  1714. package/dist/providers/definitions/reddit/ad-detail/index.d.ts +3 -0
  1715. package/dist/providers/definitions/reddit/ad-detail/index.d.ts.map +1 -0
  1716. package/dist/providers/definitions/reddit/ad-detail/index.js +21 -0
  1717. package/dist/providers/definitions/reddit/ad-detail/index.js.map +1 -0
  1718. package/dist/providers/definitions/reddit/ad-search/index.d.ts +3 -0
  1719. package/dist/providers/definitions/reddit/ad-search/index.d.ts.map +1 -0
  1720. package/dist/providers/definitions/reddit/ad-search/index.js +30 -0
  1721. package/dist/providers/definitions/reddit/ad-search/index.js.map +1 -0
  1722. package/dist/providers/definitions/reddit/args.d.ts +12 -0
  1723. package/dist/providers/definitions/reddit/args.d.ts.map +1 -0
  1724. package/dist/providers/definitions/reddit/args.js +68 -0
  1725. package/dist/providers/definitions/reddit/args.js.map +1 -0
  1726. package/dist/providers/definitions/reddit/index.d.ts +15 -0
  1727. package/dist/providers/definitions/reddit/index.d.ts.map +1 -0
  1728. package/dist/providers/definitions/reddit/index.js +64 -0
  1729. package/dist/providers/definitions/reddit/index.js.map +1 -0
  1730. package/dist/providers/definitions/reddit/post-comments/index.d.ts +3 -0
  1731. package/dist/providers/definitions/reddit/post-comments/index.d.ts.map +1 -0
  1732. package/dist/providers/definitions/reddit/post-comments/index.js +24 -0
  1733. package/dist/providers/definitions/reddit/post-comments/index.js.map +1 -0
  1734. package/dist/providers/definitions/reddit/post-transcript/index.d.ts +3 -0
  1735. package/dist/providers/definitions/reddit/post-transcript/index.d.ts.map +1 -0
  1736. package/dist/providers/definitions/reddit/post-transcript/index.js +24 -0
  1737. package/dist/providers/definitions/reddit/post-transcript/index.js.map +1 -0
  1738. package/dist/providers/definitions/reddit/search/index.d.ts +3 -0
  1739. package/dist/providers/definitions/reddit/search/index.d.ts.map +1 -0
  1740. package/dist/providers/definitions/reddit/search/index.js +23 -0
  1741. package/dist/providers/definitions/reddit/search/index.js.map +1 -0
  1742. package/dist/providers/definitions/reddit/subreddit-details/index.d.ts +3 -0
  1743. package/dist/providers/definitions/reddit/subreddit-details/index.d.ts.map +1 -0
  1744. package/dist/providers/definitions/reddit/subreddit-details/index.js +21 -0
  1745. package/dist/providers/definitions/reddit/subreddit-details/index.js.map +1 -0
  1746. package/dist/providers/definitions/reddit/subreddit-posts/index.d.ts +3 -0
  1747. package/dist/providers/definitions/reddit/subreddit-posts/index.d.ts.map +1 -0
  1748. package/dist/providers/definitions/reddit/subreddit-posts/index.js +25 -0
  1749. package/dist/providers/definitions/reddit/subreddit-posts/index.js.map +1 -0
  1750. package/dist/providers/definitions/reddit/subreddit-search/index.d.ts +3 -0
  1751. package/dist/providers/definitions/reddit/subreddit-search/index.d.ts.map +1 -0
  1752. package/dist/providers/definitions/reddit/subreddit-search/index.js +24 -0
  1753. package/dist/providers/definitions/reddit/subreddit-search/index.js.map +1 -0
  1754. package/dist/providers/definitions/reddit/types.d.ts +16 -0
  1755. package/dist/providers/definitions/reddit/types.d.ts.map +1 -0
  1756. package/dist/providers/definitions/reddit/types.js +5 -0
  1757. package/dist/providers/definitions/reddit/types.js.map +1 -0
  1758. package/dist/providers/definitions/reddit/url.d.ts +25 -0
  1759. package/dist/providers/definitions/reddit/url.d.ts.map +1 -0
  1760. package/dist/providers/definitions/reddit/url.js +160 -0
  1761. package/dist/providers/definitions/reddit/url.js.map +1 -0
  1762. package/dist/providers/definitions/rumble/args.d.ts +7 -0
  1763. package/dist/providers/definitions/rumble/args.d.ts.map +1 -0
  1764. package/dist/providers/definitions/rumble/args.js +46 -0
  1765. package/dist/providers/definitions/rumble/args.js.map +1 -0
  1766. package/dist/providers/definitions/rumble/channel-videos/index.d.ts +3 -0
  1767. package/dist/providers/definitions/rumble/channel-videos/index.d.ts.map +1 -0
  1768. package/dist/providers/definitions/rumble/channel-videos/index.js +24 -0
  1769. package/dist/providers/definitions/rumble/channel-videos/index.js.map +1 -0
  1770. package/dist/providers/definitions/rumble/index.d.ts +15 -0
  1771. package/dist/providers/definitions/rumble/index.d.ts.map +1 -0
  1772. package/dist/providers/definitions/rumble/index.js +55 -0
  1773. package/dist/providers/definitions/rumble/index.js.map +1 -0
  1774. package/dist/providers/definitions/rumble/search/index.d.ts +3 -0
  1775. package/dist/providers/definitions/rumble/search/index.d.ts.map +1 -0
  1776. package/dist/providers/definitions/rumble/search/index.js +24 -0
  1777. package/dist/providers/definitions/rumble/search/index.js.map +1 -0
  1778. package/dist/providers/definitions/rumble/types.d.ts +16 -0
  1779. package/dist/providers/definitions/rumble/types.d.ts.map +1 -0
  1780. package/dist/providers/definitions/rumble/types.js +5 -0
  1781. package/dist/providers/definitions/rumble/types.js.map +1 -0
  1782. package/dist/providers/definitions/rumble/url.d.ts +8 -0
  1783. package/dist/providers/definitions/rumble/url.d.ts.map +1 -0
  1784. package/dist/providers/definitions/rumble/url.js +51 -0
  1785. package/dist/providers/definitions/rumble/url.js.map +1 -0
  1786. package/dist/providers/definitions/rumble/video/index.d.ts +3 -0
  1787. package/dist/providers/definitions/rumble/video/index.d.ts.map +1 -0
  1788. package/dist/providers/definitions/rumble/video/index.js +21 -0
  1789. package/dist/providers/definitions/rumble/video/index.js.map +1 -0
  1790. package/dist/providers/definitions/rumble/video-comments/index.d.ts +3 -0
  1791. package/dist/providers/definitions/rumble/video-comments/index.d.ts.map +1 -0
  1792. package/dist/providers/definitions/rumble/video-comments/index.js +21 -0
  1793. package/dist/providers/definitions/rumble/video-comments/index.js.map +1 -0
  1794. package/dist/providers/definitions/rumble/video-transcript/index.d.ts +3 -0
  1795. package/dist/providers/definitions/rumble/video-transcript/index.d.ts.map +1 -0
  1796. package/dist/providers/definitions/rumble/video-transcript/index.js +21 -0
  1797. package/dist/providers/definitions/rumble/video-transcript/index.js.map +1 -0
  1798. package/dist/providers/definitions/snapchat/args.d.ts +5 -0
  1799. package/dist/providers/definitions/snapchat/args.d.ts.map +1 -0
  1800. package/dist/providers/definitions/snapchat/args.js +21 -0
  1801. package/dist/providers/definitions/snapchat/args.js.map +1 -0
  1802. package/dist/providers/definitions/snapchat/index.d.ts +15 -0
  1803. package/dist/providers/definitions/snapchat/index.d.ts.map +1 -0
  1804. package/dist/providers/definitions/snapchat/index.js +41 -0
  1805. package/dist/providers/definitions/snapchat/index.js.map +1 -0
  1806. package/dist/providers/definitions/snapchat/profile/index.d.ts +3 -0
  1807. package/dist/providers/definitions/snapchat/profile/index.d.ts.map +1 -0
  1808. package/dist/providers/definitions/snapchat/profile/index.js +21 -0
  1809. package/dist/providers/definitions/snapchat/profile/index.js.map +1 -0
  1810. package/dist/providers/definitions/snapchat/types.d.ts +16 -0
  1811. package/dist/providers/definitions/snapchat/types.d.ts.map +1 -0
  1812. package/dist/providers/definitions/snapchat/types.js +5 -0
  1813. package/dist/providers/definitions/snapchat/types.js.map +1 -0
  1814. package/dist/providers/definitions/snapchat/url.d.ts +8 -0
  1815. package/dist/providers/definitions/snapchat/url.d.ts.map +1 -0
  1816. package/dist/providers/definitions/snapchat/url.js +63 -0
  1817. package/dist/providers/definitions/snapchat/url.js.map +1 -0
  1818. package/dist/providers/definitions/soundcloud/args.d.ts +6 -0
  1819. package/dist/providers/definitions/soundcloud/args.d.ts.map +1 -0
  1820. package/dist/providers/definitions/soundcloud/args.js +40 -0
  1821. package/dist/providers/definitions/soundcloud/args.js.map +1 -0
  1822. package/dist/providers/definitions/soundcloud/artist/index.d.ts +3 -0
  1823. package/dist/providers/definitions/soundcloud/artist/index.d.ts.map +1 -0
  1824. package/dist/providers/definitions/soundcloud/artist/index.js +21 -0
  1825. package/dist/providers/definitions/soundcloud/artist/index.js.map +1 -0
  1826. package/dist/providers/definitions/soundcloud/artist-tracks/index.d.ts +3 -0
  1827. package/dist/providers/definitions/soundcloud/artist-tracks/index.d.ts.map +1 -0
  1828. package/dist/providers/definitions/soundcloud/artist-tracks/index.js +24 -0
  1829. package/dist/providers/definitions/soundcloud/artist-tracks/index.js.map +1 -0
  1830. package/dist/providers/definitions/soundcloud/index.d.ts +15 -0
  1831. package/dist/providers/definitions/soundcloud/index.d.ts.map +1 -0
  1832. package/dist/providers/definitions/soundcloud/index.js +49 -0
  1833. package/dist/providers/definitions/soundcloud/index.js.map +1 -0
  1834. package/dist/providers/definitions/soundcloud/track/index.d.ts +3 -0
  1835. package/dist/providers/definitions/soundcloud/track/index.d.ts.map +1 -0
  1836. package/dist/providers/definitions/soundcloud/track/index.js +21 -0
  1837. package/dist/providers/definitions/soundcloud/track/index.js.map +1 -0
  1838. package/dist/providers/definitions/soundcloud/types.d.ts +16 -0
  1839. package/dist/providers/definitions/soundcloud/types.d.ts.map +1 -0
  1840. package/dist/providers/definitions/soundcloud/types.js +5 -0
  1841. package/dist/providers/definitions/soundcloud/types.js.map +1 -0
  1842. package/dist/providers/definitions/soundcloud/url.d.ts +12 -0
  1843. package/dist/providers/definitions/soundcloud/url.d.ts.map +1 -0
  1844. package/dist/providers/definitions/soundcloud/url.js +124 -0
  1845. package/dist/providers/definitions/soundcloud/url.js.map +1 -0
  1846. package/dist/providers/definitions/spotify/album/index.d.ts +3 -0
  1847. package/dist/providers/definitions/spotify/album/index.d.ts.map +1 -0
  1848. package/dist/providers/definitions/spotify/album/index.js +21 -0
  1849. package/dist/providers/definitions/spotify/album/index.js.map +1 -0
  1850. package/dist/providers/definitions/spotify/args.d.ts +6 -0
  1851. package/dist/providers/definitions/spotify/args.d.ts.map +1 -0
  1852. package/dist/providers/definitions/spotify/args.js +25 -0
  1853. package/dist/providers/definitions/spotify/args.js.map +1 -0
  1854. package/dist/providers/definitions/spotify/artist/index.d.ts +3 -0
  1855. package/dist/providers/definitions/spotify/artist/index.d.ts.map +1 -0
  1856. package/dist/providers/definitions/spotify/artist/index.js +21 -0
  1857. package/dist/providers/definitions/spotify/artist/index.js.map +1 -0
  1858. package/dist/providers/definitions/spotify/index.d.ts +15 -0
  1859. package/dist/providers/definitions/spotify/index.d.ts.map +1 -0
  1860. package/dist/providers/definitions/spotify/index.js +49 -0
  1861. package/dist/providers/definitions/spotify/index.js.map +1 -0
  1862. package/dist/providers/definitions/spotify/track/index.d.ts +3 -0
  1863. package/dist/providers/definitions/spotify/track/index.d.ts.map +1 -0
  1864. package/dist/providers/definitions/spotify/track/index.js +21 -0
  1865. package/dist/providers/definitions/spotify/track/index.js.map +1 -0
  1866. package/dist/providers/definitions/spotify/types.d.ts +16 -0
  1867. package/dist/providers/definitions/spotify/types.d.ts.map +1 -0
  1868. package/dist/providers/definitions/spotify/types.js +5 -0
  1869. package/dist/providers/definitions/spotify/types.js.map +1 -0
  1870. package/dist/providers/definitions/spotify/url.d.ts +8 -0
  1871. package/dist/providers/definitions/spotify/url.d.ts.map +1 -0
  1872. package/dist/providers/definitions/spotify/url.js +65 -0
  1873. package/dist/providers/definitions/spotify/url.js.map +1 -0
  1874. package/dist/providers/definitions/threads/args.d.ts +7 -0
  1875. package/dist/providers/definitions/threads/args.d.ts.map +1 -0
  1876. package/dist/providers/definitions/threads/args.js +28 -0
  1877. package/dist/providers/definitions/threads/args.js.map +1 -0
  1878. package/dist/providers/definitions/threads/index.d.ts +15 -0
  1879. package/dist/providers/definitions/threads/index.d.ts.map +1 -0
  1880. package/dist/providers/definitions/threads/index.js +55 -0
  1881. package/dist/providers/definitions/threads/index.js.map +1 -0
  1882. package/dist/providers/definitions/threads/post/index.d.ts +3 -0
  1883. package/dist/providers/definitions/threads/post/index.d.ts.map +1 -0
  1884. package/dist/providers/definitions/threads/post/index.js +24 -0
  1885. package/dist/providers/definitions/threads/post/index.js.map +1 -0
  1886. package/dist/providers/definitions/threads/profile/index.d.ts +3 -0
  1887. package/dist/providers/definitions/threads/profile/index.d.ts.map +1 -0
  1888. package/dist/providers/definitions/threads/profile/index.js +21 -0
  1889. package/dist/providers/definitions/threads/profile/index.js.map +1 -0
  1890. package/dist/providers/definitions/threads/search/index.d.ts +3 -0
  1891. package/dist/providers/definitions/threads/search/index.d.ts.map +1 -0
  1892. package/dist/providers/definitions/threads/search/index.js +23 -0
  1893. package/dist/providers/definitions/threads/search/index.js.map +1 -0
  1894. package/dist/providers/definitions/threads/search-users/index.d.ts +3 -0
  1895. package/dist/providers/definitions/threads/search-users/index.d.ts.map +1 -0
  1896. package/dist/providers/definitions/threads/search-users/index.js +20 -0
  1897. package/dist/providers/definitions/threads/search-users/index.js.map +1 -0
  1898. package/dist/providers/definitions/threads/types.d.ts +16 -0
  1899. package/dist/providers/definitions/threads/types.d.ts.map +1 -0
  1900. package/dist/providers/definitions/threads/types.js +5 -0
  1901. package/dist/providers/definitions/threads/types.js.map +1 -0
  1902. package/dist/providers/definitions/threads/url.d.ts +10 -0
  1903. package/dist/providers/definitions/threads/url.d.ts.map +1 -0
  1904. package/dist/providers/definitions/threads/url.js +78 -0
  1905. package/dist/providers/definitions/threads/url.js.map +1 -0
  1906. package/dist/providers/definitions/threads/user-posts/index.d.ts +3 -0
  1907. package/dist/providers/definitions/threads/user-posts/index.d.ts.map +1 -0
  1908. package/dist/providers/definitions/threads/user-posts/index.js +23 -0
  1909. package/dist/providers/definitions/threads/user-posts/index.js.map +1 -0
  1910. package/dist/providers/definitions/tiktok/args.d.ts +2 -0
  1911. package/dist/providers/definitions/tiktok/args.d.ts.map +1 -0
  1912. package/dist/providers/definitions/tiktok/args.js +5 -0
  1913. package/dist/providers/definitions/tiktok/args.js.map +1 -0
  1914. package/dist/providers/definitions/tiktok/creators-popular/index.d.ts +3 -0
  1915. package/dist/providers/definitions/tiktok/creators-popular/index.d.ts.map +1 -0
  1916. package/dist/providers/definitions/tiktok/creators-popular/index.js +27 -0
  1917. package/dist/providers/definitions/tiktok/creators-popular/index.js.map +1 -0
  1918. package/dist/providers/definitions/tiktok/hashtags-popular/index.d.ts +3 -0
  1919. package/dist/providers/definitions/tiktok/hashtags-popular/index.d.ts.map +1 -0
  1920. package/dist/providers/definitions/tiktok/hashtags-popular/index.js +27 -0
  1921. package/dist/providers/definitions/tiktok/hashtags-popular/index.js.map +1 -0
  1922. package/dist/providers/definitions/tiktok/index.d.ts +20 -0
  1923. package/dist/providers/definitions/tiktok/index.d.ts.map +1 -0
  1924. package/dist/providers/definitions/tiktok/index.js +105 -0
  1925. package/dist/providers/definitions/tiktok/index.js.map +1 -0
  1926. package/dist/providers/definitions/tiktok/profile/index.d.ts +3 -0
  1927. package/dist/providers/definitions/tiktok/profile/index.d.ts.map +1 -0
  1928. package/dist/providers/definitions/tiktok/profile/index.js +25 -0
  1929. package/dist/providers/definitions/tiktok/profile/index.js.map +1 -0
  1930. package/dist/providers/definitions/tiktok/profile-region/index.d.ts +3 -0
  1931. package/dist/providers/definitions/tiktok/profile-region/index.d.ts.map +1 -0
  1932. package/dist/providers/definitions/tiktok/profile-region/index.js +26 -0
  1933. package/dist/providers/definitions/tiktok/profile-region/index.js.map +1 -0
  1934. package/dist/providers/definitions/tiktok/profile-videos/index.d.ts +3 -0
  1935. package/dist/providers/definitions/tiktok/profile-videos/index.d.ts.map +1 -0
  1936. package/dist/providers/definitions/tiktok/profile-videos/index.js +27 -0
  1937. package/dist/providers/definitions/tiktok/profile-videos/index.js.map +1 -0
  1938. package/dist/providers/definitions/tiktok/search-hashtag/index.d.ts +3 -0
  1939. package/dist/providers/definitions/tiktok/search-hashtag/index.d.ts.map +1 -0
  1940. package/dist/providers/definitions/tiktok/search-hashtag/index.js +22 -0
  1941. package/dist/providers/definitions/tiktok/search-hashtag/index.js.map +1 -0
  1942. package/dist/providers/definitions/tiktok/search-keyword/index.d.ts +3 -0
  1943. package/dist/providers/definitions/tiktok/search-keyword/index.d.ts.map +1 -0
  1944. package/dist/providers/definitions/tiktok/search-keyword/index.js +22 -0
  1945. package/dist/providers/definitions/tiktok/search-keyword/index.js.map +1 -0
  1946. package/dist/providers/definitions/tiktok/search-top/index.d.ts +3 -0
  1947. package/dist/providers/definitions/tiktok/search-top/index.d.ts.map +1 -0
  1948. package/dist/providers/definitions/tiktok/search-top/index.js +27 -0
  1949. package/dist/providers/definitions/tiktok/search-top/index.js.map +1 -0
  1950. package/dist/providers/definitions/tiktok/search-users/index.d.ts +3 -0
  1951. package/dist/providers/definitions/tiktok/search-users/index.d.ts.map +1 -0
  1952. package/dist/providers/definitions/tiktok/search-users/index.js +22 -0
  1953. package/dist/providers/definitions/tiktok/search-users/index.js.map +1 -0
  1954. package/dist/providers/definitions/tiktok/song/index.d.ts +3 -0
  1955. package/dist/providers/definitions/tiktok/song/index.d.ts.map +1 -0
  1956. package/dist/providers/definitions/tiktok/song/index.js +26 -0
  1957. package/dist/providers/definitions/tiktok/song/index.js.map +1 -0
  1958. package/dist/providers/definitions/tiktok/song-videos/index.d.ts +3 -0
  1959. package/dist/providers/definitions/tiktok/song-videos/index.d.ts.map +1 -0
  1960. package/dist/providers/definitions/tiktok/song-videos/index.js +27 -0
  1961. package/dist/providers/definitions/tiktok/song-videos/index.js.map +1 -0
  1962. package/dist/providers/definitions/tiktok/trending-feed/index.d.ts +3 -0
  1963. package/dist/providers/definitions/tiktok/trending-feed/index.d.ts.map +1 -0
  1964. package/dist/providers/definitions/tiktok/trending-feed/index.js +22 -0
  1965. package/dist/providers/definitions/tiktok/trending-feed/index.js.map +1 -0
  1966. package/dist/providers/definitions/tiktok/types.d.ts +16 -0
  1967. package/dist/providers/definitions/tiktok/types.d.ts.map +1 -0
  1968. package/dist/providers/definitions/tiktok/types.js +5 -0
  1969. package/dist/providers/definitions/tiktok/types.js.map +1 -0
  1970. package/dist/providers/definitions/tiktok/url.d.ts +12 -0
  1971. package/dist/providers/definitions/tiktok/url.d.ts.map +1 -0
  1972. package/dist/providers/definitions/tiktok/url.js +73 -0
  1973. package/dist/providers/definitions/tiktok/url.js.map +1 -0
  1974. package/dist/providers/definitions/tiktok/user-audience/index.d.ts +3 -0
  1975. package/dist/providers/definitions/tiktok/user-audience/index.d.ts.map +1 -0
  1976. package/dist/providers/definitions/tiktok/user-audience/index.js +26 -0
  1977. package/dist/providers/definitions/tiktok/user-audience/index.js.map +1 -0
  1978. package/dist/providers/definitions/tiktok/user-followers/index.d.ts +3 -0
  1979. package/dist/providers/definitions/tiktok/user-followers/index.d.ts.map +1 -0
  1980. package/dist/providers/definitions/tiktok/user-followers/index.js +27 -0
  1981. package/dist/providers/definitions/tiktok/user-followers/index.js.map +1 -0
  1982. package/dist/providers/definitions/tiktok/user-following/index.d.ts +3 -0
  1983. package/dist/providers/definitions/tiktok/user-following/index.d.ts.map +1 -0
  1984. package/dist/providers/definitions/tiktok/user-following/index.js +26 -0
  1985. package/dist/providers/definitions/tiktok/user-following/index.js.map +1 -0
  1986. package/dist/providers/definitions/tiktok/user-live/index.d.ts +3 -0
  1987. package/dist/providers/definitions/tiktok/user-live/index.d.ts.map +1 -0
  1988. package/dist/providers/definitions/tiktok/user-live/index.js +26 -0
  1989. package/dist/providers/definitions/tiktok/user-live/index.js.map +1 -0
  1990. package/dist/providers/definitions/tiktok/video/index.d.ts +3 -0
  1991. package/dist/providers/definitions/tiktok/video/index.d.ts.map +1 -0
  1992. package/dist/providers/definitions/tiktok/video/index.js +30 -0
  1993. package/dist/providers/definitions/tiktok/video/index.js.map +1 -0
  1994. package/dist/providers/definitions/tiktok/video-comment-replies/index.d.ts +3 -0
  1995. package/dist/providers/definitions/tiktok/video-comment-replies/index.d.ts.map +1 -0
  1996. package/dist/providers/definitions/tiktok/video-comment-replies/index.js +26 -0
  1997. package/dist/providers/definitions/tiktok/video-comment-replies/index.js.map +1 -0
  1998. package/dist/providers/definitions/tiktok/video-comments/index.d.ts +3 -0
  1999. package/dist/providers/definitions/tiktok/video-comments/index.d.ts.map +1 -0
  2000. package/dist/providers/definitions/tiktok/video-comments/index.js +24 -0
  2001. package/dist/providers/definitions/tiktok/video-comments/index.js.map +1 -0
  2002. package/dist/providers/definitions/tiktok/video-transcript/index.d.ts +3 -0
  2003. package/dist/providers/definitions/tiktok/video-transcript/index.d.ts.map +1 -0
  2004. package/dist/providers/definitions/tiktok/video-transcript/index.js +24 -0
  2005. package/dist/providers/definitions/tiktok/video-transcript/index.js.map +1 -0
  2006. package/dist/providers/definitions/tiktok-shop/args.d.ts +2 -0
  2007. package/dist/providers/definitions/tiktok-shop/args.d.ts.map +1 -0
  2008. package/dist/providers/definitions/tiktok-shop/args.js +5 -0
  2009. package/dist/providers/definitions/tiktok-shop/args.js.map +1 -0
  2010. package/dist/providers/definitions/tiktok-shop/index.d.ts +16 -0
  2011. package/dist/providers/definitions/tiktok-shop/index.d.ts.map +1 -0
  2012. package/dist/providers/definitions/tiktok-shop/index.js +56 -0
  2013. package/dist/providers/definitions/tiktok-shop/index.js.map +1 -0
  2014. package/dist/providers/definitions/tiktok-shop/product-details/index.d.ts +3 -0
  2015. package/dist/providers/definitions/tiktok-shop/product-details/index.d.ts.map +1 -0
  2016. package/dist/providers/definitions/tiktok-shop/product-details/index.js +21 -0
  2017. package/dist/providers/definitions/tiktok-shop/product-details/index.js.map +1 -0
  2018. package/dist/providers/definitions/tiktok-shop/product-reviews/index.d.ts +3 -0
  2019. package/dist/providers/definitions/tiktok-shop/product-reviews/index.d.ts.map +1 -0
  2020. package/dist/providers/definitions/tiktok-shop/product-reviews/index.js +42 -0
  2021. package/dist/providers/definitions/tiktok-shop/product-reviews/index.js.map +1 -0
  2022. package/dist/providers/definitions/tiktok-shop/shop-products/index.d.ts +3 -0
  2023. package/dist/providers/definitions/tiktok-shop/shop-products/index.d.ts.map +1 -0
  2024. package/dist/providers/definitions/tiktok-shop/shop-products/index.js +28 -0
  2025. package/dist/providers/definitions/tiktok-shop/shop-products/index.js.map +1 -0
  2026. package/dist/providers/definitions/tiktok-shop/shop-search/index.d.ts +3 -0
  2027. package/dist/providers/definitions/tiktok-shop/shop-search/index.d.ts.map +1 -0
  2028. package/dist/providers/definitions/tiktok-shop/shop-search/index.js +21 -0
  2029. package/dist/providers/definitions/tiktok-shop/shop-search/index.js.map +1 -0
  2030. package/dist/providers/definitions/tiktok-shop/types.d.ts +16 -0
  2031. package/dist/providers/definitions/tiktok-shop/types.d.ts.map +1 -0
  2032. package/dist/providers/definitions/tiktok-shop/types.js +5 -0
  2033. package/dist/providers/definitions/tiktok-shop/types.js.map +1 -0
  2034. package/dist/providers/definitions/tiktok-shop/url.d.ts +9 -0
  2035. package/dist/providers/definitions/tiktok-shop/url.d.ts.map +1 -0
  2036. package/dist/providers/definitions/tiktok-shop/url.js +67 -0
  2037. package/dist/providers/definitions/tiktok-shop/url.js.map +1 -0
  2038. package/dist/providers/definitions/tiktok-shop/user-showcase/index.d.ts +3 -0
  2039. package/dist/providers/definitions/tiktok-shop/user-showcase/index.d.ts.map +1 -0
  2040. package/dist/providers/definitions/tiktok-shop/user-showcase/index.js +21 -0
  2041. package/dist/providers/definitions/tiktok-shop/user-showcase/index.js.map +1 -0
  2042. package/dist/providers/definitions/truth-social/args.d.ts +7 -0
  2043. package/dist/providers/definitions/truth-social/args.d.ts.map +1 -0
  2044. package/dist/providers/definitions/truth-social/args.js +29 -0
  2045. package/dist/providers/definitions/truth-social/args.js.map +1 -0
  2046. package/dist/providers/definitions/truth-social/index.d.ts +15 -0
  2047. package/dist/providers/definitions/truth-social/index.d.ts.map +1 -0
  2048. package/dist/providers/definitions/truth-social/index.js +45 -0
  2049. package/dist/providers/definitions/truth-social/index.js.map +1 -0
  2050. package/dist/providers/definitions/truth-social/post/index.d.ts +3 -0
  2051. package/dist/providers/definitions/truth-social/post/index.d.ts.map +1 -0
  2052. package/dist/providers/definitions/truth-social/post/index.js +21 -0
  2053. package/dist/providers/definitions/truth-social/post/index.js.map +1 -0
  2054. package/dist/providers/definitions/truth-social/profile/index.d.ts +3 -0
  2055. package/dist/providers/definitions/truth-social/profile/index.d.ts.map +1 -0
  2056. package/dist/providers/definitions/truth-social/profile/index.js +21 -0
  2057. package/dist/providers/definitions/truth-social/profile/index.js.map +1 -0
  2058. package/dist/providers/definitions/truth-social/types.d.ts +16 -0
  2059. package/dist/providers/definitions/truth-social/types.d.ts.map +1 -0
  2060. package/dist/providers/definitions/truth-social/types.js +5 -0
  2061. package/dist/providers/definitions/truth-social/types.js.map +1 -0
  2062. package/dist/providers/definitions/truth-social/url.d.ts +8 -0
  2063. package/dist/providers/definitions/truth-social/url.d.ts.map +1 -0
  2064. package/dist/providers/definitions/truth-social/url.js +57 -0
  2065. package/dist/providers/definitions/truth-social/url.js.map +1 -0
  2066. package/dist/providers/definitions/truth-social/user-posts/index.d.ts +3 -0
  2067. package/dist/providers/definitions/truth-social/user-posts/index.d.ts.map +1 -0
  2068. package/dist/providers/definitions/truth-social/user-posts/index.js +23 -0
  2069. package/dist/providers/definitions/truth-social/user-posts/index.js.map +1 -0
  2070. package/dist/providers/definitions/twitch/args.d.ts +6 -0
  2071. package/dist/providers/definitions/twitch/args.d.ts.map +1 -0
  2072. package/dist/providers/definitions/twitch/args.js +30 -0
  2073. package/dist/providers/definitions/twitch/args.js.map +1 -0
  2074. package/dist/providers/definitions/twitch/clip/index.d.ts +3 -0
  2075. package/dist/providers/definitions/twitch/clip/index.d.ts.map +1 -0
  2076. package/dist/providers/definitions/twitch/clip/index.js +21 -0
  2077. package/dist/providers/definitions/twitch/clip/index.js.map +1 -0
  2078. package/dist/providers/definitions/twitch/index.d.ts +15 -0
  2079. package/dist/providers/definitions/twitch/index.d.ts.map +1 -0
  2080. package/dist/providers/definitions/twitch/index.js +52 -0
  2081. package/dist/providers/definitions/twitch/index.js.map +1 -0
  2082. package/dist/providers/definitions/twitch/profile/index.d.ts +3 -0
  2083. package/dist/providers/definitions/twitch/profile/index.d.ts.map +1 -0
  2084. package/dist/providers/definitions/twitch/profile/index.js +21 -0
  2085. package/dist/providers/definitions/twitch/profile/index.js.map +1 -0
  2086. package/dist/providers/definitions/twitch/types.d.ts +16 -0
  2087. package/dist/providers/definitions/twitch/types.d.ts.map +1 -0
  2088. package/dist/providers/definitions/twitch/types.js +5 -0
  2089. package/dist/providers/definitions/twitch/types.js.map +1 -0
  2090. package/dist/providers/definitions/twitch/url.d.ts +9 -0
  2091. package/dist/providers/definitions/twitch/url.d.ts.map +1 -0
  2092. package/dist/providers/definitions/twitch/url.js +68 -0
  2093. package/dist/providers/definitions/twitch/url.js.map +1 -0
  2094. package/dist/providers/definitions/twitch/user-schedule/index.d.ts +3 -0
  2095. package/dist/providers/definitions/twitch/user-schedule/index.d.ts.map +1 -0
  2096. package/dist/providers/definitions/twitch/user-schedule/index.js +21 -0
  2097. package/dist/providers/definitions/twitch/user-schedule/index.js.map +1 -0
  2098. package/dist/providers/definitions/twitch/user-videos/index.d.ts +3 -0
  2099. package/dist/providers/definitions/twitch/user-videos/index.d.ts.map +1 -0
  2100. package/dist/providers/definitions/twitch/user-videos/index.js +24 -0
  2101. package/dist/providers/definitions/twitch/user-videos/index.js.map +1 -0
  2102. package/dist/providers/definitions/twitter/args.d.ts +7 -0
  2103. package/dist/providers/definitions/twitter/args.d.ts.map +1 -0
  2104. package/dist/providers/definitions/twitter/args.js +41 -0
  2105. package/dist/providers/definitions/twitter/args.js.map +1 -0
  2106. package/dist/providers/definitions/twitter/community/index.d.ts +3 -0
  2107. package/dist/providers/definitions/twitter/community/index.d.ts.map +1 -0
  2108. package/dist/providers/definitions/twitter/community/index.js +21 -0
  2109. package/dist/providers/definitions/twitter/community/index.js.map +1 -0
  2110. package/dist/providers/definitions/twitter/community-tweets/index.d.ts +3 -0
  2111. package/dist/providers/definitions/twitter/community-tweets/index.d.ts.map +1 -0
  2112. package/dist/providers/definitions/twitter/community-tweets/index.js +20 -0
  2113. package/dist/providers/definitions/twitter/community-tweets/index.js.map +1 -0
  2114. package/dist/providers/definitions/twitter/index.d.ts +15 -0
  2115. package/dist/providers/definitions/twitter/index.d.ts.map +1 -0
  2116. package/dist/providers/definitions/twitter/index.js +58 -0
  2117. package/dist/providers/definitions/twitter/index.js.map +1 -0
  2118. package/dist/providers/definitions/twitter/profile/index.d.ts +3 -0
  2119. package/dist/providers/definitions/twitter/profile/index.d.ts.map +1 -0
  2120. package/dist/providers/definitions/twitter/profile/index.js +21 -0
  2121. package/dist/providers/definitions/twitter/profile/index.js.map +1 -0
  2122. package/dist/providers/definitions/twitter/transcript/index.d.ts +3 -0
  2123. package/dist/providers/definitions/twitter/transcript/index.d.ts.map +1 -0
  2124. package/dist/providers/definitions/twitter/transcript/index.js +20 -0
  2125. package/dist/providers/definitions/twitter/transcript/index.js.map +1 -0
  2126. package/dist/providers/definitions/twitter/tweet/index.d.ts +3 -0
  2127. package/dist/providers/definitions/twitter/tweet/index.d.ts.map +1 -0
  2128. package/dist/providers/definitions/twitter/tweet/index.js +24 -0
  2129. package/dist/providers/definitions/twitter/tweet/index.js.map +1 -0
  2130. package/dist/providers/definitions/twitter/types.d.ts +16 -0
  2131. package/dist/providers/definitions/twitter/types.d.ts.map +1 -0
  2132. package/dist/providers/definitions/twitter/types.js +5 -0
  2133. package/dist/providers/definitions/twitter/types.js.map +1 -0
  2134. package/dist/providers/definitions/twitter/url.d.ts +19 -0
  2135. package/dist/providers/definitions/twitter/url.d.ts.map +1 -0
  2136. package/dist/providers/definitions/twitter/url.js +144 -0
  2137. package/dist/providers/definitions/twitter/url.js.map +1 -0
  2138. package/dist/providers/definitions/twitter/user-tweets/index.d.ts +3 -0
  2139. package/dist/providers/definitions/twitter/user-tweets/index.d.ts.map +1 -0
  2140. package/dist/providers/definitions/twitter/user-tweets/index.js +23 -0
  2141. package/dist/providers/definitions/twitter/user-tweets/index.js.map +1 -0
  2142. package/dist/providers/definitions/youtube/args.d.ts +6 -0
  2143. package/dist/providers/definitions/youtube/args.d.ts.map +1 -0
  2144. package/dist/providers/definitions/youtube/args.js +56 -0
  2145. package/dist/providers/definitions/youtube/args.js.map +1 -0
  2146. package/dist/providers/definitions/youtube/channel/index.d.ts +3 -0
  2147. package/dist/providers/definitions/youtube/channel/index.d.ts.map +1 -0
  2148. package/dist/providers/definitions/youtube/channel/index.js +21 -0
  2149. package/dist/providers/definitions/youtube/channel/index.js.map +1 -0
  2150. package/dist/providers/definitions/youtube/channel-community-posts/index.d.ts +3 -0
  2151. package/dist/providers/definitions/youtube/channel-community-posts/index.d.ts.map +1 -0
  2152. package/dist/providers/definitions/youtube/channel-community-posts/index.js +21 -0
  2153. package/dist/providers/definitions/youtube/channel-community-posts/index.js.map +1 -0
  2154. package/dist/providers/definitions/youtube/channel-lives/index.d.ts +3 -0
  2155. package/dist/providers/definitions/youtube/channel-lives/index.d.ts.map +1 -0
  2156. package/dist/providers/definitions/youtube/channel-lives/index.js +21 -0
  2157. package/dist/providers/definitions/youtube/channel-lives/index.js.map +1 -0
  2158. package/dist/providers/definitions/youtube/channel-playlists/index.d.ts +3 -0
  2159. package/dist/providers/definitions/youtube/channel-playlists/index.d.ts.map +1 -0
  2160. package/dist/providers/definitions/youtube/channel-playlists/index.js +21 -0
  2161. package/dist/providers/definitions/youtube/channel-playlists/index.js.map +1 -0
  2162. package/dist/providers/definitions/youtube/channel-shorts/index.d.ts +3 -0
  2163. package/dist/providers/definitions/youtube/channel-shorts/index.d.ts.map +1 -0
  2164. package/dist/providers/definitions/youtube/channel-shorts/index.js +24 -0
  2165. package/dist/providers/definitions/youtube/channel-shorts/index.js.map +1 -0
  2166. package/dist/providers/definitions/youtube/channel-videos/index.d.ts +3 -0
  2167. package/dist/providers/definitions/youtube/channel-videos/index.d.ts.map +1 -0
  2168. package/dist/providers/definitions/youtube/channel-videos/index.js +28 -0
  2169. package/dist/providers/definitions/youtube/channel-videos/index.js.map +1 -0
  2170. package/dist/providers/definitions/youtube/community-post/index.d.ts +3 -0
  2171. package/dist/providers/definitions/youtube/community-post/index.d.ts.map +1 -0
  2172. package/dist/providers/definitions/youtube/community-post/index.js +22 -0
  2173. package/dist/providers/definitions/youtube/community-post/index.js.map +1 -0
  2174. package/dist/providers/definitions/youtube/index.d.ts +15 -0
  2175. package/dist/providers/definitions/youtube/index.d.ts.map +1 -0
  2176. package/dist/providers/definitions/youtube/index.js +85 -0
  2177. package/dist/providers/definitions/youtube/index.js.map +1 -0
  2178. package/dist/providers/definitions/youtube/playlist/index.d.ts +3 -0
  2179. package/dist/providers/definitions/youtube/playlist/index.d.ts.map +1 -0
  2180. package/dist/providers/definitions/youtube/playlist/index.js +29 -0
  2181. package/dist/providers/definitions/youtube/playlist/index.js.map +1 -0
  2182. package/dist/providers/definitions/youtube/search/index.d.ts +3 -0
  2183. package/dist/providers/definitions/youtube/search/index.d.ts.map +1 -0
  2184. package/dist/providers/definitions/youtube/search/index.js +32 -0
  2185. package/dist/providers/definitions/youtube/search/index.js.map +1 -0
  2186. package/dist/providers/definitions/youtube/search-hashtag/index.d.ts +3 -0
  2187. package/dist/providers/definitions/youtube/search-hashtag/index.d.ts.map +1 -0
  2188. package/dist/providers/definitions/youtube/search-hashtag/index.js +24 -0
  2189. package/dist/providers/definitions/youtube/search-hashtag/index.js.map +1 -0
  2190. package/dist/providers/definitions/youtube/shorts-trending/index.d.ts +3 -0
  2191. package/dist/providers/definitions/youtube/shorts-trending/index.d.ts.map +1 -0
  2192. package/dist/providers/definitions/youtube/shorts-trending/index.js +19 -0
  2193. package/dist/providers/definitions/youtube/shorts-trending/index.js.map +1 -0
  2194. package/dist/providers/definitions/youtube/types.d.ts +16 -0
  2195. package/dist/providers/definitions/youtube/types.d.ts.map +1 -0
  2196. package/dist/providers/definitions/youtube/types.js +5 -0
  2197. package/dist/providers/definitions/youtube/types.js.map +1 -0
  2198. package/dist/providers/definitions/youtube/url.d.ts +19 -0
  2199. package/dist/providers/definitions/youtube/url.d.ts.map +1 -0
  2200. package/dist/providers/definitions/youtube/url.js +155 -0
  2201. package/dist/providers/definitions/youtube/url.js.map +1 -0
  2202. package/dist/providers/definitions/youtube/video/index.d.ts +3 -0
  2203. package/dist/providers/definitions/youtube/video/index.d.ts.map +1 -0
  2204. package/dist/providers/definitions/youtube/video/index.js +24 -0
  2205. package/dist/providers/definitions/youtube/video/index.js.map +1 -0
  2206. package/dist/providers/definitions/youtube/video-comment-replies/index.d.ts +3 -0
  2207. package/dist/providers/definitions/youtube/video-comment-replies/index.d.ts.map +1 -0
  2208. package/dist/providers/definitions/youtube/video-comment-replies/index.js +22 -0
  2209. package/dist/providers/definitions/youtube/video-comment-replies/index.js.map +1 -0
  2210. package/dist/providers/definitions/youtube/video-comments/index.d.ts +3 -0
  2211. package/dist/providers/definitions/youtube/video-comments/index.d.ts.map +1 -0
  2212. package/dist/providers/definitions/youtube/video-comments/index.js +27 -0
  2213. package/dist/providers/definitions/youtube/video-comments/index.js.map +1 -0
  2214. package/dist/providers/definitions/youtube/video-transcript/index.d.ts +3 -0
  2215. package/dist/providers/definitions/youtube/video-transcript/index.d.ts.map +1 -0
  2216. package/dist/providers/definitions/youtube/video-transcript/index.js +23 -0
  2217. package/dist/providers/definitions/youtube/video-transcript/index.js.map +1 -0
  2218. package/dist/providers/shared/endpoint-args.d.ts +6 -0
  2219. package/dist/providers/shared/endpoint-args.d.ts.map +1 -0
  2220. package/dist/providers/shared/endpoint-args.js +32 -0
  2221. package/dist/providers/shared/endpoint-args.js.map +1 -0
  2222. package/dist/providers/shared/facebook-hosts.d.ts +4 -0
  2223. package/dist/providers/shared/facebook-hosts.d.ts.map +1 -0
  2224. package/dist/providers/shared/facebook-hosts.js +17 -0
  2225. package/dist/providers/shared/facebook-hosts.js.map +1 -0
  2226. package/dist/providers/shared/single-segment-profile-url.d.ts +14 -0
  2227. package/dist/providers/shared/single-segment-profile-url.d.ts.map +1 -0
  2228. package/dist/providers/shared/single-segment-profile-url.js +46 -0
  2229. package/dist/providers/shared/single-segment-profile-url.js.map +1 -0
  2230. package/dist/providers/shared/url-segments.d.ts +3 -0
  2231. package/dist/providers/shared/url-segments.d.ts.map +1 -0
  2232. package/dist/providers/shared/url-segments.js +20 -0
  2233. package/dist/providers/shared/url-segments.js.map +1 -0
  2234. package/dist/utils/json.d.ts +11 -0
  2235. package/dist/utils/json.d.ts.map +1 -0
  2236. package/dist/utils/json.js +81 -0
  2237. package/dist/utils/json.js.map +1 -0
  2238. package/package.json +61 -0
  2239. package/templates/AGENTS.md +32 -0
  2240. package/templates/json.hbs +27 -0
  2241. package/templates/scrape-creators/AGENTS.md +33 -0
  2242. package/templates/scrape-creators/_partials/empty-success.hbs +3 -0
  2243. package/templates/scrape-creators/_partials/more-footer.hbs +1 -0
  2244. package/templates/scrape-creators/_partials/provider-error.hbs +4 -0
  2245. package/templates/scrape-creators/_partials/stats-table.hbs +11 -0
  2246. package/templates/scrape-creators/age-gender/detect-age-gender.hbs +11 -0
  2247. package/templates/scrape-creators/amazon-shop/profile.hbs +49 -0
  2248. package/templates/scrape-creators/bluesky/post.hbs +45 -0
  2249. package/templates/scrape-creators/bluesky/profile.hbs +12 -0
  2250. package/templates/scrape-creators/bluesky/user-posts.hbs +25 -0
  2251. package/templates/scrape-creators/facebook/comment-replies.hbs +21 -0
  2252. package/templates/scrape-creators/facebook/comments.hbs +10 -0
  2253. package/templates/scrape-creators/facebook/group-posts.hbs +11 -0
  2254. package/templates/scrape-creators/facebook/post-transcript.hbs +11 -0
  2255. package/templates/scrape-creators/facebook/post.hbs +21 -0
  2256. package/templates/scrape-creators/facebook/profile-events.hbs +19 -0
  2257. package/templates/scrape-creators/facebook/profile-photos.hbs +8 -0
  2258. package/templates/scrape-creators/facebook/profile-posts.hbs +7 -0
  2259. package/templates/scrape-creators/facebook/profile-reels.hbs +7 -0
  2260. package/templates/scrape-creators/facebook/profile.hbs +30 -0
  2261. package/templates/scrape-creators/facebook-ad-library/ad-detail.hbs +83 -0
  2262. package/templates/scrape-creators/facebook-ad-library/ad-search.hbs +21 -0
  2263. package/templates/scrape-creators/facebook-ad-library/company-ads.hbs +20 -0
  2264. package/templates/scrape-creators/facebook-ad-library/company-search.hbs +14 -0
  2265. package/templates/scrape-creators/facebook-events/city-events.hbs +11 -0
  2266. package/templates/scrape-creators/facebook-events/event-detail.hbs +20 -0
  2267. package/templates/scrape-creators/facebook-events/event-search.hbs +11 -0
  2268. package/templates/scrape-creators/facebook-marketplace/listing-detail.hbs +39 -0
  2269. package/templates/scrape-creators/facebook-marketplace/marketplace-location-search.hbs +8 -0
  2270. package/templates/scrape-creators/facebook-marketplace/marketplace-search.hbs +9 -0
  2271. package/templates/scrape-creators/github/repository.hbs +29 -0
  2272. package/templates/scrape-creators/github/trending-developers.hbs +20 -0
  2273. package/templates/scrape-creators/github/trending-repositories.hbs +20 -0
  2274. package/templates/scrape-creators/github/user-activity.hbs +21 -0
  2275. package/templates/scrape-creators/github/user-contributions.hbs +19 -0
  2276. package/templates/scrape-creators/github/user-followers.hbs +13 -0
  2277. package/templates/scrape-creators/github/user-following.hbs +13 -0
  2278. package/templates/scrape-creators/github/user-repositories.hbs +20 -0
  2279. package/templates/scrape-creators/github/user.hbs +28 -0
  2280. package/templates/scrape-creators/google/search.hbs +9 -0
  2281. package/templates/scrape-creators/google-ad-library/ad-detail.hbs +45 -0
  2282. package/templates/scrape-creators/google-ad-library/advertiser-search.hbs +20 -0
  2283. package/templates/scrape-creators/google-ad-library/company-ads.hbs +12 -0
  2284. package/templates/scrape-creators/instagram/basic-profile.hbs +24 -0
  2285. package/templates/scrape-creators/instagram/comments.hbs +14 -0
  2286. package/templates/scrape-creators/instagram/embed-html.hbs +9 -0
  2287. package/templates/scrape-creators/instagram/highlight-detail.hbs +30 -0
  2288. package/templates/scrape-creators/instagram/post.hbs +25 -0
  2289. package/templates/scrape-creators/instagram/posts.hbs +10 -0
  2290. package/templates/scrape-creators/instagram/profile.hbs +19 -0
  2291. package/templates/scrape-creators/instagram/reels.hbs +9 -0
  2292. package/templates/scrape-creators/instagram/search-reels.hbs +8 -0
  2293. package/templates/scrape-creators/instagram/song-reels.hbs +18 -0
  2294. package/templates/scrape-creators/instagram/story-highlights.hbs +9 -0
  2295. package/templates/scrape-creators/instagram/transcript.hbs +12 -0
  2296. package/templates/scrape-creators/instagram/trending-reels.hbs +17 -0
  2297. package/templates/scrape-creators/kick/clip.hbs +14 -0
  2298. package/templates/scrape-creators/komi/profile.hbs +32 -0
  2299. package/templates/scrape-creators/linkbio/profile.hbs +25 -0
  2300. package/templates/scrape-creators/linkedin/company-posts.hbs +18 -0
  2301. package/templates/scrape-creators/linkedin/company.hbs +43 -0
  2302. package/templates/scrape-creators/linkedin/post-transcript.hbs +21 -0
  2303. package/templates/scrape-creators/linkedin/post.hbs +44 -0
  2304. package/templates/scrape-creators/linkedin/profile.hbs +40 -0
  2305. package/templates/scrape-creators/linkedin-ad-library/ad-detail.hbs +87 -0
  2306. package/templates/scrape-creators/linkedin-ad-library/ad-search.hbs +24 -0
  2307. package/templates/scrape-creators/linkme/profile.hbs +26 -0
  2308. package/templates/scrape-creators/linktree/profile.hbs +19 -0
  2309. package/templates/scrape-creators/pillar/profile.hbs +30 -0
  2310. package/templates/scrape-creators/pinterest/board.hbs +39 -0
  2311. package/templates/scrape-creators/pinterest/pin.hbs +36 -0
  2312. package/templates/scrape-creators/pinterest/search.hbs +19 -0
  2313. package/templates/scrape-creators/pinterest/user-boards.hbs +14 -0
  2314. package/templates/scrape-creators/reddit/ad-detail.hbs +27 -0
  2315. package/templates/scrape-creators/reddit/ad-search.hbs +21 -0
  2316. package/templates/scrape-creators/reddit/post-comments.hbs +17 -0
  2317. package/templates/scrape-creators/reddit/post-transcript.hbs +23 -0
  2318. package/templates/scrape-creators/reddit/search.hbs +9 -0
  2319. package/templates/scrape-creators/reddit/subreddit-details.hbs +24 -0
  2320. package/templates/scrape-creators/reddit/subreddit-posts.hbs +8 -0
  2321. package/templates/scrape-creators/reddit/subreddit-search.hbs +12 -0
  2322. package/templates/scrape-creators/rumble/channel-videos.hbs +24 -0
  2323. package/templates/scrape-creators/rumble/search.hbs +21 -0
  2324. package/templates/scrape-creators/rumble/video-comments.hbs +13 -0
  2325. package/templates/scrape-creators/rumble/video-transcript.hbs +14 -0
  2326. package/templates/scrape-creators/rumble/video.hbs +22 -0
  2327. package/templates/scrape-creators/snapchat/profile.hbs +30 -0
  2328. package/templates/scrape-creators/soundcloud/artist-tracks.hbs +16 -0
  2329. package/templates/scrape-creators/soundcloud/artist.hbs +18 -0
  2330. package/templates/scrape-creators/soundcloud/track.hbs +10 -0
  2331. package/templates/scrape-creators/spotify/album.hbs +28 -0
  2332. package/templates/scrape-creators/spotify/artist.hbs +102 -0
  2333. package/templates/scrape-creators/spotify/track.hbs +37 -0
  2334. package/templates/scrape-creators/threads/post.hbs +57 -0
  2335. package/templates/scrape-creators/threads/profile.hbs +21 -0
  2336. package/templates/scrape-creators/threads/search-users.hbs +11 -0
  2337. package/templates/scrape-creators/threads/search.hbs +20 -0
  2338. package/templates/scrape-creators/threads/user-posts.hbs +20 -0
  2339. package/templates/scrape-creators/tiktok/creators-popular.hbs +9 -0
  2340. package/templates/scrape-creators/tiktok/hashtags-popular.hbs +17 -0
  2341. package/templates/scrape-creators/tiktok/profile-region.hbs +5 -0
  2342. package/templates/scrape-creators/tiktok/profile-videos.hbs +9 -0
  2343. package/templates/scrape-creators/tiktok/profile.hbs +25 -0
  2344. package/templates/scrape-creators/tiktok/search-hashtag.hbs +15 -0
  2345. package/templates/scrape-creators/tiktok/search-keyword.hbs +38 -0
  2346. package/templates/scrape-creators/tiktok/search-top.hbs +38 -0
  2347. package/templates/scrape-creators/tiktok/search-users.hbs +8 -0
  2348. package/templates/scrape-creators/tiktok/song-videos.hbs +8 -0
  2349. package/templates/scrape-creators/tiktok/song.hbs +11 -0
  2350. package/templates/scrape-creators/tiktok/trending-feed.hbs +11 -0
  2351. package/templates/scrape-creators/tiktok/user-audience.hbs +27 -0
  2352. package/templates/scrape-creators/tiktok/user-followers.hbs +10 -0
  2353. package/templates/scrape-creators/tiktok/user-following.hbs +10 -0
  2354. package/templates/scrape-creators/tiktok/user-live.hbs +33 -0
  2355. package/templates/scrape-creators/tiktok/video-comment-replies.hbs +25 -0
  2356. package/templates/scrape-creators/tiktok/video-comments.hbs +18 -0
  2357. package/templates/scrape-creators/tiktok/video-transcript.hbs +12 -0
  2358. package/templates/scrape-creators/tiktok/video.hbs +20 -0
  2359. package/templates/scrape-creators/tiktok-shop/product-details.hbs +34 -0
  2360. package/templates/scrape-creators/tiktok-shop/product-reviews.hbs +16 -0
  2361. package/templates/scrape-creators/tiktok-shop/shop-products.hbs +16 -0
  2362. package/templates/scrape-creators/tiktok-shop/shop-search.hbs +19 -0
  2363. package/templates/scrape-creators/tiktok-shop/user-showcase.hbs +16 -0
  2364. package/templates/scrape-creators/truth-social/post.hbs +31 -0
  2365. package/templates/scrape-creators/truth-social/profile.hbs +10 -0
  2366. package/templates/scrape-creators/truth-social/user-posts.hbs +19 -0
  2367. package/templates/scrape-creators/twitch/clip.hbs +17 -0
  2368. package/templates/scrape-creators/twitch/profile.hbs +18 -0
  2369. package/templates/scrape-creators/twitch/user-schedule.hbs +17 -0
  2370. package/templates/scrape-creators/twitch/user-videos.hbs +13 -0
  2371. package/templates/scrape-creators/twitter/community-tweets.hbs +13 -0
  2372. package/templates/scrape-creators/twitter/community.hbs +22 -0
  2373. package/templates/scrape-creators/twitter/profile.hbs +15 -0
  2374. package/templates/scrape-creators/twitter/transcript.hbs +3 -0
  2375. package/templates/scrape-creators/twitter/tweet.hbs +12 -0
  2376. package/templates/scrape-creators/twitter/user-tweets.hbs +10 -0
  2377. package/templates/scrape-creators/youtube/channel-community-posts.hbs +19 -0
  2378. package/templates/scrape-creators/youtube/channel-lives.hbs +17 -0
  2379. package/templates/scrape-creators/youtube/channel-playlists.hbs +17 -0
  2380. package/templates/scrape-creators/youtube/channel-shorts.hbs +7 -0
  2381. package/templates/scrape-creators/youtube/channel-videos.hbs +8 -0
  2382. package/templates/scrape-creators/youtube/channel.hbs +23 -0
  2383. package/templates/scrape-creators/youtube/community-post.hbs +21 -0
  2384. package/templates/scrape-creators/youtube/playlist.hbs +14 -0
  2385. package/templates/scrape-creators/youtube/search-hashtag.hbs +35 -0
  2386. package/templates/scrape-creators/youtube/search.hbs +37 -0
  2387. package/templates/scrape-creators/youtube/shorts-trending.hbs +9 -0
  2388. package/templates/scrape-creators/youtube/video-comment-replies.hbs +20 -0
  2389. package/templates/scrape-creators/youtube/video-comments.hbs +11 -0
  2390. package/templates/scrape-creators/youtube/video-transcript.hbs +12 -0
  2391. package/templates/scrape-creators/youtube/video.hbs +17 -0
@@ -0,0 +1,146 @@
1
+
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="bab646d4-e088-5832-865f-fc2f3d77512b")}catch(e){}}();
3
+ import { FileSystem, Path } from "@effect/platform";
4
+ import { NodeFileSystem, NodePath } from "@effect/platform-node";
5
+ import { Effect, Exit, Layer, Option, Redacted } from "effect";
6
+ import { ArtifactStore } from "../../application/ports/artifact-store.js";
7
+ import { ConfigService } from "../../application/ports/config-service.js";
8
+ import { MetricsService } from "../../application/ports/metrics-service.js";
9
+ import { ArtifactWriteError, sanitizeErrorCause, sanitizeErrorMessage } from "../../domain/errors.js";
10
+ const ARTIFACT_NAMES = [
11
+ "request",
12
+ "response",
13
+ "markdown",
14
+ "metadata",
15
+ "error"
16
+ ];
17
+ // Artifact keys are arbitrary JSON property names (snake_case, camelCase,
18
+ // kebab-case), not HTTP headers — that's why this uses substring matching
19
+ // instead of the dash-delimited isSecretHeaderName() from application/cache/key.ts.
20
+ // Do NOT expand back into a chain of separate regex tests; one alternation
21
+ // covers Authorization / Set-Cookie / *api[-_]?key* / *token* / *secret* /
22
+ // *password* across all key-casing styles in a single test.
23
+ const ARTIFACT_SECRET_KEY_PATTERN = /authorization|cookie|password|secret|token|api[-_]?key/i;
24
+ export const FilesystemArtifactStoreLive = Layer.effect(ArtifactStore, Effect.gen(function* () {
25
+ const fs = yield* FileSystem.FileSystem;
26
+ const path = yield* Path.Path;
27
+ const { config } = yield* ConfigService;
28
+ const metrics = yield* MetricsService;
29
+ const saveRunArtifact = Effect.fn("ArtifactStore.saveRunArtifact")((runId, name, body, options) => {
30
+ const now = new Date();
31
+ const directory = path.resolve(config.artifactRoot, "runs", now.toISOString().slice(0, 10), sanitizePathSegment(String(runId)));
32
+ const extension = options?.extension ?? defaultExtension(name);
33
+ const absolutePath = path.resolve(directory, `${sanitizePathSegment(name)}.${extension}`);
34
+ const shouldRedact = options?.redactSecrets !== false;
35
+ const tempPath = `${absolutePath}.${process.pid}.${Date.now()}.tmp`;
36
+ return serializeArtifactEffect(runId, absolutePath, body, extension, shouldRedact).pipe(Effect.flatMap((content) => fs.makeDirectory(directory, { recursive: true, mode: 0o700 }).pipe(Effect.zipRight(fs.writeFileString(tempPath, content, { mode: 0o600 })), Effect.zipRight(fs.rename(tempPath, absolutePath)), Effect.onExit((exit) => Exit.isSuccess(exit)
37
+ ? Effect.void
38
+ : fs.remove(tempPath).pipe(Effect.catchAll((cleanupError) => Effect.logWarning("artifact temp cleanup failed", {
39
+ path: redactPath(tempPath),
40
+ cause: String(cleanupError)
41
+ })))))), Effect.as({ absolutePath }), Effect.mapError((cause) => cause instanceof ArtifactWriteError
42
+ ? cause
43
+ : new ArtifactWriteError({
44
+ runId: String(runId),
45
+ path: absolutePath,
46
+ cause: sanitizeErrorCause(cause)
47
+ })));
48
+ });
49
+ const saveRunBundle = Effect.fn("ArtifactStore.saveRunBundle")((runId, files) => {
50
+ const writtenPaths = [];
51
+ return Effect.forEach(ARTIFACT_NAMES, (name) => {
52
+ const body = files[name];
53
+ return body === undefined
54
+ ? Effect.succeed(Option.none())
55
+ : saveRunArtifact(runId, name, body).pipe(Effect.tap(({ absolutePath }) => Effect.sync(() => {
56
+ writtenPaths.push(absolutePath);
57
+ })), Effect.map(({ absolutePath }) => Option.some([name, absolutePath])));
58
+ }, { concurrency: 1 }).pipe(Effect.onExit((exit) => Exit.isSuccess(exit) || writtenPaths.length === 0
59
+ ? Effect.void
60
+ : Effect.forEach(writtenPaths, (absolutePath) => fs.remove(absolutePath).pipe(Effect.catchAll((cleanupError) => Effect.logWarning("artifact bundle rollback failed", {
61
+ path: redactPath(absolutePath),
62
+ cause: String(cleanupError)
63
+ }))), { concurrency: 4, discard: true })), Effect.map((entries) => {
64
+ const paths = {};
65
+ for (const entry of entries) {
66
+ if (Option.isSome(entry)) {
67
+ const [name, absolutePath] = entry.value;
68
+ paths[name] = absolutePath;
69
+ }
70
+ }
71
+ return {
72
+ ...(paths.request !== undefined ? { request: paths.request } : {}),
73
+ ...(paths.response !== undefined ? { response: paths.response } : {}),
74
+ ...(paths.markdown !== undefined ? { markdown: paths.markdown } : {}),
75
+ ...(paths.metadata !== undefined ? { metadata: paths.metadata } : {}),
76
+ ...(paths.error !== undefined ? { error: paths.error } : {})
77
+ };
78
+ }));
79
+ });
80
+ return ArtifactStore.make({
81
+ saveRunArtifact: (runId, name, body, options) => saveRunArtifact(runId, name, body, options).pipe(Effect.withSpan("ArtifactStore.saveRunArtifact"), Effect.tap(({ absolutePath }) => Effect.logInfo("artifact write completed", {
82
+ runId: String(runId),
83
+ name,
84
+ path: redactPath(absolutePath)
85
+ })), Effect.tap(() => metrics.recordArtifactSave({ status: "success" })), Effect.tapError(() => metrics.recordArtifactSave({ status: "failed" }))),
86
+ saveRunBundle: (runId, files) => saveRunBundle(runId, files).pipe(Effect.withSpan("ArtifactStore.saveRunBundle"), Effect.tap(() => Effect.logInfo("artifact bundle completed", { runId: String(runId) })))
87
+ });
88
+ })).pipe(Layer.provide(NodeFileSystem.layer), Layer.provide(NodePath.layer));
89
+ function defaultExtension(name) {
90
+ return name === "markdown" ? "md" : "json";
91
+ }
92
+ function serializeArtifact(body, extension, redactSecrets) {
93
+ const value = redactSecrets ? redactSecretValues(body) : body;
94
+ if (extension === "md" || extension === "txt") {
95
+ return typeof value === "string" ? redactSecretText(value) : JSON.stringify(value, null, 2);
96
+ }
97
+ return `${JSON.stringify(value, null, 2)}\n`;
98
+ }
99
+ function serializeArtifactEffect(runId, path, body, extension, redactSecrets) {
100
+ return Effect.try({
101
+ try: () => serializeArtifact(body, extension, redactSecrets),
102
+ catch: (cause) => new ArtifactWriteError({
103
+ runId: String(runId),
104
+ path,
105
+ cause: sanitizeErrorCause(cause)
106
+ })
107
+ });
108
+ }
109
+ function redactSecretText(value) {
110
+ return sanitizeErrorMessage(value)
111
+ .replace(/(authorization\s*[:=]\s*bearer\s+)[^\s"'`,}]+/gi, "$1[REDACTED]")
112
+ .replace(/(x-api-key\s*[:=]\s*)[^\s"'`,}]+/gi, "$1[REDACTED]")
113
+ .replace(/(set-cookie\s*[:=]\s*)[^\n]+/gi, "$1[REDACTED]")
114
+ .replace(/(cookie\s*[:=]\s*)[^\n]+/gi, "$1[REDACTED]");
115
+ }
116
+ function redactSecretValues(value) {
117
+ if (Redacted.isRedacted(value)) {
118
+ return "[REDACTED]";
119
+ }
120
+ if (Array.isArray(value)) {
121
+ return value.map((item) => redactSecretValues(item));
122
+ }
123
+ if (value === null || typeof value !== "object") {
124
+ return typeof value === "string" ? redactSecretText(value) : value;
125
+ }
126
+ const output = {};
127
+ for (const [key, child] of Object.entries(value)) {
128
+ output[key] = isSecretArtifactKey(key)
129
+ ? "[REDACTED]"
130
+ : redactSecretValues(child);
131
+ }
132
+ return output;
133
+ }
134
+ function isSecretArtifactKey(key) {
135
+ return ARTIFACT_SECRET_KEY_PATTERN.test(key);
136
+ }
137
+ function sanitizePathSegment(value) {
138
+ const sanitized = value.replace(/[^a-zA-Z0-9._-]/g, "_");
139
+ return sanitized.length === 0 ? "artifact" : sanitized;
140
+ }
141
+ function redactPath(value) {
142
+ const parts = value.split(/[\\/]/);
143
+ return parts.slice(-3).join("/");
144
+ }
145
+ //# sourceMappingURL=filesystem-artifact-store.js.map
146
+ //# debugId=bab646d4-e088-5832-865f-fc2f3d77512b
@@ -0,0 +1 @@
1
+ {"version":3,"file":"filesystem-artifact-store.js","sources":["../../../src/infrastructure/artifacts/filesystem-artifact-store.ts"],"sourceRoot":"","names":[],"mappings":";;AAAA,OAAO,EAAE,UAAU,EAAE,IAAI,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,MAAM,uBAAuB,CAAC;AACjE,OAAO,EAAE,MAAM,EAAE,IAAI,EAAE,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AAC/D,OAAO,EACL,aAAa,EAGd,MAAM,2CAA2C,CAAC;AACnD,OAAO,EAAE,aAAa,EAAE,MAAM,2CAA2C,CAAC;AAC1E,OAAO,EAAE,cAAc,EAAE,MAAM,4CAA4C,CAAC;AAC5E,OAAO,EACL,kBAAkB,EAClB,kBAAkB,EAClB,oBAAoB,EACrB,MAAM,wBAAwB,CAAC;AAIhC,MAAM,cAAc,GAAG;IACrB,SAAS;IACT,UAAU;IACV,UAAU;IACV,UAAU;IACV,OAAO;CACmC,CAAC;AAC7C,0EAA0E;AAC1E,0EAA0E;AAC1E,oFAAoF;AACpF,2EAA2E;AAC3E,2EAA2E;AAC3E,4DAA4D;AAC5D,MAAM,2BAA2B,GAC/B,yDAAyD,CAAC;AAE5D,MAAM,CAAC,MAAM,2BAA2B,GAAG,KAAK,CAAC,MAAM,CACrD,aAAa,EACb,MAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IAClB,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,MAAM,IAAI,GAAG,KAAK,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC;IAC9B,MAAM,EAAE,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,aAAa,CAAC;IACxC,MAAM,OAAO,GAAG,KAAK,CAAC,CAAC,cAAc,CAAC;IAEtC,MAAM,eAAe,GAAG,MAAM,CAAC,EAAE,CAAC,+BAA+B,CAAC,CAAC,CACjE,KAAqB,EACrB,IAAkB,EAClB,IAAa,EACb,OAAgC,EACsC,EAAE;QACxE,MAAM,GAAG,GAAG,IAAI,IAAI,EAAE,CAAC;QACvB,MAAM,SAAS,GAAG,IAAI,CAAC,OAAO,CAC5B,MAAM,CAAC,YAAY,EACnB,MAAM,EACN,GAAG,CAAC,WAAW,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,EAAE,CAAC,EAC9B,mBAAmB,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CACnC,CAAC;QACF,MAAM,SAAS,GAAG,OAAO,EAAE,SAAS,IAAI,gBAAgB,CAAC,IAAI,CAAC,CAAC;QAC/D,MAAM,YAAY,GAAG,IAAI,CAAC,OAAO,CAC/B,SAAS,EACT,GAAG,mBAAmB,CAAC,IAAI,CAAC,IAAI,SAAS,EAAE,CAC5C,CAAC;QACF,MAAM,YAAY,GAAG,OAAO,EAAE,aAAa,KAAK,KAAK,CAAC;QACtD,MAAM,QAAQ,GAAG,GAAG,YAAY,IAAI,OAAO,CAAC,GAAG,IAAI,IAAI,CAAC,GAAG,EAAE,MAAM,CAAC;QAEpE,OAAO,uBAAuB,CAC5B,KAAK,EACL,YAAY,EACZ,IAAI,EACJ,SAAS,EACT,YAAY,CACb,CAAC,IAAI,CACJ,MAAM,CAAC,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CACzB,EAAE,CAAC,aAAa,CAAC,SAAS,EAAE,EAAE,SAAS,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,IAAI,CAChE,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,eAAe,CAAC,QAAQ,EAAE,OAAO,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,CAAC,CAAC,EACvE,MAAM,CAAC,QAAQ,CAAC,EAAE,CAAC,MAAM,CAAC,QAAQ,EAAE,YAAY,CAAC,CAAC,EAClD,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CACrB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC;YAClB,CAAC,CAAC,MAAM,CAAC,IAAI;YACb,CAAC,CAAC,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CACtB,MAAM,CAAC,QAAQ,CAAC,CAAC,YAAY,EAAE,EAAE,CAC/B,MAAM,CAAC,UAAU,CAAC,8BAA8B,EAAE;gBAChD,IAAI,EAAE,UAAU,CAAC,QAAQ,CAAC;gBAC1B,KAAK,EAAE,MAAM,CAAC,YAAY,CAAC;aAC5B,CAAC,CACH,CACF,CACN,CACF,CACF,EACD,MAAM,CAAC,EAAE,CAAC,EAAE,YAAY,EAAE,CAAC,EAC3B,MAAM,CAAC,QAAQ,CAAC,CAAC,KAAK,EAAE,EAAE,CACxB,KAAK,YAAY,kBAAkB;YACjC,CAAC,CAAC,KAAK;YACP,CAAC,CAAC,IAAI,kBAAkB,CAAC;gBACrB,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC;gBACpB,IAAI,EAAE,YAAY;gBAClB,KAAK,EAAE,kBAAkB,CAAC,KAAK,CAAC;aACjC,CAAC,CACP,CACF,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,MAAM,aAAa,GAAG,MAAM,CAAC,EAAE,CAAC,6BAA6B,CAAC,CAAC,CAC7D,KAAqB,EACrB,KAA6C,EACK,EAAE;QACpD,MAAM,YAAY,GAAa,EAAE,CAAC;QAElC,OAAO,MAAM,CAAC,OAAO,CAAC,cAAc,EAAE,CAAC,IAAI,EAAE,EAAE;YAC7C,MAAM,IAAI,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;YACzB,OAAO,IAAI,KAAK,SAAS;gBACvB,CAAC,CAAC,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,IAAI,EAAmC,CAAC;gBAChE,CAAC,CAAC,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,CAAC,CAAC,IAAI,CACrC,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,EAAE,EAAE,EAAE,CAC9B,MAAM,CAAC,IAAI,CAAC,GAAG,EAAE;oBACf,YAAY,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC;gBAClC,CAAC,CAAC,CACH,EACD,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,EAAE,EAAE,EAAE,CAC9B,MAAM,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,YAAY,CAAU,CAAC,CAC3C,CACF,CAAC;QACR,CAAC,EAAE,EAAE,WAAW,EAAE,CAAC,EAAE,CAAC,CAAC,IAAI,CACzB,MAAM,CAAC,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE,CACrB,IAAI,CAAC,SAAS,CAAC,IAAI,CAAC,IAAI,YAAY,CAAC,MAAM,KAAK,CAAC;YAC/C,CAAC,CAAC,MAAM,CAAC,IAAI;YACb,CAAC,CAAC,MAAM,CAAC,OAAO,CACZ,YAAY,EACZ,CAAC,YAAY,EAAE,EAAE,CACf,EAAE,CAAC,MAAM,CAAC,YAAY,CAAC,CAAC,IAAI,CAC1B,MAAM,CAAC,QAAQ,CAAC,CAAC,YAAY,EAAE,EAAE,CAC/B,MAAM,CAAC,UAAU,CAAC,iCAAiC,EAAE;gBACnD,IAAI,EAAE,UAAU,CAAC,YAAY,CAAC;gBAC9B,KAAK,EAAE,MAAM,CAAC,YAAY,CAAC;aAC5B,CAAC,CACH,CACF,EACH,EAAE,WAAW,EAAE,CAAC,EAAE,OAAO,EAAE,IAAI,EAAE,CAClC,CACN,EACD,MAAM,CAAC,GAAG,CAAC,CAAC,OAAO,EAAE,EAAE;YACrB,MAAM,KAAK,GAA0C,EAAE,CAAC;YACxD,KAAK,MAAM,KAAK,IAAI,OAAO,EAAE,CAAC;gBAC5B,IAAI,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC;oBACzB,MAAM,CAAC,IAAI,EAAE,YAAY,CAAC,GAAG,KAAK,CAAC,KAAK,CAAC;oBACzC,KAAK,CAAC,IAAI,CAAC,GAAG,YAAY,CAAC;gBAC7B,CAAC;YACH,CAAC;YAED,OAAO;gBACL,GAAG,CAAC,KAAK,CAAC,OAAO,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;gBAClE,GAAG,CAAC,KAAK,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;gBACrE,GAAG,CAAC,KAAK,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;gBACrE,GAAG,CAAC,KAAK,CAAC,QAAQ,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,QAAQ,EAAE,KAAK,CAAC,QAAQ,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;gBACrE,GAAG,CAAC,KAAK,CAAC,KAAK,KAAK,SAAS,CAAC,CAAC,CAAC,EAAE,KAAK,EAAE,KAAK,CAAC,KAAK,EAAE,CAAC,CAAC,CAAC,EAAE,CAAC;aAC7D,CAAC;QACJ,CAAC,CAAC,CACH,CAAC;IACJ,CAAC,CAAC,CAAC;IAEH,OAAO,aAAa,CAAC,IAAI,CAAC;QACxB,eAAe,EAAE,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,EAAE,EAAE,CAC9C,eAAe,CAAC,KAAK,EAAE,IAAI,EAAE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAC9C,MAAM,CAAC,QAAQ,CAAC,+BAA+B,CAAC,EAChD,MAAM,CAAC,GAAG,CAAC,CAAC,EAAE,YAAY,EAAE,EAAE,EAAE,CAC9B,MAAM,CAAC,OAAO,CAAC,0BAA0B,EAAE;YACzC,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC;YACpB,IAAI;YACJ,IAAI,EAAE,UAAU,CAAC,YAAY,CAAC;SAC/B,CAAC,CACH,EACD,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,EAAE,MAAM,EAAE,SAAS,EAAE,CAAC,CAAC,EACnE,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE,CAAC,OAAO,CAAC,kBAAkB,CAAC,EAAE,MAAM,EAAE,QAAQ,EAAE,CAAC,CAAC,CACxE;QACH,aAAa,EAAE,CAAC,KAAK,EAAE,KAAK,EAAE,EAAE,CAC9B,aAAa,CAAC,KAAK,EAAE,KAAK,CAAC,CAAC,IAAI,CAC9B,MAAM,CAAC,QAAQ,CAAC,6BAA6B,CAAC,EAC9C,MAAM,CAAC,GAAG,CAAC,GAAG,EAAE,CACd,MAAM,CAAC,OAAO,CAAC,2BAA2B,EAAE,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC,EAAE,CAAC,CACtE,CACF;KACJ,CAAC,CAAC;AACL,CAAC,CAAC,CACH,CAAC,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,cAAc,CAAC,KAAK,CAAC,EAAE,KAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC;AAE3E,SAAS,gBAAgB,CAAC,IAAkB;IAC1C,OAAO,IAAI,KAAK,UAAU,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC;AAC7C,CAAC;AAED,SAAS,iBAAiB,CACxB,IAAa,EACb,SAAgC,EAChC,aAAsB;IAEtB,MAAM,KAAK,GAAG,aAAa,CAAC,CAAC,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;IAC9D,IAAI,SAAS,KAAK,IAAI,IAAI,SAAS,KAAK,KAAK,EAAE,CAAC;QAC9C,OAAO,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC;IAC9F,CAAC;IAED,OAAO,GAAG,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC;AAC/C,CAAC;AAED,SAAS,uBAAuB,CAC9B,KAAqB,EACrB,IAAY,EACZ,IAAa,EACb,SAAgC,EAChC,aAAsB;IAEtB,OAAO,MAAM,CAAC,GAAG,CAAC;QAChB,GAAG,EAAE,GAAG,EAAE,CAAC,iBAAiB,CAAC,IAAI,EAAE,SAAS,EAAE,aAAa,CAAC;QAC5D,KAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CACf,IAAI,kBAAkB,CAAC;YACrB,KAAK,EAAE,MAAM,CAAC,KAAK,CAAC;YACpB,IAAI;YACJ,KAAK,EAAE,kBAAkB,CAAC,KAAK,CAAC;SACjC,CAAC;KACL,CAAC,CAAC;AACL,CAAC;AAED,SAAS,gBAAgB,CAAC,KAAa;IACrC,OAAO,oBAAoB,CAAC,KAAK,CAAC;SAC/B,OAAO,CAAC,iDAAiD,EAAE,cAAc,CAAC;SAC1E,OAAO,CAAC,oCAAoC,EAAE,cAAc,CAAC;SAC7D,OAAO,CAAC,gCAAgC,EAAE,cAAc,CAAC;SACzD,OAAO,CAAC,4BAA4B,EAAE,cAAc,CAAC,CAAC;AAC3D,CAAC;AAED,SAAS,kBAAkB,CAAC,KAAc;IACxC,IAAI,QAAQ,CAAC,UAAU,CAAC,KAAK,CAAC,EAAE,CAAC;QAC/B,OAAO,YAAY,CAAC;IACtB,CAAC;IAED,IAAI,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACzB,OAAO,KAAK,CAAC,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,kBAAkB,CAAC,IAAI,CAAC,CAAC,CAAC;IACvD,CAAC;IAED,IAAI,KAAK,KAAK,IAAI,IAAI,OAAO,KAAK,KAAK,QAAQ,EAAE,CAAC;QAChD,OAAO,OAAO,KAAK,KAAK,QAAQ,CAAC,CAAC,CAAC,gBAAgB,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,KAAK,CAAC;IACrE,CAAC;IAED,MAAM,MAAM,GAA4B,EAAE,CAAC;IAC3C,KAAK,MAAM,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,EAAE,CAAC;QACjD,MAAM,CAAC,GAAG,CAAC,GAAG,mBAAmB,CAAC,GAAG,CAAC;YACpC,CAAC,CAAC,YAAY;YACd,CAAC,CAAC,kBAAkB,CAAC,KAAK,CAAC,CAAC;IAChC,CAAC;IAED,OAAO,MAAM,CAAC;AAChB,CAAC;AAED,SAAS,mBAAmB,CAAC,GAAW;IACtC,OAAO,2BAA2B,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AAC/C,CAAC;AAED,SAAS,mBAAmB,CAAC,KAAa;IACxC,MAAM,SAAS,GAAG,KAAK,CAAC,OAAO,CAAC,kBAAkB,EAAE,GAAG,CAAC,CAAC;IACzD,OAAO,SAAS,CAAC,MAAM,KAAK,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,CAAC,CAAC,SAAS,CAAC;AACzD,CAAC;AAED,SAAS,UAAU,CAAC,KAAa;IAC/B,MAAM,KAAK,GAAG,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACnC,OAAO,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC;AACnC,CAAC","debugId":"bab646d4-e088-5832-865f-fc2f3d77512b"}
@@ -0,0 +1,34 @@
1
+ import { Layer, Option, Redacted } from "effect";
2
+ import { ApiKeyService } from "../../application/ports/api-key-service.js";
3
+ import { ProductConfigService, type ProductConfig } from "../../application/ports/config-service.js";
4
+ interface ApiKeyRow {
5
+ readonly id: string;
6
+ readonly name: string | null;
7
+ readonly key_prefix: string;
8
+ readonly created_at: string;
9
+ readonly last_used_at: string | null;
10
+ readonly expires_at: string | null;
11
+ readonly revoked_at: string | null;
12
+ readonly scopes: readonly string[] | null;
13
+ }
14
+ export interface ApiKeyServiceDeps {
15
+ readonly insert: (row: {
16
+ readonly id: string;
17
+ readonly user_id: string;
18
+ readonly name: string;
19
+ readonly key_prefix: string;
20
+ readonly key_hash: string;
21
+ readonly expires_at: string | null;
22
+ readonly scopes: readonly string[];
23
+ }) => Promise<ApiKeyRow>;
24
+ readonly list: (userId: string) => Promise<readonly ApiKeyRow[]>;
25
+ readonly revoke: (userId: string, keyId: string) => Promise<ApiKeyRow | null>;
26
+ readonly rotate: (userId: string, keyId: string, keyPrefix: string, keyHash: string) => Promise<ApiKeyRow | null>;
27
+ }
28
+ export declare function generateApiKey(): string;
29
+ export declare function apiKeyPrefix(rawKey: string): string;
30
+ export declare function makeApiKeyService(deps: ApiKeyServiceDeps, apiKeyHashSecret?: Option.Option<Redacted.Redacted<string>>): import("../../application/ports/api-key-service.js").ApiKeyServiceApi;
31
+ export declare function apiKeyServiceDeps(config: ProductConfig): ApiKeyServiceDeps;
32
+ export declare const ApiKeyServiceLive: Layer.Layer<ApiKeyService, never, ProductConfigService>;
33
+ export {};
34
+ //# sourceMappingURL=api-key-service-live.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-key-service-live.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/auth/api-key-service-live.ts"],"names":[],"mappings":"AAGA,OAAO,EAAU,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,QAAQ,CAAC;AACzD,OAAO,EACL,aAAa,EAEd,MAAM,4CAA4C,CAAC;AACpD,OAAO,EACL,oBAAoB,EACpB,KAAK,aAAa,EACnB,MAAM,2CAA2C,CAAC;AAUnD,UAAU,SAAS;IACjB,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,QAAQ,CAAC,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;IACrC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,GAAG,IAAI,CAAC;CAC3C;AAED,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE;QACrB,QAAQ,CAAC,EAAE,EAAE,MAAM,CAAC;QACpB,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;QACzB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;QACtB,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;QAC5B,QAAQ,CAAC,QAAQ,EAAE,MAAM,CAAC;QAC1B,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;QACnC,QAAQ,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC;KACpC,KAAK,OAAO,CAAC,SAAS,CAAC,CAAC;IACzB,QAAQ,CAAC,IAAI,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,SAAS,EAAE,CAAC,CAAC;IACjE,QAAQ,CAAC,MAAM,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,CAAC;IAC9E,QAAQ,CAAC,MAAM,EAAE,CACf,MAAM,EAAE,MAAM,EACd,KAAK,EAAE,MAAM,EACb,SAAS,EAAE,MAAM,EACjB,OAAO,EAAE,MAAM,KACZ,OAAO,CAAC,SAAS,GAAG,IAAI,CAAC,CAAC;CAChC;AAkED,wBAAgB,cAAc,IAAI,MAAM,CAEvC;AAED,wBAAgB,YAAY,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAEnD;AAED,wBAAgB,iBAAiB,CAC/B,IAAI,EAAE,iBAAiB,EACvB,gBAAgB,GAAE,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAiB,yEA+E3E;AA2FD,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,aAAa,GAAG,iBAAiB,CAU1E;AAED,eAAO,MAAM,iBAAiB,yDAM7B,CAAC"}
@@ -0,0 +1,217 @@
1
+
2
+ !function(){try{var e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof globalThis?globalThis:"undefined"!=typeof self?self:{},n=(new e.Error).stack;n&&(e._sentryDebugIds=e._sentryDebugIds||{},e._sentryDebugIds[n]="354c6bc0-5a45-58b5-b518-432b4c137c99")}catch(e){}}();
3
+ import { randomBytes, randomUUID } from "node:crypto";
4
+ import { createClient } from "@supabase/supabase-js";
5
+ import { Effect, Layer, Option, Redacted } from "effect";
6
+ import { ApiKeyService } from "../../application/ports/api-key-service.js";
7
+ import { ProductConfigService } from "../../application/ports/config-service.js";
8
+ import { BillingStateError, InputValidationError, NotFoundError, sanitizeErrorCause } from "../../domain/errors.js";
9
+ import { FULL_SCOPES, isApiKeyScope } from "../../domain/scopes.js";
10
+ import { hashApiKey } from "./supabase-auth-live.js";
11
+ const KEY_PREFIX = "atmd";
12
+ function toMetadata(row) {
13
+ // A null/absent scope set is a legacy key → full-scope.
14
+ const scopes = row.scopes === null ? FULL_SCOPES : row.scopes.filter(isApiKeyScope);
15
+ return {
16
+ id: row.id,
17
+ name: row.name ?? "",
18
+ keyPrefix: row.key_prefix,
19
+ createdAt: row.created_at,
20
+ lastUsedAt: row.last_used_at,
21
+ expiresAt: row.expires_at,
22
+ revokedAt: row.revoked_at,
23
+ scopes
24
+ };
25
+ }
26
+ /**
27
+ * Resolves the scope grant for a new key: an omitted or empty set defaults to
28
+ * full scope (back-compat), otherwise the de-duplicated requested set. The HTTP
29
+ * boundary already rejects unknown scope strings at decode time.
30
+ */
31
+ function resolveScopes(requested) {
32
+ if (requested === undefined || requested.length === 0) {
33
+ return FULL_SCOPES;
34
+ }
35
+ return [...new Set(requested.filter(isApiKeyScope))];
36
+ }
37
+ function validateKeyName(name) {
38
+ const trimmed = name.trim();
39
+ if (trimmed.length === 0 || trimmed.length > 80) {
40
+ return Effect.fail(new InputValidationError({
41
+ message: "API key name must be between 1 and 80 characters"
42
+ }));
43
+ }
44
+ return Effect.succeed(trimmed);
45
+ }
46
+ function validateExpiresAt(value) {
47
+ if (value === undefined || value.trim().length === 0) {
48
+ return Effect.succeed(null);
49
+ }
50
+ const parsed = Date.parse(value);
51
+ if (!Number.isFinite(parsed)) {
52
+ return Effect.fail(new InputValidationError({ message: "API key expiration must be an ISO date" }));
53
+ }
54
+ return Effect.succeed(new Date(parsed).toISOString());
55
+ }
56
+ function billingError(operation) {
57
+ return (cause) => new BillingStateError({ operation, cause: sanitizeErrorCause(cause) });
58
+ }
59
+ export function generateApiKey() {
60
+ return `${KEY_PREFIX}_${randomBytes(32).toString("base64url")}`;
61
+ }
62
+ export function apiKeyPrefix(rawKey) {
63
+ return rawKey.slice(0, 12);
64
+ }
65
+ export function makeApiKeyService(deps, apiKeyHashSecret = Option.none()) {
66
+ return ApiKeyService.make({
67
+ create: ({ userId, name, expiresAt, scopes }) => Effect.gen(function* () {
68
+ const normalizedName = yield* validateKeyName(name);
69
+ const normalizedExpiresAt = yield* validateExpiresAt(expiresAt);
70
+ const rawKey = generateApiKey();
71
+ const row = yield* Effect.tryPromise({
72
+ try: () => deps.insert({
73
+ id: randomUUID(),
74
+ user_id: String(userId),
75
+ name: normalizedName,
76
+ key_prefix: apiKeyPrefix(rawKey),
77
+ key_hash: hashApiKey(rawKey, Option.getOrUndefined(apiKeyHashSecret)),
78
+ expires_at: normalizedExpiresAt,
79
+ scopes: resolveScopes(scopes)
80
+ }),
81
+ catch: billingError("api-key-create")
82
+ });
83
+ return { key: Redacted.make(rawKey), metadata: toMetadata(row) };
84
+ }).pipe(Effect.withSpan("ApiKeyService.create")),
85
+ list: (userId) => Effect.tryPromise({
86
+ try: () => deps.list(String(userId)),
87
+ catch: billingError("api-key-list")
88
+ }).pipe(Effect.map((rows) => rows.map(toMetadata)), Effect.withSpan("ApiKeyService.list")),
89
+ revoke: ({ userId, keyId }) => Effect.gen(function* () {
90
+ if (keyId.trim().length === 0) {
91
+ return yield* new InputValidationError({
92
+ message: "API key id is required"
93
+ });
94
+ }
95
+ const row = yield* Effect.tryPromise({
96
+ try: () => deps.revoke(String(userId), keyId),
97
+ catch: billingError("api-key-revoke")
98
+ });
99
+ if (row === null) {
100
+ return yield* new NotFoundError({
101
+ resource: "api-key",
102
+ id: keyId,
103
+ message: "API key was not found"
104
+ });
105
+ }
106
+ return toMetadata(row);
107
+ }).pipe(Effect.withSpan("ApiKeyService.revoke")),
108
+ rotate: ({ userId, keyId }) => Effect.gen(function* () {
109
+ if (keyId.trim().length === 0) {
110
+ return yield* new InputValidationError({
111
+ message: "API key id is required"
112
+ });
113
+ }
114
+ const rawKey = generateApiKey();
115
+ const row = yield* Effect.tryPromise({
116
+ try: () => deps.rotate(String(userId), keyId, apiKeyPrefix(rawKey), hashApiKey(rawKey, Option.getOrUndefined(apiKeyHashSecret))),
117
+ catch: billingError("api-key-rotate")
118
+ });
119
+ if (row === null) {
120
+ return yield* new NotFoundError({
121
+ resource: "api-key",
122
+ id: keyId,
123
+ message: "API key was not found"
124
+ });
125
+ }
126
+ return { key: Redacted.make(rawKey), metadata: toMetadata(row) };
127
+ }).pipe(Effect.withSpan("ApiKeyService.rotate"))
128
+ });
129
+ }
130
+ const rejectUnconfigured = (operation) => () => Promise.reject(new Error(`Supabase service role is not configured (${operation})`));
131
+ function serviceRoleClient(config) {
132
+ return Option.flatMap(config.supabaseServiceRoleKey, (serviceRoleKey) => Option.map(config.supabaseUrl, (url) => createClient(url, Redacted.value(serviceRoleKey), {
133
+ auth: { persistSession: false, autoRefreshToken: false }
134
+ })));
135
+ }
136
+ function liveDeps(client) {
137
+ return {
138
+ insert: async (row) => {
139
+ const { data, error } = await client
140
+ .from("api_keys")
141
+ // Local insert DTO uses readonly fields/arrays; the generated Insert
142
+ // expects mutable. Identical column set — cast the payload; the typed
143
+ // handle still checks the table name and the returned projection.
144
+ .insert(row)
145
+ .select("id, name, key_prefix, created_at, last_used_at, expires_at, revoked_at, scopes")
146
+ .single();
147
+ if (error !== null) {
148
+ throw error;
149
+ }
150
+ return data;
151
+ },
152
+ list: async (userId) => {
153
+ const { data, error } = await client
154
+ .from("api_keys")
155
+ .select("id, name, key_prefix, created_at, last_used_at, expires_at, revoked_at, scopes")
156
+ .eq("user_id", userId)
157
+ .order("created_at", { ascending: false });
158
+ if (error !== null) {
159
+ throw error;
160
+ }
161
+ return data ?? [];
162
+ },
163
+ revoke: async (userId, keyId) => {
164
+ const { data, error } = await client
165
+ .from("api_keys")
166
+ .update({ revoked_at: new Date().toISOString() })
167
+ .eq("user_id", userId)
168
+ .eq("id", keyId)
169
+ .is("revoked_at", null)
170
+ .select("id, name, key_prefix, created_at, last_used_at, expires_at, revoked_at, scopes")
171
+ .maybeSingle();
172
+ if (error !== null) {
173
+ throw error;
174
+ }
175
+ return data ?? null;
176
+ },
177
+ rotate: async (userId, keyId, keyPrefix, keyHash) => {
178
+ // Single-statement, owner-scoped UPDATE. The `user_id` predicate is the
179
+ // only defense against cross-user rotation; a foreign/missing/already-
180
+ // revoked key matches zero rows → null → 404. `last_used_at` resets to
181
+ // null because the freshly-minted secret has never been used.
182
+ const { data, error } = await client
183
+ .from("api_keys")
184
+ .update({
185
+ key_prefix: keyPrefix,
186
+ key_hash: keyHash,
187
+ last_used_at: null
188
+ })
189
+ .eq("user_id", userId)
190
+ .eq("id", keyId)
191
+ .is("revoked_at", null)
192
+ .select("id, name, key_prefix, created_at, last_used_at, expires_at, revoked_at, scopes")
193
+ .maybeSingle();
194
+ if (error !== null) {
195
+ throw error;
196
+ }
197
+ return data ?? null;
198
+ }
199
+ };
200
+ }
201
+ export function apiKeyServiceDeps(config) {
202
+ return Option.match(serviceRoleClient(config), {
203
+ onNone: () => ({
204
+ insert: rejectUnconfigured("api-key-create"),
205
+ list: rejectUnconfigured("api-key-list"),
206
+ revoke: rejectUnconfigured("api-key-revoke"),
207
+ rotate: rejectUnconfigured("api-key-rotate")
208
+ }),
209
+ onSome: (client) => liveDeps(client)
210
+ });
211
+ }
212
+ export const ApiKeyServiceLive = Layer.effect(ApiKeyService, Effect.gen(function* () {
213
+ const { config } = yield* ProductConfigService;
214
+ return makeApiKeyService(apiKeyServiceDeps(config), config.apiKeyHashSecret);
215
+ }));
216
+ //# sourceMappingURL=api-key-service-live.js.map
217
+ //# debugId=354c6bc0-5a45-58b5-b518-432b4c137c99
@@ -0,0 +1 @@
1
+ {"version":3,"file":"api-key-service-live.js","sources":["../../../src/infrastructure/auth/api-key-service-live.ts"],"sourceRoot":"","names":[],"mappings":"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","debugId":"354c6bc0-5a45-58b5-b518-432b4c137c99"}
@@ -0,0 +1,56 @@
1
+ import { Layer, Option, Redacted } from "effect";
2
+ import { AuthService } from "../../application/ports/auth-service.js";
3
+ import { ProductConfigService, type ProductConfig } from "../../application/ports/config-service.js";
4
+ export interface SupabaseJwtClaims {
5
+ readonly sub: string;
6
+ readonly email?: string;
7
+ readonly role?: string;
8
+ }
9
+ export interface ApiKeyOwnerRow {
10
+ readonly user_id: string;
11
+ readonly expires_at: string | null;
12
+ readonly revoked_at: string | null;
13
+ /**
14
+ * Granted capability scopes. `null` (a key with no explicit scope set, e.g.
15
+ * one predating scope support) is treated as full-scope downstream.
16
+ */
17
+ readonly scopes?: readonly string[] | null;
18
+ }
19
+ /**
20
+ * Injectable verification seam. The local stack uses symmetric HS256 with
21
+ * `SUPABASE_JWT_SECRET`; a hosted project swaps {@link SupabaseAuthDeps.verifyJwt}
22
+ * for a JWKS/`createRemoteJWKSet` verifier without touching the service.
23
+ */
24
+ export interface SupabaseAuthDeps {
25
+ readonly verifyJwt: (token: string) => Promise<SupabaseJwtClaims>;
26
+ readonly lookupApiKeyOwner: (keyHashHex: string) => Promise<ApiKeyOwnerRow | null>;
27
+ }
28
+ /**
29
+ * Hex digest of an API key — the only representation we persist.
30
+ *
31
+ * With no secret: `sha256(rawKey)` (the legacy, byte-for-byte behaviour). With a
32
+ * secret (`API_KEY_HASH_SECRET`): keyed `HMAC-sha256(rawKey)`, so a stolen DB
33
+ * dump cannot be brute-forced offline without the secret. Verification accepts
34
+ * BOTH, so enabling the secret never invalidates an existing key.
35
+ */
36
+ export declare function hashApiKey(rawKey: string, secret?: Redacted.Redacted<string>): string;
37
+ /** Local/dev HS256 verifier. Hosted projects substitute a JWKS verifier. */
38
+ export declare function hs256Verifier(secret: Redacted.Redacted<string>, audience: string, issuer?: string): (token: string) => Promise<SupabaseJwtClaims>;
39
+ /**
40
+ * Asymmetric verifier for hosted Supabase projects, which sign user session
41
+ * JWTs with ES256 (and may rotate to RS256). Keys are fetched from the
42
+ * project's JWKS endpoint; jose caches and refreshes the key set internally,
43
+ * so the remote set is created once per verifier and reused across requests.
44
+ */
45
+ export declare function jwksVerifier(supabaseUrl: string, audience: string): (token: string) => Promise<SupabaseJwtClaims>;
46
+ export declare function makeSupabaseAuthService(deps: SupabaseAuthDeps, apiKeyHashSecret?: Option.Option<Redacted.Redacted<string>>): import("../../application/ports/auth-service.js").AuthServiceApi;
47
+ /**
48
+ * Routes a presented token to the verifier matching its header `alg`: symmetric
49
+ * HS256 for the local/dev stack (needs `SUPABASE_JWT_SECRET`), asymmetric
50
+ * ES256/RS256 for hosted Supabase projects (needs `SUPABASE_URL` for JWKS).
51
+ * Unknown/none algorithms and unconfigured verifiers are rejected.
52
+ */
53
+ export declare function makeRoutingVerifier(config: ProductConfig): (token: string) => Promise<SupabaseJwtClaims>;
54
+ export declare function supabaseAuthDeps(config: ProductConfig): SupabaseAuthDeps;
55
+ export declare const SupabaseAuthLive: Layer.Layer<AuthService, never, ProductConfigService>;
56
+ //# sourceMappingURL=supabase-auth-live.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"supabase-auth-live.d.ts","sourceRoot":"","sources":["../../../src/infrastructure/auth/supabase-auth-live.ts"],"names":[],"mappings":"AASA,OAAO,EAAU,KAAK,EAAE,MAAM,EAAE,QAAQ,EAAU,MAAM,QAAQ,CAAC;AACjE,OAAO,EACL,WAAW,EAGZ,MAAM,yCAAyC,CAAC;AACjD,OAAO,EACL,oBAAoB,EACpB,KAAK,aAAa,EACnB,MAAM,2CAA2C,CAAC;AAKnD,MAAM,WAAW,iBAAiB;IAChC,QAAQ,CAAC,GAAG,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IACxB,QAAQ,CAAC,IAAI,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,MAAM,WAAW,cAAc;IAC7B,QAAQ,CAAC,OAAO,EAAE,MAAM,CAAC;IACzB,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC,QAAQ,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAAC;IACnC;;;OAGG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,SAAS,MAAM,EAAE,GAAG,IAAI,CAAC;CAC5C;AAED;;;;GAIG;AACH,MAAM,WAAW,gBAAgB;IAC/B,QAAQ,CAAC,SAAS,EAAE,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAAC;IAClE,QAAQ,CAAC,iBAAiB,EAAE,CAC1B,UAAU,EAAE,MAAM,KACf,OAAO,CAAC,cAAc,GAAG,IAAI,CAAC,CAAC;CACrC;AAED;;;;;;;GAOG;AACH,wBAAgB,UAAU,CACxB,MAAM,EAAE,MAAM,EACd,MAAM,CAAC,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,GACjC,MAAM,CAOR;AAcD,4EAA4E;AAC5E,wBAAgB,aAAa,CAC3B,MAAM,EAAE,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,EACjC,QAAQ,EAAE,MAAM,EAChB,MAAM,CAAC,EAAE,MAAM,GACd,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAa/C;AAED;;;;;GAKG;AACH,wBAAgB,YAAY,CAC1B,WAAW,EAAE,MAAM,EACnB,QAAQ,EAAE,MAAM,GACf,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAgB/C;AA+CD,wBAAgB,uBAAuB,CACrC,IAAI,EAAE,gBAAgB,EACtB,gBAAgB,GAAE,MAAM,CAAC,MAAM,CAAC,QAAQ,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAiB,oEAoE3E;AAgCD;;;;;GAKG;AACH,wBAAgB,mBAAmB,CACjC,MAAM,EAAE,aAAa,GACpB,CAAC,KAAK,EAAE,MAAM,KAAK,OAAO,CAAC,iBAAiB,CAAC,CAmC/C;AAED,wBAAgB,gBAAgB,CAAC,MAAM,EAAE,aAAa,GAAG,gBAAgB,CAWxE;AAED,eAAO,MAAM,gBAAgB,uDAuB5B,CAAC"}