Skip to content

Commit

Permalink
fix 2.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
xxl4 committed Nov 6, 2024
1 parent 4fd3df0 commit d5868a3
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "nexa-merchant/apis",
"license": "MIT",
"version": "2.0.0",
"version": "2.0.1",
"description" : "Nexa merchant Apps api",
"keywords": ["laravel", "api", "jwt", "nexa merchant", "merchant", "restful", "restful api"],
"type": "library",
Expand Down
4 changes: 2 additions & 2 deletions src/Config/Apis.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
*
* The version of the package
*/
'version' => '2.0.0',
'version' => '2.0.1',
/**
*
* The version number of the package
*/
'versionNum' => '200',
'versionNum' => '201',
/**
*
* enable input log for all requests default is false
Expand Down
2 changes: 1 addition & 1 deletion src/Docs/V1/Admin/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* @OA\Info(
* version="2.0.0",
* version="2.0.1",
* title="NexaMerchant Admin Rest API Documentation",
* description="NexaMerchant Admin Rest API Documentation",
*
Expand Down
2 changes: 1 addition & 1 deletion src/Docs/V1/Shop/Controllers/Controller.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

/**
* @OA\Info(
* version="2.0.0",
* version="2.0.1",
* title="NexaMerchant Store Front Rest API Documentation",
* description="NexaMerchant Store Front Rest API Documentation",
*
Expand Down
1 change: 1 addition & 0 deletions src/Http/Resources/Api/V1/Admin/Sales/OrderResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ public function toArray($request)
'shipping_method' => $this->shipping_method,
'shipping_title' => $this->shipping_title,
'payment_method' => $this->payment->method,
'payment_method_title' => $this->payment->method_title,
'payment_title' => core()->getConfigData('sales.paymentmethods.'.$this->payment->method.'.title'),
'shipping_description' => $this->shipping_description,
'coupon_code' => $this->coupon_code,
Expand Down

0 comments on commit d5868a3

Please sign in to comment.