scrapebadger 0.44.0 → 0.45.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.
package/dist/index.mjs CHANGED
@@ -3,7 +3,7 @@ import { EventEmitter } from 'events';
3
3
  import WebSocket from 'ws';
4
4
 
5
5
  // src/internal/version.ts
6
- var SDK_VERSION = "0.44.0";
6
+ var SDK_VERSION = "0.45.0";
7
7
 
8
8
  // src/internal/exceptions.ts
9
9
  var ScrapeBadgerError = class _ScrapeBadgerError extends Error {
@@ -5710,6 +5710,30 @@ var TikTokClient = class {
5710
5710
  async getTiktokAdDetail(adId, params = {}) {
5711
5711
  return this._gen.request(`/v1/tiktok/ads/${adId}`, { params });
5712
5712
  }
5713
+ /** TikTok Shop root categories. Generated from the OpenAPI spec; returns the raw response object. */
5714
+ async tiktokShopRootCategories(params = {}) {
5715
+ return this._gen.request("/v1/tiktok/shop/categories", { params });
5716
+ }
5717
+ /** TikTok Shop category: subcategories + top products. Generated from the OpenAPI spec; returns the raw response object. */
5718
+ async tiktokShopCategorySubcategoriesTopProducts(categoryId, params = {}) {
5719
+ return this._gen.request(`/v1/tiktok/shop/categories/${categoryId}`, { params });
5720
+ }
5721
+ /** TikTok Shop product detail. Generated from the OpenAPI spec; returns the raw response object. */
5722
+ async tiktokShopProductDetail(productId, params = {}) {
5723
+ return this._gen.request(`/v1/tiktok/shop/products/${productId}`, { params });
5724
+ }
5725
+ /** TikTok Shop product reviews. Generated from the OpenAPI spec; returns the raw response object. */
5726
+ async tiktokShopProductReviews(productId, params = {}) {
5727
+ return this._gen.request(`/v1/tiktok/shop/products/${productId}/reviews`, { params });
5728
+ }
5729
+ /** Search TikTok Shop products. Generated from the OpenAPI spec; returns the raw response object. */
5730
+ async searchTiktokShopProducts(params = {}) {
5731
+ return this._gen.request("/v1/tiktok/shop/search", { params });
5732
+ }
5733
+ /** TikTok Shop store + products. Generated from the OpenAPI spec; returns the raw response object. */
5734
+ async tiktokShopStoreProducts(sellerId, params = {}) {
5735
+ return this._gen.request(`/v1/tiktok/shop/stores/${sellerId}`, { params });
5736
+ }
5713
5737
  // --- END generated by sdk/codegen/facade ---
5714
5738
  };
5715
5739
 
@@ -7977,6 +8001,10 @@ var ZillowClient = class {
7977
8001
  this.reference = new ReferenceClient14(client);
7978
8002
  }
7979
8003
  // --- BEGIN generated by sdk/codegen/facade — do not edit ---
8004
+ /** Get multifamily building. Generated from the OpenAPI spec; returns the raw response object. */
8005
+ async getMultifamilyBuilding(params = {}) {
8006
+ return this._gen.request("/v1/zillow/building", { params });
8007
+ }
7980
8008
  /** Get property detail by URL. Generated from the OpenAPI spec; returns the raw response object. */
7981
8009
  async getPropertyDetailByUrl(params = {}) {
7982
8010
  return this._gen.request("/v1/zillow/property", { params });