Skip to content

Commit d5868a3

Browse files
committed
fix 2.0.1
1 parent 4fd3df0 commit d5868a3

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "nexa-merchant/apis",
33
"license": "MIT",
4-
"version": "2.0.0",
4+
"version": "2.0.1",
55
"description" : "Nexa merchant Apps api",
66
"keywords": ["laravel", "api", "jwt", "nexa merchant", "merchant", "restful", "restful api"],
77
"type": "library",

src/Config/Apis.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
*
1010
* The version of the package
1111
*/
12-
'version' => '2.0.0',
12+
'version' => '2.0.1',
1313
/**
1414
*
1515
* The version number of the package
1616
*/
17-
'versionNum' => '200',
17+
'versionNum' => '201',
1818
/**
1919
*
2020
* enable input log for all requests default is false

src/Docs/V1/Admin/Controllers/Controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @OA\Info(
7-
* version="2.0.0",
7+
* version="2.0.1",
88
* title="NexaMerchant Admin Rest API Documentation",
99
* description="NexaMerchant Admin Rest API Documentation",
1010
*

src/Docs/V1/Shop/Controllers/Controller.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
/**
66
* @OA\Info(
7-
* version="2.0.0",
7+
* version="2.0.1",
88
* title="NexaMerchant Store Front Rest API Documentation",
99
* description="NexaMerchant Store Front Rest API Documentation",
1010
*

src/Http/Resources/Api/V1/Admin/Sales/OrderResource.php

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ public function toArray($request)
2929
'shipping_method' => $this->shipping_method,
3030
'shipping_title' => $this->shipping_title,
3131
'payment_method' => $this->payment->method,
32+
'payment_method_title' => $this->payment->method_title,
3233
'payment_title' => core()->getConfigData('sales.paymentmethods.'.$this->payment->method.'.title'),
3334
'shipping_description' => $this->shipping_description,
3435
'coupon_code' => $this->coupon_code,

0 commit comments

Comments
 (0)