|
...
|
...
|
@@ -2,25 +2,40 @@ |
|
|
|
|
|
|
|
namespace Lackoxygen\TiktokShop\Facade;
|
|
|
|
|
|
|
|
use Lackoxygen\TiktokShop\Passage;
|
|
|
|
use Illuminate\Support\Facades\Facade;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Alliance\Alliance;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Authorize;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Order\OrderInterface;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Product\ProductInterface;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Shop\ShopInterface;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Verify;
|
|
|
|
use Lackoxygen\TiktokShop\TiktokShop as TiktokShopKernel;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method static OrderInterface order()
|
|
|
|
* @method static ShopInterface shop()
|
|
|
|
* @method static ProductInterface product()
|
|
|
|
* @method static Authorize authorize()
|
|
|
|
* @method static Verify verify()
|
|
|
|
* @method static Alliance alliance()
|
|
|
|
* @method static TiktokShopKernel setAccessToken(string $accessToken)
|
|
|
|
* @method static TiktokShopKernel use ($options)
|
|
|
|
* @method static Verify verify()
|
|
|
|
* @method static Passage\Pigeon\PigeonInterface pigeon()
|
|
|
|
* @method static Passage\Sms\SmsInterface sms()
|
|
|
|
* @method static Passage\SupplyChain\SupplyChainInterface supplyChain()
|
|
|
|
* @method static Passage\Topup\TopupInterface topup()
|
|
|
|
* @method static Passage\OpenCloud\OpenCloudInterface openCloud()
|
|
|
|
* @method static Passage\Btas\BtasInterface btas()
|
|
|
|
* @method static Passage\Recycle\RecycleInterface recycle()
|
|
|
|
* @method static Passage\Member\MemberInterface member()
|
|
|
|
* @method static Passage\Buyin\BuyinInterface buyin()
|
|
|
|
* @method static Passage\Yunc\YuncInterface yunc()
|
|
|
|
* @method static Passage\OrderCode\OrderCodeInterface orderCode()
|
|
|
|
* @method static Passage\Coupons\CouponsInterface coupons()
|
|
|
|
* @method static Passage\Crossborder\CrossborderInterface crossborder()
|
|
|
|
* @method static Passage\Iop\IopInterface iop()
|
|
|
|
* @method static Passage\Antispam\AntispamInterface antispam()
|
|
|
|
* @method static Passage\Token\TokenInterface token()
|
|
|
|
* @method static Passage\Order\OrderInterface order()
|
|
|
|
* @method static Passage\AfterSale\AfterSaleInterface afterSale()
|
|
|
|
* @method static Passage\Logistics\LogisticsInterface logistics()
|
|
|
|
* @method static Passage\Warehouse\WarehouseInterface warehouse()
|
|
|
|
* @method static Passage\Product\ProductInterface product()
|
|
|
|
* @method static Passage\Material\MaterialInterface material()
|
|
|
|
* @method static Passage\Address\AddressInterface address()
|
|
|
|
*/
|
|
|
|
|
|
|
|
class TiktokShop extends Facade
|
|
|
|
{
|
|
|
|
/**
|
...
|
...
|
|