Skip to content

Commit f18549c

Browse files
authored
Feature/pipeline (#25)
* feat(pipeline): Implement github actions flow and update pom * fix!(pipeline): Remove prerequisites from pom * fix!: Test issues * -Fix javadoc
1 parent cd51ab9 commit f18549c

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

src/main/java/mobi/appcent/medusa/store/api/AuthApi.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ public void setApiClient(MedusaSdkClient medusaSdkClient) {
5353
/**
5454
* Customer Log out
5555
* Destroys a Customer's authenticated session.
56+
* @return DeleteAuthRequest
5657
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
5758
*/
5859
public DeleteAuthRequest deleteAuth() throws ApiException {

src/main/java/mobi/appcent/medusa/store/api/CustomerApi.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ public UpdateShippingAddressRequest updateShippingAddress(String addressId) thro
149149
* Request Password Reset
150150
* Creates a reset password token to be used in a subsequent /reset-password request. The password token should be sent out of band e.g. via email and will not be returned.
151151
* body (optional)
152+
* @return PasswordResetRequest
152153
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
153154
*/
154155
public PasswordResetRequest passwordResetRequest() throws ApiException {

src/main/java/mobi/appcent/medusa/store/api/InviteApi.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ public void setApiClient(MedusaSdkClient medusaSdkClient) {
4545
* Claim an Order
4646
* Sends an email to emails registered to orders provided with link to transfer order ownership
4747
* body (optional)
48+
* @return ClaimOrderRequest
4849
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
4950
*/
5051
public ClaimOrderRequest claimOrder() throws ApiException {

src/main/java/mobi/appcent/medusa/store/api/OrderApi.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,7 @@ public GetOrderByCartIdRequest getOrderByCartId(String cartId) throws ApiExcepti
9393
* Verify an Order Claim
9494
* Verifies the claim order token provided to the customer upon request of order ownership
9595
* body (optional)
96+
* @return VerifyOrderClaimRequest
9697
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
9798
*/
9899
public VerifyOrderClaimRequest verifyOrderClaim() throws ApiException {

src/main/java/mobi/appcent/medusa/store/api/ReturnApi.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void setApiClient(MedusaSdkClient medusaSdkClient) {
4747
/**
4848
* Create Return
4949
* Creates a Return for an Order.
50-
* @param body (optional)
50+
* body (optional)
5151
* @return StoreReturnsRes
5252
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
5353
*/

0 commit comments

Comments
 (0)