Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -3014,6 +3014,10 @@ type Extension implements Versioned & ReferenceExpandable {
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
dependenciesRef: [Reference!]!
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
additionalContext: ExtensionAdditionalContext
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
Expand Down Expand Up @@ -3183,6 +3187,13 @@ type InStore implements CartDiscountQueryInterface & CartQueryInterface & Custom
key: String
): CartDiscount
cartDiscounts(where: String, sort: [String!], limit: Int, offset: Int): CartDiscountQueryResult!
discountCode(
"""Queries with specified ID"""
id: String
"""Queries with specified key"""
key: String
): DiscountCode
discountCodes(where: String, sort: [String!], limit: Int, offset: Int): DiscountCodeQueryResult!
product(
projectExpandedProducts: Boolean = false
localeProjection: [Locale!]
Expand Down Expand Up @@ -4082,17 +4093,31 @@ type Mutation {
"""Queries with specified key"""
key: String
): TaxCategory
createDiscountCode(draft: DiscountCodeDraft!): DiscountCode
createDiscountCode(
draft: DiscountCodeDraft!
"""
The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.
"""
storeKey: KeyReferenceInput
): DiscountCode
updateDiscountCode(
version: Long!
actions: [DiscountCodeUpdateAction!]!
"""
The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.
"""
storeKey: KeyReferenceInput
"""Queries with specified ID"""
id: String
"""Queries with specified key"""
key: String
): DiscountCode
deleteDiscountCode(
version: Long!
"""
The mutation is only performed if the resource is part of the store. Can be used with store-specific OAuth permissions.
"""
storeKey: KeyReferenceInput
"""Queries with specified ID"""
id: String
"""Queries with specified key"""
Expand Down Expand Up @@ -13233,6 +13258,10 @@ input ExtensionDraft {
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
dependencies: [ResourceIdentifierInput!]
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
additionalContext: ExtensionAdditionalContextInput
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
Expand All @@ -13251,6 +13280,10 @@ input ExtensionUpdateAction {
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
setExpansionPaths: SetExtensionExpansionPaths
"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
setDependencies: SetExtensionDependencies
setKey: SetExtensionKey
setTimeoutInMs: SetExtensionTimeoutInMs
}
Expand Down Expand Up @@ -15924,6 +15957,13 @@ input SetExtensionAdditionalContext {
additionalContext: ExtensionAdditionalContextInput!
}

"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
input SetExtensionDependencies {
dependencies: [ResourceIdentifierInput!]!
}

"""
BETA: This feature can be subject to change and should be used carefully in production. https://docs.commercetools.com/api/contract#public-beta
"""
Expand Down
2 changes: 2 additions & 0 deletions references.txt
Original file line number Diff line number Diff line change
Expand Up @@ -551,3 +551,5 @@ b079eb79b31912abbf6e28be6f2348e54a440110
b30881a27961c27ec2b180c43ad1a10b4e089c15
f74e542a084962a1c94f38acb28259265d218d7e
303dab396d987c4f6ed7c9013e664cd40807e948
b08eacf0757aabb265b9ff2b4a117e06d48e175c
f83d94426436ce8bcb69883a6c74e92b55f684b5
Loading