Update schema
This commit is contained in:
parent
68a4efdf49
commit
cc32a2fda5
1 changed files with 7 additions and 0 deletions
|
@ -3327,6 +3327,8 @@ type ProductVariantUpdatePrivateMeta {
|
||||||
type Query {
|
type Query {
|
||||||
webhook(id: ID!): Webhook
|
webhook(id: ID!): Webhook
|
||||||
webhooks(filter: WebhookFilterInput, before: String, after: String, first: Int, last: Int): WebhookCountableConnection
|
webhooks(filter: WebhookFilterInput, before: String, after: String, first: Int, last: Int): WebhookCountableConnection
|
||||||
|
webhookEvents: [WebhookEvent]
|
||||||
|
webhookSamplePayload(eventType: WebhookEventTypeEnum!): JSONString
|
||||||
translations(kind: TranslatableKinds!, before: String, after: String, first: Int, last: Int): TranslatableItemConnection
|
translations(kind: TranslatableKinds!, before: String, after: String, first: Int, last: Int): TranslatableItemConnection
|
||||||
shop: Shop
|
shop: Shop
|
||||||
shippingZone(id: ID!): ShippingZone
|
shippingZone(id: ID!): ShippingZone
|
||||||
|
@ -3744,6 +3746,8 @@ type Shop {
|
||||||
currencies: [String]!
|
currencies: [String]!
|
||||||
defaultCurrency: String!
|
defaultCurrency: String!
|
||||||
defaultCountry: CountryDisplay
|
defaultCountry: CountryDisplay
|
||||||
|
defaultMailSenderName: String
|
||||||
|
defaultMailSenderAddress: String
|
||||||
description: String
|
description: String
|
||||||
domain: Domain!
|
domain: Domain!
|
||||||
homepageCollection: Collection
|
homepageCollection: Collection
|
||||||
|
@ -3810,6 +3814,8 @@ input ShopSettingsInput {
|
||||||
automaticFulfillmentDigitalProducts: Boolean
|
automaticFulfillmentDigitalProducts: Boolean
|
||||||
defaultDigitalMaxDownloads: Int
|
defaultDigitalMaxDownloads: Int
|
||||||
defaultDigitalUrlValidDays: Int
|
defaultDigitalUrlValidDays: Int
|
||||||
|
defaultMailSenderName: String
|
||||||
|
defaultMailSenderAddress: String
|
||||||
}
|
}
|
||||||
|
|
||||||
type ShopSettingsTranslate {
|
type ShopSettingsTranslate {
|
||||||
|
@ -4317,6 +4323,7 @@ enum WebhookErrorCode {
|
||||||
|
|
||||||
type WebhookEvent {
|
type WebhookEvent {
|
||||||
eventType: WebhookEventTypeEnum
|
eventType: WebhookEventTypeEnum
|
||||||
|
name: String
|
||||||
}
|
}
|
||||||
|
|
||||||
enum WebhookEventTypeEnum {
|
enum WebhookEventTypeEnum {
|
||||||
|
|
Loading…
Reference in a new issue