v1 | v2 |
ApiClientCreateCommand |
ApiClientDraft draft = ApiClientDraft.builder().build();
projectApiRoot.apiClients().post(draft);
See the test code.
|
CartDiscountCreateCommand |
CartDiscountDraft draft = CartDiscountDraft.builder().build();
projectApiRoot.cartDiscounts().post(draft);
See the test code.
|
CartCreateCommand |
CartDraft draft = CartDraft.builder().build();
projectApiRoot.carts().post(draft);
See the test code.
|
CartInStoreCreateCommand |
CartDraft draft = CartDraft.builder().build();
projectApiRoot.inStore(storeKey).carts().post(draft);
See the test code.
|
CategoryCreateCommand |
CategoryDraft draft = CategoryDraft.builder().build();
projectApiRoot.categories().post(draft);
See the test code.
|
ChannelCreateCommand |
ChannelDraft draft = ChannelDraft.builder().build();
projectApiRoot.channels().post(draft);
See the test code.
|
CustomerGroupCreateCommand |
CustomerGroupDraft draft = CustomerGroupDraft.builder().build();
projectApiRoot.customerGroups().post(draft);
See the test code.
|
CustomerCreateCommand |
CustomerDraft draft = CustomerDraft.builder().build();
projectApiRoot.customers().post(draft);
See the test code.
|
CustomerInStoreCreateCommand |
CustomerDraft draft = CustomerDraft.builder().build();
projectApiRoot.inStore(storeKey).customers().post(draft);
See the test code.
|
DiscountCodeCreateCommand |
DiscountCodeDraft draft = DiscountCodeDraft.builder().build();
projectApiRoot.discountCodes().post(draft);
See the test code.
|
ExtensionCreateCommand |
ExtensionDraft draft = ExtensionDraft.builder().build();
projectApiRoot.extensions().post(draft);
See the test code.
|
InventoryEntryCreateCommand |
InventoryEntryDraft draft = InventoryEntryDraft.builder().build();
projectApiRoot.inventory().post(draft);
See the test code.
|
OrderEditCreateCommand |
OrderEditDraft draft = OrderEditDraft.builder().build();
projectApiRoot.orders().edits().post(draft);
See the test code.
|
OrderFromCartCreateCommand |
OrderFromCartDraft draft = OrderFromCartDraft.builder().build();
projectApiRoot.orders().post(draft);
See the test code.
|
OrderFromCartInStoreCreateCommand |
OrderFromCartDraft draft = OrderFromCartDraft.builder().build();
projectApiRoot.inStore(storeKey).orders().post(draft);
See the test code.
|
PaymentCreateCommand |
PaymentDraft draft = PaymentDraft.builder().build();
projectApiRoot.payments().post(draft);
See the test code.
|
ProductDiscountCreateCommand |
ProductDiscountDraft draft = ProductDiscountDraft.builder().build();
projectApiRoot.productDiscounts().post(draft);
See the test code.
|
ProductCreateCommand |
ProductDraft draft = ProductDraft.builder().build();
projectApiRoot.products().post(draft);
See the test code.
|
ProductSelectionCreateCommand |
ProductSelectionDraft draft = ProductSelectionDraft.builder().build();
projectApiRoot.productSelections().post(draft);
See the test code.
|
ProductTypeCreateCommand |
ProductTypeDraft draft = ProductTypeDraft.builder().build();
projectApiRoot.productTypes().post(draft);
See the test code.
|
ReviewCreateCommand |
ReviewDraft draft = ReviewDraft.builder().build();
projectApiRoot.reviews().post(draft);
See the test code.
|
ShippingMethodCreateCommand |
ShippingMethodDraft draft = ShippingMethodDraft.builder().build();
projectApiRoot.shippingMethods().post(draft);
See the test code.
|
ShoppingListCreateCommand |
|
ShoppingListInStoreCreateCommand |
|
StateCreateCommand |
StateDraft draft = StateDraft.builder().build();
projectApiRoot.states().post(draft);
See the test code.
|
StoreCreateCommand |
StoreDraft draft = StoreDraft.builder().build();
projectApiRoot.stores().post(draft);
See the test code.
|
SubscriptionCreateCommand |
SubscriptionDraft draft = SubscriptionDraft.builder().build();
projectApiRoot.subscriptions().post(draft);
See the test code.
|
TaxCategoryCreateCommand |
TaxCategoryDraft draft = TaxCategoryDraft.builder().build();
projectApiRoot.taxCategories().post(draft);
See the test code.
|
TypeCreateCommand |
TypeDraft draft = TypeDraft.builder().build();
projectApiRoot.types().post(draft);
See the test code.
|
ZoneCreateCommand |
ZoneDraft draft = ZoneDraft.builder().build();
projectApiRoot.zones().post(draft);
See the test code.
|
CartDiscountUpdateCommand |
CartDiscount resource = CartDiscount.of();
projectApiRoot.cartDiscounts()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.cartDiscounts().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CartInStoreUpdateCommand |
Cart resource = Cart.of();
projectApiRoot.inStore(storeKey)
.carts()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.inStore(storeKey).carts().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CartUpdateCommand |
Cart resource = Cart.of();
projectApiRoot.carts()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.carts().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CategoryUpdateCommand |
Category resource = Category.of();
projectApiRoot.categories()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.categories().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ChannelUpdateCommand |
Channel resource = Channel.of();
projectApiRoot.channels()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.channels().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CustomerGroupUpdateCommand |
CustomerGroup resource = CustomerGroup.of();
projectApiRoot.customerGroups()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.customerGroups().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CustomerInStoreUpdateCommand |
Customer resource = Customer.of();
projectApiRoot.inStore(storeKey)
.customers()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.inStore(storeKey).customers().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
CustomerUpdateCommand |
Customer resource = Customer.of();
projectApiRoot.customers()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.customers().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
DiscountCodeUpdateCommand |
DiscountCode resource = DiscountCode.of();
projectApiRoot.discountCodes()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.discountCodes().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ExtensionUpdateCommand |
Extension resource = Extension.of();
projectApiRoot.extensions()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.extensions().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
InventoryEntryUpdateCommand |
InventoryEntry resource = InventoryEntry.of();
projectApiRoot.inventory()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.inventory().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
OrderEditUpdateCommand |
OrderEdit resource = OrderEdit.of();
projectApiRoot.orders()
.edits()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
// projectApiRoot.orders().edits().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
OrderInStoreUpdateByIdCommand |
Order resource = Order.of();
projectApiRoot.inStore(storeKey)
.orders()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.inStore(storeKey).orders().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
OrderInStoreUpdateByOrderNumberCommand |
Order resource = Order.of();
projectApiRoot.inStore(storeKey)
.orders()
.withOrderNumber(resource.getOrderNumber())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
See the test code.
|
OrderUpdateCommand |
Order resource = Order.of();
projectApiRoot.orders().withId(id).post(updateBuilder -> updateBuilder.version(version));
projectApiRoot.orders().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
PaymentUpdateCommand |
Payment resource = Payment.of();
projectApiRoot.payments()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.payments().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ProductDiscountUpdateCommand |
ProductDiscount resource = ProductDiscount.of();
projectApiRoot.productDiscounts()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.productDiscounts().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ProductUpdateCommand |
Product resource = Product.of();
projectApiRoot.products()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.products().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ProductSelectionUpdateCommand |
ProductSelection resource = ProductSelection.of();
projectApiRoot.productSelections()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.productSelections().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ProductTypeUpdateCommand |
ProductType resource = ProductType.of();
projectApiRoot.productTypes()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.productTypes().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ReviewUpdateCommand |
Review resource = Review.of();
projectApiRoot.reviews()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.reviews().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ShippingMethodUpdateCommand |
ShippingMethod resource = ShippingMethod.of();
projectApiRoot.shippingMethods()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.shippingMethods().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ShoppingListInStoreUpdateCommand |
|
ShoppingListUpdateCommand |
|
StateUpdateCommand |
State resource = State.of();
projectApiRoot.states()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.states().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
StoreUpdateCommand |
Store resource = Store.of();
projectApiRoot.stores()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.stores().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
SubscriptionUpdateCommand |
Subscription resource = Subscription.of();
projectApiRoot.subscriptions()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.subscriptions().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
TaxCategoryUpdateCommand |
TaxCategory resource = TaxCategory.of();
projectApiRoot.taxCategories()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.taxCategories().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
TypeUpdateCommand |
Type resource = Type.of();
projectApiRoot.types()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.types().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ZoneUpdateCommand |
Zone resource = Zone.of();
projectApiRoot.zones()
.withId(resource.getId())
.post(updateBuilder -> updateBuilder.version(resource.getVersion()));
projectApiRoot.zones().update(resource).with(actionsBuilder -> actionsBuilder);
See the test code.
|
ApiClientDeleteCommand |
ApiClient resource = ApiClient.of();
projectApiRoot.apiClients().withId(resource.getId()).delete();
projectApiRoot.apiClients().delete(resource);
See the test code.
|
CartDiscountDeleteCommand |
CartDiscount resource = CartDiscount.of();
projectApiRoot.cartDiscounts().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.cartDiscounts().delete(resource);
See the test code.
|
CartDeleteCommand |
Cart resource = Cart.of();
projectApiRoot.carts().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.carts().delete(resource);
See the test code.
|
CartInStoreDeleteCommand |
Cart resource = Cart.of();
projectApiRoot.inStore(storeKey).carts().withId(resource.getId()).delete().withVersion(resource.getVersion());
// projectApiRoot.inStore(storeKey).carts().delete(resource);
See the test code.
|
CategoryDeleteCommand |
Category resource = Category.of();
projectApiRoot.categories().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.categories().delete(resource);
See the test code.
|
ChannelDeleteCommand |
Channel resource = Channel.of();
projectApiRoot.channels().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.channels().delete(resource);
See the test code.
|
CustomerGroupDeleteCommand |
CustomerGroup resource = CustomerGroup.of();
projectApiRoot.customerGroups().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.customerGroups().delete(resource);
See the test code.
|
CustomerDeleteCommand |
Customer resource = Customer.of();
projectApiRoot.customers().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.customers().delete(resource);
See the test code.
|
CustomerInStoreDeleteCommand |
Customer resource = Customer.of();
projectApiRoot.inStore(storeKey).carts().withId(resource.getId()).delete().withVersion(resource.getVersion());
// projectApiRoot.inStore(storeKey).carts().delete(resource);
See the test code.
|
CustomObjectDeleteCommand |
CustomObject resource = CustomObject.of();
projectApiRoot.customObjects()
.withContainerAndKey(resource.getContainer(), resource.getKey())
.delete()
.withVersion(resource.getVersion());
// projectApiRoot.customObjects().delete(resource);
See the test code.
|
DiscountCodeDeleteCommand |
DiscountCode resource = DiscountCode.of();
projectApiRoot.discountCodes().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.discountCodes().delete(resource);
See the test code.
|
ExtensionDeleteCommand |
Extension resource = Extension.of();
projectApiRoot.extensions().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.extensions().delete(resource);
See the test code.
|
InventoryEntryDeleteCommand |
InventoryEntry resource = InventoryEntry.of();
projectApiRoot.inventory().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.inventory().delete(resource);
See the test code.
|
OrderEditDeleteCommand |
OrderEdit resource = OrderEdit.of();
projectApiRoot.orders().edits().withId(resource.getId()).delete().withVersion(resource.getVersion());
// projectApiRoot.orders().edits().delete(resource);
See the test code.
|
OrderDeleteCommand |
Order resource = Order.of();
projectApiRoot.orders().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.orders().delete(resource);
See the test code.
|
OrderInStoreDeleteByIdCommand |
Order resource = Order.of();
projectApiRoot.inStore(storeKey).orders().withId(resource.getId()).delete().withVersion(resource.getVersion());
// projectApiRoot.inStore(storeKey).orders().delete(resource);
See the test code.
|
OrderInStoreDeleteByOrderNumberCommand |
Order resource = Order.of();
projectApiRoot.inStore(storeKey)
.orders()
.withOrderNumber(resource.getOrderNumber())
.delete()
.withVersion(resource.getVersion());
See the test code.
|
PaymentDeleteCommand |
Payment resource = Payment.of();
projectApiRoot.payments().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.payments().delete(resource);
See the test code.
|
ProductDiscountDeleteCommand |
ProductDiscount resource = ProductDiscount.of();
projectApiRoot.productDiscounts().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.productDiscounts().delete(resource);
See the test code.
|
ProductDeleteCommand |
Product resource = Product.of();
projectApiRoot.products().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.products().delete(resource);
See the test code.
|
ProductSelectionDeleteCommand |
ProductSelection resource = ProductSelection.of();
projectApiRoot.productSelections().withId(resource.getId()).delete().withVersion(resource.getVersion());
// projectApiRoot.productSelections().delete(resource);
See the test code.
|
ProductTypeDeleteCommand |
ProductType resource = ProductType.of();
projectApiRoot.productTypes().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.productTypes().delete(resource);
See the test code.
|
ReviewDeleteCommand |
Review resource = Review.of();
projectApiRoot.reviews().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.reviews().delete(resource);
See the test code.
|
ShippingMethodDeleteCommand |
ShippingMethod resource = ShippingMethod.of();
projectApiRoot.shippingMethods().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.shippingMethods().delete(resource);
See the test code.
|
ShoppingListDeleteCommand |
|
ShoppingListInStoreDeleteCommand |
|
StateDeleteCommand |
State resource = State.of();
projectApiRoot.states().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.states().delete(resource);
See the test code.
|
StoreDeleteCommand |
Store resource = Store.of();
projectApiRoot.stores().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.stores().delete(resource);
See the test code.
|
SubscriptionDeleteCommand |
Subscription resource = Subscription.of();
projectApiRoot.subscriptions().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.subscriptions().delete(resource);
See the test code.
|
TaxCategoryDeleteCommand |
TaxCategory resource = TaxCategory.of();
projectApiRoot.taxCategories().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.taxCategories().delete(resource);
See the test code.
|
TypeDeleteCommand |
Type resource = Type.of();
projectApiRoot.types().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.types().delete(resource);
See the test code.
|
ZoneDeleteCommand |
Zone resource = Zone.of();
projectApiRoot.zones().withId(resource.getId()).delete().withVersion(resource.getVersion());
projectApiRoot.zones().delete(resource);
See the test code.
|
Please be aware this list shows to which package a class may have been moved based on the source package