|
...
|
...
|
@@ -11,6 +11,7 @@ use Lackoxygen\TiktokShop\Passage\PassageProxy; |
|
|
|
use Lackoxygen\TiktokShop\Passage\Product\ProductInterface;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Shop\ShopInterface;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Verify;
|
|
|
|
use Lackoxygen\TiktokShop\Passage\Logistics\Logistics;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @method OrderInterface order()
|
|
...
|
...
|
@@ -19,6 +20,7 @@ use Lackoxygen\TiktokShop\Passage\Verify; |
|
|
|
* @method Authorize authorize()
|
|
|
|
* @method Verify verify()
|
|
|
|
* @method Alliance alliance()
|
|
|
|
* @method Logistics logistics()
|
|
|
|
*/
|
|
|
|
class TiktokShop
|
|
|
|
{
|
|
...
|
...
|
@@ -31,9 +33,13 @@ class TiktokShop |
|
|
|
* @var array|string[]
|
|
|
|
*/
|
|
|
|
protected static array $passages = [
|
|
|
|
'order' => Passage\Order\Order::class, 'shop' => Passage\Shop\Shop::class,
|
|
|
|
'product' => Passage\Product\Product::class, 'authorize' => Authorize::class, 'verify' => Verify::class,
|
|
|
|
'alliance' => Alliance::class
|
|
|
|
'order' => Passage\Order\Order::class,
|
|
|
|
'shop' => Passage\Shop\Shop::class,
|
|
|
|
'product' => Passage\Product\Product::class,
|
|
|
|
'authorize' => Authorize::class,
|
|
|
|
'verify' => Verify::class,
|
|
|
|
'alliance' => Alliance::class,
|
|
|
|
'logistics' => Passage\Logistics\Logistics::class
|
|
|
|
];
|
|
|
|
|
|
|
|
/**
|
...
|
...
|
|