Skip to content

Commit

Permalink
Merge pull request #17 from fleetbase/dev-v0.3.3
Browse files Browse the repository at this point in the history
v0.3.3
  • Loading branch information
roncodes authored Feb 24, 2024
2 parents 0de0157 + 6c7f08c commit 2ff3ada
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fleetbase/storefront-api",
"version": "0.3.2",
"version": "0.3.3",
"description": "Headless Commerce & Marketplace Extension for Fleetbase",
"keywords": [
"fleetbase-extension",
Expand All @@ -22,8 +22,8 @@
],
"require": {
"php": "^8.0",
"fleetbase/core-api": "^1.4.9",
"fleetbase/fleetops-api": "^0.4.15",
"fleetbase/core-api": "^1.4.10",
"fleetbase/fleetops-api": "^0.4.16",
"geocoder-php/google-maps-places-provider": "^1.4",
"laravel-notification-channels/apn": "^5.0",
"laravel-notification-channels/fcm": "^4.1",
Expand Down
2 changes: 1 addition & 1 deletion extension.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Storefront",
"version": "0.3.2",
"version": "0.3.3",
"description": "Headless Commerce & Marketplace Extension for Fleetbase",
"repository": "https://github.com/fleetbase/storefront",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@fleetbase/storefront-engine",
"version": "0.3.2",
"version": "0.3.3",
"description": "Headless Commerce & Marketplace Extension for Fleetbase",
"fleetbase": {
"route": "storefront",
Expand Down
2 changes: 1 addition & 1 deletion server/src/Expansions/ContactFilterExpansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function target()
*
* @return \Closure
*/
public function storefront()
public static function storefront()
{
return function (?string $storefront) {
/* @var \Fleetbase\FleetOps\Http\Filter\ContactFilter $this */
Expand Down
2 changes: 1 addition & 1 deletion server/src/Expansions/EntityExpansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public static function target()
*
* @return Entity
*/
public function fromStorefrontProduct()
public static function fromStorefrontProduct()
{
return static function (Product $product) {
return new Entity([
Expand Down
2 changes: 1 addition & 1 deletion server/src/Expansions/OrderFilterExpansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function target()
*
* @return \Closure
*/
public function storefront()
public static function storefront()
{
return function (?string $storefront) {
/* @var \Fleetbase\FleetOps\Http\Filter\OrderFilter $this */
Expand Down
2 changes: 1 addition & 1 deletion server/src/Expansions/VendorFilterExpansion.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static function target()
*
* @return \Closure
*/
public function storefront()
public static function storefront()
{
return function (?string $storefront) {
/* @var \Fleetbase\FleetOps\Http\Filter\VendorFilter $this */
Expand Down

0 comments on commit 2ff3ada

Please sign in to comment.