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
67 changes: 34 additions & 33 deletions changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,64 +3,65 @@
<details>
<summary>Added Type(s)</summary>

- added type `InventoryEntrySetInventoryLimitsAction`
- added type `RecurringOrderDeletedMessage`
- added type `RecurringOrderExpiresAtSetMessage`
- added type `RecurringOrderDeletedMessagePayload`
- added type `RecurringOrderExpiresAtSetMessagePayload`
- added type `ProductSearchFacetResultStats`
- added type `ProductSearchFacetStatsExpression`
- added type `ProductSearchFacetStatsValue`
- added type `RecurringOrderSetExpiresAtAction`
</details>


<details>
<summary>Removed Type(s)</summary>

- :warning: removed type `RecurringOrderMessagePayload`
- added type `CustomerDefaultBillingAddressSetMessage`
- added type `CustomerDefaultShippingAddressSetMessage`
- added type `CustomerStoresSetMessage`
- added type `CustomerDefaultBillingAddressSetMessagePayload`
- added type `CustomerDefaultShippingAddressSetMessagePayload`
- added type `CustomerStoresSetMessagePayload`
</details>


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

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

**Import changes**

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

- added property `minCartQuantity` to type `InventoryEntry`
- added property `maxCartQuantity` to type `InventoryEntry`
- added property `minCartQuantity` to type `InventoryEntryDraft`
- added property `maxCartQuantity` to type `InventoryEntryDraft`
- added property `expiresAt` to type `RecurringOrderDraft`
- added type `AssociateRoleKeyReference`
- added type `BusinessUnitKeyReference`
- added type `BusinessUnitImportRequest`
- added type `AssociateRoleInheritanceMode`
- added type `BusinessUnitStatus`
- added type `BusinessUnitAssociateMode`
- added type `BusinessUnitApprovalRuleMode`
- added type `BusinessUnitStoreMode`
- added type `BusinessUnitType`
- added type `AssociateRoleAssignmentDraft`
- added type `AssociateDraft`
- added type `BusinessUnitImport`
- added type `CompanyBusinessUnitImport`
- added type `DivisionBusinessUnitImport`
</details>


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

- added enum `discount-group` to type `ChangeSubscriptionResourceTypeId`
- added method `apiRoot.withProjectKeyValue().businessUnits().importContainers().withImportContainerKeyValue().post()`
</details>

**History changes**

<details>
<summary>Added Type(s)</summary>
<summary>Added Resource(s)</summary>

- added type `TooManyRequestsError`
- added type `GraphQLTooManyRequestsError`
- added type `GraphQLErrorObject`
- added resource `/{projectKey}/business-units`
- added resource `/{projectKey}/business-units/import-containers`
- added resource `/{projectKey}/business-units/import-containers/{importContainerKey}`
</details>


<details>
<summary>Changed Property(s)</summary>
<summary>Added Enum(s)</summary>

- :warning: changed property `extensions` of type `GraphQLError` from type `object` to `GraphQLErrorObject`
- added enum `business-unit` to type `ImportResourceType`
- added enum `associate-role` to type `ReferenceType`
- added enum `business-unit` to type `ReferenceType`
</details>

Original file line number Diff line number Diff line change
Expand Up @@ -3749,6 +3749,16 @@ type CustomerDateOfBirthSet implements MessagePayload {
type: String!
}

type CustomerDefaultBillingAddressSet implements MessagePayload {
address: Address
type: String!
}

type CustomerDefaultShippingAddressSet implements MessagePayload {
address: Address
type: String!
}

type CustomerDeleted implements MessagePayload {
type: String!
}
Expand Down Expand Up @@ -4067,6 +4077,14 @@ input CustomerSignUpDraft {
authenticationMode: AuthenticationMode
}

type CustomerStoresSet implements MessagePayload {
stores: [Store!]!
oldStores: [Store!]!
storesRef: [KeyReference!]!
oldStoresRef: [KeyReference!]!
type: String!
}

type CustomerTitleSet implements MessagePayload {
title: String
type: String!
Expand Down Expand Up @@ -6909,6 +6927,15 @@ type Mutation {
"Queries with specified key"
key: String): RecurrencePolicy

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

"Queries with specified ID"
id: String,

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

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

Expand Down
Loading