Skip to content

Commit 7ed5afe

Browse files
committed
build(codegen): updating SDK
1 parent 18b4f60 commit 7ed5afe

File tree

10 files changed

+49
-12
lines changed

10 files changed

+49
-12
lines changed

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyCustomObjectsPost.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
/**
2323
* <p>If an object with the given container/key exists, the object will be replaced with the new value and the version is incremented. If the request contains a version and an object with the given container/key, then the version must match the version of the existing object. Concurrent updates to the same Custom Object returns a ConcurrentModification error even if the version is not provided.</p>
24-
* <p>Fields with <code>null</code> values will <strong>not be saved</strong>.</p>
24+
* <p>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</p>
2525
*
2626
* <hr>
2727
* <div class=code-example>

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/client/ByProjectKeyCustomObjectsPostString.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
/**
2424
* <p>If an object with the given container/key exists, the object will be replaced with the new value and the version is incremented. If the request contains a version and an object with the given container/key, then the version must match the version of the existing object. Concurrent updates to the same Custom Object returns a ConcurrentModification error even if the version is not provided.</p>
25-
* <p>Fields with <code>null</code> values will <strong>not be saved</strong>.</p>
25+
* <p>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</p>
2626
*
2727
* <hr>
2828
* <div class=code-example>

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObject.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,10 @@ public interface CustomObject
108108
public String getKey();
109109

110110
/**
111-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
111+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
112+
* <ul>
113+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
114+
* </ul>
112115
* @return value
113116
*/
114117
@NotNull
@@ -172,7 +175,10 @@ public interface CustomObject
172175
public void setKey(final String key);
173176

174177
/**
175-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
178+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
179+
* <ul>
180+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
181+
* </ul>
176182
* @param value value to be set
177183
*/
178184

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObjectBuilder.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,10 @@ public CustomObjectBuilder key(final String key) {
187187
}
188188

189189
/**
190-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
190+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
191+
* <ul>
192+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
193+
* </ul>
191194
* @param value value to be set
192195
* @return Builder
193196
*/
@@ -272,7 +275,10 @@ public String getKey() {
272275
}
273276

274277
/**
275-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
278+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
279+
* <ul>
280+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
281+
* </ul>
276282
* @return value
277283
*/
278284

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObjectDraft.java

+10-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,11 @@ public interface CustomObjectDraft extends io.vrap.rmf.base.client.Draft<CustomO
4949
public String getKey();
5050

5151
/**
52-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
52+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
53+
* <ul>
54+
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
55+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
56+
* </ul>
5357
* @return value
5458
*/
5559
@NotNull
@@ -79,7 +83,11 @@ public interface CustomObjectDraft extends io.vrap.rmf.base.client.Draft<CustomO
7983
public void setKey(final String key);
8084

8185
/**
82-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
86+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
87+
* <ul>
88+
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
89+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
90+
* </ul>
8391
* @param value value to be set
8492
*/
8593

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObjectDraftBuilder.java

+10-2
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,11 @@ public CustomObjectDraftBuilder key(final String key) {
5656
}
5757

5858
/**
59-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
59+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
60+
* <ul>
61+
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
62+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
63+
* </ul>
6064
* @param value value to be set
6165
* @return Builder
6266
*/
@@ -96,7 +100,11 @@ public String getKey() {
96100
}
97101

98102
/**
99-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
103+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
104+
* <ul>
105+
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
106+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
107+
* </ul>
100108
* @return value
101109
*/
102110

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObjectDraftImpl.java

+5-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,11 @@ public String getKey() {
6565
}
6666

6767
/**
68-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
68+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
69+
* <ul>
70+
* <li>Fields within <code>value</code> that have <code>null</code> values <strong>are not saved</strong>.</li>
71+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
72+
* </ul>
6973
*/
7074

7175
public java.lang.Object getValue() {

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/custom_object/CustomObjectImpl.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,10 @@ public String getKey() {
133133
}
134134

135135
/**
136-
* <p>JSON standard types Number, String, Boolean, Array, Object, and common API data types. For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</p>
136+
* <p>Can be any JSON standard type, such as number, string, boolean, array, object, or a common API data type.</p>
137+
* <ul>
138+
* <li>For values of type Reference the integrity of the data is not guaranteed. If the referenced object is deleted, the API does not delete the corresponding reference to it and the <code>value</code> points to a non-existing object in such case.</li>
139+
* </ul>
137140
*/
138141

139142
public java.lang.Object getValue() {

reference.txt

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ccf4522140c12b0093aefe0e2a27d62bcc4834a6

references.txt

+1
Original file line numberDiff line numberDiff line change
@@ -323,3 +323,4 @@ c8c2455221baca20421082b7715eaa0a712af7f1
323323
1406d1e9ac4945b1179cfce2a956a39f67b757a9
324324
d410bad973f2fe90ea8239c4cb586fe0cfc13856
325325
ccf4522140c12b0093aefe0e2a27d62bcc4834a6
326+
6bb8d35316a92441d0a59417b49ad3a8c7037e45

0 commit comments

Comments
 (0)