Skip to content

Commit

Permalink
LPD-19824 auto generated code (buildRest)
Browse files Browse the repository at this point in the history
  • Loading branch information
brbalazs authored and brianchandotcom committed May 9, 2024
1 parent eddc858 commit 1712ab0
Show file tree
Hide file tree
Showing 17 changed files with 2,808 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,22 @@
@ProviderType
public interface CartCommentResource {

public void deleteCartCommentByExternalReferenceCode(
String externalReferenceCode)
throws Exception;

public CartComment getCartCommentByExternalReferenceCode(
String externalReferenceCode)
throws Exception;

public CartComment patchCartCommentByExternalReferenceCode(
String externalReferenceCode, CartComment cartComment)
throws Exception;

public CartComment putCartCommentByExternalReferenceCode(
String externalReferenceCode, CartComment cartComment)
throws Exception;

public void deleteCartComment(Long cartCommentId) throws Exception;

public Response deleteCartCommentBatch(String callbackURL, Object object)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,23 @@
@ProviderType
public interface CartItemResource {

public Response deleteCartItem(Long cartItemId) throws Exception;
public void deleteCartItemByExternalReferenceCode(
String externalReferenceCode)
throws Exception;

public CartItem getCartItemByExternalReferenceCode(
String externalReferenceCode)
throws Exception;

public CartItem patchCartItemByExternalReferenceCode(
String externalReferenceCode, CartItem cartItem)
throws Exception;

public CartItem putCartItemByExternalReferenceCode(
String externalReferenceCode, CartItem cartItem)
throws Exception;

public void deleteCartItem(Long cartItemId) throws Exception;

public Response deleteCartItemBatch(String callbackURL, Object object)
throws Exception;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,17 @@ public Cart postCartCouponCode(Long cartId, CouponCode couponCode)
public String getCartPaymentURL(Long cartId, String callbackURL)
throws Exception;

public Page<Cart>
getChannelByExternalReferenceCodeChannelExternalReferenceCodeAccountByExternalReferenceCodeAccountExternalReferenceCodeCartsPage(
String accountExternalReferenceCode,
String channelExternalReferenceCode, String search,
Pagination pagination)
throws Exception;

public Cart postChannelCartByExternalReferenceCode(
String externalReferenceCode, Cart cart)
throws Exception;

public Page<Cart> getChannelCartsPage(
Long accountId, Long channelId, String search,
Pagination pagination)
Expand Down
Loading

0 comments on commit 1712ab0

Please sign in to comment.