Skip to content

Commit 154c6ef

Browse files
Merge pull request #950 from commercetools/gen-sdk-updates
Update generated SDKs
2 parents e333bdb + b7745b0 commit 154c6ef

26 files changed

+2443
-4
lines changed

changes.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
<details>
44
<summary>Added Type(s)</summary>
55

6+
- added type `RecurringOrderDeletedMessage`
7+
- added type `RecurringOrderDeletedMessagePayload`
68
- added type `ProductSearchFacetResultStats`
79
- added type `ProductSearchFacetStatsExpression`
810
- added type `ProductSearchFacetStatsValue`
@@ -15,3 +17,11 @@
1517
- :warning: removed type `RecurringOrderMessagePayload`
1618
</details>
1719

20+
21+
<details>
22+
<summary>Added Method(s)</summary>
23+
24+
- added method `apiRoot.withProjectKey().recurringOrders().withId().delete()`
25+
- added method `apiRoot.withProjectKey().recurringOrders().withKey().delete()`
26+
</details>
27+

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

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6882,6 +6882,15 @@ type Mutation {
68826882
"Queries with specified key"
68836883
key: String): RecurringOrder
68846884

6885+
"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
6886+
deleteRecurringOrder(version: Long!, personalDataErasure: Boolean = false,
6887+
6888+
"Queries with specified ID"
6889+
id: String,
6890+
6891+
"Queries with specified key"
6892+
key: String): RecurringOrder
6893+
68856894
"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
68866895
createRecurrencePolicy(draft: RecurrencePolicyDraft!): RecurrencePolicy
68876896

@@ -10839,6 +10848,11 @@ type RecurringOrderCustomTypeSet implements MessagePayload {
1083910848
type: String!
1084010849
}
1084110850

10851+
type RecurringOrderDeleted implements MessagePayload {
10852+
recurringOrder: RecurringOrder!
10853+
type: String!
10854+
}
10855+
1084210856
"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
1084310857
input RecurringOrderDraft {
1084410858
key: String

0 commit comments

Comments
 (0)