├── .gitignore ├── CHANGELOG.md ├── README.md ├── composer.json ├── docs ├── API.md ├── Adv.md ├── Analytics.md ├── Calendar.md ├── Chat.md ├── Common.md ├── Content.md ├── Documents.md ├── Feedbacks.md ├── Marketplace.md ├── Prices.md ├── Questions.md ├── Recommends.md ├── Returns.md ├── Statistics.md ├── Supplies.md └── Tariffs.md ├── src ├── API.php ├── API │ ├── AbstractEndpoint.php │ ├── Client.php │ └── Endpoint │ │ ├── Adv.php │ │ ├── Analytics.php │ │ ├── Calendar.php │ │ ├── Chat.php │ │ ├── Common.php │ │ ├── Content.php │ │ ├── Documents.php │ │ ├── Feedbacks.php │ │ ├── Marketplace.php │ │ ├── Prices.php │ │ ├── Questions.php │ │ ├── Recommends.php │ │ ├── Returns.php │ │ ├── Statistics.php │ │ ├── Subpoint │ │ ├── AdvAuto.php │ │ ├── AdvFinance.php │ │ ├── AdvMedia.php │ │ ├── AdvSearchCatalog.php │ │ ├── BannedProducts.php │ │ ├── Brands.php │ │ ├── CrossBorder.php │ │ ├── DBS.php │ │ ├── News.php │ │ ├── PaidStorage.php │ │ ├── Passes.php │ │ ├── Tags.php │ │ ├── Templates.php │ │ ├── Trash.php │ │ ├── WBGO.php │ │ ├── WarehouseRemains.php │ │ └── Warehouses.php │ │ ├── Supplies.php │ │ └── Tariffs.php ├── APIToken.php ├── Enum │ ├── AdvertDepositSource.php │ ├── AdvertStatus.php │ ├── AdvertType.php │ ├── MediaAdvertStatus.php │ └── ReturnAction.php └── Exception │ ├── ApiClientException.php │ ├── ApiTimeRestrictionsException.php │ └── WBSellerException.php └── tests ├── ApiClient ├── AdvTest.php ├── AnaliticsBannedProductsTest.php ├── AnaliticsPaidStorageTest.php ├── AnaliticsWarehouseRemainsTest.php ├── AnalyticsTest.php ├── ApiTest.php ├── CalendarTest.php ├── CommonNewsTest.php ├── CommonTest.php ├── ContentTagsTest.php ├── ContentTest.php ├── FeedbacksTemplatesTest.php ├── FeedbacksTest.php ├── MarketplaceDBSTest.php ├── MarketplacePassesTest.php ├── MarketplaceTest.php ├── MarketplaceWarehousesTest.php ├── PricesTest.php ├── QuestionsTemplatesTest.php ├── QuestionsTest.php ├── RecommendsTest.php ├── StatisticsTest.php ├── SuppliesTest.php ├── TariffsTest.php └── TestCase.php ├── TestCase.php ├── TokenTest.php ├── bootstrap.php └── phpunit.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/composer.json -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/Adv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Adv.md -------------------------------------------------------------------------------- /docs/Analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Analytics.md -------------------------------------------------------------------------------- /docs/Calendar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Calendar.md -------------------------------------------------------------------------------- /docs/Chat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Chat.md -------------------------------------------------------------------------------- /docs/Common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Common.md -------------------------------------------------------------------------------- /docs/Content.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Content.md -------------------------------------------------------------------------------- /docs/Documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Documents.md -------------------------------------------------------------------------------- /docs/Feedbacks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Feedbacks.md -------------------------------------------------------------------------------- /docs/Marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Marketplace.md -------------------------------------------------------------------------------- /docs/Prices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Prices.md -------------------------------------------------------------------------------- /docs/Questions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Questions.md -------------------------------------------------------------------------------- /docs/Recommends.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Recommends.md -------------------------------------------------------------------------------- /docs/Returns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Returns.md -------------------------------------------------------------------------------- /docs/Statistics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Statistics.md -------------------------------------------------------------------------------- /docs/Supplies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Supplies.md -------------------------------------------------------------------------------- /docs/Tariffs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/docs/Tariffs.md -------------------------------------------------------------------------------- /src/API.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API.php -------------------------------------------------------------------------------- /src/API/AbstractEndpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/AbstractEndpoint.php -------------------------------------------------------------------------------- /src/API/Client.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Client.php -------------------------------------------------------------------------------- /src/API/Endpoint/Adv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Adv.php -------------------------------------------------------------------------------- /src/API/Endpoint/Analytics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Analytics.php -------------------------------------------------------------------------------- /src/API/Endpoint/Calendar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Calendar.php -------------------------------------------------------------------------------- /src/API/Endpoint/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Chat.php -------------------------------------------------------------------------------- /src/API/Endpoint/Common.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Common.php -------------------------------------------------------------------------------- /src/API/Endpoint/Content.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Content.php -------------------------------------------------------------------------------- /src/API/Endpoint/Documents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Documents.php -------------------------------------------------------------------------------- /src/API/Endpoint/Feedbacks.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Feedbacks.php -------------------------------------------------------------------------------- /src/API/Endpoint/Marketplace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Marketplace.php -------------------------------------------------------------------------------- /src/API/Endpoint/Prices.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Prices.php -------------------------------------------------------------------------------- /src/API/Endpoint/Questions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Questions.php -------------------------------------------------------------------------------- /src/API/Endpoint/Recommends.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Recommends.php -------------------------------------------------------------------------------- /src/API/Endpoint/Returns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Returns.php -------------------------------------------------------------------------------- /src/API/Endpoint/Statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Statistics.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/AdvAuto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/AdvAuto.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/AdvFinance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/AdvFinance.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/AdvMedia.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/AdvMedia.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/AdvSearchCatalog.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/AdvSearchCatalog.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/BannedProducts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/BannedProducts.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Brands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Brands.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/CrossBorder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/CrossBorder.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/DBS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/DBS.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/News.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/News.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/PaidStorage.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/PaidStorage.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Passes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Passes.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Tags.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Tags.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Templates.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Templates.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Trash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Trash.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/WBGO.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/WBGO.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/WarehouseRemains.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/WarehouseRemains.php -------------------------------------------------------------------------------- /src/API/Endpoint/Subpoint/Warehouses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Subpoint/Warehouses.php -------------------------------------------------------------------------------- /src/API/Endpoint/Supplies.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Supplies.php -------------------------------------------------------------------------------- /src/API/Endpoint/Tariffs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/API/Endpoint/Tariffs.php -------------------------------------------------------------------------------- /src/APIToken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/APIToken.php -------------------------------------------------------------------------------- /src/Enum/AdvertDepositSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Enum/AdvertDepositSource.php -------------------------------------------------------------------------------- /src/Enum/AdvertStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Enum/AdvertStatus.php -------------------------------------------------------------------------------- /src/Enum/AdvertType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Enum/AdvertType.php -------------------------------------------------------------------------------- /src/Enum/MediaAdvertStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Enum/MediaAdvertStatus.php -------------------------------------------------------------------------------- /src/Enum/ReturnAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Enum/ReturnAction.php -------------------------------------------------------------------------------- /src/Exception/ApiClientException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Exception/ApiClientException.php -------------------------------------------------------------------------------- /src/Exception/ApiTimeRestrictionsException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Exception/ApiTimeRestrictionsException.php -------------------------------------------------------------------------------- /src/Exception/WBSellerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/src/Exception/WBSellerException.php -------------------------------------------------------------------------------- /tests/ApiClient/AdvTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/AdvTest.php -------------------------------------------------------------------------------- /tests/ApiClient/AnaliticsBannedProductsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/AnaliticsBannedProductsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/AnaliticsPaidStorageTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/AnaliticsPaidStorageTest.php -------------------------------------------------------------------------------- /tests/ApiClient/AnaliticsWarehouseRemainsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/AnaliticsWarehouseRemainsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/AnalyticsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/AnalyticsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/ApiTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/ApiTest.php -------------------------------------------------------------------------------- /tests/ApiClient/CalendarTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/CalendarTest.php -------------------------------------------------------------------------------- /tests/ApiClient/CommonNewsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/CommonNewsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/CommonTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/CommonTest.php -------------------------------------------------------------------------------- /tests/ApiClient/ContentTagsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/ContentTagsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/ContentTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/ContentTest.php -------------------------------------------------------------------------------- /tests/ApiClient/FeedbacksTemplatesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/FeedbacksTemplatesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/FeedbacksTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/FeedbacksTest.php -------------------------------------------------------------------------------- /tests/ApiClient/MarketplaceDBSTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/MarketplaceDBSTest.php -------------------------------------------------------------------------------- /tests/ApiClient/MarketplacePassesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/MarketplacePassesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/MarketplaceTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/MarketplaceTest.php -------------------------------------------------------------------------------- /tests/ApiClient/MarketplaceWarehousesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/MarketplaceWarehousesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/PricesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/PricesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/QuestionsTemplatesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/QuestionsTemplatesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/QuestionsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/QuestionsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/RecommendsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/RecommendsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/StatisticsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/StatisticsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/SuppliesTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/SuppliesTest.php -------------------------------------------------------------------------------- /tests/ApiClient/TariffsTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/TariffsTest.php -------------------------------------------------------------------------------- /tests/ApiClient/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/ApiClient/TestCase.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/TokenTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/TokenTest.php -------------------------------------------------------------------------------- /tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/bootstrap.php -------------------------------------------------------------------------------- /tests/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dakword/WBSeller/HEAD/tests/phpunit.xml --------------------------------------------------------------------------------