Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
12 changes: 6 additions & 6 deletions changes.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
**Import changes**

<details>
<summary>Added Property(s)</summary>
<summary>Removed Property(s)</summary>

- added property `/^[a-zA-Z]{2,3}(?:-[a-zA-Z]{4})?(?:-(?:[a-zA-Z]{2}|\d{3}))?$/` to type `SearchKeywords`
- added property `/^[a-zA-Z]{2,3}(?:-[a-zA-Z]{4})?(?:-(?:[a-zA-Z]{2}|\d{3}))?$/` to type `LocalizedString`
- :warning: removed property `/^[a-z]{2}(-[A-Z]{2})?$/` from type `SearchKeywords`
- :warning: removed property `/^[a-z]{2}(-[A-Z]{2})?$/` from type `LocalizedString`
</details>


<details>
<summary>Removed Property(s)</summary>
<summary>Added Property(s)</summary>

- :warning: removed property `/^[a-z]{2}(-[A-Z]{2})?$/` from type `SearchKeywords`
- :warning: removed property `/^[a-z]{2}(-[A-Z]{2})?$/` from type `LocalizedString`
- added property `/^[a-zA-Z]{2,3}(?:-[a-zA-Z]{4})?(?:-(?:[a-zA-Z]{2}|\d{3}))?$/` to type `SearchKeywords`
- added property `/^[a-zA-Z]{2,3}(?:-[a-zA-Z]{4})?(?:-(?:[a-zA-Z]{2}|\d{3}))?$/` to type `LocalizedString`
</details>

Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,8 @@ public static PatternComponent of(final PatternComponent template) {
return instance;
}

public PatternComponent copyDeep();

/**
* factory method to create a deep copy of PatternComponent
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,8 @@ public String toString() {
return new ToStringBuilder(this, ToStringStyle.SHORT_PREFIX_STYLE).append("type", type).build();
}

@Override
public PatternComponent copyDeep() {
return PatternComponent.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddAddressChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddAddressChangeImpl.class)
public interface AddAddressChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddAddressChange of(final AddAddressChange template) {
return instance;
}

public AddAddressChange copyDeep();

/**
* factory method to create a deep copy of AddAddressChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddAddressChange copyDeep() {
return AddAddressChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddAssetChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddAssetChangeImpl.class)
public interface AddAssetChange extends Change {
Expand Down Expand Up @@ -120,6 +121,8 @@ public static AddAssetChange of(final AddAssetChange template) {
return instance;
}

public AddAssetChange copyDeep();

/**
* factory method to create a deep copy of AddAssetChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,4 +137,8 @@ public String toString() {
.build();
}

@Override
public AddAssetChange copyDeep() {
return AddAssetChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddAssociateChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddAssociateChangeImpl.class)
public interface AddAssociateChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddAssociateChange of(final AddAssociateChange template) {
return instance;
}

public AddAssociateChange copyDeep();

/**
* factory method to create a deep copy of AddAssociateChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddAssociateChange copyDeep() {
return AddAssociateChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddAttributeDefinitionChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddAttributeDefinitionChangeImpl.class)
public interface AddAttributeDefinitionChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddAttributeDefinitionChange of(final AddAttributeDefinitionChange
return instance;
}

public AddAttributeDefinitionChange copyDeep();

/**
* factory method to create a deep copy of AddAttributeDefinitionChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddAttributeDefinitionChange copyDeep() {
return AddAttributeDefinitionChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddBillingAddressIdChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddBillingAddressIdChangeImpl.class)
public interface AddBillingAddressIdChange extends Change {
Expand Down Expand Up @@ -148,6 +149,8 @@ public static AddBillingAddressIdChange of(final AddBillingAddressIdChange templ
return instance;
}

public AddBillingAddressIdChange copyDeep();

/**
* factory method to create a deep copy of AddBillingAddressIdChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -161,4 +161,8 @@ public String toString() {
.build();
}

@Override
public AddBillingAddressIdChange copyDeep() {
return AddBillingAddressIdChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddChannelRolesChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddChannelRolesChangeImpl.class)
public interface AddChannelRolesChange extends Change {
Expand Down Expand Up @@ -129,6 +130,8 @@ public static AddChannelRolesChange of(final AddChannelRolesChange template) {
return instance;
}

public AddChannelRolesChange copyDeep();

/**
* factory method to create a deep copy of AddChannelRolesChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,8 @@ public String toString() {
.build();
}

@Override
public AddChannelRolesChange copyDeep() {
return AddChannelRolesChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddCustomLineItemChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddCustomLineItemChangeImpl.class)
public interface AddCustomLineItemChange extends Change {
Expand Down Expand Up @@ -116,6 +117,8 @@ public static AddCustomLineItemChange of(final AddCustomLineItemChange template)
return instance;
}

public AddCustomLineItemChange copyDeep();

/**
* factory method to create a deep copy of AddCustomLineItemChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -133,4 +133,8 @@ public String toString() {
.build();
}

@Override
public AddCustomLineItemChange copyDeep() {
return AddCustomLineItemChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddDeliveryChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddDeliveryChangeImpl.class)
public interface AddDeliveryChange extends Change {
Expand Down Expand Up @@ -116,6 +117,8 @@ public static AddDeliveryChange of(final AddDeliveryChange template) {
return instance;
}

public AddDeliveryChange copyDeep();

/**
* factory method to create a deep copy of AddDeliveryChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -134,4 +134,8 @@ public String toString() {
.build();
}

@Override
public AddDeliveryChange copyDeep() {
return AddDeliveryChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddDiscountCodeChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddDiscountCodeChangeImpl.class)
public interface AddDiscountCodeChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddDiscountCodeChange of(final AddDiscountCodeChange template) {
return instance;
}

public AddDiscountCodeChange copyDeep();

/**
* factory method to create a deep copy of AddDiscountCodeChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddDiscountCodeChange copyDeep() {
return AddDiscountCodeChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddEnumValueChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddEnumValueChangeImpl.class)
public interface AddEnumValueChange extends Change {
Expand Down Expand Up @@ -115,6 +116,8 @@ public static AddEnumValueChange of(final AddEnumValueChange template) {
return instance;
}

public AddEnumValueChange copyDeep();

/**
* factory method to create a deep copy of AddEnumValueChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,4 +129,8 @@ public String toString() {
.build();
}

@Override
public AddEnumValueChange copyDeep() {
return AddEnumValueChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddExternalImageChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddExternalImageChangeImpl.class)
public interface AddExternalImageChange extends Change {
Expand Down Expand Up @@ -156,6 +157,8 @@ public static AddExternalImageChange of(final AddExternalImageChange template) {
return instance;
}

public AddExternalImageChange copyDeep();

/**
* factory method to create a deep copy of AddExternalImageChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -164,4 +164,8 @@ public String toString() {
.build();
}

@Override
public AddExternalImageChange copyDeep() {
return AddExternalImageChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddFieldDefinitionChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddFieldDefinitionChangeImpl.class)
public interface AddFieldDefinitionChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddFieldDefinitionChange of(final AddFieldDefinitionChange templat
return instance;
}

public AddFieldDefinitionChange copyDeep();

/**
* factory method to create a deep copy of AddFieldDefinitionChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddFieldDefinitionChange copyDeep() {
return AddFieldDefinitionChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddInheritedAssociateChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddInheritedAssociateChangeImpl.class)
public interface AddInheritedAssociateChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddInheritedAssociateChange of(final AddInheritedAssociateChange t
return instance;
}

public AddInheritedAssociateChange copyDeep();

/**
* factory method to create a deep copy of AddInheritedAssociateChange
* @param template instance to be copied
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,4 +110,8 @@ public String toString() {
.build();
}

@Override
public AddInheritedAssociateChange copyDeep() {
return AddInheritedAssociateChange.deepCopy(this);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
* </code></pre>
* </div>
*/
@io.vrap.rmf.base.client.utils.json.SubType("AddInterfaceInteractionChange")
@Generated(value = "io.vrap.rmf.codegen.rendering.CoreCodeGenerator", comments = "https://github.com/commercetools/rmf-codegen")
@JsonDeserialize(as = AddInterfaceInteractionChangeImpl.class)
public interface AddInterfaceInteractionChange extends Change {
Expand Down Expand Up @@ -98,6 +99,8 @@ public static AddInterfaceInteractionChange of(final AddInterfaceInteractionChan
return instance;
}

public AddInterfaceInteractionChange copyDeep();

/**
* factory method to create a deep copy of AddInterfaceInteractionChange
* @param template instance to be copied
Expand Down
Loading
Loading