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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
<details>
<summary>Added Type(s)</summary>

- added type `RecurringOrderDeletedMessage`
- added type `RecurringOrderDeletedMessagePayload`
- added type `ProductSearchFacetResultStats`
- added type `ProductSearchFacetStatsExpression`
- added type `ProductSearchFacetStatsValue`
Expand All @@ -15,3 +17,11 @@
- :warning: removed type `RecurringOrderMessagePayload`
</details>


<details>
<summary>Added Method(s)</summary>

- added method `apiRoot.withProjectKey().recurringOrders().withId().delete()`
- added method `apiRoot.withProjectKey().recurringOrders().withKey().delete()`
</details>

Original file line number Diff line number Diff line change
Expand Up @@ -6882,6 +6882,15 @@ type Mutation {
"Queries with specified key"
key: String): RecurringOrder

"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
deleteRecurringOrder(version: Long!, personalDataErasure: Boolean = false,

"Queries with specified ID"
id: String,

"Queries with specified key"
key: String): RecurringOrder

"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
createRecurrencePolicy(draft: RecurrencePolicyDraft!): RecurrencePolicy

Expand Down Expand Up @@ -10839,6 +10848,11 @@ type RecurringOrderCustomTypeSet implements MessagePayload {
type: String!
}

type RecurringOrderDeleted implements MessagePayload {
recurringOrder: RecurringOrder!
type: String!
}

"BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta"
input RecurringOrderDraft {
key: String
Expand Down
Loading