UNPKG

@congminh1254/shopee-sdk

Version:
10 lines (9 loc) 623 B
import { ShopeeConfig } from "../sdk.js"; import { GetShopsByPartnerParams, GetMerchantsByPartnerParams, GetShopsByPartnerResponse, GetMerchantsByPartnerResponse, GetShopeeIpRangeResponse } from "../schemas/public.js"; import { BaseManager } from "./base.manager.js"; export declare class PublicManager extends BaseManager { constructor(config: ShopeeConfig); getShopsByPartner(params?: GetShopsByPartnerParams): Promise<GetShopsByPartnerResponse>; getMerchantsByPartner(params?: GetMerchantsByPartnerParams): Promise<GetMerchantsByPartnerResponse>; getShopeeIpRange(): Promise<GetShopeeIpRangeResponse>; }