diff --git a/src/resources/config/shopify-app.php b/src/resources/config/shopify-app.php index ad53f005..d12f46f3 100644 --- a/src/resources/config/shopify-app.php +++ b/src/resources/config/shopify-app.php @@ -168,7 +168,7 @@ | */ - 'api_version' => env('SHOPIFY_API_VERSION', '2023-04'), + 'api_version' => env('SHOPIFY_API_VERSION', '2023-10'), /* |-------------------------------------------------------------------------- diff --git a/tests/Services/ApiHelperTest.php b/tests/Services/ApiHelperTest.php index 1257f189..3191c054 100644 --- a/tests/Services/ApiHelperTest.php +++ b/tests/Services/ApiHelperTest.php @@ -42,7 +42,7 @@ public function testMake(): void $this->assertInstanceOf(BasicShopifyAPI::class, $api); $this->assertSame(Util::getShopifyConfig('api_secret'), $this->app['config']->get('shopify-app.api_secret')); $this->assertSame(Util::getShopifyConfig('api_key'), $this->app['config']->get('shopify-app.api_key')); - $this->assertSame($this->app['config']->get('shopify-app.api_version'), '2023-04'); + $this->assertSame($this->app['config']->get('shopify-app.api_version'), '2023-10'); } public function testSetAndGetApi(): void