Skip to content

Commit 772e1f3

Browse files
committed
build(codegen): updating SDK
1 parent cbf31bc commit 772e1f3

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

changes.md

+7
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@
2727
</details>
2828

2929

30+
<details>
31+
<summary>Added Enum(s)</summary>
32+
33+
- added enum `Canceled` to type `ShipmentState`
34+
</details>
35+
36+
3037
<details>
3138
<summary>Added Property(s)</summary>
3239

commercetools/commercetools-graphql-api/src/main/resources/graphql/schema.graphqls

+1
Original file line numberDiff line numberDiff line change
@@ -13136,6 +13136,7 @@ input SetZoneKey {
1313613136

1313713137
enum ShipmentState {
1313813138
Backorder
13139+
Canceled
1313913140
Delayed
1314013141
Delivered
1314113142
Partial

commercetools/commercetools-sdk-java-api/src/main/java-generated/com/commercetools/api/models/order/ShipmentState.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,9 @@ public interface ShipmentState extends JsonEnum {
3737
/**
3838
<p>Indicates that items in the Order are not in stock and will be delivered once the items are restocked.</p> */
3939
ShipmentState BACKORDER = ShipmentStateEnum.BACKORDER;
40+
/**
41+
<p>Indicates that the shipment of the Order is canceled.</p> */
42+
ShipmentState CANCELED = ShipmentStateEnum.CANCELED;
4043

4144
/**
4245
* possible values of ShipmentState
@@ -75,7 +78,12 @@ enum ShipmentStateEnum implements ShipmentState {
7578
/**
7679
* Backorder
7780
*/
78-
BACKORDER("Backorder");
81+
BACKORDER("Backorder"),
82+
83+
/**
84+
* Canceled
85+
*/
86+
CANCELED("Canceled");
7987
private final String jsonName;
8088

8189
private ShipmentStateEnum(final String jsonName) {

references.txt

+1
Original file line numberDiff line numberDiff line change
@@ -342,3 +342,4 @@ df53588d26d7953dfdf44166866ca03045f0a70b
342342
269027575a6fd5a2a29387930064a06f22f09bbf
343343
9c2f053d7f45e95984760f59a344e9630d90d843
344344
f4f3c42381257c319000e05bd5b61074d18b0a5f
345+
9066fb1012d20a92037e102e18a6295bdbcb82e3

0 commit comments

Comments
 (0)